blob: c0765609480da10f12710dbb47f297aa3655505f [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * eval.c: Expression evaluation.
12 */
Bram Moolenaarc236c162008-07-13 17:41:49 +000013#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014# include "vimio.h" /* for mch_open(), must be before vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015#endif
16
17#include "vim.h"
18
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019#if defined(FEAT_EVAL) || defined(PROTO)
20
Bram Moolenaar071d4272004-06-13 20:20:40 +000021#ifdef AMIGA
22# include <time.h> /* for strftime() */
23#endif
24
25#ifdef MACOS
26# include <time.h> /* for time_t */
27#endif
28
Bram Moolenaar8c8de832008-06-24 22:58:06 +000029#if defined(FEAT_FLOAT) && defined(HAVE_MATH_H)
30# include <math.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000031#endif
32
Bram Moolenaar33570922005-01-25 22:26:29 +000033#define DICT_MAXNEST 100 /* maximum nesting of lists and dicts */
Bram Moolenaar071d4272004-06-13 20:20:40 +000034
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000035#define DO_NOT_FREE_CNT 99999 /* refcount for dict or list that should not
36 be freed. */
37
Bram Moolenaar071d4272004-06-13 20:20:40 +000038/*
Bram Moolenaar33570922005-01-25 22:26:29 +000039 * In a hashtab item "hi_key" points to "di_key" in a dictitem.
40 * This avoids adding a pointer to the hashtab item.
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000041 * DI2HIKEY() converts a dictitem pointer to a hashitem key pointer.
42 * HIKEY2DI() converts a hashitem key pointer to a dictitem pointer.
43 * HI2DI() converts a hashitem pointer to a dictitem pointer.
44 */
Bram Moolenaar33570922005-01-25 22:26:29 +000045static dictitem_T dumdi;
Bram Moolenaara7043832005-01-21 11:56:39 +000046#define DI2HIKEY(di) ((di)->di_key)
Bram Moolenaar33570922005-01-25 22:26:29 +000047#define HIKEY2DI(p) ((dictitem_T *)(p - (dumdi.di_key - (char_u *)&dumdi)))
Bram Moolenaara7043832005-01-21 11:56:39 +000048#define HI2DI(hi) HIKEY2DI((hi)->hi_key)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000049
50/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000051 * Structure returned by get_lval() and used by set_var_lval().
52 * For a plain name:
53 * "name" points to the variable name.
54 * "exp_name" is NULL.
55 * "tv" is NULL
56 * For a magic braces name:
57 * "name" points to the expanded variable name.
58 * "exp_name" is non-NULL, to be freed later.
59 * "tv" is NULL
60 * For an index in a list:
61 * "name" points to the (expanded) variable name.
62 * "exp_name" NULL or non-NULL, to be freed later.
63 * "tv" points to the (first) list item value
64 * "li" points to the (first) list item
65 * "range", "n1", "n2" and "empty2" indicate what items are used.
66 * For an existing Dict item:
67 * "name" points to the (expanded) variable name.
68 * "exp_name" NULL or non-NULL, to be freed later.
69 * "tv" points to the dict item value
70 * "newkey" is NULL
71 * For a non-existing Dict item:
72 * "name" points to the (expanded) variable name.
73 * "exp_name" NULL or non-NULL, to be freed later.
Bram Moolenaar33570922005-01-25 22:26:29 +000074 * "tv" points to the Dictionary typval_T
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000075 * "newkey" is the key for the new item.
76 */
77typedef struct lval_S
78{
79 char_u *ll_name; /* start of variable name (can be NULL) */
80 char_u *ll_exp_name; /* NULL or expanded name in allocated memory. */
Bram Moolenaar33570922005-01-25 22:26:29 +000081 typval_T *ll_tv; /* Typeval of item being used. If "newkey"
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000082 isn't NULL it's the Dict to which to add
83 the item. */
Bram Moolenaar33570922005-01-25 22:26:29 +000084 listitem_T *ll_li; /* The list item or NULL. */
85 list_T *ll_list; /* The list or NULL. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000086 int ll_range; /* TRUE when a [i:j] range was used */
87 long ll_n1; /* First index for list */
88 long ll_n2; /* Second index for list range */
89 int ll_empty2; /* Second index is empty: [i:] */
Bram Moolenaar33570922005-01-25 22:26:29 +000090 dict_T *ll_dict; /* The Dictionary or NULL */
91 dictitem_T *ll_di; /* The dictitem or NULL */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000092 char_u *ll_newkey; /* New key for Dict in alloc. mem or NULL. */
Bram Moolenaar33570922005-01-25 22:26:29 +000093} lval_T;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000094
Bram Moolenaar8c711452005-01-14 21:53:12 +000095
Bram Moolenaarc70646c2005-01-04 21:52:38 +000096static char *e_letunexp = N_("E18: Unexpected characters in :let");
Bram Moolenaare49b69a2005-01-08 16:11:57 +000097static char *e_listidx = N_("E684: list index out of range: %ld");
Bram Moolenaarc70646c2005-01-04 21:52:38 +000098static char *e_undefvar = N_("E121: Undefined variable: %s");
99static char *e_missbrac = N_("E111: Missing ']'");
Bram Moolenaar8c711452005-01-14 21:53:12 +0000100static char *e_listarg = N_("E686: Argument of %s must be a List");
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000101static char *e_listdictarg = N_("E712: Argument of %s must be a List or Dictionary");
Bram Moolenaarce5e58e2005-01-19 22:24:34 +0000102static char *e_emptykey = N_("E713: Cannot use empty key for Dictionary");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000103static char *e_listreq = N_("E714: List required");
104static char *e_dictreq = N_("E715: Dictionary required");
Bram Moolenaar8c711452005-01-14 21:53:12 +0000105static char *e_toomanyarg = N_("E118: Too many arguments for function: %s");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000106static char *e_dictkey = N_("E716: Key not present in Dictionary: %s");
107static char *e_funcexts = N_("E122: Function %s already exists, add ! to replace it");
108static char *e_funcdict = N_("E717: Dictionary entry already exists");
109static char *e_funcref = N_("E718: Funcref required");
110static char *e_dictrange = N_("E719: Cannot use [:] with a Dictionary");
111static char *e_letwrong = N_("E734: Wrong variable type for %s=");
Bram Moolenaar05159a02005-02-26 23:04:13 +0000112static char *e_nofunc = N_("E130: Unknown function: %s");
Bram Moolenaar92124a32005-06-17 22:03:40 +0000113static char *e_illvar = N_("E461: Illegal variable name: %s");
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000114
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000115/*
Bram Moolenaar33570922005-01-25 22:26:29 +0000116 * All user-defined global variables are stored in dictionary "globvardict".
117 * "globvars_var" is the variable that is used for "g:".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118 */
Bram Moolenaar33570922005-01-25 22:26:29 +0000119static dict_T globvardict;
120static dictitem_T globvars_var;
121#define globvarht globvardict.dv_hashtab
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122
123/*
Bram Moolenaar532c7802005-01-27 14:44:31 +0000124 * Old Vim variables such as "v:version" are also available without the "v:".
125 * Also in functions. We need a special hashtable for them.
126 */
Bram Moolenaar4debb442005-06-01 21:57:40 +0000127static hashtab_T compat_hashtab;
Bram Moolenaar532c7802005-01-27 14:44:31 +0000128
129/*
Bram Moolenaard9fba312005-06-26 22:34:35 +0000130 * When recursively copying lists and dicts we need to remember which ones we
131 * have done to avoid endless recursiveness. This unique ID is used for that.
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +0000132 * The last bit is used for previous_funccal, ignored when comparing.
Bram Moolenaard9fba312005-06-26 22:34:35 +0000133 */
134static int current_copyID = 0;
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +0000135#define COPYID_INC 2
136#define COPYID_MASK (~0x1)
Bram Moolenaard9fba312005-06-26 22:34:35 +0000137
138/*
Bram Moolenaar33570922005-01-25 22:26:29 +0000139 * Array to hold the hashtab with variables local to each sourced script.
140 * Each item holds a variable (nameless) that points to the dict_T.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141 */
Bram Moolenaar33570922005-01-25 22:26:29 +0000142typedef struct
143{
144 dictitem_T sv_var;
145 dict_T sv_dict;
146} scriptvar_T;
147
148static garray_T ga_scripts = {0, 0, sizeof(scriptvar_T), 4, NULL};
149#define SCRIPT_SV(id) (((scriptvar_T *)ga_scripts.ga_data)[(id) - 1])
150#define SCRIPT_VARS(id) (SCRIPT_SV(id).sv_dict.dv_hashtab)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151
152static int echo_attr = 0; /* attributes used for ":echo" */
153
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000154/* Values for trans_function_name() argument: */
155#define TFN_INT 1 /* internal function name OK */
156#define TFN_QUIET 2 /* no error messages */
157
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158/*
159 * Structure to hold info for a user function.
160 */
161typedef struct ufunc ufunc_T;
162
163struct ufunc
164{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000165 int uf_varargs; /* variable nr of arguments */
166 int uf_flags;
167 int uf_calls; /* nr of active calls */
168 garray_T uf_args; /* arguments */
169 garray_T uf_lines; /* function lines */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000170#ifdef FEAT_PROFILE
171 int uf_profiling; /* TRUE when func is being profiled */
172 /* profiling the function as a whole */
173 int uf_tm_count; /* nr of calls */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000174 proftime_T uf_tm_total; /* time spent in function + children */
175 proftime_T uf_tm_self; /* time spent in function itself */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000176 proftime_T uf_tm_children; /* time spent in children this call */
177 /* profiling the function per line */
178 int *uf_tml_count; /* nr of times line was executed */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000179 proftime_T *uf_tml_total; /* time spent in a line + children */
180 proftime_T *uf_tml_self; /* time spent in a line itself */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000181 proftime_T uf_tml_start; /* start time for current line */
182 proftime_T uf_tml_children; /* time spent in children for this line */
183 proftime_T uf_tml_wait; /* start wait time for current line */
184 int uf_tml_idx; /* index of line being timed; -1 if none */
185 int uf_tml_execed; /* line being timed was executed */
186#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000187 scid_T uf_script_ID; /* ID of script where function was defined,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188 used for s: variables */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000189 int uf_refcount; /* for numbered function: reference count */
190 char_u uf_name[1]; /* name of function (actually longer); can
191 start with <SNR>123_ (<SNR> is K_SPECIAL
192 KS_EXTRA KE_SNR) */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193};
194
195/* function flags */
196#define FC_ABORT 1 /* abort function on error */
197#define FC_RANGE 2 /* function accepts range */
Bram Moolenaare9a41262005-01-15 22:18:47 +0000198#define FC_DICT 4 /* Dict function, uses "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199
200/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000201 * All user-defined functions are found in this hashtable.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202 */
Bram Moolenaar4debb442005-06-01 21:57:40 +0000203static hashtab_T func_hashtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000205/* The names of packages that once were loaded are remembered. */
Bram Moolenaaraa35dd12006-04-29 22:03:41 +0000206static garray_T ga_loaded = {0, 0, sizeof(char_u *), 4, NULL};
207
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000208/* list heads for garbage collection */
209static dict_T *first_dict = NULL; /* list of all dicts */
210static list_T *first_list = NULL; /* list of all lists */
211
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000212/* From user function to hashitem and back. */
213static ufunc_T dumuf;
214#define UF2HIKEY(fp) ((fp)->uf_name)
215#define HIKEY2UF(p) ((ufunc_T *)(p - (dumuf.uf_name - (char_u *)&dumuf)))
216#define HI2UF(hi) HIKEY2UF((hi)->hi_key)
217
218#define FUNCARG(fp, j) ((char_u **)(fp->uf_args.ga_data))[j]
219#define FUNCLINE(fp, j) ((char_u **)(fp->uf_lines.ga_data))[j]
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220
Bram Moolenaar33570922005-01-25 22:26:29 +0000221#define MAX_FUNC_ARGS 20 /* maximum number of function arguments */
222#define VAR_SHORT_LEN 20 /* short variable name length */
223#define FIXVAR_CNT 12 /* number of fixed variables */
224
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225/* structure to hold info for a function that is currently being executed. */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000226typedef struct funccall_S funccall_T;
227
228struct funccall_S
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229{
230 ufunc_T *func; /* function being called */
231 int linenr; /* next line to be executed */
232 int returned; /* ":return" used */
Bram Moolenaar33570922005-01-25 22:26:29 +0000233 struct /* fixed variables for arguments */
234 {
235 dictitem_T var; /* variable (without room for name) */
236 char_u room[VAR_SHORT_LEN]; /* room for the name */
237 } fixvar[FIXVAR_CNT];
238 dict_T l_vars; /* l: local function variables */
239 dictitem_T l_vars_var; /* variable for l: scope */
240 dict_T l_avars; /* a: argument variables */
241 dictitem_T l_avars_var; /* variable for a: scope */
242 list_T l_varlist; /* list for a:000 */
243 listitem_T l_listitems[MAX_FUNC_ARGS]; /* listitems for a:000 */
244 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245 linenr_T breakpoint; /* next line with breakpoint or zero */
246 int dbg_tick; /* debug_tick when breakpoint was set */
247 int level; /* top nesting level of executed function */
Bram Moolenaar05159a02005-02-26 23:04:13 +0000248#ifdef FEAT_PROFILE
249 proftime_T prof_child; /* time spent in a child */
250#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000251 funccall_T *caller; /* calling function or NULL */
252};
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253
254/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000255 * Info used by a ":for" loop.
256 */
Bram Moolenaar33570922005-01-25 22:26:29 +0000257typedef struct
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000258{
259 int fi_semicolon; /* TRUE if ending in '; var]' */
260 int fi_varcount; /* nr of variables in the list */
Bram Moolenaar33570922005-01-25 22:26:29 +0000261 listwatch_T fi_lw; /* keep an eye on the item used. */
262 list_T *fi_list; /* list being used */
263} forinfo_T;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000264
Bram Moolenaar3d60ec22005-01-05 22:19:46 +0000265/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000266 * Struct used by trans_function_name()
267 */
268typedef struct
269{
Bram Moolenaar33570922005-01-25 22:26:29 +0000270 dict_T *fd_dict; /* Dictionary used */
Bram Moolenaar532c7802005-01-27 14:44:31 +0000271 char_u *fd_newkey; /* new key in "dict" in allocated memory */
Bram Moolenaar33570922005-01-25 22:26:29 +0000272 dictitem_T *fd_di; /* Dictionary item used */
273} funcdict_T;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000274
Bram Moolenaara7043832005-01-21 11:56:39 +0000275
276/*
Bram Moolenaar33570922005-01-25 22:26:29 +0000277 * Array to hold the value of v: variables.
278 * The value is in a dictitem, so that it can also be used in the v: scope.
279 * The reason to use this table anyway is for very quick access to the
280 * variables with the VV_ defines.
281 */
282#include "version.h"
283
284/* values for vv_flags: */
285#define VV_COMPAT 1 /* compatible, also used without "v:" */
286#define VV_RO 2 /* read-only */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000287#define VV_RO_SBX 4 /* read-only in the sandbox */
Bram Moolenaar33570922005-01-25 22:26:29 +0000288
Bram Moolenaarcdb92af2009-06-03 12:26:06 +0000289#define VV_NAME(s, t) s, {{t, 0, {0}}, 0, {0}}, {0}
Bram Moolenaar33570922005-01-25 22:26:29 +0000290
291static struct vimvar
292{
293 char *vv_name; /* name of variable, without v: */
Bram Moolenaar33570922005-01-25 22:26:29 +0000294 dictitem_T vv_di; /* value and name for key */
295 char vv_filler[16]; /* space for LONGEST name below!!! */
296 char vv_flags; /* VV_COMPAT, VV_RO, VV_RO_SBX */
297} vimvars[VV_LEN] =
298{
299 /*
300 * The order here must match the VV_ defines in vim.h!
301 * Initializing a union does not work, leave tv.vval empty to get zero's.
302 */
303 {VV_NAME("count", VAR_NUMBER), VV_COMPAT+VV_RO},
304 {VV_NAME("count1", VAR_NUMBER), VV_RO},
305 {VV_NAME("prevcount", VAR_NUMBER), VV_RO},
306 {VV_NAME("errmsg", VAR_STRING), VV_COMPAT},
307 {VV_NAME("warningmsg", VAR_STRING), 0},
308 {VV_NAME("statusmsg", VAR_STRING), 0},
309 {VV_NAME("shell_error", VAR_NUMBER), VV_COMPAT+VV_RO},
310 {VV_NAME("this_session", VAR_STRING), VV_COMPAT},
311 {VV_NAME("version", VAR_NUMBER), VV_COMPAT+VV_RO},
312 {VV_NAME("lnum", VAR_NUMBER), VV_RO_SBX},
313 {VV_NAME("termresponse", VAR_STRING), VV_RO},
314 {VV_NAME("fname", VAR_STRING), VV_RO},
315 {VV_NAME("lang", VAR_STRING), VV_RO},
316 {VV_NAME("lc_time", VAR_STRING), VV_RO},
317 {VV_NAME("ctype", VAR_STRING), VV_RO},
318 {VV_NAME("charconvert_from", VAR_STRING), VV_RO},
319 {VV_NAME("charconvert_to", VAR_STRING), VV_RO},
320 {VV_NAME("fname_in", VAR_STRING), VV_RO},
321 {VV_NAME("fname_out", VAR_STRING), VV_RO},
322 {VV_NAME("fname_new", VAR_STRING), VV_RO},
323 {VV_NAME("fname_diff", VAR_STRING), VV_RO},
324 {VV_NAME("cmdarg", VAR_STRING), VV_RO},
325 {VV_NAME("foldstart", VAR_NUMBER), VV_RO_SBX},
326 {VV_NAME("foldend", VAR_NUMBER), VV_RO_SBX},
327 {VV_NAME("folddashes", VAR_STRING), VV_RO_SBX},
328 {VV_NAME("foldlevel", VAR_NUMBER), VV_RO_SBX},
329 {VV_NAME("progname", VAR_STRING), VV_RO},
330 {VV_NAME("servername", VAR_STRING), VV_RO},
331 {VV_NAME("dying", VAR_NUMBER), VV_RO},
332 {VV_NAME("exception", VAR_STRING), VV_RO},
333 {VV_NAME("throwpoint", VAR_STRING), VV_RO},
334 {VV_NAME("register", VAR_STRING), VV_RO},
335 {VV_NAME("cmdbang", VAR_NUMBER), VV_RO},
336 {VV_NAME("insertmode", VAR_STRING), VV_RO},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000337 {VV_NAME("val", VAR_UNKNOWN), VV_RO},
338 {VV_NAME("key", VAR_UNKNOWN), VV_RO},
Bram Moolenaar05159a02005-02-26 23:04:13 +0000339 {VV_NAME("profiling", VAR_NUMBER), VV_RO},
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000340 {VV_NAME("fcs_reason", VAR_STRING), VV_RO},
341 {VV_NAME("fcs_choice", VAR_STRING), 0},
Bram Moolenaare2ac10d2005-03-07 23:26:06 +0000342 {VV_NAME("beval_bufnr", VAR_NUMBER), VV_RO},
343 {VV_NAME("beval_winnr", VAR_NUMBER), VV_RO},
344 {VV_NAME("beval_lnum", VAR_NUMBER), VV_RO},
345 {VV_NAME("beval_col", VAR_NUMBER), VV_RO},
346 {VV_NAME("beval_text", VAR_STRING), VV_RO},
Bram Moolenaar761b1132005-10-03 22:05:45 +0000347 {VV_NAME("scrollstart", VAR_STRING), 0},
Bram Moolenaard5bc83f2005-12-07 21:07:59 +0000348 {VV_NAME("swapname", VAR_STRING), VV_RO},
349 {VV_NAME("swapchoice", VAR_STRING), 0},
Bram Moolenaar63a121b2005-12-11 21:36:39 +0000350 {VV_NAME("swapcommand", VAR_STRING), VV_RO},
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000351 {VV_NAME("char", VAR_STRING), VV_RO},
Bram Moolenaar219b8702006-11-01 14:32:36 +0000352 {VV_NAME("mouse_win", VAR_NUMBER), 0},
353 {VV_NAME("mouse_lnum", VAR_NUMBER), 0},
354 {VV_NAME("mouse_col", VAR_NUMBER), 0},
Bram Moolenaar8af1fbf2008-01-05 12:35:21 +0000355 {VV_NAME("operator", VAR_STRING), VV_RO},
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000356 {VV_NAME("searchforward", VAR_NUMBER), 0},
Bram Moolenaard812df62008-11-09 12:46:09 +0000357 {VV_NAME("oldfiles", VAR_LIST), 0},
Bram Moolenaar33570922005-01-25 22:26:29 +0000358};
359
360/* shorthand */
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000361#define vv_type vv_di.di_tv.v_type
362#define vv_nr vv_di.di_tv.vval.v_number
363#define vv_float vv_di.di_tv.vval.v_float
364#define vv_str vv_di.di_tv.vval.v_string
Bram Moolenaard812df62008-11-09 12:46:09 +0000365#define vv_list vv_di.di_tv.vval.v_list
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000366#define vv_tv vv_di.di_tv
Bram Moolenaar33570922005-01-25 22:26:29 +0000367
368/*
369 * The v: variables are stored in dictionary "vimvardict".
370 * "vimvars_var" is the variable that is used for the "l:" scope.
371 */
372static dict_T vimvardict;
373static dictitem_T vimvars_var;
374#define vimvarht vimvardict.dv_hashtab
375
Bram Moolenaara40058a2005-07-11 22:42:07 +0000376static void prepare_vimvar __ARGS((int idx, typval_T *save_tv));
377static void restore_vimvar __ARGS((int idx, typval_T *save_tv));
378#if defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)
379static int call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe, typval_T *rettv));
380#endif
381static int ex_let_vars __ARGS((char_u *arg, typval_T *tv, int copy, int semicolon, int var_count, char_u *nextchars));
382static char_u *skip_var_list __ARGS((char_u *arg, int *var_count, int *semicolon));
383static char_u *skip_var_one __ARGS((char_u *arg));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000384static void list_hashtable_vars __ARGS((hashtab_T *ht, char_u *prefix, int empty, int *first));
385static void list_glob_vars __ARGS((int *first));
386static void list_buf_vars __ARGS((int *first));
387static void list_win_vars __ARGS((int *first));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000388#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000389static void list_tab_vars __ARGS((int *first));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000390#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000391static void list_vim_vars __ARGS((int *first));
392static void list_script_vars __ARGS((int *first));
393static void list_func_vars __ARGS((int *first));
394static char_u *list_arg_vars __ARGS((exarg_T *eap, char_u *arg, int *first));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000395static char_u *ex_let_one __ARGS((char_u *arg, typval_T *tv, int copy, char_u *endchars, char_u *op));
396static int check_changedtick __ARGS((char_u *arg));
397static char_u *get_lval __ARGS((char_u *name, typval_T *rettv, lval_T *lp, int unlet, int skip, int quiet, int fne_flags));
398static void clear_lval __ARGS((lval_T *lp));
399static void set_var_lval __ARGS((lval_T *lp, char_u *endp, typval_T *rettv, int copy, char_u *op));
400static int tv_op __ARGS((typval_T *tv1, typval_T *tv2, char_u *op));
401static void list_add_watch __ARGS((list_T *l, listwatch_T *lw));
402static void list_rem_watch __ARGS((list_T *l, listwatch_T *lwrem));
403static void list_fix_watch __ARGS((list_T *l, listitem_T *item));
404static void ex_unletlock __ARGS((exarg_T *eap, char_u *argstart, int deep));
405static int do_unlet_var __ARGS((lval_T *lp, char_u *name_end, int forceit));
406static int do_lock_var __ARGS((lval_T *lp, char_u *name_end, int deep, int lock));
407static void item_lock __ARGS((typval_T *tv, int deep, int lock));
408static int tv_islocked __ARGS((typval_T *tv));
409
Bram Moolenaar33570922005-01-25 22:26:29 +0000410static int eval0 __ARGS((char_u *arg, typval_T *rettv, char_u **nextcmd, int evaluate));
411static int eval1 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
412static int eval2 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
413static int eval3 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
414static int eval4 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
415static int eval5 __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +0000416static int eval6 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
417static int eval7 __ARGS((char_u **arg, typval_T *rettv, int evaluate, int want_string));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000418
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000419static int eval_index __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000420static int get_option_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
421static int get_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
422static int get_lit_string_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
423static int get_list_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaareddf53b2006-02-27 00:11:10 +0000424static int rettv_list_alloc __ARGS((typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000425static listitem_T *listitem_alloc __ARGS((void));
426static void listitem_free __ARGS((listitem_T *item));
427static void listitem_remove __ARGS((list_T *l, listitem_T *item));
428static long list_len __ARGS((list_T *l));
429static int list_equal __ARGS((list_T *l1, list_T *l2, int ic));
430static int dict_equal __ARGS((dict_T *d1, dict_T *d2, int ic));
431static int tv_equal __ARGS((typval_T *tv1, typval_T *tv2, int ic));
Bram Moolenaar33570922005-01-25 22:26:29 +0000432static listitem_T *list_find __ARGS((list_T *l, long n));
Bram Moolenaara5525202006-03-02 22:52:09 +0000433static long list_find_nr __ARGS((list_T *l, long idx, int *errorp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000434static long list_idx_of_item __ARGS((list_T *l, listitem_T *item));
Bram Moolenaar33570922005-01-25 22:26:29 +0000435static void list_append __ARGS((list_T *l, listitem_T *item));
436static int list_append_tv __ARGS((list_T *l, typval_T *tv));
Bram Moolenaar4463f292005-09-25 22:20:24 +0000437static int list_append_number __ARGS((list_T *l, varnumber_T n));
Bram Moolenaar33570922005-01-25 22:26:29 +0000438static int list_insert_tv __ARGS((list_T *l, typval_T *tv, listitem_T *item));
439static int list_extend __ARGS((list_T *l1, list_T *l2, listitem_T *bef));
440static int list_concat __ARGS((list_T *l1, list_T *l2, typval_T *tv));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000441static list_T *list_copy __ARGS((list_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000442static void list_remove __ARGS((list_T *l, listitem_T *item, listitem_T *item2));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000443static char_u *list2string __ARGS((typval_T *tv, int copyID));
444static int list_join __ARGS((garray_T *gap, list_T *l, char_u *sep, int echo, int copyID));
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +0000445static int free_unref_items __ARGS((int copyID));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000446static void set_ref_in_ht __ARGS((hashtab_T *ht, int copyID));
447static void set_ref_in_list __ARGS((list_T *l, int copyID));
448static void set_ref_in_item __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000449static void dict_unref __ARGS((dict_T *d));
Bram Moolenaar685295c2006-10-15 20:37:38 +0000450static void dict_free __ARGS((dict_T *d, int recurse));
Bram Moolenaar33570922005-01-25 22:26:29 +0000451static dictitem_T *dictitem_alloc __ARGS((char_u *key));
452static dictitem_T *dictitem_copy __ARGS((dictitem_T *org));
453static void dictitem_remove __ARGS((dict_T *dict, dictitem_T *item));
454static void dictitem_free __ARGS((dictitem_T *item));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000455static dict_T *dict_copy __ARGS((dict_T *orig, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000456static int dict_add __ARGS((dict_T *d, dictitem_T *item));
457static long dict_len __ARGS((dict_T *d));
458static dictitem_T *dict_find __ARGS((dict_T *d, char_u *key, int len));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000459static char_u *dict2string __ARGS((typval_T *tv, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000460static int get_dict_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
Bram Moolenaarb71eaae2006-01-20 23:10:18 +0000461static char_u *echo_string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
462static char_u *tv2string __ARGS((typval_T *tv, char_u **tofree, char_u *numbuf, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000463static char_u *string_quote __ARGS((char_u *str, int function));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000464#ifdef FEAT_FLOAT
465static int string2float __ARGS((char_u *text, float_T *value));
466#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000467static int get_env_tv __ARGS((char_u **arg, typval_T *rettv, int evaluate));
468static int find_internal_func __ARGS((char_u *name));
469static char_u *deref_func_name __ARGS((char_u *name, int *lenp));
470static int get_func_tv __ARGS((char_u *name, int len, typval_T *rettv, char_u **arg, linenr_T firstline, linenr_T lastline, int *doesrange, int evaluate, dict_T *selfdict));
471static int call_func __ARGS((char_u *name, int len, typval_T *rettv, int argcount, typval_T *argvars, linenr_T firstline, linenr_T lastline, int *doesrange, int evaluate, dict_T *selfdict));
Bram Moolenaar89d40322006-08-29 15:30:07 +0000472static void emsg_funcname __ARGS((char *ermsg, char_u *name));
Bram Moolenaar05bb9532008-07-04 09:44:11 +0000473static int non_zero_arg __ARGS((typval_T *argvars));
Bram Moolenaar33570922005-01-25 22:26:29 +0000474
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000475#ifdef FEAT_FLOAT
476static void f_abs __ARGS((typval_T *argvars, typval_T *rettv));
477#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000478static void f_add __ARGS((typval_T *argvars, typval_T *rettv));
479static void f_append __ARGS((typval_T *argvars, typval_T *rettv));
480static void f_argc __ARGS((typval_T *argvars, typval_T *rettv));
481static void f_argidx __ARGS((typval_T *argvars, typval_T *rettv));
482static void f_argv __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000483#ifdef FEAT_FLOAT
484static void f_atan __ARGS((typval_T *argvars, typval_T *rettv));
485#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000486static void f_browse __ARGS((typval_T *argvars, typval_T *rettv));
487static void f_browsedir __ARGS((typval_T *argvars, typval_T *rettv));
488static void f_bufexists __ARGS((typval_T *argvars, typval_T *rettv));
489static void f_buflisted __ARGS((typval_T *argvars, typval_T *rettv));
490static void f_bufloaded __ARGS((typval_T *argvars, typval_T *rettv));
491static void f_bufname __ARGS((typval_T *argvars, typval_T *rettv));
492static void f_bufnr __ARGS((typval_T *argvars, typval_T *rettv));
493static void f_bufwinnr __ARGS((typval_T *argvars, typval_T *rettv));
494static void f_byte2line __ARGS((typval_T *argvars, typval_T *rettv));
495static void f_byteidx __ARGS((typval_T *argvars, typval_T *rettv));
496static void f_call __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000497#ifdef FEAT_FLOAT
498static void f_ceil __ARGS((typval_T *argvars, typval_T *rettv));
499#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +0000500static void f_changenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000501static void f_char2nr __ARGS((typval_T *argvars, typval_T *rettv));
502static void f_cindent __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000503static void f_clearmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000504static void f_col __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000505#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +0000506static void f_complete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar572cb562005-08-05 21:35:02 +0000507static void f_complete_add __ARGS((typval_T *argvars, typval_T *rettv));
508static void f_complete_check __ARGS((typval_T *argvars, typval_T *rettv));
509#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000510static void f_confirm __ARGS((typval_T *argvars, typval_T *rettv));
511static void f_copy __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000512#ifdef FEAT_FLOAT
513static void f_cos __ARGS((typval_T *argvars, typval_T *rettv));
514#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000515static void f_count __ARGS((typval_T *argvars, typval_T *rettv));
516static void f_cscope_connection __ARGS((typval_T *argvars, typval_T *rettv));
517static void f_cursor __ARGS((typval_T *argsvars, typval_T *rettv));
518static void f_deepcopy __ARGS((typval_T *argvars, typval_T *rettv));
519static void f_delete __ARGS((typval_T *argvars, typval_T *rettv));
520static void f_did_filetype __ARGS((typval_T *argvars, typval_T *rettv));
521static void f_diff_filler __ARGS((typval_T *argvars, typval_T *rettv));
522static void f_diff_hlID __ARGS((typval_T *argvars, typval_T *rettv));
523static void f_empty __ARGS((typval_T *argvars, typval_T *rettv));
524static void f_escape __ARGS((typval_T *argvars, typval_T *rettv));
525static void f_eval __ARGS((typval_T *argvars, typval_T *rettv));
526static void f_eventhandler __ARGS((typval_T *argvars, typval_T *rettv));
527static void f_executable __ARGS((typval_T *argvars, typval_T *rettv));
528static void f_exists __ARGS((typval_T *argvars, typval_T *rettv));
529static void f_expand __ARGS((typval_T *argvars, typval_T *rettv));
530static void f_extend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000531static void f_feedkeys __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000532static void f_filereadable __ARGS((typval_T *argvars, typval_T *rettv));
533static void f_filewritable __ARGS((typval_T *argvars, typval_T *rettv));
534static void f_filter __ARGS((typval_T *argvars, typval_T *rettv));
535static void f_finddir __ARGS((typval_T *argvars, typval_T *rettv));
536static void f_findfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000537#ifdef FEAT_FLOAT
538static void f_float2nr __ARGS((typval_T *argvars, typval_T *rettv));
539static void f_floor __ARGS((typval_T *argvars, typval_T *rettv));
540#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +0000541static void f_fnameescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000542static void f_fnamemodify __ARGS((typval_T *argvars, typval_T *rettv));
543static void f_foldclosed __ARGS((typval_T *argvars, typval_T *rettv));
544static void f_foldclosedend __ARGS((typval_T *argvars, typval_T *rettv));
545static void f_foldlevel __ARGS((typval_T *argvars, typval_T *rettv));
546static void f_foldtext __ARGS((typval_T *argvars, typval_T *rettv));
547static void f_foldtextresult __ARGS((typval_T *argvars, typval_T *rettv));
548static void f_foreground __ARGS((typval_T *argvars, typval_T *rettv));
549static void f_function __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000550static void f_garbagecollect __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000551static void f_get __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar80fc0432005-07-20 22:06:07 +0000552static void f_getbufline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000553static void f_getbufvar __ARGS((typval_T *argvars, typval_T *rettv));
554static void f_getchar __ARGS((typval_T *argvars, typval_T *rettv));
555static void f_getcharmod __ARGS((typval_T *argvars, typval_T *rettv));
556static void f_getcmdline __ARGS((typval_T *argvars, typval_T *rettv));
557static void f_getcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +0000558static void f_getcmdtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000559static void f_getcwd __ARGS((typval_T *argvars, typval_T *rettv));
560static void f_getfontname __ARGS((typval_T *argvars, typval_T *rettv));
561static void f_getfperm __ARGS((typval_T *argvars, typval_T *rettv));
562static void f_getfsize __ARGS((typval_T *argvars, typval_T *rettv));
563static void f_getftime __ARGS((typval_T *argvars, typval_T *rettv));
564static void f_getftype __ARGS((typval_T *argvars, typval_T *rettv));
565static void f_getline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000566static void f_getmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar18081e32008-02-20 19:11:07 +0000567static void f_getpid __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaara5525202006-03-02 22:52:09 +0000568static void f_getpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000569static void f_getqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000570static void f_getreg __ARGS((typval_T *argvars, typval_T *rettv));
571static void f_getregtype __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000572static void f_gettabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000573static void f_getwinposx __ARGS((typval_T *argvars, typval_T *rettv));
574static void f_getwinposy __ARGS((typval_T *argvars, typval_T *rettv));
575static void f_getwinvar __ARGS((typval_T *argvars, typval_T *rettv));
576static void f_glob __ARGS((typval_T *argvars, typval_T *rettv));
577static void f_globpath __ARGS((typval_T *argvars, typval_T *rettv));
578static void f_has __ARGS((typval_T *argvars, typval_T *rettv));
579static void f_has_key __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard267b9c2007-04-26 15:06:45 +0000580static void f_haslocaldir __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000581static void f_hasmapto __ARGS((typval_T *argvars, typval_T *rettv));
582static void f_histadd __ARGS((typval_T *argvars, typval_T *rettv));
583static void f_histdel __ARGS((typval_T *argvars, typval_T *rettv));
584static void f_histget __ARGS((typval_T *argvars, typval_T *rettv));
585static void f_histnr __ARGS((typval_T *argvars, typval_T *rettv));
586static void f_hlID __ARGS((typval_T *argvars, typval_T *rettv));
587static void f_hlexists __ARGS((typval_T *argvars, typval_T *rettv));
588static void f_hostname __ARGS((typval_T *argvars, typval_T *rettv));
589static void f_iconv __ARGS((typval_T *argvars, typval_T *rettv));
590static void f_indent __ARGS((typval_T *argvars, typval_T *rettv));
591static void f_index __ARGS((typval_T *argvars, typval_T *rettv));
592static void f_input __ARGS((typval_T *argvars, typval_T *rettv));
593static void f_inputdialog __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6efa2b32005-09-10 19:26:26 +0000594static void f_inputlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000595static void f_inputrestore __ARGS((typval_T *argvars, typval_T *rettv));
596static void f_inputsave __ARGS((typval_T *argvars, typval_T *rettv));
597static void f_inputsecret __ARGS((typval_T *argvars, typval_T *rettv));
598static void f_insert __ARGS((typval_T *argvars, typval_T *rettv));
599static void f_isdirectory __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000600static void f_islocked __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000601static void f_items __ARGS((typval_T *argvars, typval_T *rettv));
602static void f_join __ARGS((typval_T *argvars, typval_T *rettv));
603static void f_keys __ARGS((typval_T *argvars, typval_T *rettv));
604static void f_last_buffer_nr __ARGS((typval_T *argvars, typval_T *rettv));
605static void f_len __ARGS((typval_T *argvars, typval_T *rettv));
606static void f_libcall __ARGS((typval_T *argvars, typval_T *rettv));
607static void f_libcallnr __ARGS((typval_T *argvars, typval_T *rettv));
608static void f_line __ARGS((typval_T *argvars, typval_T *rettv));
609static void f_line2byte __ARGS((typval_T *argvars, typval_T *rettv));
610static void f_lispindent __ARGS((typval_T *argvars, typval_T *rettv));
611static void f_localtime __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000612#ifdef FEAT_FLOAT
613static void f_log10 __ARGS((typval_T *argvars, typval_T *rettv));
614#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000615static void f_map __ARGS((typval_T *argvars, typval_T *rettv));
616static void f_maparg __ARGS((typval_T *argvars, typval_T *rettv));
617static void f_mapcheck __ARGS((typval_T *argvars, typval_T *rettv));
618static void f_match __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000619static void f_matchadd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000620static void f_matcharg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000621static void f_matchdelete __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000622static void f_matchend __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000623static void f_matchlist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000624static void f_matchstr __ARGS((typval_T *argvars, typval_T *rettv));
625static void f_max __ARGS((typval_T *argvars, typval_T *rettv));
626static void f_min __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000627#ifdef vim_mkdir
628static void f_mkdir __ARGS((typval_T *argvars, typval_T *rettv));
629#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000630static void f_mode __ARGS((typval_T *argvars, typval_T *rettv));
631static void f_nextnonblank __ARGS((typval_T *argvars, typval_T *rettv));
632static void f_nr2char __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000633static void f_pathshorten __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000634#ifdef FEAT_FLOAT
635static void f_pow __ARGS((typval_T *argvars, typval_T *rettv));
636#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000637static void f_prevnonblank __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar4be06f92005-07-29 22:36:03 +0000638static void f_printf __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000639static void f_pumvisible __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000640static void f_range __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000641static void f_readfile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaare580b0c2006-03-21 21:33:03 +0000642static void f_reltime __ARGS((typval_T *argvars, typval_T *rettv));
643static void f_reltimestr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000644static void f_remote_expr __ARGS((typval_T *argvars, typval_T *rettv));
645static void f_remote_foreground __ARGS((typval_T *argvars, typval_T *rettv));
646static void f_remote_peek __ARGS((typval_T *argvars, typval_T *rettv));
647static void f_remote_read __ARGS((typval_T *argvars, typval_T *rettv));
648static void f_remote_send __ARGS((typval_T *argvars, typval_T *rettv));
649static void f_remove __ARGS((typval_T *argvars, typval_T *rettv));
650static void f_rename __ARGS((typval_T *argvars, typval_T *rettv));
651static void f_repeat __ARGS((typval_T *argvars, typval_T *rettv));
652static void f_resolve __ARGS((typval_T *argvars, typval_T *rettv));
653static void f_reverse __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000654#ifdef FEAT_FLOAT
655static void f_round __ARGS((typval_T *argvars, typval_T *rettv));
656#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000657static void f_search __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaardd2436f2005-09-05 22:14:46 +0000658static void f_searchdecl __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000659static void f_searchpair __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000660static void f_searchpairpos __ARGS((typval_T *argvars, typval_T *rettv));
661static void f_searchpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000662static void f_server2client __ARGS((typval_T *argvars, typval_T *rettv));
663static void f_serverlist __ARGS((typval_T *argvars, typval_T *rettv));
664static void f_setbufvar __ARGS((typval_T *argvars, typval_T *rettv));
665static void f_setcmdpos __ARGS((typval_T *argvars, typval_T *rettv));
666static void f_setline __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar17c7c012006-01-26 22:25:15 +0000667static void f_setloclist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar6ee10162007-07-26 20:58:42 +0000668static void f_setmatches __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000669static void f_setpos __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2641f772005-03-25 21:58:17 +0000670static void f_setqflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000671static void f_setreg __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000672static void f_settabwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000673static void f_setwinvar __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar60a495f2006-10-03 12:44:42 +0000674static void f_shellescape __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000675static void f_simplify __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000676#ifdef FEAT_FLOAT
677static void f_sin __ARGS((typval_T *argvars, typval_T *rettv));
678#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000679static void f_sort __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +0000680static void f_soundfold __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard857f0e2005-06-21 22:37:39 +0000681static void f_spellbadword __ARGS((typval_T *argvars, typval_T *rettv));
682static void f_spellsuggest __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000683static void f_split __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000684#ifdef FEAT_FLOAT
685static void f_sqrt __ARGS((typval_T *argvars, typval_T *rettv));
686static void f_str2float __ARGS((typval_T *argvars, typval_T *rettv));
687#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +0000688static void f_str2nr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000689#ifdef HAVE_STRFTIME
690static void f_strftime __ARGS((typval_T *argvars, typval_T *rettv));
691#endif
692static void f_stridx __ARGS((typval_T *argvars, typval_T *rettv));
693static void f_string __ARGS((typval_T *argvars, typval_T *rettv));
694static void f_strlen __ARGS((typval_T *argvars, typval_T *rettv));
695static void f_strpart __ARGS((typval_T *argvars, typval_T *rettv));
696static void f_strridx __ARGS((typval_T *argvars, typval_T *rettv));
697static void f_strtrans __ARGS((typval_T *argvars, typval_T *rettv));
698static void f_submatch __ARGS((typval_T *argvars, typval_T *rettv));
699static void f_substitute __ARGS((typval_T *argvars, typval_T *rettv));
700static void f_synID __ARGS((typval_T *argvars, typval_T *rettv));
701static void f_synIDattr __ARGS((typval_T *argvars, typval_T *rettv));
702static void f_synIDtrans __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar9d188ab2008-01-10 21:24:39 +0000703static void f_synstack __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000704static void f_system __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000705static void f_tabpagebuflist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar7e8fd632006-02-18 22:14:51 +0000706static void f_tabpagenr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaarfaa959a2006-02-20 21:37:40 +0000707static void f_tabpagewinnr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar19a09a12005-03-04 23:39:37 +0000708static void f_taglist __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard43b6cf2005-09-09 19:53:42 +0000709static void f_tagfiles __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000710static void f_tempname __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaard52d9742005-08-21 22:20:28 +0000711static void f_test __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000712static void f_tolower __ARGS((typval_T *argvars, typval_T *rettv));
713static void f_toupper __ARGS((typval_T *argvars, typval_T *rettv));
714static void f_tr __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000715#ifdef FEAT_FLOAT
716static void f_trunc __ARGS((typval_T *argvars, typval_T *rettv));
717#endif
Bram Moolenaar33570922005-01-25 22:26:29 +0000718static void f_type __ARGS((typval_T *argvars, typval_T *rettv));
719static void f_values __ARGS((typval_T *argvars, typval_T *rettv));
720static void f_virtcol __ARGS((typval_T *argvars, typval_T *rettv));
721static void f_visualmode __ARGS((typval_T *argvars, typval_T *rettv));
722static void f_winbufnr __ARGS((typval_T *argvars, typval_T *rettv));
723static void f_wincol __ARGS((typval_T *argvars, typval_T *rettv));
724static void f_winheight __ARGS((typval_T *argvars, typval_T *rettv));
725static void f_winline __ARGS((typval_T *argvars, typval_T *rettv));
726static void f_winnr __ARGS((typval_T *argvars, typval_T *rettv));
727static void f_winrestcmd __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar768b8c42006-03-04 21:58:33 +0000728static void f_winrestview __ARGS((typval_T *argvars, typval_T *rettv));
729static void f_winsaveview __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000730static void f_winwidth __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000731static void f_writefile __ARGS((typval_T *argvars, typval_T *rettv));
Bram Moolenaar33570922005-01-25 22:26:29 +0000732
Bram Moolenaar0e34f622006-03-03 23:00:03 +0000733static int list2fpos __ARGS((typval_T *arg, pos_T *posp, int *fnump));
Bram Moolenaar477933c2007-07-17 14:32:23 +0000734static pos_T *var2fpos __ARGS((typval_T *varp, int dollar_lnum, int *fnum));
Bram Moolenaar33570922005-01-25 22:26:29 +0000735static int get_env_len __ARGS((char_u **arg));
736static int get_id_len __ARGS((char_u **arg));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000737static int get_name_len __ARGS((char_u **arg, char_u **alias, int evaluate, int verbose));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000738static char_u *find_name_end __ARGS((char_u *arg, char_u **expr_start, char_u **expr_end, int flags));
739#define FNE_INCL_BR 1 /* find_name_end(): include [] in name */
740#define FNE_CHECK_START 2 /* find_name_end(): check name starts with
741 valid character */
Bram Moolenaara40058a2005-07-11 22:42:07 +0000742static char_u * make_expanded_name __ARGS((char_u *in_start, char_u *expr_start, char_u *expr_end, char_u *in_end));
Bram Moolenaar33570922005-01-25 22:26:29 +0000743static int eval_isnamec __ARGS((int c));
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000744static int eval_isnamec1 __ARGS((int c));
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000745static int get_var_tv __ARGS((char_u *name, int len, typval_T *rettv, int verbose));
746static int handle_subscript __ARGS((char_u **arg, typval_T *rettv, int evaluate, int verbose));
Bram Moolenaar33570922005-01-25 22:26:29 +0000747static typval_T *alloc_tv __ARGS((void));
748static typval_T *alloc_string_tv __ARGS((char_u *string));
Bram Moolenaar33570922005-01-25 22:26:29 +0000749static void init_tv __ARGS((typval_T *varp));
750static long get_tv_number __ARGS((typval_T *varp));
751static linenr_T get_tv_lnum __ARGS((typval_T *argvars));
Bram Moolenaar661b1822005-07-28 22:36:45 +0000752static linenr_T get_tv_lnum_buf __ARGS((typval_T *argvars, buf_T *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000753static char_u *get_tv_string __ARGS((typval_T *varp));
754static char_u *get_tv_string_buf __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000755static char_u *get_tv_string_buf_chk __ARGS((typval_T *varp, char_u *buf));
Bram Moolenaar33570922005-01-25 22:26:29 +0000756static dictitem_T *find_var __ARGS((char_u *name, hashtab_T **htp));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000757static dictitem_T *find_var_in_ht __ARGS((hashtab_T *ht, char_u *varname, int writing));
Bram Moolenaar33570922005-01-25 22:26:29 +0000758static hashtab_T *find_var_ht __ARGS((char_u *name, char_u **varname));
759static void vars_clear_ext __ARGS((hashtab_T *ht, int free_val));
760static void delete_var __ARGS((hashtab_T *ht, hashitem_T *hi));
Bram Moolenaar7d61a922007-08-30 09:12:23 +0000761static void list_one_var __ARGS((dictitem_T *v, char_u *prefix, int *first));
762static void list_one_var_a __ARGS((char_u *prefix, char_u *name, int type, char_u *string, int *first));
Bram Moolenaar33570922005-01-25 22:26:29 +0000763static void set_var __ARGS((char_u *name, typval_T *varp, int copy));
764static int var_check_ro __ARGS((int flags, char_u *name));
Bram Moolenaar4e957af2006-09-02 11:41:07 +0000765static int var_check_fixed __ARGS((int flags, char_u *name));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +0000766static int tv_check_lock __ARGS((int lock, char_u *name));
Bram Moolenaar33570922005-01-25 22:26:29 +0000767static void copy_tv __ARGS((typval_T *from, typval_T *to));
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000768static int item_copy __ARGS((typval_T *from, typval_T *to, int deep, int copyID));
Bram Moolenaar33570922005-01-25 22:26:29 +0000769static char_u *find_option_end __ARGS((char_u **arg, int *opt_flags));
770static char_u *trans_function_name __ARGS((char_u **pp, int skip, int flags, funcdict_T *fd));
771static int eval_fname_script __ARGS((char_u *p));
772static int eval_fname_sid __ARGS((char_u *p));
773static void list_func_head __ARGS((ufunc_T *fp, int indent));
Bram Moolenaar33570922005-01-25 22:26:29 +0000774static ufunc_T *find_func __ARGS((char_u *name));
775static int function_exists __ARGS((char_u *name));
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +0000776static int builtin_function __ARGS((char_u *name));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000777#ifdef FEAT_PROFILE
778static void func_do_profile __ARGS((ufunc_T *fp));
Bram Moolenaar73830342005-02-28 22:48:19 +0000779static void prof_sort_list __ARGS((FILE *fd, ufunc_T **sorttab, int st_len, char *title, int prefer_self));
780static void prof_func_line __ARGS((FILE *fd, int count, proftime_T *total, proftime_T *self, int prefer_self));
781static int
782# ifdef __BORLANDC__
783 _RTLENTRYF
784# endif
785 prof_total_cmp __ARGS((const void *s1, const void *s2));
786static int
787# ifdef __BORLANDC__
788 _RTLENTRYF
789# endif
790 prof_self_cmp __ARGS((const void *s1, const void *s2));
Bram Moolenaar05159a02005-02-26 23:04:13 +0000791#endif
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000792static int script_autoload __ARGS((char_u *name, int reload));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000793static char_u *autoload_name __ARGS((char_u *name));
Bram Moolenaara40058a2005-07-11 22:42:07 +0000794static void cat_func_name __ARGS((char_u *buf, ufunc_T *fp));
Bram Moolenaar33570922005-01-25 22:26:29 +0000795static void func_free __ARGS((ufunc_T *fp));
796static void func_unref __ARGS((char_u *name));
797static void func_ref __ARGS((char_u *name));
798static void call_user_func __ARGS((ufunc_T *fp, int argcount, typval_T *argvars, typval_T *rettv, linenr_T firstline, linenr_T lastline, dict_T *selfdict));
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +0000799static int can_free_funccal __ARGS((funccall_T *fc, int copyID)) ;
800static void free_funccal __ARGS((funccall_T *fc, int free_val));
Bram Moolenaar33570922005-01-25 22:26:29 +0000801static void add_nr_var __ARGS((dict_T *dp, dictitem_T *v, char *name, varnumber_T nr));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000802static win_T *find_win_by_nr __ARGS((typval_T *vp, tabpage_T *tp));
803static void getwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +0000804static int searchpair_cmn __ARGS((typval_T *argvars, pos_T *match_pos));
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000805static int search_cmn __ARGS((typval_T *argvars, pos_T *match_pos, int *flagsp));
Bram Moolenaar99ebf042006-04-15 20:28:54 +0000806static void setwinvar __ARGS((typval_T *argvars, typval_T *rettv, int off));
Bram Moolenaar33570922005-01-25 22:26:29 +0000807
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000808/* Character used as separated in autoload function/variable names. */
809#define AUTOLOAD_CHAR '#'
810
Bram Moolenaar33570922005-01-25 22:26:29 +0000811/*
812 * Initialize the global and v: variables.
Bram Moolenaara7043832005-01-21 11:56:39 +0000813 */
814 void
815eval_init()
816{
Bram Moolenaar33570922005-01-25 22:26:29 +0000817 int i;
818 struct vimvar *p;
819
820 init_var_dict(&globvardict, &globvars_var);
821 init_var_dict(&vimvardict, &vimvars_var);
Bram Moolenaar532c7802005-01-27 14:44:31 +0000822 hash_init(&compat_hashtab);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000823 hash_init(&func_hashtab);
Bram Moolenaar33570922005-01-25 22:26:29 +0000824
825 for (i = 0; i < VV_LEN; ++i)
826 {
827 p = &vimvars[i];
828 STRCPY(p->vv_di.di_key, p->vv_name);
829 if (p->vv_flags & VV_RO)
830 p->vv_di.di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
831 else if (p->vv_flags & VV_RO_SBX)
832 p->vv_di.di_flags = DI_FLAGS_RO_SBX | DI_FLAGS_FIX;
833 else
834 p->vv_di.di_flags = DI_FLAGS_FIX;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +0000835
836 /* add to v: scope dict, unless the value is not always available */
837 if (p->vv_type != VAR_UNKNOWN)
838 hash_add(&vimvarht, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000839 if (p->vv_flags & VV_COMPAT)
Bram Moolenaar532c7802005-01-27 14:44:31 +0000840 /* add to compat scope dict */
841 hash_add(&compat_hashtab, p->vv_di.di_key);
Bram Moolenaar33570922005-01-25 22:26:29 +0000842 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000843 set_vim_var_nr(VV_SEARCHFORWARD, 1L);
Bram Moolenaara7043832005-01-21 11:56:39 +0000844}
845
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000846#if defined(EXITFREE) || defined(PROTO)
847 void
848eval_clear()
849{
850 int i;
851 struct vimvar *p;
852
853 for (i = 0; i < VV_LEN; ++i)
854 {
855 p = &vimvars[i];
856 if (p->vv_di.di_tv.v_type == VAR_STRING)
Bram Moolenaard9fba312005-06-26 22:34:35 +0000857 {
Bram Moolenaar12193212008-11-09 16:22:01 +0000858 vim_free(p->vv_str);
859 p->vv_str = NULL;
Bram Moolenaard812df62008-11-09 12:46:09 +0000860 }
861 else if (p->vv_di.di_tv.v_type == VAR_LIST)
862 {
863 list_unref(p->vv_list);
864 p->vv_list = NULL;
Bram Moolenaard9fba312005-06-26 22:34:35 +0000865 }
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000866 }
867 hash_clear(&vimvarht);
Bram Moolenaar0f71c6d2008-11-12 14:29:28 +0000868 hash_init(&vimvarht); /* garbage_collect() will access it */
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000869 hash_clear(&compat_hashtab);
870
871 /* script-local variables */
872 for (i = 1; i <= ga_scripts.ga_len; ++i)
873 vars_clear(&SCRIPT_VARS(i));
874 ga_clear(&ga_scripts);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000875 free_scriptnames();
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000876
877 /* global variables */
878 vars_clear(&globvarht);
Bram Moolenaard9fba312005-06-26 22:34:35 +0000879
Bram Moolenaaraa35dd12006-04-29 22:03:41 +0000880 /* autoloaded script names */
881 ga_clear_strings(&ga_loaded);
882
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +0000883 /* unreferenced lists and dicts */
884 (void)garbage_collect();
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000885
886 /* functions */
887 free_all_functions();
888 hash_clear(&func_hashtab);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +0000889}
890#endif
891
Bram Moolenaar9ef486d2005-01-17 22:23:00 +0000892/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 * Return the name of the executed function.
894 */
895 char_u *
896func_name(cookie)
897 void *cookie;
898{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000899 return ((funccall_T *)cookie)->func->uf_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900}
901
902/*
903 * Return the address holding the next breakpoint line for a funccall cookie.
904 */
905 linenr_T *
906func_breakpoint(cookie)
907 void *cookie;
908{
Bram Moolenaar33570922005-01-25 22:26:29 +0000909 return &((funccall_T *)cookie)->breakpoint;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910}
911
912/*
913 * Return the address holding the debug tick for a funccall cookie.
914 */
915 int *
916func_dbg_tick(cookie)
917 void *cookie;
918{
Bram Moolenaar33570922005-01-25 22:26:29 +0000919 return &((funccall_T *)cookie)->dbg_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920}
921
922/*
923 * Return the nesting level for a funccall cookie.
924 */
925 int
926func_level(cookie)
927 void *cookie;
928{
Bram Moolenaar33570922005-01-25 22:26:29 +0000929 return ((funccall_T *)cookie)->level;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930}
931
932/* pointer to funccal for currently active function */
Bram Moolenaar33570922005-01-25 22:26:29 +0000933funccall_T *current_funccal = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +0000935/* pointer to list of previously used funccal, still around because some
936 * item in it is still being used. */
937funccall_T *previous_funccal = NULL;
938
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939/*
940 * Return TRUE when a function was ended by a ":return" command.
941 */
942 int
943current_func_returned()
944{
945 return current_funccal->returned;
946}
947
948
949/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 * Set an internal variable to a string value. Creates the variable if it does
951 * not already exist.
952 */
953 void
954set_internal_string_var(name, value)
955 char_u *name;
956 char_u *value;
957{
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000958 char_u *val;
Bram Moolenaar33570922005-01-25 22:26:29 +0000959 typval_T *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960
961 val = vim_strsave(value);
962 if (val != NULL)
963 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000964 tvp = alloc_string_tv(val);
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000965 if (tvp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +0000967 set_var(name, tvp, FALSE);
Bram Moolenaarc70646c2005-01-04 21:52:38 +0000968 free_tv(tvp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969 }
970 }
971}
972
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000973static lval_T *redir_lval = NULL;
Bram Moolenaar863b53b2007-01-14 14:28:34 +0000974static garray_T redir_ga; /* only valid when redir_lval is not NULL */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000975static char_u *redir_endp = NULL;
976static char_u *redir_varname = NULL;
977
978/*
979 * Start recording command output to a variable
980 * Returns OK if successfully completed the setup. FAIL otherwise.
981 */
982 int
983var_redir_start(name, append)
984 char_u *name;
985 int append; /* append to an existing variable */
986{
987 int save_emsg;
988 int err;
989 typval_T tv;
990
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +0000991 /* Catch a bad name early. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +0000992 if (!eval_isnamec1(*name))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000993 {
994 EMSG(_(e_invarg));
995 return FAIL;
996 }
997
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +0000998 /* Make a copy of the name, it is used in redir_lval until redir ends. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000999 redir_varname = vim_strsave(name);
1000 if (redir_varname == NULL)
1001 return FAIL;
1002
1003 redir_lval = (lval_T *)alloc_clear((unsigned)sizeof(lval_T));
1004 if (redir_lval == NULL)
1005 {
1006 var_redir_stop();
1007 return FAIL;
1008 }
1009
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001010 /* The output is stored in growarray "redir_ga" until redirection ends. */
1011 ga_init2(&redir_ga, (int)sizeof(char), 500);
1012
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001013 /* Parse the variable name (can be a dict or list entry). */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00001014 redir_endp = get_lval(redir_varname, NULL, redir_lval, FALSE, FALSE, FALSE,
1015 FNE_CHECK_START);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001016 if (redir_endp == NULL || redir_lval->ll_name == NULL || *redir_endp != NUL)
1017 {
1018 if (redir_endp != NULL && *redir_endp != NUL)
1019 /* Trailing characters are present after the variable name */
1020 EMSG(_(e_trailing));
1021 else
1022 EMSG(_(e_invarg));
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001023 redir_endp = NULL; /* don't store a value, only cleanup */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001024 var_redir_stop();
1025 return FAIL;
1026 }
1027
1028 /* check if we can write to the variable: set it to or append an empty
1029 * string */
1030 save_emsg = did_emsg;
1031 did_emsg = FALSE;
1032 tv.v_type = VAR_STRING;
1033 tv.vval.v_string = (char_u *)"";
1034 if (append)
1035 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)".");
1036 else
1037 set_var_lval(redir_lval, redir_endp, &tv, TRUE, (char_u *)"=");
1038 err = did_emsg;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00001039 did_emsg |= save_emsg;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001040 if (err)
1041 {
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001042 redir_endp = NULL; /* don't store a value, only cleanup */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001043 var_redir_stop();
1044 return FAIL;
1045 }
1046 if (redir_lval->ll_newkey != NULL)
1047 {
1048 /* Dictionary item was created, don't do it again. */
1049 vim_free(redir_lval->ll_newkey);
1050 redir_lval->ll_newkey = NULL;
1051 }
1052
1053 return OK;
1054}
1055
1056/*
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001057 * Append "value[value_len]" to the variable set by var_redir_start().
1058 * The actual appending is postponed until redirection ends, because the value
1059 * appended may in fact be the string we write to, changing it may cause freed
1060 * memory to be used:
1061 * :redir => foo
1062 * :let foo
1063 * :redir END
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001064 */
1065 void
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001066var_redir_str(value, value_len)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001067 char_u *value;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001068 int value_len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001069{
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001070 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001071
1072 if (redir_lval == NULL)
1073 return;
1074
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001075 if (value_len == -1)
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001076 len = (int)STRLEN(value); /* Append the entire string */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001077 else
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001078 len = value_len; /* Append only "value_len" characters */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001079
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001080 if (ga_grow(&redir_ga, len) == OK)
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001081 {
1082 mch_memmove((char *)redir_ga.ga_data + redir_ga.ga_len, value, len);
Bram Moolenaar5fdec472007-07-24 08:45:13 +00001083 redir_ga.ga_len += len;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001084 }
1085 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001086 var_redir_stop();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001087}
1088
1089/*
1090 * Stop redirecting command output to a variable.
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001091 * Frees the allocated memory.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001092 */
1093 void
1094var_redir_stop()
1095{
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001096 typval_T tv;
1097
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001098 if (redir_lval != NULL)
1099 {
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001100 /* If there was no error: assign the text to the variable. */
1101 if (redir_endp != NULL)
1102 {
1103 ga_append(&redir_ga, NUL); /* Append the trailing NUL. */
1104 tv.v_type = VAR_STRING;
1105 tv.vval.v_string = redir_ga.ga_data;
1106 set_var_lval(redir_lval, redir_endp, &tv, FALSE, (char_u *)".");
1107 }
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001108
Bram Moolenaar2f59b5c2009-11-03 13:26:55 +00001109 /* free the collected output */
1110 vim_free(redir_ga.ga_data);
1111 redir_ga.ga_data = NULL;
Bram Moolenaar863b53b2007-01-14 14:28:34 +00001112
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001113 clear_lval(redir_lval);
1114 vim_free(redir_lval);
1115 redir_lval = NULL;
1116 }
1117 vim_free(redir_varname);
1118 redir_varname = NULL;
1119}
1120
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121# if defined(FEAT_MBYTE) || defined(PROTO)
1122 int
1123eval_charconvert(enc_from, enc_to, fname_from, fname_to)
1124 char_u *enc_from;
1125 char_u *enc_to;
1126 char_u *fname_from;
1127 char_u *fname_to;
1128{
1129 int err = FALSE;
1130
1131 set_vim_var_string(VV_CC_FROM, enc_from, -1);
1132 set_vim_var_string(VV_CC_TO, enc_to, -1);
1133 set_vim_var_string(VV_FNAME_IN, fname_from, -1);
1134 set_vim_var_string(VV_FNAME_OUT, fname_to, -1);
1135 if (eval_to_bool(p_ccv, &err, NULL, FALSE))
1136 err = TRUE;
1137 set_vim_var_string(VV_CC_FROM, NULL, -1);
1138 set_vim_var_string(VV_CC_TO, NULL, -1);
1139 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1140 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1141
1142 if (err)
1143 return FAIL;
1144 return OK;
1145}
1146# endif
1147
1148# if defined(FEAT_POSTSCRIPT) || defined(PROTO)
1149 int
1150eval_printexpr(fname, args)
1151 char_u *fname;
1152 char_u *args;
1153{
1154 int err = FALSE;
1155
1156 set_vim_var_string(VV_FNAME_IN, fname, -1);
1157 set_vim_var_string(VV_CMDARG, args, -1);
1158 if (eval_to_bool(p_pexpr, &err, NULL, FALSE))
1159 err = TRUE;
1160 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1161 set_vim_var_string(VV_CMDARG, NULL, -1);
1162
1163 if (err)
1164 {
1165 mch_remove(fname);
1166 return FAIL;
1167 }
1168 return OK;
1169}
1170# endif
1171
1172# if defined(FEAT_DIFF) || defined(PROTO)
1173 void
1174eval_diff(origfile, newfile, outfile)
1175 char_u *origfile;
1176 char_u *newfile;
1177 char_u *outfile;
1178{
1179 int err = FALSE;
1180
1181 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1182 set_vim_var_string(VV_FNAME_NEW, newfile, -1);
1183 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1184 (void)eval_to_bool(p_dex, &err, NULL, FALSE);
1185 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1186 set_vim_var_string(VV_FNAME_NEW, NULL, -1);
1187 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1188}
1189
1190 void
1191eval_patch(origfile, difffile, outfile)
1192 char_u *origfile;
1193 char_u *difffile;
1194 char_u *outfile;
1195{
1196 int err;
1197
1198 set_vim_var_string(VV_FNAME_IN, origfile, -1);
1199 set_vim_var_string(VV_FNAME_DIFF, difffile, -1);
1200 set_vim_var_string(VV_FNAME_OUT, outfile, -1);
1201 (void)eval_to_bool(p_pex, &err, NULL, FALSE);
1202 set_vim_var_string(VV_FNAME_IN, NULL, -1);
1203 set_vim_var_string(VV_FNAME_DIFF, NULL, -1);
1204 set_vim_var_string(VV_FNAME_OUT, NULL, -1);
1205}
1206# endif
1207
1208/*
1209 * Top level evaluation function, returning a boolean.
1210 * Sets "error" to TRUE if there was an error.
1211 * Return TRUE or FALSE.
1212 */
1213 int
1214eval_to_bool(arg, error, nextcmd, skip)
1215 char_u *arg;
1216 int *error;
1217 char_u **nextcmd;
1218 int skip; /* only parse, don't execute */
1219{
Bram Moolenaar33570922005-01-25 22:26:29 +00001220 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 int retval = FALSE;
1222
1223 if (skip)
1224 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001225 if (eval0(arg, &tv, nextcmd, !skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 *error = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 else
1228 {
1229 *error = FALSE;
1230 if (!skip)
1231 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001232 retval = (get_tv_number_chk(&tv, error) != 0);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001233 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 }
1235 }
1236 if (skip)
1237 --emsg_skip;
1238
1239 return retval;
1240}
1241
1242/*
1243 * Top level evaluation function, returning a string. If "skip" is TRUE,
1244 * only parsing to "nextcmd" is done, without reporting errors. Return
1245 * pointer to allocated memory, or NULL for failure or when "skip" is TRUE.
1246 */
1247 char_u *
1248eval_to_string_skip(arg, nextcmd, skip)
1249 char_u *arg;
1250 char_u **nextcmd;
1251 int skip; /* only parse, don't execute */
1252{
Bram Moolenaar33570922005-01-25 22:26:29 +00001253 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 char_u *retval;
1255
1256 if (skip)
1257 ++emsg_skip;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001258 if (eval0(arg, &tv, nextcmd, !skip) == FAIL || skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259 retval = NULL;
1260 else
1261 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001262 retval = vim_strsave(get_tv_string(&tv));
1263 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 }
1265 if (skip)
1266 --emsg_skip;
1267
1268 return retval;
1269}
1270
1271/*
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001272 * Skip over an expression at "*pp".
1273 * Return FAIL for an error, OK otherwise.
1274 */
1275 int
1276skip_expr(pp)
1277 char_u **pp;
1278{
Bram Moolenaar33570922005-01-25 22:26:29 +00001279 typval_T rettv;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001280
1281 *pp = skipwhite(*pp);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001282 return eval1(pp, &rettv, FALSE);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00001283}
1284
1285/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 * Top level evaluation function, returning a string.
Bram Moolenaara85fb752008-09-07 11:55:43 +00001287 * When "convert" is TRUE convert a List into a sequence of lines and convert
1288 * a Float to a String.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 * Return pointer to allocated memory, or NULL for failure.
1290 */
1291 char_u *
Bram Moolenaara85fb752008-09-07 11:55:43 +00001292eval_to_string(arg, nextcmd, convert)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 char_u *arg;
1294 char_u **nextcmd;
Bram Moolenaara85fb752008-09-07 11:55:43 +00001295 int convert;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296{
Bram Moolenaar33570922005-01-25 22:26:29 +00001297 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 char_u *retval;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001299 garray_T ga;
Bram Moolenaar798b30b2009-04-22 10:56:16 +00001300#ifdef FEAT_FLOAT
Bram Moolenaara85fb752008-09-07 11:55:43 +00001301 char_u numbuf[NUMBUFLEN];
Bram Moolenaar798b30b2009-04-22 10:56:16 +00001302#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001304 if (eval0(arg, &tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 retval = NULL;
1306 else
1307 {
Bram Moolenaara85fb752008-09-07 11:55:43 +00001308 if (convert && tv.v_type == VAR_LIST)
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001309 {
1310 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001311 if (tv.vval.v_list != NULL)
1312 list_join(&ga, tv.vval.v_list, (char_u *)"\n", TRUE, 0);
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001313 ga_append(&ga, NUL);
1314 retval = (char_u *)ga.ga_data;
1315 }
Bram Moolenaara85fb752008-09-07 11:55:43 +00001316#ifdef FEAT_FLOAT
1317 else if (convert && tv.v_type == VAR_FLOAT)
1318 {
1319 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv.vval.v_float);
1320 retval = vim_strsave(numbuf);
1321 }
1322#endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001323 else
1324 retval = vim_strsave(get_tv_string(&tv));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001325 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 }
1327
1328 return retval;
1329}
1330
1331/*
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001332 * Call eval_to_string() without using current local variables and using
1333 * textlock. When "use_sandbox" is TRUE use the sandbox.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 */
1335 char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001336eval_to_string_safe(arg, nextcmd, use_sandbox)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 char_u *arg;
1338 char_u **nextcmd;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001339 int use_sandbox;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340{
1341 char_u *retval;
1342 void *save_funccalp;
1343
1344 save_funccalp = save_funccal();
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001345 if (use_sandbox)
1346 ++sandbox;
1347 ++textlock;
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001348 retval = eval_to_string(arg, nextcmd, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001349 if (use_sandbox)
1350 --sandbox;
1351 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 restore_funccal(save_funccalp);
1353 return retval;
1354}
1355
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356/*
1357 * Top level evaluation function, returning a number.
1358 * Evaluates "expr" silently.
1359 * Returns -1 for an error.
1360 */
1361 int
1362eval_to_number(expr)
1363 char_u *expr;
1364{
Bram Moolenaar33570922005-01-25 22:26:29 +00001365 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 int retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00001367 char_u *p = skipwhite(expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368
1369 ++emsg_off;
1370
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001371 if (eval1(&p, &rettv, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 retval = -1;
1373 else
1374 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001375 retval = get_tv_number_chk(&rettv, NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001376 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 }
1378 --emsg_off;
1379
1380 return retval;
1381}
1382
Bram Moolenaara40058a2005-07-11 22:42:07 +00001383/*
1384 * Prepare v: variable "idx" to be used.
1385 * Save the current typeval in "save_tv".
1386 * When not used yet add the variable to the v: hashtable.
1387 */
1388 static void
1389prepare_vimvar(idx, save_tv)
1390 int idx;
1391 typval_T *save_tv;
1392{
1393 *save_tv = vimvars[idx].vv_tv;
1394 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1395 hash_add(&vimvarht, vimvars[idx].vv_di.di_key);
1396}
1397
1398/*
1399 * Restore v: variable "idx" to typeval "save_tv".
1400 * When no longer defined, remove the variable from the v: hashtable.
1401 */
1402 static void
1403restore_vimvar(idx, save_tv)
1404 int idx;
1405 typval_T *save_tv;
1406{
1407 hashitem_T *hi;
1408
Bram Moolenaara40058a2005-07-11 22:42:07 +00001409 vimvars[idx].vv_tv = *save_tv;
1410 if (vimvars[idx].vv_type == VAR_UNKNOWN)
1411 {
1412 hi = hash_find(&vimvarht, vimvars[idx].vv_di.di_key);
1413 if (HASHITEM_EMPTY(hi))
1414 EMSG2(_(e_intern2), "restore_vimvar()");
1415 else
1416 hash_remove(&vimvarht, hi);
1417 }
1418}
1419
Bram Moolenaar3c56a962006-03-12 22:19:04 +00001420#if defined(FEAT_SPELL) || defined(PROTO)
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001421/*
1422 * Evaluate an expression to a list with suggestions.
1423 * For the "expr:" part of 'spellsuggest'.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001424 * Returns NULL when there is an error.
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001425 */
1426 list_T *
1427eval_spell_expr(badword, expr)
1428 char_u *badword;
1429 char_u *expr;
1430{
1431 typval_T save_val;
1432 typval_T rettv;
1433 list_T *list = NULL;
1434 char_u *p = skipwhite(expr);
1435
1436 /* Set "v:val" to the bad word. */
1437 prepare_vimvar(VV_VAL, &save_val);
1438 vimvars[VV_VAL].vv_type = VAR_STRING;
1439 vimvars[VV_VAL].vv_str = badword;
1440 if (p_verbose == 0)
1441 ++emsg_off;
1442
1443 if (eval1(&p, &rettv, TRUE) == OK)
1444 {
1445 if (rettv.v_type != VAR_LIST)
1446 clear_tv(&rettv);
1447 else
1448 list = rettv.vval.v_list;
1449 }
1450
1451 if (p_verbose == 0)
1452 --emsg_off;
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001453 restore_vimvar(VV_VAL, &save_val);
1454
1455 return list;
1456}
1457
1458/*
1459 * "list" is supposed to contain two items: a word and a number. Return the
1460 * word in "pp" and the number as the return value.
1461 * Return -1 if anything isn't right.
1462 * Used to get the good word and score from the eval_spell_expr() result.
1463 */
1464 int
1465get_spellword(list, pp)
1466 list_T *list;
1467 char_u **pp;
1468{
1469 listitem_T *li;
1470
1471 li = list->lv_first;
1472 if (li == NULL)
1473 return -1;
1474 *pp = get_tv_string(&li->li_tv);
1475
1476 li = li->li_next;
1477 if (li == NULL)
1478 return -1;
1479 return get_tv_number(&li->li_tv);
1480}
1481#endif
1482
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001483/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00001484 * Top level evaluation function.
1485 * Returns an allocated typval_T with the result.
1486 * Returns NULL when there is an error.
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001487 */
1488 typval_T *
1489eval_expr(arg, nextcmd)
1490 char_u *arg;
1491 char_u **nextcmd;
1492{
1493 typval_T *tv;
1494
1495 tv = (typval_T *)alloc(sizeof(typval_T));
Bram Moolenaar4770d092006-01-12 23:22:24 +00001496 if (tv != NULL && eval0(arg, tv, nextcmd, TRUE) == FAIL)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001497 {
1498 vim_free(tv);
Bram Moolenaar4770d092006-01-12 23:22:24 +00001499 tv = NULL;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001500 }
1501
1502 return tv;
1503}
1504
1505
Bram Moolenaar4f688582007-07-24 12:34:30 +00001506#if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) \
1507 || defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001508/*
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001509 * Call some vimL function and return the result in "*rettv".
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001510 * Uses argv[argc] for the function arguments. Only Number and String
1511 * arguments are currently supported.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001512 * Returns OK or FAIL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001514 static int
1515call_vim_function(func, argc, argv, safe, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 char_u *func;
1517 int argc;
1518 char_u **argv;
1519 int safe; /* use the sandbox */
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001520 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521{
Bram Moolenaar33570922005-01-25 22:26:29 +00001522 typval_T *argvars;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 long n;
1524 int len;
1525 int i;
1526 int doesrange;
1527 void *save_funccalp = NULL;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001528 int ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001530 argvars = (typval_T *)alloc((unsigned)((argc + 1) * sizeof(typval_T)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 if (argvars == NULL)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001532 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533
1534 for (i = 0; i < argc; i++)
1535 {
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001536 /* Pass a NULL or empty argument as an empty string */
1537 if (argv[i] == NULL || *argv[i] == NUL)
1538 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001539 argvars[i].v_type = VAR_STRING;
1540 argvars[i].vval.v_string = (char_u *)"";
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001541 continue;
1542 }
1543
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544 /* Recognize a number argument, the others must be strings. */
1545 vim_str2nr(argv[i], NULL, &len, TRUE, TRUE, &n, NULL);
1546 if (len != 0 && len == (int)STRLEN(argv[i]))
1547 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001548 argvars[i].v_type = VAR_NUMBER;
1549 argvars[i].vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 }
1551 else
1552 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00001553 argvars[i].v_type = VAR_STRING;
1554 argvars[i].vval.v_string = argv[i];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 }
1556 }
1557
1558 if (safe)
1559 {
1560 save_funccalp = save_funccal();
1561 ++sandbox;
1562 }
1563
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001564 rettv->v_type = VAR_UNKNOWN; /* clear_tv() uses this */
1565 ret = call_func(func, (int)STRLEN(func), rettv, argc, argvars,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001567 &doesrange, TRUE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 if (safe)
1569 {
1570 --sandbox;
1571 restore_funccal(save_funccalp);
1572 }
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001573 vim_free(argvars);
1574
1575 if (ret == FAIL)
1576 clear_tv(rettv);
1577
1578 return ret;
1579}
1580
Bram Moolenaar4f688582007-07-24 12:34:30 +00001581# if (defined(FEAT_USR_CMDS) && defined(FEAT_CMDL_COMPL)) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001582/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001583 * Call vimL function "func" and return the result as a string.
1584 * Returns NULL when calling the function fails.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001585 * Uses argv[argc] for the function arguments.
1586 */
1587 void *
1588call_func_retstr(func, argc, argv, safe)
1589 char_u *func;
1590 int argc;
1591 char_u **argv;
1592 int safe; /* use the sandbox */
1593{
1594 typval_T rettv;
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001595 char_u *retval;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001596
1597 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1598 return NULL;
1599
1600 retval = vim_strsave(get_tv_string(&rettv));
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001601 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 return retval;
1603}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001604# endif
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001605
Bram Moolenaar4f688582007-07-24 12:34:30 +00001606# if defined(FEAT_COMPL_FUNC) || defined(PROTO)
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001607/*
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001608 * Call vimL function "func" and return the result as a number.
1609 * Returns -1 when calling the function fails.
1610 * Uses argv[argc] for the function arguments.
1611 */
1612 long
1613call_func_retnr(func, argc, argv, safe)
1614 char_u *func;
1615 int argc;
1616 char_u **argv;
1617 int safe; /* use the sandbox */
1618{
1619 typval_T rettv;
1620 long retval;
1621
1622 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1623 return -1;
1624
1625 retval = get_tv_number_chk(&rettv, NULL);
1626 clear_tv(&rettv);
1627 return retval;
1628}
Bram Moolenaar4f688582007-07-24 12:34:30 +00001629# endif
Bram Moolenaar25ceb222005-07-30 22:45:36 +00001630
1631/*
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001632 * Call vimL function "func" and return the result as a List.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001633 * Uses argv[argc] for the function arguments.
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00001634 * Returns NULL when there is something wrong.
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001635 */
1636 void *
1637call_func_retlist(func, argc, argv, safe)
1638 char_u *func;
1639 int argc;
1640 char_u **argv;
1641 int safe; /* use the sandbox */
1642{
1643 typval_T rettv;
1644
1645 if (call_vim_function(func, argc, argv, safe, &rettv) == FAIL)
1646 return NULL;
1647
1648 if (rettv.v_type != VAR_LIST)
1649 {
1650 clear_tv(&rettv);
1651 return NULL;
1652 }
1653
1654 return rettv.vval.v_list;
1655}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656#endif
1657
Bram Moolenaar4f688582007-07-24 12:34:30 +00001658
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659/*
1660 * Save the current function call pointer, and set it to NULL.
1661 * Used when executing autocommands and for ":source".
1662 */
1663 void *
1664save_funccal()
1665{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001666 funccall_T *fc = current_funccal;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 current_funccal = NULL;
1669 return (void *)fc;
1670}
1671
1672 void
Bram Moolenaar05159a02005-02-26 23:04:13 +00001673restore_funccal(vfc)
1674 void *vfc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675{
Bram Moolenaar05159a02005-02-26 23:04:13 +00001676 funccall_T *fc = (funccall_T *)vfc;
1677
1678 current_funccal = fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679}
1680
Bram Moolenaar05159a02005-02-26 23:04:13 +00001681#if defined(FEAT_PROFILE) || defined(PROTO)
1682/*
1683 * Prepare profiling for entering a child or something else that is not
1684 * counted for the script/function itself.
1685 * Should always be called in pair with prof_child_exit().
1686 */
1687 void
1688prof_child_enter(tm)
1689 proftime_T *tm; /* place to store waittime */
1690{
1691 funccall_T *fc = current_funccal;
1692
1693 if (fc != NULL && fc->func->uf_profiling)
1694 profile_start(&fc->prof_child);
1695 script_prof_save(tm);
1696}
1697
1698/*
1699 * Take care of time spent in a child.
1700 * Should always be called after prof_child_enter().
1701 */
1702 void
1703prof_child_exit(tm)
1704 proftime_T *tm; /* where waittime was stored */
1705{
1706 funccall_T *fc = current_funccal;
1707
1708 if (fc != NULL && fc->func->uf_profiling)
1709 {
1710 profile_end(&fc->prof_child);
1711 profile_sub_wait(tm, &fc->prof_child); /* don't count waiting time */
1712 profile_add(&fc->func->uf_tm_children, &fc->prof_child);
1713 profile_add(&fc->func->uf_tml_children, &fc->prof_child);
1714 }
1715 script_prof_restore(tm);
1716}
1717#endif
1718
1719
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720#ifdef FEAT_FOLDING
1721/*
1722 * Evaluate 'foldexpr'. Returns the foldlevel, and any character preceding
1723 * it in "*cp". Doesn't give error messages.
1724 */
1725 int
1726eval_foldexpr(arg, cp)
1727 char_u *arg;
1728 int *cp;
1729{
Bram Moolenaar33570922005-01-25 22:26:29 +00001730 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 int retval;
1732 char_u *s;
Bram Moolenaard1f56e62006-02-22 21:25:37 +00001733 int use_sandbox = was_set_insecurely((char_u *)"foldexpr",
1734 OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735
1736 ++emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001737 if (use_sandbox)
1738 ++sandbox;
1739 ++textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 *cp = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001741 if (eval0(arg, &tv, NULL, TRUE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 retval = 0;
1743 else
1744 {
1745 /* If the result is a number, just return the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001746 if (tv.v_type == VAR_NUMBER)
1747 retval = tv.vval.v_number;
Bram Moolenaar758711c2005-02-02 23:11:38 +00001748 else if (tv.v_type != VAR_STRING || tv.vval.v_string == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 retval = 0;
1750 else
1751 {
1752 /* If the result is a string, check if there is a non-digit before
1753 * the number. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001754 s = tv.vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 if (!VIM_ISDIGIT(*s) && *s != '-')
1756 *cp = *s++;
1757 retval = atol((char *)s);
1758 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001759 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 }
1761 --emsg_off;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00001762 if (use_sandbox)
1763 --sandbox;
1764 --textlock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765
1766 return retval;
1767}
1768#endif
1769
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001771 * ":let" list all variable values
1772 * ":let var1 var2" list variable values
1773 * ":let var = expr" assignment command.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001774 * ":let var += expr" assignment command.
1775 * ":let var -= expr" assignment command.
1776 * ":let var .= expr" assignment command.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001777 * ":let [var1, var2] = expr" unpack list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 */
1779 void
1780ex_let(eap)
1781 exarg_T *eap;
1782{
1783 char_u *arg = eap->arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001784 char_u *expr = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00001785 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 int i;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001787 int var_count = 0;
1788 int semicolon = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001789 char_u op[2];
Bram Moolenaardb552d602006-03-23 22:59:57 +00001790 char_u *argend;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001791 int first = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792
Bram Moolenaardb552d602006-03-23 22:59:57 +00001793 argend = skip_var_list(arg, &var_count, &semicolon);
1794 if (argend == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001795 return;
Bram Moolenaar76b92b22006-03-24 22:46:53 +00001796 if (argend > arg && argend[-1] == '.') /* for var.='str' */
1797 --argend;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001798 expr = vim_strchr(argend, '=');
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001799 if (expr == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001801 /*
1802 * ":let" without "=": list variables
1803 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001804 if (*arg == '[')
1805 EMSG(_(e_invarg));
1806 else if (!ends_excmd(*arg))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001807 /* ":let var1 var2" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001808 arg = list_arg_vars(eap, arg, &first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001809 else if (!eap->skip)
Bram Moolenaara7043832005-01-21 11:56:39 +00001810 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001811 /* ":let" */
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001812 list_glob_vars(&first);
1813 list_buf_vars(&first);
1814 list_win_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001815#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001816 list_tab_vars(&first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001817#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00001818 list_script_vars(&first);
1819 list_func_vars(&first);
1820 list_vim_vars(&first);
Bram Moolenaara7043832005-01-21 11:56:39 +00001821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001822 eap->nextcmd = check_nextcmd(arg);
1823 }
1824 else
1825 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001826 op[0] = '=';
1827 op[1] = NUL;
Bram Moolenaardb552d602006-03-23 22:59:57 +00001828 if (expr > argend)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001829 {
1830 if (vim_strchr((char_u *)"+-.", expr[-1]) != NULL)
1831 op[0] = expr[-1]; /* +=, -= or .= */
1832 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001833 expr = skipwhite(expr + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001834
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 if (eap->skip)
1836 ++emsg_skip;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001837 i = eval0(expr, &rettv, &eap->nextcmd, !eap->skip);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838 if (eap->skip)
1839 {
1840 if (i != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001841 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 --emsg_skip;
1843 }
1844 else if (i != FAIL)
1845 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001846 (void)ex_let_vars(eap->arg, &rettv, FALSE, semicolon, var_count,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001847 op);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00001848 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 }
1850 }
1851}
1852
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001853/*
1854 * Assign the typevalue "tv" to the variable or variables at "arg_start".
1855 * Handles both "var" with any type and "[var, var; var]" with a list type.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001856 * When "nextchars" is not NULL it points to a string with characters that
1857 * must appear after the variable(s). Use "+", "-" or "." for add, subtract
1858 * or concatenate.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001859 * Returns OK or FAIL;
1860 */
1861 static int
1862ex_let_vars(arg_start, tv, copy, semicolon, var_count, nextchars)
1863 char_u *arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001864 typval_T *tv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001865 int copy; /* copy values from "tv", don't move */
1866 int semicolon; /* from skip_var_list() */
1867 int var_count; /* from skip_var_list() */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001868 char_u *nextchars;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001869{
1870 char_u *arg = arg_start;
Bram Moolenaar33570922005-01-25 22:26:29 +00001871 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001872 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00001873 listitem_T *item;
1874 typval_T ltv;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001875
1876 if (*arg != '[')
1877 {
1878 /*
1879 * ":let var = expr" or ":for var in list"
1880 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001881 if (ex_let_one(arg, tv, copy, nextchars, nextchars) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001882 return FAIL;
1883 return OK;
1884 }
1885
1886 /*
1887 * ":let [v1, v2] = list" or ":for [v1, v2] in listlist"
1888 */
Bram Moolenaar758711c2005-02-02 23:11:38 +00001889 if (tv->v_type != VAR_LIST || (l = tv->vval.v_list) == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001890 {
1891 EMSG(_(e_listreq));
1892 return FAIL;
1893 }
1894
1895 i = list_len(l);
1896 if (semicolon == 0 && var_count < i)
1897 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001898 EMSG(_("E687: Less targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001899 return FAIL;
1900 }
1901 if (var_count - semicolon > i)
1902 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00001903 EMSG(_("E688: More targets than List items"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001904 return FAIL;
1905 }
1906
1907 item = l->lv_first;
1908 while (*arg != ']')
1909 {
1910 arg = skipwhite(arg + 1);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001911 arg = ex_let_one(arg, &item->li_tv, TRUE, (char_u *)",;]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001912 item = item->li_next;
1913 if (arg == NULL)
1914 return FAIL;
1915
1916 arg = skipwhite(arg);
1917 if (*arg == ';')
1918 {
1919 /* Put the rest of the list (may be empty) in the var after ';'.
1920 * Create a new list for this. */
1921 l = list_alloc();
1922 if (l == NULL)
1923 return FAIL;
1924 while (item != NULL)
1925 {
1926 list_append_tv(l, &item->li_tv);
1927 item = item->li_next;
1928 }
1929
1930 ltv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00001931 ltv.v_lock = 0;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001932 ltv.vval.v_list = l;
1933 l->lv_refcount = 1;
1934
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00001935 arg = ex_let_one(skipwhite(arg + 1), &ltv, FALSE,
1936 (char_u *)"]", nextchars);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001937 clear_tv(&ltv);
1938 if (arg == NULL)
1939 return FAIL;
1940 break;
1941 }
1942 else if (*arg != ',' && *arg != ']')
1943 {
1944 EMSG2(_(e_intern2), "ex_let_vars()");
1945 return FAIL;
1946 }
1947 }
1948
1949 return OK;
1950}
1951
1952/*
1953 * Skip over assignable variable "var" or list of variables "[var, var]".
1954 * Used for ":let varvar = expr" and ":for varvar in expr".
1955 * For "[var, var]" increment "*var_count" for each variable.
1956 * for "[var, var; var]" set "semicolon".
1957 * Return NULL for an error.
1958 */
1959 static char_u *
1960skip_var_list(arg, var_count, semicolon)
1961 char_u *arg;
1962 int *var_count;
1963 int *semicolon;
1964{
1965 char_u *p, *s;
1966
1967 if (*arg == '[')
1968 {
1969 /* "[var, var]": find the matching ']'. */
1970 p = arg;
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00001971 for (;;)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00001972 {
1973 p = skipwhite(p + 1); /* skip whites after '[', ';' or ',' */
1974 s = skip_var_one(p);
1975 if (s == p)
1976 {
1977 EMSG2(_(e_invarg2), p);
1978 return NULL;
1979 }
1980 ++*var_count;
1981
1982 p = skipwhite(s);
1983 if (*p == ']')
1984 break;
1985 else if (*p == ';')
1986 {
1987 if (*semicolon == 1)
1988 {
1989 EMSG(_("Double ; in list of variables"));
1990 return NULL;
1991 }
1992 *semicolon = 1;
1993 }
1994 else if (*p != ',')
1995 {
1996 EMSG2(_(e_invarg2), p);
1997 return NULL;
1998 }
1999 }
2000 return p + 1;
2001 }
2002 else
2003 return skip_var_one(arg);
2004}
2005
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002006/*
Bram Moolenaarbae0c162007-05-10 19:30:25 +00002007 * Skip one (assignable) variable name, including @r, $VAR, &option, d.key,
Bram Moolenaar92124a32005-06-17 22:03:40 +00002008 * l[idx].
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002009 */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002010 static char_u *
2011skip_var_one(arg)
2012 char_u *arg;
2013{
Bram Moolenaar92124a32005-06-17 22:03:40 +00002014 if (*arg == '@' && arg[1] != NUL)
2015 return arg + 2;
2016 return find_name_end(*arg == '$' || *arg == '&' ? arg + 1 : arg,
2017 NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002018}
2019
Bram Moolenaara7043832005-01-21 11:56:39 +00002020/*
Bram Moolenaar33570922005-01-25 22:26:29 +00002021 * List variables for hashtab "ht" with prefix "prefix".
2022 * If "empty" is TRUE also list NULL strings as empty strings.
Bram Moolenaara7043832005-01-21 11:56:39 +00002023 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002024 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002025list_hashtable_vars(ht, prefix, empty, first)
Bram Moolenaar33570922005-01-25 22:26:29 +00002026 hashtab_T *ht;
Bram Moolenaara7043832005-01-21 11:56:39 +00002027 char_u *prefix;
Bram Moolenaar33570922005-01-25 22:26:29 +00002028 int empty;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002029 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002030{
Bram Moolenaar33570922005-01-25 22:26:29 +00002031 hashitem_T *hi;
2032 dictitem_T *di;
Bram Moolenaara7043832005-01-21 11:56:39 +00002033 int todo;
2034
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002035 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +00002036 for (hi = ht->ht_array; todo > 0 && !got_int; ++hi)
2037 {
2038 if (!HASHITEM_EMPTY(hi))
2039 {
2040 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00002041 di = HI2DI(hi);
2042 if (empty || di->di_tv.v_type != VAR_STRING
2043 || di->di_tv.vval.v_string != NULL)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002044 list_one_var(di, prefix, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002045 }
2046 }
2047}
2048
2049/*
2050 * List global variables.
2051 */
2052 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002053list_glob_vars(first)
2054 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002055{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002056 list_hashtable_vars(&globvarht, (char_u *)"", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002057}
2058
2059/*
2060 * List buffer variables.
2061 */
2062 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002063list_buf_vars(first)
2064 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002065{
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002066 char_u numbuf[NUMBUFLEN];
2067
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002068 list_hashtable_vars(&curbuf->b_vars.dv_hashtab, (char_u *)"b:",
2069 TRUE, first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002070
2071 sprintf((char *)numbuf, "%ld", (long)curbuf->b_changedtick);
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002072 list_one_var_a((char_u *)"b:", (char_u *)"changedtick", VAR_NUMBER,
2073 numbuf, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002074}
2075
2076/*
2077 * List window variables.
2078 */
2079 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002080list_win_vars(first)
2081 int *first;
Bram Moolenaara7043832005-01-21 11:56:39 +00002082{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002083 list_hashtable_vars(&curwin->w_vars.dv_hashtab,
2084 (char_u *)"w:", TRUE, first);
Bram Moolenaara7043832005-01-21 11:56:39 +00002085}
2086
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002087#ifdef FEAT_WINDOWS
2088/*
2089 * List tab page variables.
2090 */
2091 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002092list_tab_vars(first)
2093 int *first;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002094{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002095 list_hashtable_vars(&curtab->tp_vars.dv_hashtab,
2096 (char_u *)"t:", TRUE, first);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002097}
2098#endif
2099
Bram Moolenaara7043832005-01-21 11:56:39 +00002100/*
2101 * List Vim variables.
2102 */
2103 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002104list_vim_vars(first)
2105 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002106{
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002107 list_hashtable_vars(&vimvarht, (char_u *)"v:", FALSE, first);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002108}
2109
2110/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002111 * List script-local variables, if there is a script.
2112 */
2113 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002114list_script_vars(first)
2115 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002116{
2117 if (current_SID > 0 && current_SID <= ga_scripts.ga_len)
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002118 list_hashtable_vars(&SCRIPT_VARS(current_SID),
2119 (char_u *)"s:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002120}
2121
2122/*
2123 * List function variables, if there is a function.
2124 */
2125 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002126list_func_vars(first)
2127 int *first;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002128{
2129 if (current_funccal != NULL)
2130 list_hashtable_vars(&current_funccal->l_vars.dv_hashtab,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002131 (char_u *)"l:", FALSE, first);
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00002132}
2133
2134/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002135 * List variables in "arg".
2136 */
2137 static char_u *
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002138list_arg_vars(eap, arg, first)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002139 exarg_T *eap;
2140 char_u *arg;
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002141 int *first;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002142{
2143 int error = FALSE;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002144 int len;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002145 char_u *name;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002146 char_u *name_start;
2147 char_u *arg_subsc;
2148 char_u *tofree;
2149 typval_T tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002150
2151 while (!ends_excmd(*arg) && !got_int)
2152 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002153 if (error || eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002154 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002155 arg = find_name_end(arg, NULL, NULL, FNE_INCL_BR | FNE_CHECK_START);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002156 if (!vim_iswhite(*arg) && !ends_excmd(*arg))
2157 {
2158 emsg_severe = TRUE;
2159 EMSG(_(e_trailing));
2160 break;
2161 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002162 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002163 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002164 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002165 /* get_name_len() takes care of expanding curly braces */
2166 name_start = name = arg;
2167 len = get_name_len(&arg, &tofree, TRUE, TRUE);
2168 if (len <= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002169 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002170 /* This is mainly to keep test 49 working: when expanding
2171 * curly braces fails overrule the exception error message. */
2172 if (len < 0 && !aborting())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002173 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002174 emsg_severe = TRUE;
2175 EMSG2(_(e_invarg2), arg);
2176 break;
2177 }
2178 error = TRUE;
2179 }
2180 else
2181 {
2182 if (tofree != NULL)
2183 name = tofree;
2184 if (get_var_tv(name, len, &tv, TRUE) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002185 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002186 else
2187 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002188 /* handle d.key, l[idx], f(expr) */
2189 arg_subsc = arg;
2190 if (handle_subscript(&arg, &tv, TRUE, TRUE) == FAIL)
Bram Moolenaara7043832005-01-21 11:56:39 +00002191 error = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002192 else
Bram Moolenaara7043832005-01-21 11:56:39 +00002193 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002194 if (arg == arg_subsc && len == 2 && name[1] == ':')
Bram Moolenaara7043832005-01-21 11:56:39 +00002195 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002196 switch (*name)
Bram Moolenaara7043832005-01-21 11:56:39 +00002197 {
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002198 case 'g': list_glob_vars(first); break;
2199 case 'b': list_buf_vars(first); break;
2200 case 'w': list_win_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002201#ifdef FEAT_WINDOWS
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002202 case 't': list_tab_vars(first); break;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002203#endif
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002204 case 'v': list_vim_vars(first); break;
2205 case 's': list_script_vars(first); break;
2206 case 'l': list_func_vars(first); break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002207 default:
2208 EMSG2(_("E738: Can't list variables for %s"), name);
Bram Moolenaara7043832005-01-21 11:56:39 +00002209 }
Bram Moolenaara7043832005-01-21 11:56:39 +00002210 }
2211 else
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002212 {
2213 char_u numbuf[NUMBUFLEN];
2214 char_u *tf;
2215 int c;
2216 char_u *s;
2217
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002218 s = echo_string(&tv, &tf, numbuf, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002219 c = *arg;
2220 *arg = NUL;
2221 list_one_var_a((char_u *)"",
2222 arg == arg_subsc ? name : name_start,
Bram Moolenaar7d61a922007-08-30 09:12:23 +00002223 tv.v_type,
2224 s == NULL ? (char_u *)"" : s,
2225 first);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002226 *arg = c;
2227 vim_free(tf);
2228 }
2229 clear_tv(&tv);
Bram Moolenaara7043832005-01-21 11:56:39 +00002230 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002231 }
2232 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002233
2234 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002235 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002236
2237 arg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002238 }
2239
2240 return arg;
2241}
2242
2243/*
2244 * Set one item of ":let var = expr" or ":let [v1, v2] = list" to its value.
2245 * Returns a pointer to the char just after the var name.
2246 * Returns NULL if there is an error.
2247 */
2248 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002249ex_let_one(arg, tv, copy, endchars, op)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002250 char_u *arg; /* points to variable name */
Bram Moolenaar33570922005-01-25 22:26:29 +00002251 typval_T *tv; /* value to assign to variable */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002252 int copy; /* copy value from "tv" */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002253 char_u *endchars; /* valid chars after variable name or NULL */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002254 char_u *op; /* "+", "-", "." or NULL*/
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002255{
2256 int c1;
2257 char_u *name;
2258 char_u *p;
2259 char_u *arg_end = NULL;
2260 int len;
2261 int opt_flags;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002262 char_u *tofree = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002263
2264 /*
2265 * ":let $VAR = expr": Set environment variable.
2266 */
2267 if (*arg == '$')
2268 {
2269 /* Find the end of the name. */
2270 ++arg;
2271 name = arg;
2272 len = get_env_len(&arg);
2273 if (len == 0)
2274 EMSG2(_(e_invarg2), name - 1);
2275 else
2276 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002277 if (op != NULL && (*op == '+' || *op == '-'))
2278 EMSG2(_(e_letwrong), op);
2279 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002280 && vim_strchr(endchars, *skipwhite(arg)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002281 EMSG(_(e_letunexp));
2282 else
2283 {
2284 c1 = name[len];
2285 name[len] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002286 p = get_tv_string_chk(tv);
2287 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002288 {
2289 int mustfree = FALSE;
2290 char_u *s = vim_getenv(name, &mustfree);
2291
2292 if (s != NULL)
2293 {
2294 p = tofree = concat_str(s, p);
2295 if (mustfree)
2296 vim_free(s);
2297 }
2298 }
2299 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002300 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002301 vim_setenv(name, p);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002302 if (STRICMP(name, "HOME") == 0)
2303 init_homedir();
2304 else if (didset_vim && STRICMP(name, "VIM") == 0)
2305 didset_vim = FALSE;
2306 else if (didset_vimruntime
2307 && STRICMP(name, "VIMRUNTIME") == 0)
2308 didset_vimruntime = FALSE;
2309 arg_end = arg;
2310 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002311 name[len] = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002312 vim_free(tofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002313 }
2314 }
2315 }
2316
2317 /*
2318 * ":let &option = expr": Set option value.
2319 * ":let &l:option = expr": Set local option value.
2320 * ":let &g:option = expr": Set global option value.
2321 */
2322 else if (*arg == '&')
2323 {
2324 /* Find the end of the name. */
2325 p = find_option_end(&arg, &opt_flags);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002326 if (p == NULL || (endchars != NULL
2327 && vim_strchr(endchars, *skipwhite(p)) == NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002328 EMSG(_(e_letunexp));
2329 else
2330 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002331 long n;
2332 int opt_type;
2333 long numval;
2334 char_u *stringval = NULL;
2335 char_u *s;
2336
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002337 c1 = *p;
2338 *p = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002339
2340 n = get_tv_number(tv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002341 s = get_tv_string_chk(tv); /* != NULL if number or string */
2342 if (s != NULL && op != NULL && *op != '=')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002343 {
2344 opt_type = get_option_value(arg, &numval,
2345 &stringval, opt_flags);
2346 if ((opt_type == 1 && *op == '.')
2347 || (opt_type == 0 && *op != '.'))
2348 EMSG2(_(e_letwrong), op);
2349 else
2350 {
2351 if (opt_type == 1) /* number */
2352 {
2353 if (*op == '+')
2354 n = numval + n;
2355 else
2356 n = numval - n;
2357 }
2358 else if (opt_type == 0 && stringval != NULL) /* string */
2359 {
2360 s = concat_str(stringval, s);
2361 vim_free(stringval);
2362 stringval = s;
2363 }
2364 }
2365 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002366 if (s != NULL)
2367 {
2368 set_option_value(arg, n, s, opt_flags);
2369 arg_end = p;
2370 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002371 *p = c1;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002372 vim_free(stringval);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002373 }
2374 }
2375
2376 /*
2377 * ":let @r = expr": Set register contents.
2378 */
2379 else if (*arg == '@')
2380 {
2381 ++arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002382 if (op != NULL && (*op == '+' || *op == '-'))
2383 EMSG2(_(e_letwrong), op);
2384 else if (endchars != NULL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002385 && vim_strchr(endchars, *skipwhite(arg + 1)) == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002386 EMSG(_(e_letunexp));
2387 else
2388 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002389 char_u *ptofree = NULL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002390 char_u *s;
2391
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002392 p = get_tv_string_chk(tv);
2393 if (p != NULL && op != NULL && *op == '.')
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002394 {
Bram Moolenaar92124a32005-06-17 22:03:40 +00002395 s = get_reg_contents(*arg == '@' ? '"' : *arg, TRUE, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002396 if (s != NULL)
2397 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00002398 p = ptofree = concat_str(s, p);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002399 vim_free(s);
2400 }
2401 }
2402 if (p != NULL)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002403 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002404 write_reg_contents(*arg == '@' ? '"' : *arg, p, -1, FALSE);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002405 arg_end = arg + 1;
2406 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00002407 vim_free(ptofree);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002408 }
2409 }
2410
2411 /*
2412 * ":let var = expr": Set internal variable.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002413 * ":let {expr} = expr": Idem, name made with curly braces
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002414 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002415 else if (eval_isnamec1(*arg) || *arg == '{')
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002416 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002417 lval_T lv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002418
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002419 p = get_lval(arg, tv, &lv, FALSE, FALSE, FALSE, FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002420 if (p != NULL && lv.ll_name != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002421 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002422 if (endchars != NULL && vim_strchr(endchars, *skipwhite(p)) == NULL)
2423 EMSG(_(e_letunexp));
2424 else
2425 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002426 set_var_lval(&lv, p, tv, copy, op);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002427 arg_end = p;
2428 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002429 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002430 clear_lval(&lv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002431 }
2432
2433 else
2434 EMSG2(_(e_invarg2), arg);
2435
2436 return arg_end;
2437}
2438
2439/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00002440 * If "arg" is equal to "b:changedtick" give an error and return TRUE.
2441 */
2442 static int
2443check_changedtick(arg)
2444 char_u *arg;
2445{
2446 if (STRNCMP(arg, "b:changedtick", 13) == 0 && !eval_isnamec(arg[13]))
2447 {
2448 EMSG2(_(e_readonlyvar), arg);
2449 return TRUE;
2450 }
2451 return FALSE;
2452}
2453
2454/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002455 * Get an lval: variable, Dict item or List item that can be assigned a value
2456 * to: "name", "na{me}", "name[expr]", "name[expr:expr]", "name[expr][expr]",
2457 * "name.key", "name.key[expr]" etc.
2458 * Indexing only works if "name" is an existing List or Dictionary.
2459 * "name" points to the start of the name.
2460 * If "rettv" is not NULL it points to the value to be assigned.
2461 * "unlet" is TRUE for ":unlet": slightly different behavior when something is
2462 * wrong; must end in space or cmd separator.
2463 *
2464 * Returns a pointer to just after the name, including indexes.
Bram Moolenaara7043832005-01-21 11:56:39 +00002465 * When an evaluation error occurs "lp->ll_name" is NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002466 * Returns NULL for a parsing error. Still need to free items in "lp"!
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002467 */
2468 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002469get_lval(name, rettv, lp, unlet, skip, quiet, fne_flags)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002470 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +00002471 typval_T *rettv;
2472 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002473 int unlet;
2474 int skip;
2475 int quiet; /* don't give error messages */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002476 int fne_flags; /* flags for find_name_end() */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002477{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002478 char_u *p;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002479 char_u *expr_start, *expr_end;
2480 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002481 dictitem_T *v;
2482 typval_T var1;
2483 typval_T var2;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002484 int empty1 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00002485 listitem_T *ni;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002486 char_u *key = NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002487 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00002488 hashtab_T *ht;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002489
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002490 /* Clear everything in "lp". */
Bram Moolenaar33570922005-01-25 22:26:29 +00002491 vim_memset(lp, 0, sizeof(lval_T));
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002492
2493 if (skip)
2494 {
2495 /* When skipping just find the end of the name. */
2496 lp->ll_name = name;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002497 return find_name_end(name, NULL, NULL, FNE_INCL_BR | fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002498 }
2499
2500 /* Find the end of the name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00002501 p = find_name_end(name, &expr_start, &expr_end, fne_flags);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002502 if (expr_start != NULL)
2503 {
2504 /* Don't expand the name when we already know there is an error. */
2505 if (unlet && !vim_iswhite(*p) && !ends_excmd(*p)
2506 && *p != '[' && *p != '.')
2507 {
2508 EMSG(_(e_trailing));
2509 return NULL;
2510 }
2511
2512 lp->ll_exp_name = make_expanded_name(name, expr_start, expr_end, p);
2513 if (lp->ll_exp_name == NULL)
2514 {
2515 /* Report an invalid expression in braces, unless the
2516 * expression evaluation has been cancelled due to an
2517 * aborting error, an interrupt, or an exception. */
2518 if (!aborting() && !quiet)
2519 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002520 emsg_severe = TRUE;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002521 EMSG2(_(e_invarg2), name);
2522 return NULL;
2523 }
2524 }
2525 lp->ll_name = lp->ll_exp_name;
2526 }
2527 else
2528 lp->ll_name = name;
2529
2530 /* Without [idx] or .key we are done. */
2531 if ((*p != '[' && *p != '.') || lp->ll_name == NULL)
2532 return p;
2533
2534 cc = *p;
2535 *p = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00002536 v = find_var(lp->ll_name, &ht);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002537 if (v == NULL && !quiet)
2538 EMSG2(_(e_undefvar), lp->ll_name);
2539 *p = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002540 if (v == NULL)
2541 return NULL;
2542
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002543 /*
2544 * Loop until no more [idx] or .key is following.
2545 */
Bram Moolenaar33570922005-01-25 22:26:29 +00002546 lp->ll_tv = &v->di_tv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002547 while (*p == '[' || (*p == '.' && lp->ll_tv->v_type == VAR_DICT))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002548 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002549 if (!(lp->ll_tv->v_type == VAR_LIST && lp->ll_tv->vval.v_list != NULL)
2550 && !(lp->ll_tv->v_type == VAR_DICT
2551 && lp->ll_tv->vval.v_dict != NULL))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002552 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002553 if (!quiet)
2554 EMSG(_("E689: Can only index a List or Dictionary"));
2555 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002556 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002557 if (lp->ll_range)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002558 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002559 if (!quiet)
2560 EMSG(_("E708: [:] must come last"));
2561 return NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002562 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002563
Bram Moolenaar8c711452005-01-14 21:53:12 +00002564 len = -1;
2565 if (*p == '.')
2566 {
2567 key = p + 1;
2568 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
2569 ;
2570 if (len == 0)
2571 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002572 if (!quiet)
2573 EMSG(_(e_emptykey));
2574 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002575 }
2576 p = key + len;
2577 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002578 else
2579 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002580 /* Get the index [expr] or the first index [expr: ]. */
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002581 p = skipwhite(p + 1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002582 if (*p == ':')
2583 empty1 = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002584 else
2585 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002586 empty1 = FALSE;
2587 if (eval1(&p, &var1, TRUE) == FAIL) /* recursive! */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002588 return NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002589 if (get_tv_string_chk(&var1) == NULL)
2590 {
2591 /* not a number or string */
2592 clear_tv(&var1);
2593 return NULL;
2594 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002595 }
2596
2597 /* Optionally get the second index [ :expr]. */
2598 if (*p == ':')
2599 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002600 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002601 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002602 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002603 EMSG(_(e_dictrange));
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002604 if (!empty1)
2605 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002606 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002607 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002608 if (rettv != NULL && (rettv->v_type != VAR_LIST
2609 || rettv->vval.v_list == NULL))
Bram Moolenaar8c711452005-01-14 21:53:12 +00002610 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002611 if (!quiet)
2612 EMSG(_("E709: [:] requires a List value"));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002613 if (!empty1)
2614 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002615 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002616 }
2617 p = skipwhite(p + 1);
2618 if (*p == ']')
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002619 lp->ll_empty2 = TRUE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002620 else
2621 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002622 lp->ll_empty2 = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002623 if (eval1(&p, &var2, TRUE) == FAIL) /* recursive! */
2624 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00002625 if (!empty1)
2626 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002627 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002628 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002629 if (get_tv_string_chk(&var2) == NULL)
2630 {
2631 /* not a number or string */
2632 if (!empty1)
2633 clear_tv(&var1);
2634 clear_tv(&var2);
2635 return NULL;
2636 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002637 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002638 lp->ll_range = TRUE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002639 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00002640 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002641 lp->ll_range = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002642
Bram Moolenaar8c711452005-01-14 21:53:12 +00002643 if (*p != ']')
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002644 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002645 if (!quiet)
2646 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002647 if (!empty1)
2648 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002649 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002650 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002651 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002652 }
2653
2654 /* Skip to past ']'. */
2655 ++p;
2656 }
2657
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002658 if (lp->ll_tv->v_type == VAR_DICT)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002659 {
2660 if (len == -1)
2661 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002662 /* "[key]": get key from "var1" */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002663 key = get_tv_string(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002664 if (*key == NUL)
2665 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002666 if (!quiet)
2667 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00002668 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002669 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002670 }
2671 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002672 lp->ll_list = NULL;
2673 lp->ll_dict = lp->ll_tv->vval.v_dict;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002674 lp->ll_di = dict_find(lp->ll_dict, key, len);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002675 if (lp->ll_di == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002676 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002677 /* Key does not exist in dict: may need to add it. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002678 if (*p == '[' || *p == '.' || unlet)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002679 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002680 if (!quiet)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002681 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002682 if (len == -1)
2683 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002684 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002685 }
2686 if (len == -1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002687 lp->ll_newkey = vim_strsave(key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002688 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002689 lp->ll_newkey = vim_strnsave(key, len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002690 if (len == -1)
2691 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002692 if (lp->ll_newkey == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002693 p = NULL;
2694 break;
2695 }
2696 if (len == -1)
2697 clear_tv(&var1);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002698 lp->ll_tv = &lp->ll_di->di_tv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002699 }
2700 else
2701 {
2702 /*
2703 * Get the number and item for the only or first index of the List.
2704 */
2705 if (empty1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002706 lp->ll_n1 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002707 else
2708 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002709 lp->ll_n1 = get_tv_number(&var1); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002710 clear_tv(&var1);
2711 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002712 lp->ll_dict = NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002713 lp->ll_list = lp->ll_tv->vval.v_list;
2714 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2715 if (lp->ll_li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002716 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00002717 if (lp->ll_n1 < 0)
2718 {
2719 lp->ll_n1 = 0;
2720 lp->ll_li = list_find(lp->ll_list, lp->ll_n1);
2721 }
2722 }
2723 if (lp->ll_li == NULL)
2724 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002725 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002726 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002727 return NULL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00002728 }
2729
2730 /*
2731 * May need to find the item or absolute index for the second
2732 * index of a range.
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002733 * When no index given: "lp->ll_empty2" is TRUE.
2734 * Otherwise "lp->ll_n2" is set to the second index.
Bram Moolenaar8c711452005-01-14 21:53:12 +00002735 */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002736 if (lp->ll_range && !lp->ll_empty2)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002737 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00002738 lp->ll_n2 = get_tv_number(&var2); /* is number or string */
Bram Moolenaar8c711452005-01-14 21:53:12 +00002739 clear_tv(&var2);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002740 if (lp->ll_n2 < 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00002741 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002742 ni = list_find(lp->ll_list, lp->ll_n2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002743 if (ni == NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002744 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002745 lp->ll_n2 = list_idx_of_item(lp->ll_list, ni);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002746 }
2747
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002748 /* Check that lp->ll_n2 isn't before lp->ll_n1. */
2749 if (lp->ll_n1 < 0)
2750 lp->ll_n1 = list_idx_of_item(lp->ll_list, lp->ll_li);
2751 if (lp->ll_n2 < lp->ll_n1)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002752 return NULL;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002753 }
2754
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002755 lp->ll_tv = &lp->ll_li->li_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002756 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002757 }
2758
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002759 return p;
2760}
2761
2762/*
Bram Moolenaar33570922005-01-25 22:26:29 +00002763 * Clear lval "lp" that was filled by get_lval().
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002764 */
2765 static void
2766clear_lval(lp)
Bram Moolenaar33570922005-01-25 22:26:29 +00002767 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002768{
2769 vim_free(lp->ll_exp_name);
2770 vim_free(lp->ll_newkey);
2771}
2772
2773/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002774 * Set a variable that was parsed by get_lval() to "rettv".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002775 * "endp" points to just after the parsed name.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002776 * "op" is NULL, "+" for "+=", "-" for "-=", "." for ".=" or "=" for "=".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002777 */
2778 static void
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002779set_var_lval(lp, endp, rettv, copy, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002780 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002781 char_u *endp;
Bram Moolenaar33570922005-01-25 22:26:29 +00002782 typval_T *rettv;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002783 int copy;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002784 char_u *op;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002785{
2786 int cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00002787 listitem_T *ri;
2788 dictitem_T *di;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002789
2790 if (lp->ll_tv == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002791 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002792 if (!check_changedtick(lp->ll_name))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002793 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002794 cc = *endp;
2795 *endp = NUL;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002796 if (op != NULL && *op != '=')
2797 {
Bram Moolenaar33570922005-01-25 22:26:29 +00002798 typval_T tv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002799
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002800 /* handle +=, -= and .= */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002801 if (get_var_tv(lp->ll_name, (int)STRLEN(lp->ll_name),
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00002802 &tv, TRUE) == OK)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002803 {
2804 if (tv_op(&tv, rettv, op) == OK)
2805 set_var(lp->ll_name, &tv, FALSE);
2806 clear_tv(&tv);
2807 }
2808 }
2809 else
2810 set_var(lp->ll_name, rettv, copy);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002811 *endp = cc;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002812 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002813 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00002814 else if (tv_check_lock(lp->ll_newkey == NULL
2815 ? lp->ll_tv->v_lock
2816 : lp->ll_tv->vval.v_dict->dv_lock, lp->ll_name))
2817 ;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002818 else if (lp->ll_range)
2819 {
2820 /*
2821 * Assign the List values to the list items.
2822 */
2823 for (ri = rettv->vval.v_list->lv_first; ri != NULL; )
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002824 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002825 if (op != NULL && *op != '=')
2826 tv_op(&lp->ll_li->li_tv, &ri->li_tv, op);
2827 else
2828 {
2829 clear_tv(&lp->ll_li->li_tv);
2830 copy_tv(&ri->li_tv, &lp->ll_li->li_tv);
2831 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002832 ri = ri->li_next;
2833 if (ri == NULL || (!lp->ll_empty2 && lp->ll_n2 == lp->ll_n1))
2834 break;
2835 if (lp->ll_li->li_next == NULL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002836 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002837 /* Need to add an empty item. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00002838 if (list_append_number(lp->ll_list, 0) == FAIL)
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002839 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002840 ri = NULL;
2841 break;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002842 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002843 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002844 lp->ll_li = lp->ll_li->li_next;
2845 ++lp->ll_n1;
2846 }
2847 if (ri != NULL)
2848 EMSG(_("E710: List value has more items than target"));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002849 else if (lp->ll_empty2
2850 ? (lp->ll_li != NULL && lp->ll_li->li_next != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002851 : lp->ll_n1 != lp->ll_n2)
2852 EMSG(_("E711: List value has not enough items"));
2853 }
2854 else
2855 {
2856 /*
2857 * Assign to a List or Dictionary item.
2858 */
2859 if (lp->ll_newkey != NULL)
2860 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002861 if (op != NULL && *op != '=')
2862 {
2863 EMSG2(_(e_letwrong), op);
2864 return;
2865 }
2866
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002867 /* Need to add an item to the Dictionary. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002868 di = dictitem_alloc(lp->ll_newkey);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002869 if (di == NULL)
2870 return;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00002871 if (dict_add(lp->ll_tv->vval.v_dict, di) == FAIL)
2872 {
2873 vim_free(di);
2874 return;
2875 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002876 lp->ll_tv = &di->di_tv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00002877 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002878 else if (op != NULL && *op != '=')
2879 {
2880 tv_op(lp->ll_tv, rettv, op);
2881 return;
2882 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002883 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002884 clear_tv(lp->ll_tv);
Bram Moolenaar8c711452005-01-14 21:53:12 +00002885
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002886 /*
2887 * Assign the value to the variable or list item.
2888 */
2889 if (copy)
2890 copy_tv(rettv, lp->ll_tv);
2891 else
2892 {
2893 *lp->ll_tv = *rettv;
Bram Moolenaar758711c2005-02-02 23:11:38 +00002894 lp->ll_tv->v_lock = 0;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00002895 init_tv(rettv);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002896 }
2897 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00002898}
2899
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00002900/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002901 * Handle "tv1 += tv2", "tv1 -= tv2" and "tv1 .= tv2"
2902 * Returns OK or FAIL.
2903 */
2904 static int
2905tv_op(tv1, tv2, op)
Bram Moolenaar33570922005-01-25 22:26:29 +00002906 typval_T *tv1;
2907 typval_T *tv2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002908 char_u *op;
2909{
2910 long n;
2911 char_u numbuf[NUMBUFLEN];
2912 char_u *s;
2913
2914 /* Can't do anything with a Funcref or a Dict on the right. */
2915 if (tv2->v_type != VAR_FUNC && tv2->v_type != VAR_DICT)
2916 {
2917 switch (tv1->v_type)
2918 {
2919 case VAR_DICT:
2920 case VAR_FUNC:
2921 break;
2922
2923 case VAR_LIST:
2924 if (*op != '+' || tv2->v_type != VAR_LIST)
2925 break;
2926 /* List += List */
2927 if (tv1->vval.v_list != NULL && tv2->vval.v_list != NULL)
2928 list_extend(tv1->vval.v_list, tv2->vval.v_list, NULL);
2929 return OK;
2930
2931 case VAR_NUMBER:
2932 case VAR_STRING:
2933 if (tv2->v_type == VAR_LIST)
2934 break;
2935 if (*op == '+' || *op == '-')
2936 {
2937 /* nr += nr or nr -= nr*/
2938 n = get_tv_number(tv1);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002939#ifdef FEAT_FLOAT
2940 if (tv2->v_type == VAR_FLOAT)
2941 {
2942 float_T f = n;
2943
2944 if (*op == '+')
2945 f += tv2->vval.v_float;
2946 else
2947 f -= tv2->vval.v_float;
2948 clear_tv(tv1);
2949 tv1->v_type = VAR_FLOAT;
2950 tv1->vval.v_float = f;
2951 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002952 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002953#endif
2954 {
2955 if (*op == '+')
2956 n += get_tv_number(tv2);
2957 else
2958 n -= get_tv_number(tv2);
2959 clear_tv(tv1);
2960 tv1->v_type = VAR_NUMBER;
2961 tv1->vval.v_number = n;
2962 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002963 }
2964 else
2965 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002966 if (tv2->v_type == VAR_FLOAT)
2967 break;
2968
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002969 /* str .= str */
2970 s = get_tv_string(tv1);
2971 s = concat_str(s, get_tv_string_buf(tv2, numbuf));
2972 clear_tv(tv1);
2973 tv1->v_type = VAR_STRING;
2974 tv1->vval.v_string = s;
2975 }
2976 return OK;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00002977
2978#ifdef FEAT_FLOAT
2979 case VAR_FLOAT:
2980 {
2981 float_T f;
2982
2983 if (*op == '.' || (tv2->v_type != VAR_FLOAT
2984 && tv2->v_type != VAR_NUMBER
2985 && tv2->v_type != VAR_STRING))
2986 break;
2987 if (tv2->v_type == VAR_FLOAT)
2988 f = tv2->vval.v_float;
2989 else
2990 f = get_tv_number(tv2);
2991 if (*op == '+')
2992 tv1->vval.v_float += f;
2993 else
2994 tv1->vval.v_float -= f;
2995 }
2996 return OK;
2997#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00002998 }
2999 }
3000
3001 EMSG2(_(e_letwrong), op);
3002 return FAIL;
3003}
3004
3005/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003006 * Add a watcher to a list.
3007 */
3008 static void
3009list_add_watch(l, lw)
Bram Moolenaar33570922005-01-25 22:26:29 +00003010 list_T *l;
3011 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003012{
3013 lw->lw_next = l->lv_watch;
3014 l->lv_watch = lw;
3015}
3016
3017/*
Bram Moolenaar758711c2005-02-02 23:11:38 +00003018 * Remove a watcher from a list.
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003019 * No warning when it isn't found...
3020 */
3021 static void
3022list_rem_watch(l, lwrem)
Bram Moolenaar33570922005-01-25 22:26:29 +00003023 list_T *l;
3024 listwatch_T *lwrem;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003025{
Bram Moolenaar33570922005-01-25 22:26:29 +00003026 listwatch_T *lw, **lwp;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003027
3028 lwp = &l->lv_watch;
3029 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3030 {
3031 if (lw == lwrem)
3032 {
3033 *lwp = lw->lw_next;
3034 break;
3035 }
3036 lwp = &lw->lw_next;
3037 }
3038}
3039
3040/*
3041 * Just before removing an item from a list: advance watchers to the next
3042 * item.
3043 */
3044 static void
3045list_fix_watch(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00003046 list_T *l;
3047 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003048{
Bram Moolenaar33570922005-01-25 22:26:29 +00003049 listwatch_T *lw;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003050
3051 for (lw = l->lv_watch; lw != NULL; lw = lw->lw_next)
3052 if (lw->lw_item == item)
3053 lw->lw_item = item->li_next;
3054}
3055
3056/*
3057 * Evaluate the expression used in a ":for var in expr" command.
3058 * "arg" points to "var".
3059 * Set "*errp" to TRUE for an error, FALSE otherwise;
3060 * Return a pointer that holds the info. Null when there is an error.
3061 */
3062 void *
3063eval_for_line(arg, errp, nextcmdp, skip)
3064 char_u *arg;
3065 int *errp;
3066 char_u **nextcmdp;
3067 int skip;
3068{
Bram Moolenaar33570922005-01-25 22:26:29 +00003069 forinfo_T *fi;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003070 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00003071 typval_T tv;
3072 list_T *l;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003073
3074 *errp = TRUE; /* default: there is an error */
3075
Bram Moolenaar33570922005-01-25 22:26:29 +00003076 fi = (forinfo_T *)alloc_clear(sizeof(forinfo_T));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003077 if (fi == NULL)
3078 return NULL;
3079
3080 expr = skip_var_list(arg, &fi->fi_varcount, &fi->fi_semicolon);
3081 if (expr == NULL)
3082 return fi;
3083
3084 expr = skipwhite(expr);
3085 if (expr[0] != 'i' || expr[1] != 'n' || !vim_iswhite(expr[2]))
3086 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00003087 EMSG(_("E690: Missing \"in\" after :for"));
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003088 return fi;
3089 }
3090
3091 if (skip)
3092 ++emsg_skip;
3093 if (eval0(skipwhite(expr + 2), &tv, nextcmdp, !skip) == OK)
3094 {
3095 *errp = FALSE;
3096 if (!skip)
3097 {
3098 l = tv.vval.v_list;
3099 if (tv.v_type != VAR_LIST || l == NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003100 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003101 EMSG(_(e_listreq));
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003102 clear_tv(&tv);
3103 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003104 else
3105 {
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00003106 /* No need to increment the refcount, it's already set for the
3107 * list being used in "tv". */
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003108 fi->fi_list = l;
3109 list_add_watch(l, &fi->fi_lw);
3110 fi->fi_lw.lw_item = l->lv_first;
3111 }
3112 }
3113 }
3114 if (skip)
3115 --emsg_skip;
3116
3117 return fi;
3118}
3119
3120/*
3121 * Use the first item in a ":for" list. Advance to the next.
3122 * Assign the values to the variable (list). "arg" points to the first one.
3123 * Return TRUE when a valid item was found, FALSE when at end of list or
3124 * something wrong.
3125 */
3126 int
3127next_for_item(fi_void, arg)
3128 void *fi_void;
3129 char_u *arg;
3130{
Bram Moolenaar33570922005-01-25 22:26:29 +00003131 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003132 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003133 listitem_T *item;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003134
3135 item = fi->fi_lw.lw_item;
3136 if (item == NULL)
3137 result = FALSE;
3138 else
3139 {
3140 fi->fi_lw.lw_item = item->li_next;
3141 result = (ex_let_vars(arg, &item->li_tv, TRUE,
3142 fi->fi_semicolon, fi->fi_varcount, NULL) == OK);
3143 }
3144 return result;
3145}
3146
3147/*
3148 * Free the structure used to store info used by ":for".
3149 */
3150 void
3151free_for_info(fi_void)
3152 void *fi_void;
3153{
Bram Moolenaar33570922005-01-25 22:26:29 +00003154 forinfo_T *fi = (forinfo_T *)fi_void;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003155
Bram Moolenaarab7013c2005-01-09 21:23:56 +00003156 if (fi != NULL && fi->fi_list != NULL)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003157 {
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003158 list_rem_watch(fi->fi_list, &fi->fi_lw);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003159 list_unref(fi->fi_list);
3160 }
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003161 vim_free(fi);
3162}
3163
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3165
3166 void
3167set_context_for_expression(xp, arg, cmdidx)
3168 expand_T *xp;
3169 char_u *arg;
3170 cmdidx_T cmdidx;
3171{
3172 int got_eq = FALSE;
3173 int c;
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003174 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003176 if (cmdidx == CMD_let)
3177 {
3178 xp->xp_context = EXPAND_USER_VARS;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003179 if (vim_strpbrk(arg, (char_u *)"\"'+-*/%.=!?~|&$([<>,#") == NULL)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003180 {
3181 /* ":let var1 var2 ...": find last space. */
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00003182 for (p = arg + STRLEN(arg); p >= arg; )
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003183 {
3184 xp->xp_pattern = p;
Bram Moolenaar33570922005-01-25 22:26:29 +00003185 mb_ptr_back(arg, p);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003186 if (vim_iswhite(*p))
3187 break;
3188 }
3189 return;
3190 }
3191 }
3192 else
3193 xp->xp_context = cmdidx == CMD_call ? EXPAND_FUNCTIONS
3194 : EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 while ((xp->xp_pattern = vim_strpbrk(arg,
3196 (char_u *)"\"'+-*/%.=!?~|&$([<>,#")) != NULL)
3197 {
3198 c = *xp->xp_pattern;
3199 if (c == '&')
3200 {
3201 c = xp->xp_pattern[1];
3202 if (c == '&')
3203 {
3204 ++xp->xp_pattern;
3205 xp->xp_context = cmdidx != CMD_let || got_eq
3206 ? EXPAND_EXPRESSION : EXPAND_NOTHING;
3207 }
3208 else if (c != ' ')
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003209 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003210 xp->xp_context = EXPAND_SETTINGS;
Bram Moolenaar11cbeb12005-03-11 22:51:16 +00003211 if ((c == 'l' || c == 'g') && xp->xp_pattern[2] == ':')
3212 xp->xp_pattern += 2;
3213
3214 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003215 }
3216 else if (c == '$')
3217 {
3218 /* environment variable */
3219 xp->xp_context = EXPAND_ENV_VARS;
3220 }
3221 else if (c == '=')
3222 {
3223 got_eq = TRUE;
3224 xp->xp_context = EXPAND_EXPRESSION;
3225 }
3226 else if (c == '<'
3227 && xp->xp_context == EXPAND_FUNCTIONS
3228 && vim_strchr(xp->xp_pattern, '(') == NULL)
3229 {
3230 /* Function name can start with "<SNR>" */
3231 break;
3232 }
3233 else if (cmdidx != CMD_let || got_eq)
3234 {
3235 if (c == '"') /* string */
3236 {
3237 while ((c = *++xp->xp_pattern) != NUL && c != '"')
3238 if (c == '\\' && xp->xp_pattern[1] != NUL)
3239 ++xp->xp_pattern;
3240 xp->xp_context = EXPAND_NOTHING;
3241 }
3242 else if (c == '\'') /* literal string */
3243 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00003244 /* Trick: '' is like stopping and starting a literal string. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245 while ((c = *++xp->xp_pattern) != NUL && c != '\'')
3246 /* skip */ ;
3247 xp->xp_context = EXPAND_NOTHING;
3248 }
3249 else if (c == '|')
3250 {
3251 if (xp->xp_pattern[1] == '|')
3252 {
3253 ++xp->xp_pattern;
3254 xp->xp_context = EXPAND_EXPRESSION;
3255 }
3256 else
3257 xp->xp_context = EXPAND_COMMANDS;
3258 }
3259 else
3260 xp->xp_context = EXPAND_EXPRESSION;
3261 }
3262 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003263 /* Doesn't look like something valid, expand as an expression
3264 * anyway. */
3265 xp->xp_context = EXPAND_EXPRESSION;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 arg = xp->xp_pattern;
3267 if (*arg != NUL)
3268 while ((c = *++arg) != NUL && (c == ' ' || c == '\t'))
3269 /* skip */ ;
3270 }
3271 xp->xp_pattern = arg;
3272}
3273
3274#endif /* FEAT_CMDL_COMPL */
3275
3276/*
3277 * ":1,25call func(arg1, arg2)" function call.
3278 */
3279 void
3280ex_call(eap)
3281 exarg_T *eap;
3282{
3283 char_u *arg = eap->arg;
3284 char_u *startarg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 char_u *name;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003286 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +00003288 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289 linenr_T lnum;
3290 int doesrange;
3291 int failed = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00003292 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003293
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003294 tofree = trans_function_name(&arg, eap->skip, TFN_INT, &fudi);
Bram Moolenaara2a31752006-10-24 11:49:25 +00003295 if (fudi.fd_newkey != NULL)
3296 {
3297 /* Still need to give an error message for missing key. */
3298 EMSG2(_(e_dictkey), fudi.fd_newkey);
3299 vim_free(fudi.fd_newkey);
3300 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003301 if (tofree == NULL)
3302 return;
3303
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003304 /* Increase refcount on dictionary, it could get deleted when evaluating
3305 * the arguments. */
3306 if (fudi.fd_dict != NULL)
3307 ++fudi.fd_dict->dv_refcount;
3308
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003309 /* If it is the name of a variable of type VAR_FUNC use its contents. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003310 len = (int)STRLEN(tofree);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003311 name = deref_func_name(tofree, &len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003312
Bram Moolenaar532c7802005-01-27 14:44:31 +00003313 /* Skip white space to allow ":call func ()". Not good, but required for
3314 * backward compatibility. */
3315 startarg = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003316 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003317
3318 if (*startarg != '(')
3319 {
Bram Moolenaar8dd9ac52008-11-06 10:05:42 +00003320 EMSG2(_("E107: Missing parentheses: %s"), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003321 goto end;
3322 }
3323
3324 /*
3325 * When skipping, evaluate the function once, to find the end of the
3326 * arguments.
3327 * When the function takes a range, this is discovered after the first
3328 * call, and the loop is broken.
3329 */
3330 if (eap->skip)
3331 {
3332 ++emsg_skip;
3333 lnum = eap->line2; /* do it once, also with an invalid range */
3334 }
3335 else
3336 lnum = eap->line1;
3337 for ( ; lnum <= eap->line2; ++lnum)
3338 {
3339 if (!eap->skip && eap->addr_count > 0)
3340 {
3341 curwin->w_cursor.lnum = lnum;
3342 curwin->w_cursor.col = 0;
3343 }
3344 arg = startarg;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003345 if (get_func_tv(name, (int)STRLEN(name), &rettv, &arg,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003346 eap->line1, eap->line2, &doesrange,
3347 !eap->skip, fudi.fd_dict) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 {
3349 failed = TRUE;
3350 break;
3351 }
Bram Moolenaarf2789872006-11-28 19:54:04 +00003352
3353 /* Handle a function returning a Funcref, Dictionary or List. */
3354 if (handle_subscript(&arg, &rettv, !eap->skip, TRUE) == FAIL)
3355 {
3356 failed = TRUE;
3357 break;
3358 }
3359
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003360 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 if (doesrange || eap->skip)
3362 break;
Bram Moolenaarf2789872006-11-28 19:54:04 +00003363
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 /* Stop when immediately aborting on error, or when an interrupt
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003365 * occurred or an exception was thrown but not caught.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003366 * get_func_tv() returned OK, so that the check for trailing
Bram Moolenaar49cd9572005-01-03 21:06:01 +00003367 * characters below is executed. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368 if (aborting())
3369 break;
3370 }
3371 if (eap->skip)
3372 --emsg_skip;
3373
3374 if (!failed)
3375 {
3376 /* Check for trailing illegal characters and a following command. */
3377 if (!ends_excmd(*arg))
3378 {
3379 emsg_severe = TRUE;
3380 EMSG(_(e_trailing));
3381 }
3382 else
3383 eap->nextcmd = check_nextcmd(arg);
3384 }
3385
3386end:
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003387 dict_unref(fudi.fd_dict);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00003388 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389}
3390
3391/*
3392 * ":unlet[!] var1 ... " command.
3393 */
3394 void
3395ex_unlet(eap)
3396 exarg_T *eap;
3397{
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003398 ex_unletlock(eap, eap->arg, 0);
3399}
3400
3401/*
3402 * ":lockvar" and ":unlockvar" commands
3403 */
3404 void
3405ex_lockvar(eap)
3406 exarg_T *eap;
3407{
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 char_u *arg = eap->arg;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003409 int deep = 2;
3410
3411 if (eap->forceit)
3412 deep = -1;
3413 else if (vim_isdigit(*arg))
3414 {
3415 deep = getdigits(&arg);
3416 arg = skipwhite(arg);
3417 }
3418
3419 ex_unletlock(eap, arg, deep);
3420}
3421
3422/*
3423 * ":unlet", ":lockvar" and ":unlockvar" are quite similar.
3424 */
3425 static void
3426ex_unletlock(eap, argstart, deep)
3427 exarg_T *eap;
3428 char_u *argstart;
3429 int deep;
3430{
3431 char_u *arg = argstart;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 char_u *name_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003433 int error = FALSE;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003434 lval_T lv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003435
3436 do
3437 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003438 /* Parse the name and find the end. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +00003439 name_end = get_lval(arg, NULL, &lv, TRUE, eap->skip || error, FALSE,
3440 FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003441 if (lv.ll_name == NULL)
3442 error = TRUE; /* error but continue parsing */
3443 if (name_end == NULL || (!vim_iswhite(*name_end)
3444 && !ends_excmd(*name_end)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003445 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003446 if (name_end != NULL)
3447 {
3448 emsg_severe = TRUE;
3449 EMSG(_(e_trailing));
3450 }
3451 if (!(eap->skip || error))
3452 clear_lval(&lv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 break;
3454 }
3455
3456 if (!error && !eap->skip)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003457 {
3458 if (eap->cmdidx == CMD_unlet)
3459 {
3460 if (do_unlet_var(&lv, name_end, eap->forceit) == FAIL)
3461 error = TRUE;
3462 }
3463 else
3464 {
3465 if (do_lock_var(&lv, name_end, deep,
3466 eap->cmdidx == CMD_lockvar) == FAIL)
3467 error = TRUE;
3468 }
3469 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003471 if (!eap->skip)
3472 clear_lval(&lv);
3473
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 arg = skipwhite(name_end);
3475 } while (!ends_excmd(*arg));
3476
3477 eap->nextcmd = check_nextcmd(arg);
3478}
3479
Bram Moolenaar8c711452005-01-14 21:53:12 +00003480 static int
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003481do_unlet_var(lp, name_end, forceit)
Bram Moolenaar33570922005-01-25 22:26:29 +00003482 lval_T *lp;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003483 char_u *name_end;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003484 int forceit;
3485{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003486 int ret = OK;
3487 int cc;
3488
3489 if (lp->ll_tv == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00003490 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003491 cc = *name_end;
3492 *name_end = NUL;
3493
3494 /* Normal name or expanded name. */
3495 if (check_changedtick(lp->ll_name))
3496 ret = FAIL;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003497 else if (do_unlet(lp->ll_name, forceit) == FAIL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003498 ret = FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003499 *name_end = cc;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003500 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003501 else if (tv_check_lock(lp->ll_tv->v_lock, lp->ll_name))
3502 return FAIL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003503 else if (lp->ll_range)
3504 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003505 listitem_T *li;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003506
3507 /* Delete a range of List items. */
3508 while (lp->ll_li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3509 {
3510 li = lp->ll_li->li_next;
3511 listitem_remove(lp->ll_list, lp->ll_li);
3512 lp->ll_li = li;
3513 ++lp->ll_n1;
3514 }
3515 }
3516 else
3517 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003518 if (lp->ll_list != NULL)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003519 /* unlet a List item. */
3520 listitem_remove(lp->ll_list, lp->ll_li);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003521 else
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003522 /* unlet a Dictionary item. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00003523 dictitem_remove(lp->ll_dict, lp->ll_di);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00003524 }
3525
3526 return ret;
Bram Moolenaar8c711452005-01-14 21:53:12 +00003527}
3528
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529/*
3530 * "unlet" a variable. Return OK if it existed, FAIL if not.
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003531 * When "forceit" is TRUE don't complain if the variable doesn't exist.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003532 */
3533 int
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003534do_unlet(name, forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 char_u *name;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003536 int forceit;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003537{
Bram Moolenaar33570922005-01-25 22:26:29 +00003538 hashtab_T *ht;
3539 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003540 char_u *varname;
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003541 dictitem_T *di;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542
Bram Moolenaar33570922005-01-25 22:26:29 +00003543 ht = find_var_ht(name, &varname);
3544 if (ht != NULL && *varname != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003545 {
Bram Moolenaar33570922005-01-25 22:26:29 +00003546 hi = hash_find(ht, varname);
3547 if (!HASHITEM_EMPTY(hi))
Bram Moolenaara7043832005-01-21 11:56:39 +00003548 {
Bram Moolenaarafbdeb82008-01-05 21:16:31 +00003549 di = HI2DI(hi);
3550 if (var_check_fixed(di->di_flags, name)
3551 || var_check_ro(di->di_flags, name))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003552 return FAIL;
3553 delete_var(ht, hi);
3554 return OK;
Bram Moolenaara7043832005-01-21 11:56:39 +00003555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003556 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003557 if (forceit)
3558 return OK;
3559 EMSG2(_("E108: No such variable: \"%s\""), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560 return FAIL;
3561}
3562
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003563/*
3564 * Lock or unlock variable indicated by "lp".
3565 * "deep" is the levels to go (-1 for unlimited);
3566 * "lock" is TRUE for ":lockvar", FALSE for ":unlockvar".
3567 */
3568 static int
3569do_lock_var(lp, name_end, deep, lock)
3570 lval_T *lp;
3571 char_u *name_end;
3572 int deep;
3573 int lock;
3574{
3575 int ret = OK;
3576 int cc;
3577 dictitem_T *di;
3578
3579 if (deep == 0) /* nothing to do */
3580 return OK;
3581
3582 if (lp->ll_tv == NULL)
3583 {
3584 cc = *name_end;
3585 *name_end = NUL;
3586
3587 /* Normal name or expanded name. */
3588 if (check_changedtick(lp->ll_name))
3589 ret = FAIL;
3590 else
3591 {
3592 di = find_var(lp->ll_name, NULL);
3593 if (di == NULL)
3594 ret = FAIL;
3595 else
3596 {
3597 if (lock)
3598 di->di_flags |= DI_FLAGS_LOCK;
3599 else
3600 di->di_flags &= ~DI_FLAGS_LOCK;
3601 item_lock(&di->di_tv, deep, lock);
3602 }
3603 }
3604 *name_end = cc;
3605 }
3606 else if (lp->ll_range)
3607 {
3608 listitem_T *li = lp->ll_li;
3609
3610 /* (un)lock a range of List items. */
3611 while (li != NULL && (lp->ll_empty2 || lp->ll_n2 >= lp->ll_n1))
3612 {
3613 item_lock(&li->li_tv, deep, lock);
3614 li = li->li_next;
3615 ++lp->ll_n1;
3616 }
3617 }
3618 else if (lp->ll_list != NULL)
3619 /* (un)lock a List item. */
3620 item_lock(&lp->ll_li->li_tv, deep, lock);
3621 else
3622 /* un(lock) a Dictionary item. */
3623 item_lock(&lp->ll_di->di_tv, deep, lock);
3624
3625 return ret;
3626}
3627
3628/*
3629 * Lock or unlock an item. "deep" is nr of levels to go.
3630 */
3631 static void
3632item_lock(tv, deep, lock)
3633 typval_T *tv;
3634 int deep;
3635 int lock;
3636{
3637 static int recurse = 0;
3638 list_T *l;
3639 listitem_T *li;
3640 dict_T *d;
3641 hashitem_T *hi;
3642 int todo;
3643
3644 if (recurse >= DICT_MAXNEST)
3645 {
3646 EMSG(_("E743: variable nested too deep for (un)lock"));
3647 return;
3648 }
3649 if (deep == 0)
3650 return;
3651 ++recurse;
3652
3653 /* lock/unlock the item itself */
3654 if (lock)
3655 tv->v_lock |= VAR_LOCKED;
3656 else
3657 tv->v_lock &= ~VAR_LOCKED;
3658
3659 switch (tv->v_type)
3660 {
3661 case VAR_LIST:
3662 if ((l = tv->vval.v_list) != NULL)
3663 {
3664 if (lock)
3665 l->lv_lock |= VAR_LOCKED;
3666 else
3667 l->lv_lock &= ~VAR_LOCKED;
3668 if (deep < 0 || deep > 1)
3669 /* recursive: lock/unlock the items the List contains */
3670 for (li = l->lv_first; li != NULL; li = li->li_next)
3671 item_lock(&li->li_tv, deep - 1, lock);
3672 }
3673 break;
3674 case VAR_DICT:
3675 if ((d = tv->vval.v_dict) != NULL)
3676 {
3677 if (lock)
3678 d->dv_lock |= VAR_LOCKED;
3679 else
3680 d->dv_lock &= ~VAR_LOCKED;
3681 if (deep < 0 || deep > 1)
3682 {
3683 /* recursive: lock/unlock the items the List contains */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003684 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00003685 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
3686 {
3687 if (!HASHITEM_EMPTY(hi))
3688 {
3689 --todo;
3690 item_lock(&HI2DI(hi)->di_tv, deep - 1, lock);
3691 }
3692 }
3693 }
3694 }
3695 }
3696 --recurse;
3697}
3698
Bram Moolenaara40058a2005-07-11 22:42:07 +00003699/*
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +00003700 * Return TRUE if typeval "tv" is locked: Either that value is locked itself
3701 * or it refers to a List or Dictionary that is locked.
Bram Moolenaara40058a2005-07-11 22:42:07 +00003702 */
3703 static int
3704tv_islocked(tv)
3705 typval_T *tv;
3706{
3707 return (tv->v_lock & VAR_LOCKED)
3708 || (tv->v_type == VAR_LIST
3709 && tv->vval.v_list != NULL
3710 && (tv->vval.v_list->lv_lock & VAR_LOCKED))
3711 || (tv->v_type == VAR_DICT
3712 && tv->vval.v_dict != NULL
3713 && (tv->vval.v_dict->dv_lock & VAR_LOCKED));
3714}
3715
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716#if (defined(FEAT_MENU) && defined(FEAT_MULTI_LANG)) || defined(PROTO)
3717/*
3718 * Delete all "menutrans_" variables.
3719 */
3720 void
3721del_menutrans_vars()
3722{
Bram Moolenaar33570922005-01-25 22:26:29 +00003723 hashitem_T *hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003724 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725
Bram Moolenaar33570922005-01-25 22:26:29 +00003726 hash_lock(&globvarht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003727 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00003728 for (hi = globvarht.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaara7043832005-01-21 11:56:39 +00003729 {
3730 if (!HASHITEM_EMPTY(hi))
3731 {
3732 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00003733 if (STRNCMP(HI2DI(hi)->di_key, "menutrans_", 10) == 0)
3734 delete_var(&globvarht, hi);
Bram Moolenaara7043832005-01-21 11:56:39 +00003735 }
3736 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003737 hash_unlock(&globvarht);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738}
3739#endif
3740
3741#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
3742
3743/*
3744 * Local string buffer for the next two functions to store a variable name
3745 * with its prefix. Allocated in cat_prefix_varname(), freed later in
3746 * get_user_var_name().
3747 */
3748
3749static char_u *cat_prefix_varname __ARGS((int prefix, char_u *name));
3750
3751static char_u *varnamebuf = NULL;
3752static int varnamebuflen = 0;
3753
3754/*
3755 * Function to concatenate a prefix and a variable name.
3756 */
3757 static char_u *
3758cat_prefix_varname(prefix, name)
3759 int prefix;
3760 char_u *name;
3761{
3762 int len;
3763
3764 len = (int)STRLEN(name) + 3;
3765 if (len > varnamebuflen)
3766 {
3767 vim_free(varnamebuf);
3768 len += 10; /* some additional space */
3769 varnamebuf = alloc(len);
3770 if (varnamebuf == NULL)
3771 {
3772 varnamebuflen = 0;
3773 return NULL;
3774 }
3775 varnamebuflen = len;
3776 }
3777 *varnamebuf = prefix;
3778 varnamebuf[1] = ':';
3779 STRCPY(varnamebuf + 2, name);
3780 return varnamebuf;
3781}
3782
3783/*
3784 * Function given to ExpandGeneric() to obtain the list of user defined
3785 * (global/buffer/window/built-in) variable names.
3786 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787 char_u *
3788get_user_var_name(xp, idx)
3789 expand_T *xp;
3790 int idx;
3791{
Bram Moolenaar532c7802005-01-27 14:44:31 +00003792 static long_u gdone;
3793 static long_u bdone;
3794 static long_u wdone;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003795#ifdef FEAT_WINDOWS
3796 static long_u tdone;
3797#endif
Bram Moolenaar532c7802005-01-27 14:44:31 +00003798 static int vidx;
3799 static hashitem_T *hi;
3800 hashtab_T *ht;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801
3802 if (idx == 0)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003803 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003804 gdone = bdone = wdone = vidx = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003805#ifdef FEAT_WINDOWS
3806 tdone = 0;
3807#endif
3808 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003809
3810 /* Global variables */
3811 if (gdone < globvarht.ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003813 if (gdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003814 hi = globvarht.ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003815 else
3816 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003817 while (HASHITEM_EMPTY(hi))
3818 ++hi;
3819 if (STRNCMP("g:", xp->xp_pattern, 2) == 0)
3820 return cat_prefix_varname('g', hi->hi_key);
3821 return hi->hi_key;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003823
3824 /* b: variables */
3825 ht = &curbuf->b_vars.dv_hashtab;
3826 if (bdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003828 if (bdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003829 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003830 else
3831 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003832 while (HASHITEM_EMPTY(hi))
3833 ++hi;
3834 return cat_prefix_varname('b', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003836 if (bdone == ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 {
Bram Moolenaara7043832005-01-21 11:56:39 +00003838 ++bdone;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839 return (char_u *)"b:changedtick";
3840 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003841
3842 /* w: variables */
3843 ht = &curwin->w_vars.dv_hashtab;
3844 if (wdone < ht->ht_used)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00003846 if (wdone++ == 0)
Bram Moolenaar33570922005-01-25 22:26:29 +00003847 hi = ht->ht_array;
Bram Moolenaar532c7802005-01-27 14:44:31 +00003848 else
3849 ++hi;
Bram Moolenaara7043832005-01-21 11:56:39 +00003850 while (HASHITEM_EMPTY(hi))
3851 ++hi;
3852 return cat_prefix_varname('w', hi->hi_key);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003853 }
Bram Moolenaar33570922005-01-25 22:26:29 +00003854
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003855#ifdef FEAT_WINDOWS
3856 /* t: variables */
3857 ht = &curtab->tp_vars.dv_hashtab;
3858 if (tdone < ht->ht_used)
3859 {
3860 if (tdone++ == 0)
3861 hi = ht->ht_array;
3862 else
3863 ++hi;
3864 while (HASHITEM_EMPTY(hi))
3865 ++hi;
3866 return cat_prefix_varname('t', hi->hi_key);
3867 }
3868#endif
3869
Bram Moolenaar33570922005-01-25 22:26:29 +00003870 /* v: variables */
3871 if (vidx < VV_LEN)
3872 return cat_prefix_varname('v', (char_u *)vimvars[vidx++].vv_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873
3874 vim_free(varnamebuf);
3875 varnamebuf = NULL;
3876 varnamebuflen = 0;
3877 return NULL;
3878}
3879
3880#endif /* FEAT_CMDL_COMPL */
3881
3882/*
3883 * types for expressions.
3884 */
3885typedef enum
3886{
3887 TYPE_UNKNOWN = 0
3888 , TYPE_EQUAL /* == */
3889 , TYPE_NEQUAL /* != */
3890 , TYPE_GREATER /* > */
3891 , TYPE_GEQUAL /* >= */
3892 , TYPE_SMALLER /* < */
3893 , TYPE_SEQUAL /* <= */
3894 , TYPE_MATCH /* =~ */
3895 , TYPE_NOMATCH /* !~ */
3896} exptype_T;
3897
3898/*
3899 * The "evaluate" argument: When FALSE, the argument is only parsed but not
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003900 * executed. The function may return OK, but the rettv will be of type
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 * VAR_UNKNOWN. The function still returns FAIL for a syntax error.
3902 */
3903
3904/*
3905 * Handle zero level expression.
3906 * This calls eval1() and handles error message and nextcmd.
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003907 * Put the result in "rettv" when returning OK and "evaluate" is TRUE.
Bram Moolenaar4463f292005-09-25 22:20:24 +00003908 * Note: "rettv.v_lock" is not set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 * Return OK or FAIL.
3910 */
3911 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003912eval0(arg, rettv, nextcmd, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913 char_u *arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003914 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 char_u **nextcmd;
3916 int evaluate;
3917{
3918 int ret;
3919 char_u *p;
3920
3921 p = skipwhite(arg);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003922 ret = eval1(&p, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923 if (ret == FAIL || !ends_excmd(*p))
3924 {
3925 if (ret != FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003926 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 /*
3928 * Report the invalid expression unless the expression evaluation has
3929 * been cancelled due to an aborting error, an interrupt, or an
3930 * exception.
3931 */
3932 if (!aborting())
3933 EMSG2(_(e_invexpr2), arg);
3934 ret = FAIL;
3935 }
3936 if (nextcmd != NULL)
3937 *nextcmd = check_nextcmd(p);
3938
3939 return ret;
3940}
3941
3942/*
3943 * Handle top level expression:
Bram Moolenaarb67cc162009-02-04 15:27:06 +00003944 * expr2 ? expr1 : expr1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 *
3946 * "arg" must point to the first non-white of the expression.
3947 * "arg" is advanced to the next non-white after the recognized expression.
3948 *
Bram Moolenaar4463f292005-09-25 22:20:24 +00003949 * Note: "rettv.v_lock" is not set.
3950 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951 * Return OK or FAIL.
3952 */
3953 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003954eval1(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00003956 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 int evaluate;
3958{
3959 int result;
Bram Moolenaar33570922005-01-25 22:26:29 +00003960 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961
3962 /*
3963 * Get the first variable.
3964 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003965 if (eval2(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 return FAIL;
3967
3968 if ((*arg)[0] == '?')
3969 {
3970 result = FALSE;
3971 if (evaluate)
3972 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003973 int error = FALSE;
3974
3975 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003976 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003977 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00003978 if (error)
3979 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 }
3981
3982 /*
3983 * Get the second variable.
3984 */
3985 *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003986 if (eval1(arg, rettv, evaluate && result) == FAIL) /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003987 return FAIL;
3988
3989 /*
3990 * Check for the ":".
3991 */
3992 if ((*arg)[0] != ':')
3993 {
3994 EMSG(_("E109: Missing ':' after '?'"));
3995 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00003996 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 return FAIL;
3998 }
3999
4000 /*
4001 * Get the third variable.
4002 */
4003 *arg = skipwhite(*arg + 1);
4004 if (eval1(arg, &var2, evaluate && !result) == FAIL) /* recursive! */
4005 {
4006 if (evaluate && result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004007 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 return FAIL;
4009 }
4010 if (evaluate && !result)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004011 *rettv = var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 }
4013
4014 return OK;
4015}
4016
4017/*
4018 * Handle first level expression:
4019 * expr2 || expr2 || expr2 logical OR
4020 *
4021 * "arg" must point to the first non-white of the expression.
4022 * "arg" is advanced to the next non-white after the recognized expression.
4023 *
4024 * Return OK or FAIL.
4025 */
4026 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004027eval2(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004029 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 int evaluate;
4031{
Bram Moolenaar33570922005-01-25 22:26:29 +00004032 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 long result;
4034 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004035 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036
4037 /*
4038 * Get the first variable.
4039 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004040 if (eval3(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041 return FAIL;
4042
4043 /*
4044 * Repeat until there is no following "||".
4045 */
4046 first = TRUE;
4047 result = FALSE;
4048 while ((*arg)[0] == '|' && (*arg)[1] == '|')
4049 {
4050 if (evaluate && first)
4051 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004052 if (get_tv_number_chk(rettv, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004054 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004055 if (error)
4056 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057 first = FALSE;
4058 }
4059
4060 /*
4061 * Get the second variable.
4062 */
4063 *arg = skipwhite(*arg + 2);
4064 if (eval3(arg, &var2, evaluate && !result) == FAIL)
4065 return FAIL;
4066
4067 /*
4068 * Compute the result.
4069 */
4070 if (evaluate && !result)
4071 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004072 if (get_tv_number_chk(&var2, &error) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073 result = TRUE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004074 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004075 if (error)
4076 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077 }
4078 if (evaluate)
4079 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004080 rettv->v_type = VAR_NUMBER;
4081 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082 }
4083 }
4084
4085 return OK;
4086}
4087
4088/*
4089 * Handle second level expression:
4090 * expr3 && expr3 && expr3 logical AND
4091 *
4092 * "arg" must point to the first non-white of the expression.
4093 * "arg" is advanced to the next non-white after the recognized expression.
4094 *
4095 * Return OK or FAIL.
4096 */
4097 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004098eval3(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004100 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101 int evaluate;
4102{
Bram Moolenaar33570922005-01-25 22:26:29 +00004103 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 long result;
4105 int first;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004106 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107
4108 /*
4109 * Get the first variable.
4110 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004111 if (eval4(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004112 return FAIL;
4113
4114 /*
4115 * Repeat until there is no following "&&".
4116 */
4117 first = TRUE;
4118 result = TRUE;
4119 while ((*arg)[0] == '&' && (*arg)[1] == '&')
4120 {
4121 if (evaluate && first)
4122 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004123 if (get_tv_number_chk(rettv, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004125 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004126 if (error)
4127 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 first = FALSE;
4129 }
4130
4131 /*
4132 * Get the second variable.
4133 */
4134 *arg = skipwhite(*arg + 2);
4135 if (eval4(arg, &var2, evaluate && result) == FAIL)
4136 return FAIL;
4137
4138 /*
4139 * Compute the result.
4140 */
4141 if (evaluate && result)
4142 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004143 if (get_tv_number_chk(&var2, &error) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144 result = FALSE;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004145 clear_tv(&var2);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004146 if (error)
4147 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004148 }
4149 if (evaluate)
4150 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004151 rettv->v_type = VAR_NUMBER;
4152 rettv->vval.v_number = result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 }
4154 }
4155
4156 return OK;
4157}
4158
4159/*
4160 * Handle third level expression:
4161 * var1 == var2
4162 * var1 =~ var2
4163 * var1 != var2
4164 * var1 !~ var2
4165 * var1 > var2
4166 * var1 >= var2
4167 * var1 < var2
4168 * var1 <= var2
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004169 * var1 is var2
4170 * var1 isnot var2
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171 *
4172 * "arg" must point to the first non-white of the expression.
4173 * "arg" is advanced to the next non-white after the recognized expression.
4174 *
4175 * Return OK or FAIL.
4176 */
4177 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004178eval4(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004180 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 int evaluate;
4182{
Bram Moolenaar33570922005-01-25 22:26:29 +00004183 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 char_u *p;
4185 int i;
4186 exptype_T type = TYPE_UNKNOWN;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004187 int type_is = FALSE; /* TRUE for "is" and "isnot" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 int len = 2;
4189 long n1, n2;
4190 char_u *s1, *s2;
4191 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4192 regmatch_T regmatch;
4193 int ic;
4194 char_u *save_cpo;
4195
4196 /*
4197 * Get the first variable.
4198 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004199 if (eval5(arg, rettv, evaluate) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004200 return FAIL;
4201
4202 p = *arg;
4203 switch (p[0])
4204 {
4205 case '=': if (p[1] == '=')
4206 type = TYPE_EQUAL;
4207 else if (p[1] == '~')
4208 type = TYPE_MATCH;
4209 break;
4210 case '!': if (p[1] == '=')
4211 type = TYPE_NEQUAL;
4212 else if (p[1] == '~')
4213 type = TYPE_NOMATCH;
4214 break;
4215 case '>': if (p[1] != '=')
4216 {
4217 type = TYPE_GREATER;
4218 len = 1;
4219 }
4220 else
4221 type = TYPE_GEQUAL;
4222 break;
4223 case '<': if (p[1] != '=')
4224 {
4225 type = TYPE_SMALLER;
4226 len = 1;
4227 }
4228 else
4229 type = TYPE_SEQUAL;
4230 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004231 case 'i': if (p[1] == 's')
4232 {
4233 if (p[2] == 'n' && p[3] == 'o' && p[4] == 't')
4234 len = 5;
4235 if (!vim_isIDc(p[len]))
4236 {
4237 type = len == 2 ? TYPE_EQUAL : TYPE_NEQUAL;
4238 type_is = TRUE;
4239 }
4240 }
4241 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242 }
4243
4244 /*
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004245 * If there is a comparative operator, use it.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 */
4247 if (type != TYPE_UNKNOWN)
4248 {
4249 /* extra question mark appended: ignore case */
4250 if (p[len] == '?')
4251 {
4252 ic = TRUE;
4253 ++len;
4254 }
4255 /* extra '#' appended: match case */
4256 else if (p[len] == '#')
4257 {
4258 ic = FALSE;
4259 ++len;
4260 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004261 /* nothing appended: use 'ignorecase' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 else
4263 ic = p_ic;
4264
4265 /*
4266 * Get the second variable.
4267 */
4268 *arg = skipwhite(p + len);
4269 if (eval5(arg, &var2, evaluate) == FAIL)
4270 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004271 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272 return FAIL;
4273 }
4274
4275 if (evaluate)
4276 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004277 if (type_is && rettv->v_type != var2.v_type)
4278 {
4279 /* For "is" a different type always means FALSE, for "notis"
4280 * it means TRUE. */
4281 n1 = (type == TYPE_NEQUAL);
4282 }
4283 else if (rettv->v_type == VAR_LIST || var2.v_type == VAR_LIST)
4284 {
4285 if (type_is)
4286 {
4287 n1 = (rettv->v_type == var2.v_type
4288 && rettv->vval.v_list == var2.vval.v_list);
4289 if (type == TYPE_NEQUAL)
4290 n1 = !n1;
4291 }
4292 else if (rettv->v_type != var2.v_type
4293 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4294 {
4295 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004296 EMSG(_("E691: Can only compare List with List"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004297 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004298 EMSG(_("E692: Invalid operation for Lists"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004299 clear_tv(rettv);
4300 clear_tv(&var2);
4301 return FAIL;
4302 }
4303 else
4304 {
4305 /* Compare two Lists for being equal or unequal. */
4306 n1 = list_equal(rettv->vval.v_list, var2.vval.v_list, ic);
4307 if (type == TYPE_NEQUAL)
4308 n1 = !n1;
4309 }
4310 }
4311
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004312 else if (rettv->v_type == VAR_DICT || var2.v_type == VAR_DICT)
4313 {
4314 if (type_is)
4315 {
4316 n1 = (rettv->v_type == var2.v_type
4317 && rettv->vval.v_dict == var2.vval.v_dict);
4318 if (type == TYPE_NEQUAL)
4319 n1 = !n1;
4320 }
4321 else if (rettv->v_type != var2.v_type
4322 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4323 {
4324 if (rettv->v_type != var2.v_type)
4325 EMSG(_("E735: Can only compare Dictionary with Dictionary"));
4326 else
4327 EMSG(_("E736: Invalid operation for Dictionary"));
4328 clear_tv(rettv);
4329 clear_tv(&var2);
4330 return FAIL;
4331 }
4332 else
4333 {
4334 /* Compare two Dictionaries for being equal or unequal. */
4335 n1 = dict_equal(rettv->vval.v_dict, var2.vval.v_dict, ic);
4336 if (type == TYPE_NEQUAL)
4337 n1 = !n1;
4338 }
4339 }
4340
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004341 else if (rettv->v_type == VAR_FUNC || var2.v_type == VAR_FUNC)
4342 {
4343 if (rettv->v_type != var2.v_type
4344 || (type != TYPE_EQUAL && type != TYPE_NEQUAL))
4345 {
4346 if (rettv->v_type != var2.v_type)
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004347 EMSG(_("E693: Can only compare Funcref with Funcref"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004348 else
Bram Moolenaare49b69a2005-01-08 16:11:57 +00004349 EMSG(_("E694: Invalid operation for Funcrefs"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004350 clear_tv(rettv);
4351 clear_tv(&var2);
4352 return FAIL;
4353 }
4354 else
4355 {
4356 /* Compare two Funcrefs for being equal or unequal. */
4357 if (rettv->vval.v_string == NULL
4358 || var2.vval.v_string == NULL)
4359 n1 = FALSE;
4360 else
4361 n1 = STRCMP(rettv->vval.v_string,
4362 var2.vval.v_string) == 0;
4363 if (type == TYPE_NEQUAL)
4364 n1 = !n1;
4365 }
4366 }
4367
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004368#ifdef FEAT_FLOAT
4369 /*
4370 * If one of the two variables is a float, compare as a float.
4371 * When using "=~" or "!~", always compare as string.
4372 */
4373 else if ((rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4374 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4375 {
4376 float_T f1, f2;
4377
4378 if (rettv->v_type == VAR_FLOAT)
4379 f1 = rettv->vval.v_float;
4380 else
4381 f1 = get_tv_number(rettv);
4382 if (var2.v_type == VAR_FLOAT)
4383 f2 = var2.vval.v_float;
4384 else
4385 f2 = get_tv_number(&var2);
4386 n1 = FALSE;
4387 switch (type)
4388 {
4389 case TYPE_EQUAL: n1 = (f1 == f2); break;
4390 case TYPE_NEQUAL: n1 = (f1 != f2); break;
4391 case TYPE_GREATER: n1 = (f1 > f2); break;
4392 case TYPE_GEQUAL: n1 = (f1 >= f2); break;
4393 case TYPE_SMALLER: n1 = (f1 < f2); break;
4394 case TYPE_SEQUAL: n1 = (f1 <= f2); break;
4395 case TYPE_UNKNOWN:
4396 case TYPE_MATCH:
4397 case TYPE_NOMATCH: break; /* avoid gcc warning */
4398 }
4399 }
4400#endif
4401
Bram Moolenaar071d4272004-06-13 20:20:40 +00004402 /*
4403 * If one of the two variables is a number, compare as a number.
4404 * When using "=~" or "!~", always compare as string.
4405 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004406 else if ((rettv->v_type == VAR_NUMBER || var2.v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 && type != TYPE_MATCH && type != TYPE_NOMATCH)
4408 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004409 n1 = get_tv_number(rettv);
4410 n2 = get_tv_number(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 switch (type)
4412 {
4413 case TYPE_EQUAL: n1 = (n1 == n2); break;
4414 case TYPE_NEQUAL: n1 = (n1 != n2); break;
4415 case TYPE_GREATER: n1 = (n1 > n2); break;
4416 case TYPE_GEQUAL: n1 = (n1 >= n2); break;
4417 case TYPE_SMALLER: n1 = (n1 < n2); break;
4418 case TYPE_SEQUAL: n1 = (n1 <= n2); break;
4419 case TYPE_UNKNOWN:
4420 case TYPE_MATCH:
4421 case TYPE_NOMATCH: break; /* avoid gcc warning */
4422 }
4423 }
4424 else
4425 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004426 s1 = get_tv_string_buf(rettv, buf1);
4427 s2 = get_tv_string_buf(&var2, buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 if (type != TYPE_MATCH && type != TYPE_NOMATCH)
4429 i = ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2);
4430 else
4431 i = 0;
4432 n1 = FALSE;
4433 switch (type)
4434 {
4435 case TYPE_EQUAL: n1 = (i == 0); break;
4436 case TYPE_NEQUAL: n1 = (i != 0); break;
4437 case TYPE_GREATER: n1 = (i > 0); break;
4438 case TYPE_GEQUAL: n1 = (i >= 0); break;
4439 case TYPE_SMALLER: n1 = (i < 0); break;
4440 case TYPE_SEQUAL: n1 = (i <= 0); break;
4441
4442 case TYPE_MATCH:
4443 case TYPE_NOMATCH:
4444 /* avoid 'l' flag in 'cpoptions' */
4445 save_cpo = p_cpo;
4446 p_cpo = (char_u *)"";
4447 regmatch.regprog = vim_regcomp(s2,
4448 RE_MAGIC + RE_STRING);
4449 regmatch.rm_ic = ic;
4450 if (regmatch.regprog != NULL)
4451 {
4452 n1 = vim_regexec_nl(&regmatch, s1, (colnr_T)0);
4453 vim_free(regmatch.regprog);
4454 if (type == TYPE_NOMATCH)
4455 n1 = !n1;
4456 }
4457 p_cpo = save_cpo;
4458 break;
4459
4460 case TYPE_UNKNOWN: break; /* avoid gcc warning */
4461 }
4462 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004463 clear_tv(rettv);
4464 clear_tv(&var2);
4465 rettv->v_type = VAR_NUMBER;
4466 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 }
4468 }
4469
4470 return OK;
4471}
4472
4473/*
4474 * Handle fourth level expression:
4475 * + number addition
4476 * - number subtraction
4477 * . string concatenation
4478 *
4479 * "arg" must point to the first non-white of the expression.
4480 * "arg" is advanced to the next non-white after the recognized expression.
4481 *
4482 * Return OK or FAIL.
4483 */
4484 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004485eval5(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004487 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 int evaluate;
4489{
Bram Moolenaar33570922005-01-25 22:26:29 +00004490 typval_T var2;
4491 typval_T var3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 int op;
4493 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004494#ifdef FEAT_FLOAT
4495 float_T f1 = 0, f2 = 0;
4496#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 char_u *s1, *s2;
4498 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
4499 char_u *p;
4500
4501 /*
4502 * Get the first variable.
4503 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004504 if (eval6(arg, rettv, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 return FAIL;
4506
4507 /*
4508 * Repeat computing, until no '+', '-' or '.' is following.
4509 */
4510 for (;;)
4511 {
4512 op = **arg;
4513 if (op != '+' && op != '-' && op != '.')
4514 break;
4515
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004516 if ((op != '+' || rettv->v_type != VAR_LIST)
4517#ifdef FEAT_FLOAT
4518 && (op == '.' || rettv->v_type != VAR_FLOAT)
4519#endif
4520 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004521 {
4522 /* For "list + ...", an illegal use of the first operand as
4523 * a number cannot be determined before evaluating the 2nd
4524 * operand: if this is also a list, all is ok.
4525 * For "something . ...", "something - ..." or "non-list + ...",
4526 * we know that the first operand needs to be a string or number
4527 * without evaluating the 2nd operand. So check before to avoid
4528 * side effects after an error. */
4529 if (evaluate && get_tv_string_chk(rettv) == NULL)
4530 {
4531 clear_tv(rettv);
4532 return FAIL;
4533 }
4534 }
4535
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 /*
4537 * Get the second variable.
4538 */
4539 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004540 if (eval6(arg, &var2, evaluate, op == '.') == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004542 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 return FAIL;
4544 }
4545
4546 if (evaluate)
4547 {
4548 /*
4549 * Compute the result.
4550 */
4551 if (op == '.')
4552 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004553 s1 = get_tv_string_buf(rettv, buf1); /* already checked */
4554 s2 = get_tv_string_buf_chk(&var2, buf2);
4555 if (s2 == NULL) /* type error ? */
4556 {
4557 clear_tv(rettv);
4558 clear_tv(&var2);
4559 return FAIL;
4560 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00004561 p = concat_str(s1, s2);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004562 clear_tv(rettv);
4563 rettv->v_type = VAR_STRING;
4564 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00004566 else if (op == '+' && rettv->v_type == VAR_LIST
4567 && var2.v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00004568 {
4569 /* concatenate Lists */
4570 if (list_concat(rettv->vval.v_list, var2.vval.v_list,
4571 &var3) == FAIL)
4572 {
4573 clear_tv(rettv);
4574 clear_tv(&var2);
4575 return FAIL;
4576 }
4577 clear_tv(rettv);
4578 *rettv = var3;
4579 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 else
4581 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004582 int error = FALSE;
4583
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004584#ifdef FEAT_FLOAT
4585 if (rettv->v_type == VAR_FLOAT)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004586 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004587 f1 = rettv->vval.v_float;
4588 n1 = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004589 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004590 else
4591#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004592 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004593 n1 = get_tv_number_chk(rettv, &error);
4594 if (error)
4595 {
4596 /* This can only happen for "list + non-list". For
4597 * "non-list + ..." or "something - ...", we returned
4598 * before evaluating the 2nd operand. */
4599 clear_tv(rettv);
4600 return FAIL;
4601 }
4602#ifdef FEAT_FLOAT
4603 if (var2.v_type == VAR_FLOAT)
4604 f1 = n1;
4605#endif
4606 }
4607#ifdef FEAT_FLOAT
4608 if (var2.v_type == VAR_FLOAT)
4609 {
4610 f2 = var2.vval.v_float;
4611 n2 = 0;
4612 }
4613 else
4614#endif
4615 {
4616 n2 = get_tv_number_chk(&var2, &error);
4617 if (error)
4618 {
4619 clear_tv(rettv);
4620 clear_tv(&var2);
4621 return FAIL;
4622 }
4623#ifdef FEAT_FLOAT
4624 if (rettv->v_type == VAR_FLOAT)
4625 f2 = n2;
4626#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004627 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004628 clear_tv(rettv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004629
4630#ifdef FEAT_FLOAT
4631 /* If there is a float on either side the result is a float. */
4632 if (rettv->v_type == VAR_FLOAT || var2.v_type == VAR_FLOAT)
4633 {
4634 if (op == '+')
4635 f1 = f1 + f2;
4636 else
4637 f1 = f1 - f2;
4638 rettv->v_type = VAR_FLOAT;
4639 rettv->vval.v_float = f1;
4640 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004642#endif
4643 {
4644 if (op == '+')
4645 n1 = n1 + n2;
4646 else
4647 n1 = n1 - n2;
4648 rettv->v_type = VAR_NUMBER;
4649 rettv->vval.v_number = n1;
4650 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004652 clear_tv(&var2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 }
4654 }
4655 return OK;
4656}
4657
4658/*
4659 * Handle fifth level expression:
4660 * * number multiplication
4661 * / number division
4662 * % number modulo
4663 *
4664 * "arg" must point to the first non-white of the expression.
4665 * "arg" is advanced to the next non-white after the recognized expression.
4666 *
4667 * Return OK or FAIL.
4668 */
4669 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004670eval6(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004672 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004674 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675{
Bram Moolenaar33570922005-01-25 22:26:29 +00004676 typval_T var2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 int op;
4678 long n1, n2;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004679#ifdef FEAT_FLOAT
4680 int use_float = FALSE;
4681 float_T f1 = 0, f2;
4682#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004683 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684
4685 /*
4686 * Get the first variable.
4687 */
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004688 if (eval7(arg, rettv, evaluate, want_string) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 return FAIL;
4690
4691 /*
4692 * Repeat computing, until no '*', '/' or '%' is following.
4693 */
4694 for (;;)
4695 {
4696 op = **arg;
4697 if (op != '*' && op != '/' && op != '%')
4698 break;
4699
4700 if (evaluate)
4701 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004702#ifdef FEAT_FLOAT
4703 if (rettv->v_type == VAR_FLOAT)
4704 {
4705 f1 = rettv->vval.v_float;
4706 use_float = TRUE;
4707 n1 = 0;
4708 }
4709 else
4710#endif
4711 n1 = get_tv_number_chk(rettv, &error);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004712 clear_tv(rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00004713 if (error)
4714 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 }
4716 else
4717 n1 = 0;
4718
4719 /*
4720 * Get the second variable.
4721 */
4722 *arg = skipwhite(*arg + 1);
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004723 if (eval7(arg, &var2, evaluate, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 return FAIL;
4725
4726 if (evaluate)
4727 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004728#ifdef FEAT_FLOAT
4729 if (var2.v_type == VAR_FLOAT)
4730 {
4731 if (!use_float)
4732 {
4733 f1 = n1;
4734 use_float = TRUE;
4735 }
4736 f2 = var2.vval.v_float;
4737 n2 = 0;
4738 }
4739 else
4740#endif
4741 {
4742 n2 = get_tv_number_chk(&var2, &error);
4743 clear_tv(&var2);
4744 if (error)
4745 return FAIL;
4746#ifdef FEAT_FLOAT
4747 if (use_float)
4748 f2 = n2;
4749#endif
4750 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751
4752 /*
4753 * Compute the result.
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004754 * When either side is a float the result is a float.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004756#ifdef FEAT_FLOAT
4757 if (use_float)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004759 if (op == '*')
4760 f1 = f1 * f2;
4761 else if (op == '/')
4762 {
4763 /* We rely on the floating point library to handle divide
4764 * by zero to result in "inf" and not a crash. */
4765 f1 = f1 / f2;
4766 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004768 {
Bram Moolenaar1378fca2008-07-04 16:51:55 +00004769 EMSG(_("E804: Cannot use '%' with Float"));
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004770 return FAIL;
4771 }
4772 rettv->v_type = VAR_FLOAT;
4773 rettv->vval.v_float = f1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 }
4775 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004776#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004778 if (op == '*')
4779 n1 = n1 * n2;
4780 else if (op == '/')
4781 {
4782 if (n2 == 0) /* give an error message? */
4783 {
4784 if (n1 == 0)
4785 n1 = -0x7fffffffL - 1L; /* similar to NaN */
4786 else if (n1 < 0)
4787 n1 = -0x7fffffffL;
4788 else
4789 n1 = 0x7fffffffL;
4790 }
4791 else
4792 n1 = n1 / n2;
4793 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004795 {
4796 if (n2 == 0) /* give an error message? */
4797 n1 = 0;
4798 else
4799 n1 = n1 % n2;
4800 }
4801 rettv->v_type = VAR_NUMBER;
4802 rettv->vval.v_number = n1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 }
4805 }
4806
4807 return OK;
4808}
4809
4810/*
4811 * Handle sixth level expression:
4812 * number number constant
Bram Moolenaarbae0c162007-05-10 19:30:25 +00004813 * "string" string constant
4814 * 'string' literal string constant
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815 * &option-name option value
4816 * @r register contents
4817 * identifier variable value
4818 * function() function call
4819 * $VAR environment variable
4820 * (expression) nested expression
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00004821 * [expr, expr] List
4822 * {key: val, key: val} Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823 *
4824 * Also handle:
4825 * ! in front logical NOT
4826 * - in front unary minus
4827 * + in front unary plus (ignored)
Bram Moolenaar8c711452005-01-14 21:53:12 +00004828 * trailing [] subscript in String or List
4829 * trailing .name entry in Dictionary
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830 *
4831 * "arg" must point to the first non-white of the expression.
4832 * "arg" is advanced to the next non-white after the recognized expression.
4833 *
4834 * Return OK or FAIL.
4835 */
4836 static int
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004837eval7(arg, rettv, evaluate, want_string)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00004839 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 int evaluate;
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004841 int want_string; /* after "." operator */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842{
Bram Moolenaar071d4272004-06-13 20:20:40 +00004843 long n;
4844 int len;
4845 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 char_u *start_leader, *end_leader;
4847 int ret = OK;
4848 char_u *alias;
4849
4850 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004851 * Initialise variable so that clear_tv() can't mistake this for a
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004852 * string and free a string that isn't there.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004853 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004854 rettv->v_type = VAR_UNKNOWN;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855
4856 /*
4857 * Skip '!' and '-' characters. They are handled later.
4858 */
4859 start_leader = *arg;
4860 while (**arg == '!' || **arg == '-' || **arg == '+')
4861 *arg = skipwhite(*arg + 1);
4862 end_leader = *arg;
4863
4864 switch (**arg)
4865 {
4866 /*
4867 * Number constant.
4868 */
4869 case '0':
4870 case '1':
4871 case '2':
4872 case '3':
4873 case '4':
4874 case '5':
4875 case '6':
4876 case '7':
4877 case '8':
4878 case '9':
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004879 {
4880#ifdef FEAT_FLOAT
4881 char_u *p = skipdigits(*arg + 1);
4882 int get_float = FALSE;
4883
4884 /* We accept a float when the format matches
4885 * "[0-9]\+\.[0-9]\+\([eE][+-]\?[0-9]\+\)\?". This is very
Bram Moolenaar8d00f9c2008-06-28 13:09:56 +00004886 * strict to avoid backwards compatibility problems.
4887 * Don't look for a float after the "." operator, so that
4888 * ":let vers = 1.2.3" doesn't fail. */
4889 if (!want_string && p[0] == '.' && vim_isdigit(p[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004891 get_float = TRUE;
4892 p = skipdigits(p + 2);
4893 if (*p == 'e' || *p == 'E')
4894 {
4895 ++p;
4896 if (*p == '-' || *p == '+')
4897 ++p;
4898 if (!vim_isdigit(*p))
4899 get_float = FALSE;
4900 else
4901 p = skipdigits(p + 1);
4902 }
4903 if (ASCII_ISALPHA(*p) || *p == '.')
4904 get_float = FALSE;
4905 }
4906 if (get_float)
4907 {
4908 float_T f;
4909
4910 *arg += string2float(*arg, &f);
4911 if (evaluate)
4912 {
4913 rettv->v_type = VAR_FLOAT;
4914 rettv->vval.v_float = f;
4915 }
4916 }
4917 else
4918#endif
4919 {
4920 vim_str2nr(*arg, NULL, &len, TRUE, TRUE, &n, NULL);
4921 *arg += len;
4922 if (evaluate)
4923 {
4924 rettv->v_type = VAR_NUMBER;
4925 rettv->vval.v_number = n;
4926 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004927 }
4928 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004929 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930
4931 /*
4932 * String constant: "string".
4933 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004934 case '"': ret = get_string_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 break;
4936
4937 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004938 * Literal string constant: 'str''ing'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004939 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004940 case '\'': ret = get_lit_string_tv(arg, rettv, evaluate);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00004941 break;
4942
4943 /*
4944 * List: [expr, expr]
4945 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004946 case '[': ret = get_list_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004947 break;
4948
4949 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00004950 * Dictionary: {key: val, key: val}
4951 */
4952 case '{': ret = get_dict_tv(arg, rettv, evaluate);
4953 break;
4954
4955 /*
Bram Moolenaare9a41262005-01-15 22:18:47 +00004956 * Option value: &name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00004958 case '&': ret = get_option_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 break;
4960
4961 /*
4962 * Environment variable: $VAR.
4963 */
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004964 case '$': ret = get_env_tv(arg, rettv, evaluate);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 break;
4966
4967 /*
4968 * Register contents: @r.
4969 */
4970 case '@': ++*arg;
4971 if (evaluate)
4972 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004973 rettv->v_type = VAR_STRING;
Bram Moolenaar92124a32005-06-17 22:03:40 +00004974 rettv->vval.v_string = get_reg_contents(**arg, TRUE, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 }
4976 if (**arg != NUL)
4977 ++*arg;
4978 break;
4979
4980 /*
4981 * nested expression: (expression).
4982 */
4983 case '(': *arg = skipwhite(*arg + 1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004984 ret = eval1(arg, rettv, evaluate); /* recursive! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 if (**arg == ')')
4986 ++*arg;
4987 else if (ret == OK)
4988 {
4989 EMSG(_("E110: Missing ')'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00004990 clear_tv(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 ret = FAIL;
4992 }
4993 break;
4994
Bram Moolenaar8c711452005-01-14 21:53:12 +00004995 default: ret = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 break;
4997 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00004998
4999 if (ret == NOTDONE)
5000 {
5001 /*
5002 * Must be a variable or function name.
5003 * Can also be a curly-braces kind of name: {expr}.
5004 */
5005 s = *arg;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005006 len = get_name_len(arg, &alias, evaluate, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005007 if (alias != NULL)
5008 s = alias;
5009
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005010 if (len <= 0)
Bram Moolenaar8c711452005-01-14 21:53:12 +00005011 ret = FAIL;
5012 else
5013 {
5014 if (**arg == '(') /* recursive! */
5015 {
5016 /* If "s" is the name of a variable of type VAR_FUNC
5017 * use its contents. */
5018 s = deref_func_name(s, &len);
5019
5020 /* Invoke the function. */
5021 ret = get_func_tv(s, len, rettv, arg,
5022 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
Bram Moolenaare9a41262005-01-15 22:18:47 +00005023 &len, evaluate, NULL);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005024 /* Stop the expression evaluation when immediately
5025 * aborting on error, or when an interrupt occurred or
5026 * an exception was thrown but not caught. */
5027 if (aborting())
5028 {
5029 if (ret == OK)
5030 clear_tv(rettv);
5031 ret = FAIL;
5032 }
5033 }
5034 else if (evaluate)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005035 ret = get_var_tv(s, len, rettv, TRUE);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005036 else
5037 ret = OK;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005038 }
5039
5040 if (alias != NULL)
5041 vim_free(alias);
5042 }
5043
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 *arg = skipwhite(*arg);
5045
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005046 /* Handle following '[', '(' and '.' for expr[expr], expr.name,
5047 * expr(expr). */
5048 if (ret == OK)
5049 ret = handle_subscript(arg, rettv, evaluate, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050
5051 /*
5052 * Apply logical NOT and unary '-', from right to left, ignore '+'.
5053 */
5054 if (ret == OK && evaluate && end_leader > start_leader)
5055 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005056 int error = FALSE;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005057 int val = 0;
5058#ifdef FEAT_FLOAT
5059 float_T f = 0.0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005060
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005061 if (rettv->v_type == VAR_FLOAT)
5062 f = rettv->vval.v_float;
5063 else
5064#endif
5065 val = get_tv_number_chk(rettv, &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005066 if (error)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005068 clear_tv(rettv);
5069 ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005071 else
5072 {
5073 while (end_leader > start_leader)
5074 {
5075 --end_leader;
5076 if (*end_leader == '!')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005077 {
5078#ifdef FEAT_FLOAT
5079 if (rettv->v_type == VAR_FLOAT)
5080 f = !f;
5081 else
5082#endif
5083 val = !val;
5084 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005085 else if (*end_leader == '-')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005086 {
5087#ifdef FEAT_FLOAT
5088 if (rettv->v_type == VAR_FLOAT)
5089 f = -f;
5090 else
5091#endif
5092 val = -val;
5093 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005094 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005095#ifdef FEAT_FLOAT
5096 if (rettv->v_type == VAR_FLOAT)
5097 {
5098 clear_tv(rettv);
5099 rettv->vval.v_float = f;
5100 }
5101 else
5102#endif
5103 {
5104 clear_tv(rettv);
5105 rettv->v_type = VAR_NUMBER;
5106 rettv->vval.v_number = val;
5107 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005108 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 }
5110
5111 return ret;
5112}
5113
5114/*
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005115 * Evaluate an "[expr]" or "[expr:expr]" index. Also "dict.key".
5116 * "*arg" points to the '[' or '.'.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005117 * Returns FAIL or OK. "*arg" is advanced to after the ']'.
5118 */
5119 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005120eval_index(arg, rettv, evaluate, verbose)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005121 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005122 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005123 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005124 int verbose; /* give error messages */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005125{
5126 int empty1 = FALSE, empty2 = FALSE;
Bram Moolenaar33570922005-01-25 22:26:29 +00005127 typval_T var1, var2;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005128 long n1, n2 = 0;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005129 long len = -1;
5130 int range = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005131 char_u *s;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005132 char_u *key = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005133
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005134 if (rettv->v_type == VAR_FUNC
5135#ifdef FEAT_FLOAT
5136 || rettv->v_type == VAR_FLOAT
5137#endif
5138 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005139 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005140 if (verbose)
5141 EMSG(_("E695: Cannot index a Funcref"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005142 return FAIL;
5143 }
5144
Bram Moolenaar8c711452005-01-14 21:53:12 +00005145 if (**arg == '.')
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005146 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005147 /*
5148 * dict.name
5149 */
5150 key = *arg + 1;
5151 for (len = 0; ASCII_ISALNUM(key[len]) || key[len] == '_'; ++len)
5152 ;
5153 if (len == 0)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005154 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005155 *arg = skipwhite(key + len);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005156 }
5157 else
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005158 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005159 /*
5160 * something[idx]
5161 *
5162 * Get the (first) variable from inside the [].
5163 */
5164 *arg = skipwhite(*arg + 1);
5165 if (**arg == ':')
5166 empty1 = TRUE;
5167 else if (eval1(arg, &var1, evaluate) == FAIL) /* recursive! */
5168 return FAIL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005169 else if (evaluate && get_tv_string_chk(&var1) == NULL)
5170 {
5171 /* not a number or string */
5172 clear_tv(&var1);
5173 return FAIL;
5174 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005175
5176 /*
5177 * Get the second variable from inside the [:].
5178 */
5179 if (**arg == ':')
5180 {
5181 range = TRUE;
5182 *arg = skipwhite(*arg + 1);
5183 if (**arg == ']')
5184 empty2 = TRUE;
5185 else if (eval1(arg, &var2, evaluate) == FAIL) /* recursive! */
5186 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005187 if (!empty1)
5188 clear_tv(&var1);
5189 return FAIL;
5190 }
5191 else if (evaluate && get_tv_string_chk(&var2) == NULL)
5192 {
5193 /* not a number or string */
5194 if (!empty1)
5195 clear_tv(&var1);
5196 clear_tv(&var2);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005197 return FAIL;
5198 }
5199 }
5200
5201 /* Check for the ']'. */
5202 if (**arg != ']')
5203 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005204 if (verbose)
5205 EMSG(_(e_missbrac));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005206 clear_tv(&var1);
5207 if (range)
5208 clear_tv(&var2);
5209 return FAIL;
5210 }
5211 *arg = skipwhite(*arg + 1); /* skip the ']' */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005212 }
5213
5214 if (evaluate)
5215 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005216 n1 = 0;
5217 if (!empty1 && rettv->v_type != VAR_DICT)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005218 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005219 n1 = get_tv_number(&var1);
5220 clear_tv(&var1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005221 }
5222 if (range)
5223 {
5224 if (empty2)
5225 n2 = -1;
5226 else
5227 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005228 n2 = get_tv_number(&var2);
5229 clear_tv(&var2);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005230 }
5231 }
5232
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005233 switch (rettv->v_type)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005234 {
5235 case VAR_NUMBER:
5236 case VAR_STRING:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005237 s = get_tv_string(rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005238 len = (long)STRLEN(s);
5239 if (range)
5240 {
5241 /* The resulting variable is a substring. If the indexes
5242 * are out of range the result is empty. */
5243 if (n1 < 0)
5244 {
5245 n1 = len + n1;
5246 if (n1 < 0)
5247 n1 = 0;
5248 }
5249 if (n2 < 0)
5250 n2 = len + n2;
5251 else if (n2 >= len)
5252 n2 = len;
5253 if (n1 >= len || n2 < 0 || n1 > n2)
5254 s = NULL;
5255 else
5256 s = vim_strnsave(s + n1, (int)(n2 - n1 + 1));
5257 }
5258 else
5259 {
5260 /* The resulting variable is a string of a single
5261 * character. If the index is too big or negative the
5262 * result is empty. */
5263 if (n1 >= len || n1 < 0)
5264 s = NULL;
5265 else
5266 s = vim_strnsave(s + n1, 1);
5267 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005268 clear_tv(rettv);
5269 rettv->v_type = VAR_STRING;
5270 rettv->vval.v_string = s;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005271 break;
5272
5273 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005274 len = list_len(rettv->vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005275 if (n1 < 0)
5276 n1 = len + n1;
5277 if (!empty1 && (n1 < 0 || n1 >= len))
5278 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005279 /* For a range we allow invalid values and return an empty
5280 * list. A list index out of range is an error. */
5281 if (!range)
5282 {
5283 if (verbose)
5284 EMSGN(_(e_listidx), n1);
5285 return FAIL;
5286 }
5287 n1 = len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005288 }
5289 if (range)
5290 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005291 list_T *l;
5292 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005293
5294 if (n2 < 0)
5295 n2 = len + n2;
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +00005296 else if (n2 >= len)
5297 n2 = len - 1;
5298 if (!empty2 && (n2 < 0 || n2 + 1 < n1))
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005299 n2 = -1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005300 l = list_alloc();
5301 if (l == NULL)
5302 return FAIL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005303 for (item = list_find(rettv->vval.v_list, n1);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005304 n1 <= n2; ++n1)
5305 {
5306 if (list_append_tv(l, &item->li_tv) == FAIL)
5307 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00005308 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005309 return FAIL;
5310 }
5311 item = item->li_next;
5312 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005313 clear_tv(rettv);
5314 rettv->v_type = VAR_LIST;
5315 rettv->vval.v_list = l;
Bram Moolenaar0d660222005-01-07 21:51:51 +00005316 ++l->lv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005317 }
5318 else
5319 {
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00005320 copy_tv(&list_find(rettv->vval.v_list, n1)->li_tv, &var1);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005321 clear_tv(rettv);
5322 *rettv = var1;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005323 }
5324 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005325
5326 case VAR_DICT:
5327 if (range)
5328 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005329 if (verbose)
5330 EMSG(_(e_dictrange));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005331 if (len == -1)
5332 clear_tv(&var1);
5333 return FAIL;
5334 }
5335 {
Bram Moolenaar33570922005-01-25 22:26:29 +00005336 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005337
5338 if (len == -1)
5339 {
5340 key = get_tv_string(&var1);
5341 if (*key == NUL)
5342 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005343 if (verbose)
5344 EMSG(_(e_emptykey));
Bram Moolenaar8c711452005-01-14 21:53:12 +00005345 clear_tv(&var1);
5346 return FAIL;
5347 }
5348 }
5349
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005350 item = dict_find(rettv->vval.v_dict, key, (int)len);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005351
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00005352 if (item == NULL && verbose)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005353 EMSG2(_(e_dictkey), key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00005354 if (len == -1)
5355 clear_tv(&var1);
5356 if (item == NULL)
5357 return FAIL;
5358
5359 copy_tv(&item->di_tv, &var1);
5360 clear_tv(rettv);
5361 *rettv = var1;
5362 }
5363 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005364 }
5365 }
5366
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005367 return OK;
5368}
5369
5370/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 * Get an option value.
5372 * "arg" points to the '&' or '+' before the option name.
5373 * "arg" is advanced to character after the option name.
5374 * Return OK or FAIL.
5375 */
5376 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005377get_option_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005379 typval_T *rettv; /* when NULL, only check if option exists */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 int evaluate;
5381{
5382 char_u *option_end;
5383 long numval;
5384 char_u *stringval;
5385 int opt_type;
5386 int c;
5387 int working = (**arg == '+'); /* has("+option") */
5388 int ret = OK;
5389 int opt_flags;
5390
5391 /*
5392 * Isolate the option name and find its value.
5393 */
5394 option_end = find_option_end(arg, &opt_flags);
5395 if (option_end == NULL)
5396 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005397 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005398 EMSG2(_("E112: Option name missing: %s"), *arg);
5399 return FAIL;
5400 }
5401
5402 if (!evaluate)
5403 {
5404 *arg = option_end;
5405 return OK;
5406 }
5407
5408 c = *option_end;
5409 *option_end = NUL;
5410 opt_type = get_option_value(*arg, &numval,
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005411 rettv == NULL ? NULL : &stringval, opt_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412
5413 if (opt_type == -3) /* invalid name */
5414 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005415 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416 EMSG2(_("E113: Unknown option: %s"), *arg);
5417 ret = FAIL;
5418 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005419 else if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 {
5421 if (opt_type == -2) /* hidden string option */
5422 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005423 rettv->v_type = VAR_STRING;
5424 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005425 }
5426 else if (opt_type == -1) /* hidden number option */
5427 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005428 rettv->v_type = VAR_NUMBER;
5429 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 }
5431 else if (opt_type == 1) /* number option */
5432 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005433 rettv->v_type = VAR_NUMBER;
5434 rettv->vval.v_number = numval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435 }
5436 else /* string option */
5437 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005438 rettv->v_type = VAR_STRING;
5439 rettv->vval.v_string = stringval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005440 }
5441 }
5442 else if (working && (opt_type == -2 || opt_type == -1))
5443 ret = FAIL;
5444
5445 *option_end = c; /* put back for error messages */
5446 *arg = option_end;
5447
5448 return ret;
5449}
5450
5451/*
5452 * Allocate a variable for a string constant.
5453 * Return OK or FAIL.
5454 */
5455 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005456get_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005457 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005458 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005459 int evaluate;
5460{
5461 char_u *p;
5462 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005463 int extra = 0;
5464
5465 /*
5466 * Find the end of the string, skipping backslashed characters.
5467 */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005468 for (p = *arg + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005469 {
5470 if (*p == '\\' && p[1] != NUL)
5471 {
5472 ++p;
5473 /* A "\<x>" form occupies at least 4 characters, and produces up
5474 * to 6 characters: reserve space for 2 extra */
5475 if (*p == '<')
5476 extra += 2;
5477 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005478 }
5479
5480 if (*p != '"')
5481 {
5482 EMSG2(_("E114: Missing quote: %s"), *arg);
5483 return FAIL;
5484 }
5485
5486 /* If only parsing, set *arg and return here */
5487 if (!evaluate)
5488 {
5489 *arg = p + 1;
5490 return OK;
5491 }
5492
5493 /*
5494 * Copy the string into allocated memory, handling backslashed
5495 * characters.
5496 */
5497 name = alloc((unsigned)(p - *arg + extra));
5498 if (name == NULL)
5499 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005500 rettv->v_type = VAR_STRING;
5501 rettv->vval.v_string = name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502
Bram Moolenaar8c711452005-01-14 21:53:12 +00005503 for (p = *arg + 1; *p != NUL && *p != '"'; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504 {
5505 if (*p == '\\')
5506 {
5507 switch (*++p)
5508 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005509 case 'b': *name++ = BS; ++p; break;
5510 case 'e': *name++ = ESC; ++p; break;
5511 case 'f': *name++ = FF; ++p; break;
5512 case 'n': *name++ = NL; ++p; break;
5513 case 'r': *name++ = CAR; ++p; break;
5514 case 't': *name++ = TAB; ++p; break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515
5516 case 'X': /* hex: "\x1", "\x12" */
5517 case 'x':
5518 case 'u': /* Unicode: "\u0023" */
5519 case 'U':
5520 if (vim_isxdigit(p[1]))
5521 {
5522 int n, nr;
5523 int c = toupper(*p);
5524
5525 if (c == 'X')
5526 n = 2;
5527 else
5528 n = 4;
5529 nr = 0;
5530 while (--n >= 0 && vim_isxdigit(p[1]))
5531 {
5532 ++p;
5533 nr = (nr << 4) + hex2nr(*p);
5534 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005535 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536#ifdef FEAT_MBYTE
5537 /* For "\u" store the number according to
5538 * 'encoding'. */
5539 if (c != 'X')
Bram Moolenaar8c711452005-01-14 21:53:12 +00005540 name += (*mb_char2bytes)(nr, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 else
5542#endif
Bram Moolenaar8c711452005-01-14 21:53:12 +00005543 *name++ = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005544 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 break;
5546
5547 /* octal: "\1", "\12", "\123" */
5548 case '0':
5549 case '1':
5550 case '2':
5551 case '3':
5552 case '4':
5553 case '5':
5554 case '6':
Bram Moolenaar8c711452005-01-14 21:53:12 +00005555 case '7': *name = *p++ - '0';
5556 if (*p >= '0' && *p <= '7')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005558 *name = (*name << 3) + *p++ - '0';
5559 if (*p >= '0' && *p <= '7')
5560 *name = (*name << 3) + *p++ - '0';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005561 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005562 ++name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 break;
5564
5565 /* Special key, e.g.: "\<C-W>" */
Bram Moolenaar8c711452005-01-14 21:53:12 +00005566 case '<': extra = trans_special(&p, name, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 if (extra != 0)
5568 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005569 name += extra;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 break;
5571 }
5572 /* FALLTHROUGH */
5573
Bram Moolenaar8c711452005-01-14 21:53:12 +00005574 default: MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 break;
5576 }
5577 }
5578 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00005579 MB_COPY_CHAR(p, name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005580
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005582 *name = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 *arg = p + 1;
5584
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585 return OK;
5586}
5587
5588/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005589 * Allocate a variable for a 'str''ing' constant.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005590 * Return OK or FAIL.
5591 */
5592 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005593get_lit_string_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005595 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 int evaluate;
5597{
5598 char_u *p;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005599 char_u *str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005600 int reduce = 0;
5601
5602 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005603 * Find the end of the string, skipping ''.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005604 */
5605 for (p = *arg + 1; *p != NUL; mb_ptr_adv(p))
5606 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005607 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005608 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005609 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005610 break;
5611 ++reduce;
5612 ++p;
5613 }
5614 }
5615
Bram Moolenaar8c711452005-01-14 21:53:12 +00005616 if (*p != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005617 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005618 EMSG2(_("E115: Missing quote: %s"), *arg);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005619 return FAIL;
5620 }
5621
Bram Moolenaar8c711452005-01-14 21:53:12 +00005622 /* If only parsing return after setting "*arg" */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005623 if (!evaluate)
5624 {
5625 *arg = p + 1;
5626 return OK;
5627 }
5628
5629 /*
Bram Moolenaar8c711452005-01-14 21:53:12 +00005630 * Copy the string into allocated memory, handling '' to ' reduction.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005631 */
5632 str = alloc((unsigned)((p - *arg) - reduce));
5633 if (str == NULL)
5634 return FAIL;
Bram Moolenaar8c711452005-01-14 21:53:12 +00005635 rettv->v_type = VAR_STRING;
5636 rettv->vval.v_string = str;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005637
Bram Moolenaar8c711452005-01-14 21:53:12 +00005638 for (p = *arg + 1; *p != NUL; )
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005639 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005640 if (*p == '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005641 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005642 if (p[1] != '\'')
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005643 break;
5644 ++p;
5645 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005646 MB_COPY_CHAR(p, str);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005647 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00005648 *str = NUL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005649 *arg = p + 1;
5650
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00005651 return OK;
5652}
5653
5654/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005655 * Allocate a variable for a List and fill it from "*arg".
5656 * Return OK or FAIL.
5657 */
5658 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005659get_list_tv(arg, rettv, evaluate)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005660 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00005661 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005662 int evaluate;
5663{
Bram Moolenaar33570922005-01-25 22:26:29 +00005664 list_T *l = NULL;
5665 typval_T tv;
5666 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005667
5668 if (evaluate)
5669 {
5670 l = list_alloc();
5671 if (l == NULL)
5672 return FAIL;
5673 }
5674
5675 *arg = skipwhite(*arg + 1);
5676 while (**arg != ']' && **arg != NUL)
5677 {
5678 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
5679 goto failret;
5680 if (evaluate)
5681 {
5682 item = listitem_alloc();
5683 if (item != NULL)
5684 {
5685 item->li_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00005686 item->li_tv.v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005687 list_append(l, item);
5688 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005689 else
5690 clear_tv(&tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005691 }
5692
5693 if (**arg == ']')
5694 break;
5695 if (**arg != ',')
5696 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005697 EMSG2(_("E696: Missing comma in List: %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005698 goto failret;
5699 }
5700 *arg = skipwhite(*arg + 1);
5701 }
5702
5703 if (**arg != ']')
5704 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00005705 EMSG2(_("E697: Missing end of List ']': %s"), *arg);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005706failret:
5707 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00005708 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005709 return FAIL;
5710 }
5711
5712 *arg = skipwhite(*arg + 1);
5713 if (evaluate)
5714 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005715 rettv->v_type = VAR_LIST;
5716 rettv->vval.v_list = l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005717 ++l->lv_refcount;
5718 }
5719
5720 return OK;
5721}
5722
5723/*
5724 * Allocate an empty header for a list.
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00005725 * Caller should take care of the reference count.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005726 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005727 list_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005728list_alloc()
5729{
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005730 list_T *l;
5731
5732 l = (list_T *)alloc_clear(sizeof(list_T));
5733 if (l != NULL)
5734 {
5735 /* Prepend the list to the list of lists for garbage collection. */
5736 if (first_list != NULL)
5737 first_list->lv_used_prev = l;
5738 l->lv_used_prev = NULL;
5739 l->lv_used_next = first_list;
5740 first_list = l;
5741 }
5742 return l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005743}
5744
5745/*
Bram Moolenaareddf53b2006-02-27 00:11:10 +00005746 * Allocate an empty list for a return value.
5747 * Returns OK or FAIL.
5748 */
5749 static int
5750rettv_list_alloc(rettv)
5751 typval_T *rettv;
5752{
5753 list_T *l = list_alloc();
5754
5755 if (l == NULL)
5756 return FAIL;
5757
5758 rettv->vval.v_list = l;
5759 rettv->v_type = VAR_LIST;
5760 ++l->lv_refcount;
5761 return OK;
5762}
5763
5764/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005765 * Unreference a list: decrement the reference count and free it when it
5766 * becomes zero.
5767 */
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00005768 void
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005769list_unref(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005770 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005771{
Bram Moolenaar685295c2006-10-15 20:37:38 +00005772 if (l != NULL && --l->lv_refcount <= 0)
5773 list_free(l, TRUE);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005774}
5775
5776/*
5777 * Free a list, including all items it points to.
5778 * Ignores the reference count.
5779 */
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00005780 void
Bram Moolenaar685295c2006-10-15 20:37:38 +00005781list_free(l, recurse)
5782 list_T *l;
5783 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005784{
Bram Moolenaar33570922005-01-25 22:26:29 +00005785 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005786
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00005787 /* Remove the list from the list of lists for garbage collection. */
5788 if (l->lv_used_prev == NULL)
5789 first_list = l->lv_used_next;
5790 else
5791 l->lv_used_prev->lv_used_next = l->lv_used_next;
5792 if (l->lv_used_next != NULL)
5793 l->lv_used_next->lv_used_prev = l->lv_used_prev;
5794
Bram Moolenaard9fba312005-06-26 22:34:35 +00005795 for (item = l->lv_first; item != NULL; item = l->lv_first)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005796 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00005797 /* Remove the item before deleting it. */
5798 l->lv_first = item->li_next;
Bram Moolenaar685295c2006-10-15 20:37:38 +00005799 if (recurse || (item->li_tv.v_type != VAR_LIST
5800 && item->li_tv.v_type != VAR_DICT))
5801 clear_tv(&item->li_tv);
5802 vim_free(item);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005803 }
5804 vim_free(l);
5805}
5806
5807/*
5808 * Allocate a list item.
5809 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005810 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005811listitem_alloc()
5812{
Bram Moolenaar33570922005-01-25 22:26:29 +00005813 return (listitem_T *)alloc(sizeof(listitem_T));
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005814}
5815
5816/*
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00005817 * Free a list item. Also clears the value. Does not notify watchers.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005818 */
5819 static void
5820listitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005821 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005822{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00005823 clear_tv(&item->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005824 vim_free(item);
5825}
5826
5827/*
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005828 * Remove a list item from a List and free it. Also clears the value.
5829 */
5830 static void
5831listitem_remove(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00005832 list_T *l;
5833 listitem_T *item;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00005834{
5835 list_remove(l, item, item);
5836 listitem_free(item);
5837}
5838
5839/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005840 * Get the number of items in a list.
5841 */
5842 static long
5843list_len(l)
Bram Moolenaar33570922005-01-25 22:26:29 +00005844 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005845{
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005846 if (l == NULL)
5847 return 0L;
Bram Moolenaar758711c2005-02-02 23:11:38 +00005848 return l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005849}
5850
5851/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005852 * Return TRUE when two lists have exactly the same values.
5853 */
5854 static int
5855list_equal(l1, l2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005856 list_T *l1;
5857 list_T *l2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005858 int ic; /* ignore case for strings */
5859{
Bram Moolenaar33570922005-01-25 22:26:29 +00005860 listitem_T *item1, *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005861
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005862 if (l1 == NULL || l2 == NULL)
5863 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005864 if (l1 == l2)
5865 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005866 if (list_len(l1) != list_len(l2))
5867 return FALSE;
5868
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005869 for (item1 = l1->lv_first, item2 = l2->lv_first;
5870 item1 != NULL && item2 != NULL;
5871 item1 = item1->li_next, item2 = item2->li_next)
5872 if (!tv_equal(&item1->li_tv, &item2->li_tv, ic))
5873 return FALSE;
5874 return item1 == NULL && item2 == NULL;
5875}
5876
Bram Moolenaar9e70cf12009-05-26 20:59:55 +00005877#if defined(FEAT_PYTHON) || defined(FEAT_MZSCHEME) || defined(PROTO)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00005878/*
5879 * Return the dictitem that an entry in a hashtable points to.
5880 */
5881 dictitem_T *
5882dict_lookup(hi)
5883 hashitem_T *hi;
5884{
5885 return HI2DI(hi);
5886}
5887#endif
5888
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005889/*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005890 * Return TRUE when two dictionaries have exactly the same key/values.
5891 */
5892 static int
5893dict_equal(d1, d2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005894 dict_T *d1;
5895 dict_T *d2;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005896 int ic; /* ignore case for strings */
5897{
Bram Moolenaar33570922005-01-25 22:26:29 +00005898 hashitem_T *hi;
5899 dictitem_T *item2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005900 int todo;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005901
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00005902 if (d1 == NULL || d2 == NULL)
5903 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005904 if (d1 == d2)
5905 return TRUE;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005906 if (dict_len(d1) != dict_len(d2))
5907 return FALSE;
5908
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005909 todo = (int)d1->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00005910 for (hi = d1->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005911 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00005912 if (!HASHITEM_EMPTY(hi))
5913 {
5914 item2 = dict_find(d2, hi->hi_key, -1);
5915 if (item2 == NULL)
5916 return FALSE;
5917 if (!tv_equal(&HI2DI(hi)->di_tv, &item2->di_tv, ic))
5918 return FALSE;
5919 --todo;
5920 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00005921 }
5922 return TRUE;
5923}
5924
5925/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005926 * Return TRUE if "tv1" and "tv2" have the same value.
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005927 * Compares the items just like "==" would compare them, but strings and
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005928 * numbers are different. Floats and numbers are also different.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005929 */
5930 static int
5931tv_equal(tv1, tv2, ic)
Bram Moolenaar33570922005-01-25 22:26:29 +00005932 typval_T *tv1;
5933 typval_T *tv2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005934 int ic; /* ignore case */
5935{
5936 char_u buf1[NUMBUFLEN], buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005937 char_u *s1, *s2;
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005938 static int recursive = 0; /* cach recursive loops */
5939 int r;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005940
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005941 if (tv1->v_type != tv2->v_type)
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005942 return FALSE;
Bram Moolenaar8b402a02006-10-17 13:16:39 +00005943 /* Catch lists and dicts that have an endless loop by limiting
5944 * recursiveness to 1000. We guess they are equal then. */
5945 if (recursive >= 1000)
5946 return TRUE;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005947
5948 switch (tv1->v_type)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005949 {
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005950 case VAR_LIST:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005951 ++recursive;
5952 r = list_equal(tv1->vval.v_list, tv2->vval.v_list, ic);
5953 --recursive;
5954 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005955
5956 case VAR_DICT:
Bram Moolenaarb47a2402006-10-15 13:09:12 +00005957 ++recursive;
5958 r = dict_equal(tv1->vval.v_dict, tv2->vval.v_dict, ic);
5959 --recursive;
5960 return r;
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005961
5962 case VAR_FUNC:
5963 return (tv1->vval.v_string != NULL
5964 && tv2->vval.v_string != NULL
5965 && STRCMP(tv1->vval.v_string, tv2->vval.v_string) == 0);
5966
5967 case VAR_NUMBER:
5968 return tv1->vval.v_number == tv2->vval.v_number;
5969
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005970#ifdef FEAT_FLOAT
5971 case VAR_FLOAT:
5972 return tv1->vval.v_float == tv2->vval.v_float;
5973#endif
5974
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005975 case VAR_STRING:
5976 s1 = get_tv_string_buf(tv1, buf1);
5977 s2 = get_tv_string_buf(tv2, buf2);
5978 return ((ic ? MB_STRICMP(s1, s2) : STRCMP(s1, s2)) == 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005979 }
Bram Moolenaar7d1f5db2005-07-03 21:39:27 +00005980
5981 EMSG2(_(e_intern2), "tv_equal()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00005982 return TRUE;
5983}
5984
5985/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005986 * Locate item with index "n" in list "l" and return it.
5987 * A negative index is counted from the end; -1 is the last item.
5988 * Returns NULL when "n" is out of range.
5989 */
Bram Moolenaar33570922005-01-25 22:26:29 +00005990 static listitem_T *
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005991list_find(l, n)
Bram Moolenaar33570922005-01-25 22:26:29 +00005992 list_T *l;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005993 long n;
5994{
Bram Moolenaar33570922005-01-25 22:26:29 +00005995 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00005996 long idx;
5997
5998 if (l == NULL)
5999 return NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006000
6001 /* Negative index is relative to the end. */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006002 if (n < 0)
Bram Moolenaar758711c2005-02-02 23:11:38 +00006003 n = l->lv_len + n;
6004
6005 /* Check for index out of range. */
6006 if (n < 0 || n >= l->lv_len)
6007 return NULL;
6008
6009 /* When there is a cached index may start search from there. */
6010 if (l->lv_idx_item != NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006011 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006012 if (n < l->lv_idx / 2)
6013 {
6014 /* closest to the start of the list */
6015 item = l->lv_first;
6016 idx = 0;
6017 }
6018 else if (n > (l->lv_idx + l->lv_len) / 2)
6019 {
6020 /* closest to the end of the list */
6021 item = l->lv_last;
6022 idx = l->lv_len - 1;
6023 }
6024 else
6025 {
6026 /* closest to the cached index */
6027 item = l->lv_idx_item;
6028 idx = l->lv_idx;
6029 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006030 }
6031 else
6032 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006033 if (n < l->lv_len / 2)
6034 {
6035 /* closest to the start of the list */
6036 item = l->lv_first;
6037 idx = 0;
6038 }
6039 else
6040 {
6041 /* closest to the end of the list */
6042 item = l->lv_last;
6043 idx = l->lv_len - 1;
6044 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006045 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006046
6047 while (n > idx)
6048 {
6049 /* search forward */
6050 item = item->li_next;
6051 ++idx;
6052 }
6053 while (n < idx)
6054 {
6055 /* search backward */
6056 item = item->li_prev;
6057 --idx;
6058 }
6059
6060 /* cache the used index */
6061 l->lv_idx = idx;
6062 l->lv_idx_item = item;
6063
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006064 return item;
6065}
6066
6067/*
Bram Moolenaara5525202006-03-02 22:52:09 +00006068 * Get list item "l[idx]" as a number.
6069 */
6070 static long
6071list_find_nr(l, idx, errorp)
6072 list_T *l;
6073 long idx;
6074 int *errorp; /* set to TRUE when something wrong */
6075{
6076 listitem_T *li;
6077
6078 li = list_find(l, idx);
6079 if (li == NULL)
6080 {
6081 if (errorp != NULL)
6082 *errorp = TRUE;
6083 return -1L;
6084 }
6085 return get_tv_number_chk(&li->li_tv, errorp);
6086}
6087
6088/*
Bram Moolenaard812df62008-11-09 12:46:09 +00006089 * Get list item "l[idx - 1]" as a string. Returns NULL for failure.
6090 */
6091 char_u *
6092list_find_str(l, idx)
6093 list_T *l;
6094 long idx;
6095{
6096 listitem_T *li;
6097
6098 li = list_find(l, idx - 1);
6099 if (li == NULL)
6100 {
6101 EMSGN(_(e_listidx), idx);
6102 return NULL;
6103 }
6104 return get_tv_string(&li->li_tv);
6105}
6106
6107/*
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006108 * Locate "item" list "l" and return its index.
6109 * Returns -1 when "item" is not in the list.
6110 */
6111 static long
6112list_idx_of_item(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006113 list_T *l;
6114 listitem_T *item;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006115{
6116 long idx = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00006117 listitem_T *li;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006118
6119 if (l == NULL)
6120 return -1;
6121 idx = 0;
6122 for (li = l->lv_first; li != NULL && li != item; li = li->li_next)
6123 ++idx;
6124 if (li == NULL)
6125 return -1;
Bram Moolenaar75c50c42005-06-04 22:06:24 +00006126 return idx;
Bram Moolenaar6cc16192005-01-08 21:49:45 +00006127}
6128
6129/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006130 * Append item "item" to the end of list "l".
6131 */
6132 static void
6133list_append(l, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006134 list_T *l;
6135 listitem_T *item;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006136{
6137 if (l->lv_last == NULL)
6138 {
6139 /* empty list */
6140 l->lv_first = item;
6141 l->lv_last = item;
6142 item->li_prev = NULL;
6143 }
6144 else
6145 {
6146 l->lv_last->li_next = item;
6147 item->li_prev = l->lv_last;
6148 l->lv_last = item;
6149 }
Bram Moolenaar758711c2005-02-02 23:11:38 +00006150 ++l->lv_len;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006151 item->li_next = NULL;
6152}
6153
6154/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006155 * Append typval_T "tv" to the end of list "l".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006156 * Return FAIL when out of memory.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006157 */
6158 static int
6159list_append_tv(l, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006160 list_T *l;
6161 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006162{
Bram Moolenaar05159a02005-02-26 23:04:13 +00006163 listitem_T *li = listitem_alloc();
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006164
Bram Moolenaar05159a02005-02-26 23:04:13 +00006165 if (li == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006166 return FAIL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00006167 copy_tv(tv, &li->li_tv);
6168 list_append(l, li);
6169 return OK;
6170}
6171
6172/*
Bram Moolenaar2641f772005-03-25 21:58:17 +00006173 * Add a dictionary to a list. Used by getqflist().
Bram Moolenaar05159a02005-02-26 23:04:13 +00006174 * Return FAIL when out of memory.
6175 */
6176 int
6177list_append_dict(list, dict)
6178 list_T *list;
6179 dict_T *dict;
6180{
6181 listitem_T *li = listitem_alloc();
6182
6183 if (li == NULL)
6184 return FAIL;
6185 li->li_tv.v_type = VAR_DICT;
6186 li->li_tv.v_lock = 0;
6187 li->li_tv.vval.v_dict = dict;
6188 list_append(list, li);
6189 ++dict->dv_refcount;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006190 return OK;
6191}
6192
6193/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006194 * Make a copy of "str" and append it as an item to list "l".
Bram Moolenaar4463f292005-09-25 22:20:24 +00006195 * When "len" >= 0 use "str[len]".
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006196 * Returns FAIL when out of memory.
6197 */
Bram Moolenaard812df62008-11-09 12:46:09 +00006198 int
Bram Moolenaar4463f292005-09-25 22:20:24 +00006199list_append_string(l, str, len)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006200 list_T *l;
6201 char_u *str;
Bram Moolenaar4463f292005-09-25 22:20:24 +00006202 int len;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006203{
6204 listitem_T *li = listitem_alloc();
6205
6206 if (li == NULL)
6207 return FAIL;
6208 list_append(l, li);
6209 li->li_tv.v_type = VAR_STRING;
6210 li->li_tv.v_lock = 0;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006211 if (str == NULL)
6212 li->li_tv.vval.v_string = NULL;
6213 else if ((li->li_tv.vval.v_string = (len >= 0 ? vim_strnsave(str, len)
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00006214 : vim_strsave(str))) == NULL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00006215 return FAIL;
6216 return OK;
6217}
6218
6219/*
Bram Moolenaar4463f292005-09-25 22:20:24 +00006220 * Append "n" to list "l".
6221 * Returns FAIL when out of memory.
6222 */
6223 static int
6224list_append_number(l, n)
6225 list_T *l;
6226 varnumber_T n;
6227{
6228 listitem_T *li;
6229
6230 li = listitem_alloc();
6231 if (li == NULL)
6232 return FAIL;
6233 li->li_tv.v_type = VAR_NUMBER;
6234 li->li_tv.v_lock = 0;
6235 li->li_tv.vval.v_number = n;
6236 list_append(l, li);
6237 return OK;
6238}
6239
6240/*
Bram Moolenaar33570922005-01-25 22:26:29 +00006241 * Insert typval_T "tv" in list "l" before "item".
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006242 * If "item" is NULL append at the end.
6243 * Return FAIL when out of memory.
6244 */
6245 static int
6246list_insert_tv(l, tv, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006247 list_T *l;
6248 typval_T *tv;
6249 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006250{
Bram Moolenaar33570922005-01-25 22:26:29 +00006251 listitem_T *ni = listitem_alloc();
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006252
6253 if (ni == NULL)
6254 return FAIL;
6255 copy_tv(tv, &ni->li_tv);
6256 if (item == NULL)
6257 /* Append new item at end of list. */
6258 list_append(l, ni);
6259 else
6260 {
6261 /* Insert new item before existing item. */
6262 ni->li_prev = item->li_prev;
6263 ni->li_next = item;
6264 if (item->li_prev == NULL)
Bram Moolenaar758711c2005-02-02 23:11:38 +00006265 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006266 l->lv_first = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006267 ++l->lv_idx;
6268 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006269 else
Bram Moolenaar758711c2005-02-02 23:11:38 +00006270 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006271 item->li_prev->li_next = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006272 l->lv_idx_item = NULL;
6273 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006274 item->li_prev = ni;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006275 ++l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006276 }
6277 return OK;
6278}
6279
6280/*
6281 * Extend "l1" with "l2".
6282 * If "bef" is NULL append at the end, otherwise insert before this item.
6283 * Returns FAIL when out of memory.
6284 */
6285 static int
6286list_extend(l1, l2, bef)
Bram Moolenaar33570922005-01-25 22:26:29 +00006287 list_T *l1;
6288 list_T *l2;
6289 listitem_T *bef;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006290{
Bram Moolenaar33570922005-01-25 22:26:29 +00006291 listitem_T *item;
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006292 int todo = l2->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006293
Bram Moolenaardc9cf9c2008-08-08 10:36:31 +00006294 /* We also quit the loop when we have inserted the original item count of
6295 * the list, avoid a hang when we extend a list with itself. */
6296 for (item = l2->lv_first; item != NULL && --todo >= 0; item = item->li_next)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006297 if (list_insert_tv(l1, &item->li_tv, bef) == FAIL)
6298 return FAIL;
6299 return OK;
6300}
6301
6302/*
6303 * Concatenate lists "l1" and "l2" into a new list, stored in "tv".
6304 * Return FAIL when out of memory.
6305 */
6306 static int
6307list_concat(l1, l2, tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00006308 list_T *l1;
6309 list_T *l2;
6310 typval_T *tv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006311{
Bram Moolenaar33570922005-01-25 22:26:29 +00006312 list_T *l;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006313
Bram Moolenaar9bf749b2008-07-27 13:57:29 +00006314 if (l1 == NULL || l2 == NULL)
6315 return FAIL;
6316
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006317 /* make a copy of the first list. */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006318 l = list_copy(l1, FALSE, 0);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006319 if (l == NULL)
6320 return FAIL;
6321 tv->v_type = VAR_LIST;
6322 tv->vval.v_list = l;
6323
6324 /* append all items from the second list */
6325 return list_extend(l, l2, NULL);
6326}
6327
6328/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006329 * Make a copy of list "orig". Shallow if "deep" is FALSE.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006330 * The refcount of the new list is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006331 * See item_copy() for "copyID".
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006332 * Returns NULL when out of memory.
6333 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006334 static list_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006335list_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006336 list_T *orig;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006337 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006338 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006339{
Bram Moolenaar33570922005-01-25 22:26:29 +00006340 list_T *copy;
6341 listitem_T *item;
6342 listitem_T *ni;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006343
6344 if (orig == NULL)
6345 return NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006346
6347 copy = list_alloc();
6348 if (copy != NULL)
6349 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006350 if (copyID != 0)
6351 {
6352 /* Do this before adding the items, because one of the items may
6353 * refer back to this list. */
6354 orig->lv_copyID = copyID;
6355 orig->lv_copylist = copy;
6356 }
6357 for (item = orig->lv_first; item != NULL && !got_int;
6358 item = item->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006359 {
6360 ni = listitem_alloc();
6361 if (ni == NULL)
6362 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006363 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006364 {
6365 if (item_copy(&item->li_tv, &ni->li_tv, deep, copyID) == FAIL)
6366 {
6367 vim_free(ni);
6368 break;
6369 }
6370 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006371 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00006372 copy_tv(&item->li_tv, &ni->li_tv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006373 list_append(copy, ni);
6374 }
6375 ++copy->lv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006376 if (item != NULL)
6377 {
6378 list_unref(copy);
6379 copy = NULL;
6380 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006381 }
6382
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006383 return copy;
6384}
6385
6386/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006387 * Remove items "item" to "item2" from list "l".
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006388 * Does not free the listitem or the value!
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006389 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006390 static void
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00006391list_remove(l, item, item2)
Bram Moolenaar33570922005-01-25 22:26:29 +00006392 list_T *l;
6393 listitem_T *item;
6394 listitem_T *item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006395{
Bram Moolenaar33570922005-01-25 22:26:29 +00006396 listitem_T *ip;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006397
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006398 /* notify watchers */
6399 for (ip = item; ip != NULL; ip = ip->li_next)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006400 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00006401 --l->lv_len;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006402 list_fix_watch(l, ip);
6403 if (ip == item2)
6404 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006405 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00006406
6407 if (item2->li_next == NULL)
6408 l->lv_last = item->li_prev;
6409 else
6410 item2->li_next->li_prev = item->li_prev;
6411 if (item->li_prev == NULL)
6412 l->lv_first = item2->li_next;
6413 else
6414 item->li_prev->li_next = item2->li_next;
Bram Moolenaar758711c2005-02-02 23:11:38 +00006415 l->lv_idx_item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006416}
6417
6418/*
6419 * Return an allocated string with the string representation of a list.
6420 * May return NULL.
6421 */
6422 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006423list2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006424 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006425 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006426{
6427 garray_T ga;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006428
6429 if (tv->vval.v_list == NULL)
6430 return NULL;
6431 ga_init2(&ga, (int)sizeof(char), 80);
6432 ga_append(&ga, '[');
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006433 if (list_join(&ga, tv->vval.v_list, (char_u *)", ", FALSE, copyID) == FAIL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006434 {
6435 vim_free(ga.ga_data);
6436 return NULL;
6437 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +00006438 ga_append(&ga, ']');
6439 ga_append(&ga, NUL);
6440 return (char_u *)ga.ga_data;
6441}
6442
6443/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006444 * Join list "l" into a string in "*gap", using separator "sep".
6445 * When "echo" is TRUE use String as echoed, otherwise as inside a List.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006446 * Return FAIL or OK.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006447 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006448 static int
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006449list_join(gap, l, sep, echo, copyID)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006450 garray_T *gap;
Bram Moolenaar33570922005-01-25 22:26:29 +00006451 list_T *l;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006452 char_u *sep;
6453 int echo;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006454 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006455{
6456 int first = TRUE;
6457 char_u *tofree;
6458 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00006459 listitem_T *item;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006460 char_u *s;
6461
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006462 for (item = l->lv_first; item != NULL && !got_int; item = item->li_next)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006463 {
6464 if (first)
6465 first = FALSE;
6466 else
6467 ga_concat(gap, sep);
6468
6469 if (echo)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006470 s = echo_string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006471 else
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00006472 s = tv2string(&item->li_tv, &tofree, numbuf, copyID);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006473 if (s != NULL)
6474 ga_concat(gap, s);
6475 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006476 if (s == NULL)
6477 return FAIL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006478 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006479 return OK;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00006480}
6481
6482/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006483 * Garbage collection for lists and dictionaries.
6484 *
6485 * We use reference counts to be able to free most items right away when they
6486 * are no longer used. But for composite items it's possible that it becomes
6487 * unused while the reference count is > 0: When there is a recursive
6488 * reference. Example:
6489 * :let l = [1, 2, 3]
6490 * :let d = {9: l}
6491 * :let l[1] = d
6492 *
6493 * Since this is quite unusual we handle this with garbage collection: every
6494 * once in a while find out which lists and dicts are not referenced from any
6495 * variable.
6496 *
6497 * Here is a good reference text about garbage collection (refers to Python
6498 * but it applies to all reference-counting mechanisms):
6499 * http://python.ca/nas/python/gc/
Bram Moolenaard9fba312005-06-26 22:34:35 +00006500 */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006501
6502/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006503 * Do garbage collection for lists and dicts.
6504 * Return TRUE if some memory was freed.
Bram Moolenaard9fba312005-06-26 22:34:35 +00006505 */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006506 int
6507garbage_collect()
Bram Moolenaard9fba312005-06-26 22:34:35 +00006508{
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006509 int copyID;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006510 buf_T *buf;
6511 win_T *wp;
6512 int i;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +00006513 funccall_T *fc, **pfc;
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006514 int did_free;
6515 int did_free_funccal = FALSE;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006516#ifdef FEAT_WINDOWS
6517 tabpage_T *tp;
6518#endif
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006519
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006520 /* Only do this once. */
6521 want_garbage_collect = FALSE;
6522 may_garbage_collect = FALSE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00006523 garbage_collect_at_exit = FALSE;
Bram Moolenaar9fecb462006-09-05 10:59:47 +00006524
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006525 /* We advance by two because we add one for items referenced through
6526 * previous_funccal. */
6527 current_copyID += COPYID_INC;
6528 copyID = current_copyID;
6529
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006530 /*
6531 * 1. Go through all accessible variables and mark all lists and dicts
6532 * with copyID.
6533 */
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006534
6535 /* Don't free variables in the previous_funccal list unless they are only
6536 * referenced through previous_funccal. This must be first, because if
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00006537 * the item is referenced elsewhere the funccal must not be freed. */
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006538 for (fc = previous_funccal; fc != NULL; fc = fc->caller)
6539 {
6540 set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID + 1);
6541 set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID + 1);
6542 }
6543
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006544 /* script-local variables */
6545 for (i = 1; i <= ga_scripts.ga_len; ++i)
6546 set_ref_in_ht(&SCRIPT_VARS(i), copyID);
6547
6548 /* buffer-local variables */
6549 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
6550 set_ref_in_ht(&buf->b_vars.dv_hashtab, copyID);
6551
6552 /* window-local variables */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006553 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006554 set_ref_in_ht(&wp->w_vars.dv_hashtab, copyID);
6555
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006556#ifdef FEAT_WINDOWS
6557 /* tabpage-local variables */
6558 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next)
6559 set_ref_in_ht(&tp->tp_vars.dv_hashtab, copyID);
6560#endif
6561
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006562 /* global variables */
6563 set_ref_in_ht(&globvarht, copyID);
6564
6565 /* function-local variables */
6566 for (fc = current_funccal; fc != NULL; fc = fc->caller)
6567 {
6568 set_ref_in_ht(&fc->l_vars.dv_hashtab, copyID);
6569 set_ref_in_ht(&fc->l_avars.dv_hashtab, copyID);
6570 }
6571
Bram Moolenaard812df62008-11-09 12:46:09 +00006572 /* v: vars */
6573 set_ref_in_ht(&vimvarht, copyID);
6574
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00006575 /*
6576 * 2. Free lists and dictionaries that are not referenced.
6577 */
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006578 did_free = free_unref_items(copyID);
6579
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00006580 /*
6581 * 3. Check if any funccal can be freed now.
6582 */
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006583 for (pfc = &previous_funccal; *pfc != NULL; )
6584 {
6585 if (can_free_funccal(*pfc, copyID))
6586 {
6587 fc = *pfc;
6588 *pfc = fc->caller;
6589 free_funccal(fc, TRUE);
6590 did_free = TRUE;
6591 did_free_funccal = TRUE;
6592 }
6593 else
6594 pfc = &(*pfc)->caller;
6595 }
6596 if (did_free_funccal)
6597 /* When a funccal was freed some more items might be garbage
6598 * collected, so run again. */
6599 (void)garbage_collect();
6600
6601 return did_free;
6602}
6603
6604/*
6605 * Free lists and dictionaries that are no longer referenced.
6606 */
6607 static int
6608free_unref_items(copyID)
6609 int copyID;
6610{
6611 dict_T *dd;
6612 list_T *ll;
6613 int did_free = FALSE;
6614
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006615 /*
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006616 * Go through the list of dicts and free items without the copyID.
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006617 */
6618 for (dd = first_dict; dd != NULL; )
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006619 if ((dd->dv_copyID & COPYID_MASK) != (copyID & COPYID_MASK))
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006620 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006621 /* Free the Dictionary and ordinary items it contains, but don't
6622 * recurse into Lists and Dictionaries, they will be in the list
6623 * of dicts or list of lists. */
6624 dict_free(dd, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006625 did_free = TRUE;
6626
6627 /* restart, next dict may also have been freed */
6628 dd = first_dict;
6629 }
6630 else
6631 dd = dd->dv_used_next;
6632
6633 /*
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006634 * Go through the list of lists and free items without the copyID.
6635 * But don't free a list that has a watcher (used in a for loop), these
6636 * are not referenced anywhere.
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006637 */
6638 for (ll = first_list; ll != NULL; )
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +00006639 if ((ll->lv_copyID & COPYID_MASK) != (copyID & COPYID_MASK)
6640 && ll->lv_watch == NULL)
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006641 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006642 /* Free the List and ordinary items it contains, but don't recurse
6643 * into Lists and Dictionaries, they will be in the list of dicts
6644 * or list of lists. */
6645 list_free(ll, FALSE);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006646 did_free = TRUE;
6647
Bram Moolenaar7bb4c6e2005-09-07 21:22:27 +00006648 /* restart, next list may also have been freed */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006649 ll = first_list;
6650 }
6651 else
6652 ll = ll->lv_used_next;
6653
6654 return did_free;
6655}
6656
6657/*
6658 * Mark all lists and dicts referenced through hashtab "ht" with "copyID".
6659 */
6660 static void
6661set_ref_in_ht(ht, copyID)
6662 hashtab_T *ht;
6663 int copyID;
6664{
6665 int todo;
6666 hashitem_T *hi;
6667
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006668 todo = (int)ht->ht_used;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006669 for (hi = ht->ht_array; todo > 0; ++hi)
6670 if (!HASHITEM_EMPTY(hi))
6671 {
6672 --todo;
6673 set_ref_in_item(&HI2DI(hi)->di_tv, copyID);
6674 }
6675}
6676
6677/*
6678 * Mark all lists and dicts referenced through list "l" with "copyID".
6679 */
6680 static void
6681set_ref_in_list(l, copyID)
6682 list_T *l;
6683 int copyID;
6684{
6685 listitem_T *li;
6686
6687 for (li = l->lv_first; li != NULL; li = li->li_next)
6688 set_ref_in_item(&li->li_tv, copyID);
6689}
6690
6691/*
6692 * Mark all lists and dicts referenced through typval "tv" with "copyID".
6693 */
6694 static void
6695set_ref_in_item(tv, copyID)
6696 typval_T *tv;
6697 int copyID;
6698{
6699 dict_T *dd;
6700 list_T *ll;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006701
6702 switch (tv->v_type)
6703 {
6704 case VAR_DICT:
6705 dd = tv->vval.v_dict;
Bram Moolenaard812df62008-11-09 12:46:09 +00006706 if (dd != NULL && dd->dv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006707 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006708 /* Didn't see this dict yet. */
6709 dd->dv_copyID = copyID;
6710 set_ref_in_ht(&dd->dv_hashtab, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006711 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006712 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006713
6714 case VAR_LIST:
6715 ll = tv->vval.v_list;
Bram Moolenaard812df62008-11-09 12:46:09 +00006716 if (ll != NULL && ll->lv_copyID != copyID)
Bram Moolenaard9fba312005-06-26 22:34:35 +00006717 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006718 /* Didn't see this list yet. */
6719 ll->lv_copyID = copyID;
6720 set_ref_in_list(ll, copyID);
Bram Moolenaard9fba312005-06-26 22:34:35 +00006721 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006722 break;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006723 }
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006724 return;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006725}
6726
6727/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006728 * Allocate an empty header for a dictionary.
6729 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00006730 dict_T *
Bram Moolenaar8c711452005-01-14 21:53:12 +00006731dict_alloc()
6732{
Bram Moolenaar33570922005-01-25 22:26:29 +00006733 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006734
Bram Moolenaar33570922005-01-25 22:26:29 +00006735 d = (dict_T *)alloc(sizeof(dict_T));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006736 if (d != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006737 {
Bram Moolenaar685295c2006-10-15 20:37:38 +00006738 /* Add the list to the list of dicts for garbage collection. */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006739 if (first_dict != NULL)
6740 first_dict->dv_used_prev = d;
6741 d->dv_used_next = first_dict;
6742 d->dv_used_prev = NULL;
Bram Moolenaar685295c2006-10-15 20:37:38 +00006743 first_dict = d;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006744
Bram Moolenaar33570922005-01-25 22:26:29 +00006745 hash_init(&d->dv_hashtab);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006746 d->dv_lock = 0;
6747 d->dv_refcount = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006748 d->dv_copyID = 0;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006749 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006750 return d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006751}
6752
6753/*
6754 * Unreference a Dictionary: decrement the reference count and free it when it
6755 * becomes zero.
6756 */
6757 static void
6758dict_unref(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006759 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006760{
Bram Moolenaar685295c2006-10-15 20:37:38 +00006761 if (d != NULL && --d->dv_refcount <= 0)
6762 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006763}
6764
6765/*
6766 * Free a Dictionary, including all items it contains.
6767 * Ignores the reference count.
6768 */
6769 static void
Bram Moolenaar685295c2006-10-15 20:37:38 +00006770dict_free(d, recurse)
6771 dict_T *d;
6772 int recurse; /* Free Lists and Dictionaries recursively. */
Bram Moolenaar8c711452005-01-14 21:53:12 +00006773{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006774 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006775 hashitem_T *hi;
Bram Moolenaard9fba312005-06-26 22:34:35 +00006776 dictitem_T *di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006777
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00006778 /* Remove the dict from the list of dicts for garbage collection. */
6779 if (d->dv_used_prev == NULL)
6780 first_dict = d->dv_used_next;
6781 else
6782 d->dv_used_prev->dv_used_next = d->dv_used_next;
6783 if (d->dv_used_next != NULL)
6784 d->dv_used_next->dv_used_prev = d->dv_used_prev;
6785
6786 /* Lock the hashtab, we don't want it to resize while freeing items. */
Bram Moolenaard9fba312005-06-26 22:34:35 +00006787 hash_lock(&d->dv_hashtab);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006788 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00006789 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00006790 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006791 if (!HASHITEM_EMPTY(hi))
6792 {
Bram Moolenaard9fba312005-06-26 22:34:35 +00006793 /* Remove the item before deleting it, just in case there is
6794 * something recursive causing trouble. */
6795 di = HI2DI(hi);
6796 hash_remove(&d->dv_hashtab, hi);
Bram Moolenaar685295c2006-10-15 20:37:38 +00006797 if (recurse || (di->di_tv.v_type != VAR_LIST
6798 && di->di_tv.v_type != VAR_DICT))
6799 clear_tv(&di->di_tv);
6800 vim_free(di);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006801 --todo;
6802 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00006803 }
Bram Moolenaar33570922005-01-25 22:26:29 +00006804 hash_clear(&d->dv_hashtab);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006805 vim_free(d);
6806}
6807
6808/*
6809 * Allocate a Dictionary item.
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006810 * The "key" is copied to the new item.
6811 * Note that the value of the item "di_tv" still needs to be initialized!
6812 * Returns NULL when out of memory.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006813 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006814 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006815dictitem_alloc(key)
6816 char_u *key;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006817{
Bram Moolenaar33570922005-01-25 22:26:29 +00006818 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006819
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006820 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T) + STRLEN(key)));
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006821 if (di != NULL)
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006822 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006823 STRCPY(di->di_key, key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006824 di->di_flags = 0;
6825 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006826 return di;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006827}
6828
6829/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006830 * Make a copy of a Dictionary item.
6831 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006832 static dictitem_T *
Bram Moolenaare9a41262005-01-15 22:18:47 +00006833dictitem_copy(org)
Bram Moolenaar33570922005-01-25 22:26:29 +00006834 dictitem_T *org;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006835{
Bram Moolenaar33570922005-01-25 22:26:29 +00006836 dictitem_T *di;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006837
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006838 di = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
6839 + STRLEN(org->di_key)));
Bram Moolenaare9a41262005-01-15 22:18:47 +00006840 if (di != NULL)
6841 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006842 STRCPY(di->di_key, org->di_key);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00006843 di->di_flags = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006844 copy_tv(&org->di_tv, &di->di_tv);
6845 }
6846 return di;
6847}
6848
6849/*
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006850 * Remove item "item" from Dictionary "dict" and free it.
6851 */
6852 static void
6853dictitem_remove(dict, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006854 dict_T *dict;
6855 dictitem_T *item;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006856{
Bram Moolenaar33570922005-01-25 22:26:29 +00006857 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006858
Bram Moolenaar33570922005-01-25 22:26:29 +00006859 hi = hash_find(&dict->dv_hashtab, item->di_key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006860 if (HASHITEM_EMPTY(hi))
6861 EMSG2(_(e_intern2), "dictitem_remove()");
6862 else
Bram Moolenaar33570922005-01-25 22:26:29 +00006863 hash_remove(&dict->dv_hashtab, hi);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006864 dictitem_free(item);
6865}
6866
6867/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006868 * Free a dict item. Also clears the value.
6869 */
6870 static void
6871dictitem_free(item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006872 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006873{
Bram Moolenaar8c711452005-01-14 21:53:12 +00006874 clear_tv(&item->di_tv);
6875 vim_free(item);
6876}
6877
6878/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006879 * Make a copy of dict "d". Shallow if "deep" is FALSE.
6880 * The refcount of the new dict is set to 1.
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006881 * See item_copy() for "copyID".
Bram Moolenaare9a41262005-01-15 22:18:47 +00006882 * Returns NULL when out of memory.
6883 */
Bram Moolenaar33570922005-01-25 22:26:29 +00006884 static dict_T *
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006885dict_copy(orig, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00006886 dict_T *orig;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006887 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006888 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006889{
Bram Moolenaar33570922005-01-25 22:26:29 +00006890 dict_T *copy;
6891 dictitem_T *di;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006892 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +00006893 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00006894
6895 if (orig == NULL)
6896 return NULL;
6897
6898 copy = dict_alloc();
6899 if (copy != NULL)
6900 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006901 if (copyID != 0)
6902 {
6903 orig->dv_copyID = copyID;
6904 orig->dv_copydict = copy;
6905 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006906 todo = (int)orig->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006907 for (hi = orig->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +00006908 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006909 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +00006910 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006911 --todo;
6912
6913 di = dictitem_alloc(hi->hi_key);
6914 if (di == NULL)
6915 break;
6916 if (deep)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006917 {
6918 if (item_copy(&HI2DI(hi)->di_tv, &di->di_tv, deep,
6919 copyID) == FAIL)
6920 {
6921 vim_free(di);
6922 break;
6923 }
6924 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006925 else
6926 copy_tv(&HI2DI(hi)->di_tv, &di->di_tv);
6927 if (dict_add(copy, di) == FAIL)
6928 {
6929 dictitem_free(di);
6930 break;
6931 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006932 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006933 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006934
Bram Moolenaare9a41262005-01-15 22:18:47 +00006935 ++copy->dv_refcount;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00006936 if (todo > 0)
6937 {
6938 dict_unref(copy);
6939 copy = NULL;
6940 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00006941 }
6942
6943 return copy;
6944}
6945
6946/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00006947 * Add item "item" to Dictionary "d".
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006948 * Returns FAIL when out of memory and when key already existed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00006949 */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00006950 static int
Bram Moolenaar8c711452005-01-14 21:53:12 +00006951dict_add(d, item)
Bram Moolenaar33570922005-01-25 22:26:29 +00006952 dict_T *d;
6953 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00006954{
Bram Moolenaar33570922005-01-25 22:26:29 +00006955 return hash_add(&d->dv_hashtab, item->di_key);
Bram Moolenaar8c711452005-01-14 21:53:12 +00006956}
6957
Bram Moolenaar8c711452005-01-14 21:53:12 +00006958/*
Bram Moolenaar05159a02005-02-26 23:04:13 +00006959 * Add a number or string entry to dictionary "d".
6960 * When "str" is NULL use number "nr", otherwise use "str".
6961 * Returns FAIL when out of memory and when key already exists.
6962 */
6963 int
6964dict_add_nr_str(d, key, nr, str)
6965 dict_T *d;
6966 char *key;
6967 long nr;
6968 char_u *str;
6969{
6970 dictitem_T *item;
6971
6972 item = dictitem_alloc((char_u *)key);
6973 if (item == NULL)
6974 return FAIL;
6975 item->di_tv.v_lock = 0;
6976 if (str == NULL)
6977 {
6978 item->di_tv.v_type = VAR_NUMBER;
6979 item->di_tv.vval.v_number = nr;
6980 }
6981 else
6982 {
6983 item->di_tv.v_type = VAR_STRING;
6984 item->di_tv.vval.v_string = vim_strsave(str);
6985 }
6986 if (dict_add(d, item) == FAIL)
6987 {
6988 dictitem_free(item);
6989 return FAIL;
6990 }
6991 return OK;
6992}
6993
6994/*
Bram Moolenaare9a41262005-01-15 22:18:47 +00006995 * Get the number of items in a Dictionary.
6996 */
6997 static long
6998dict_len(d)
Bram Moolenaar33570922005-01-25 22:26:29 +00006999 dict_T *d;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007000{
Bram Moolenaare9a41262005-01-15 22:18:47 +00007001 if (d == NULL)
7002 return 0L;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007003 return (long)d->dv_hashtab.ht_used;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007004}
7005
7006/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00007007 * Find item "key[len]" in Dictionary "d".
7008 * If "len" is negative use strlen(key).
7009 * Returns NULL when not found.
7010 */
Bram Moolenaar33570922005-01-25 22:26:29 +00007011 static dictitem_T *
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007012dict_find(d, key, len)
Bram Moolenaar33570922005-01-25 22:26:29 +00007013 dict_T *d;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007014 char_u *key;
7015 int len;
7016{
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007017#define AKEYLEN 200
7018 char_u buf[AKEYLEN];
7019 char_u *akey;
7020 char_u *tofree = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00007021 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007022
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007023 if (len < 0)
7024 akey = key;
7025 else if (len >= AKEYLEN)
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00007026 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007027 tofree = akey = vim_strnsave(key, len);
7028 if (akey == NULL)
7029 return NULL;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +00007030 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007031 else
7032 {
7033 /* Avoid a malloc/free by using buf[]. */
Bram Moolenaarce0842a2005-07-18 21:58:11 +00007034 vim_strncpy(buf, key, len);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007035 akey = buf;
7036 }
7037
Bram Moolenaar33570922005-01-25 22:26:29 +00007038 hi = hash_find(&d->dv_hashtab, akey);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007039 vim_free(tofree);
7040 if (HASHITEM_EMPTY(hi))
7041 return NULL;
7042 return HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007043}
7044
7045/*
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007046 * Get a string item from a dictionary.
7047 * When "save" is TRUE allocate memory for it.
Bram Moolenaar2641f772005-03-25 21:58:17 +00007048 * Returns NULL if the entry doesn't exist or out of memory.
7049 */
7050 char_u *
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007051get_dict_string(d, key, save)
Bram Moolenaar2641f772005-03-25 21:58:17 +00007052 dict_T *d;
7053 char_u *key;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007054 int save;
Bram Moolenaar2641f772005-03-25 21:58:17 +00007055{
7056 dictitem_T *di;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007057 char_u *s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00007058
7059 di = dict_find(d, key, -1);
7060 if (di == NULL)
7061 return NULL;
Bram Moolenaar8b6144b2006-02-08 09:20:24 +00007062 s = get_tv_string(&di->di_tv);
7063 if (save && s != NULL)
7064 s = vim_strsave(s);
7065 return s;
Bram Moolenaar2641f772005-03-25 21:58:17 +00007066}
7067
7068/*
7069 * Get a number item from a dictionary.
7070 * Returns 0 if the entry doesn't exist or out of memory.
7071 */
7072 long
7073get_dict_number(d, key)
7074 dict_T *d;
7075 char_u *key;
7076{
7077 dictitem_T *di;
7078
7079 di = dict_find(d, key, -1);
7080 if (di == NULL)
7081 return 0;
7082 return get_tv_number(&di->di_tv);
7083}
7084
7085/*
Bram Moolenaar8c711452005-01-14 21:53:12 +00007086 * Return an allocated string with the string representation of a Dictionary.
7087 * May return NULL.
7088 */
7089 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007090dict2string(tv, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007091 typval_T *tv;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007092 int copyID;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007093{
7094 garray_T ga;
7095 int first = TRUE;
7096 char_u *tofree;
7097 char_u numbuf[NUMBUFLEN];
Bram Moolenaar33570922005-01-25 22:26:29 +00007098 hashitem_T *hi;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007099 char_u *s;
Bram Moolenaar33570922005-01-25 22:26:29 +00007100 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007101 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007102
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007103 if ((d = tv->vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007104 return NULL;
7105 ga_init2(&ga, (int)sizeof(char), 80);
7106 ga_append(&ga, '{');
7107
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007108 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007109 for (hi = d->dv_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007110 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007111 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +00007112 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007113 --todo;
7114
7115 if (first)
7116 first = FALSE;
7117 else
7118 ga_concat(&ga, (char_u *)", ");
7119
7120 tofree = string_quote(hi->hi_key, FALSE);
7121 if (tofree != NULL)
7122 {
7123 ga_concat(&ga, tofree);
7124 vim_free(tofree);
7125 }
7126 ga_concat(&ga, (char_u *)": ");
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007127 s = tv2string(&HI2DI(hi)->di_tv, &tofree, numbuf, copyID);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007128 if (s != NULL)
7129 ga_concat(&ga, s);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007130 vim_free(tofree);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007131 if (s == NULL)
7132 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007133 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007134 }
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007135 if (todo > 0)
7136 {
7137 vim_free(ga.ga_data);
7138 return NULL;
7139 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007140
7141 ga_append(&ga, '}');
7142 ga_append(&ga, NUL);
7143 return (char_u *)ga.ga_data;
7144}
7145
7146/*
7147 * Allocate a variable for a Dictionary and fill it from "*arg".
7148 * Return OK or FAIL. Returns NOTDONE for {expr}.
7149 */
7150 static int
7151get_dict_tv(arg, rettv, evaluate)
7152 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007153 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007154 int evaluate;
7155{
Bram Moolenaar33570922005-01-25 22:26:29 +00007156 dict_T *d = NULL;
7157 typval_T tvkey;
7158 typval_T tv;
Bram Moolenaarad6c2272007-09-17 20:21:33 +00007159 char_u *key = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +00007160 dictitem_T *item;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007161 char_u *start = skipwhite(*arg + 1);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007162 char_u buf[NUMBUFLEN];
Bram Moolenaar8c711452005-01-14 21:53:12 +00007163
7164 /*
7165 * First check if it's not a curly-braces thing: {expr}.
7166 * Must do this without evaluating, otherwise a function may be called
7167 * twice. Unfortunately this means we need to call eval1() twice for the
7168 * first item.
Bram Moolenaare9a41262005-01-15 22:18:47 +00007169 * But {} is an empty Dictionary.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007170 */
Bram Moolenaare9a41262005-01-15 22:18:47 +00007171 if (*start != '}')
7172 {
7173 if (eval1(&start, &tv, FALSE) == FAIL) /* recursive! */
7174 return FAIL;
7175 if (*start == '}')
7176 return NOTDONE;
7177 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007178
7179 if (evaluate)
7180 {
7181 d = dict_alloc();
7182 if (d == NULL)
7183 return FAIL;
7184 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007185 tvkey.v_type = VAR_UNKNOWN;
7186 tv.v_type = VAR_UNKNOWN;
Bram Moolenaar8c711452005-01-14 21:53:12 +00007187
7188 *arg = skipwhite(*arg + 1);
7189 while (**arg != '}' && **arg != NUL)
7190 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007191 if (eval1(arg, &tvkey, evaluate) == FAIL) /* recursive! */
Bram Moolenaar8c711452005-01-14 21:53:12 +00007192 goto failret;
7193 if (**arg != ':')
7194 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007195 EMSG2(_("E720: Missing colon in Dictionary: %s"), *arg);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007196 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007197 goto failret;
7198 }
Bram Moolenaar037cc642007-09-13 18:40:54 +00007199 if (evaluate)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007200 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007201 key = get_tv_string_buf_chk(&tvkey, buf);
7202 if (key == NULL || *key == NUL)
7203 {
7204 /* "key" is NULL when get_tv_string_buf_chk() gave an errmsg */
7205 if (key != NULL)
7206 EMSG(_(e_emptykey));
7207 clear_tv(&tvkey);
7208 goto failret;
7209 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007210 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007211
7212 *arg = skipwhite(*arg + 1);
7213 if (eval1(arg, &tv, evaluate) == FAIL) /* recursive! */
7214 {
Bram Moolenaar037cc642007-09-13 18:40:54 +00007215 if (evaluate)
7216 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007217 goto failret;
7218 }
7219 if (evaluate)
7220 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007221 item = dict_find(d, key, -1);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007222 if (item != NULL)
7223 {
Bram Moolenaarb982ca52005-03-28 21:02:15 +00007224 EMSG2(_("E721: Duplicate key in Dictionary: \"%s\""), key);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007225 clear_tv(&tvkey);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007226 clear_tv(&tv);
7227 goto failret;
7228 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007229 item = dictitem_alloc(key);
7230 clear_tv(&tvkey);
7231 if (item != NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +00007232 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007233 item->di_tv = tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007234 item->di_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00007235 if (dict_add(d, item) == FAIL)
7236 dictitem_free(item);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007237 }
7238 }
7239
7240 if (**arg == '}')
7241 break;
7242 if (**arg != ',')
7243 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007244 EMSG2(_("E722: Missing comma in Dictionary: %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007245 goto failret;
7246 }
7247 *arg = skipwhite(*arg + 1);
7248 }
7249
7250 if (**arg != '}')
7251 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007252 EMSG2(_("E723: Missing end of Dictionary '}': %s"), *arg);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007253failret:
7254 if (evaluate)
Bram Moolenaar685295c2006-10-15 20:37:38 +00007255 dict_free(d, TRUE);
Bram Moolenaar8c711452005-01-14 21:53:12 +00007256 return FAIL;
7257 }
7258
7259 *arg = skipwhite(*arg + 1);
7260 if (evaluate)
7261 {
7262 rettv->v_type = VAR_DICT;
7263 rettv->vval.v_dict = d;
7264 ++d->dv_refcount;
7265 }
7266
7267 return OK;
7268}
7269
Bram Moolenaar8c711452005-01-14 21:53:12 +00007270/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007271 * Return a string with the string representation of a variable.
7272 * If the memory is allocated "tofree" is set to it, otherwise NULL.
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007273 * "numbuf" is used for a number.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007274 * Does not put quotes around strings, as ":echo" displays values.
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007275 * When "copyID" is not NULL replace recursive lists and dicts with "...".
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007276 * May return NULL.
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007277 */
7278 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007279echo_string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007280 typval_T *tv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007281 char_u **tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007282 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007283 int copyID;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007284{
Bram Moolenaare9a41262005-01-15 22:18:47 +00007285 static int recurse = 0;
7286 char_u *r = NULL;
7287
Bram Moolenaar33570922005-01-25 22:26:29 +00007288 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +00007289 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00007290 EMSG(_("E724: variable nested too deep for displaying"));
Bram Moolenaare9a41262005-01-15 22:18:47 +00007291 *tofree = NULL;
7292 return NULL;
7293 }
7294 ++recurse;
7295
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007296 switch (tv->v_type)
7297 {
7298 case VAR_FUNC:
7299 *tofree = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00007300 r = tv->vval.v_string;
7301 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007302
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007303 case VAR_LIST:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007304 if (tv->vval.v_list == NULL)
7305 {
7306 *tofree = NULL;
7307 r = NULL;
7308 }
7309 else if (copyID != 0 && tv->vval.v_list->lv_copyID == copyID)
7310 {
7311 *tofree = NULL;
7312 r = (char_u *)"[...]";
7313 }
7314 else
7315 {
7316 tv->vval.v_list->lv_copyID = copyID;
7317 *tofree = list2string(tv, copyID);
7318 r = *tofree;
7319 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007320 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007321
Bram Moolenaar8c711452005-01-14 21:53:12 +00007322 case VAR_DICT:
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007323 if (tv->vval.v_dict == NULL)
7324 {
7325 *tofree = NULL;
7326 r = NULL;
7327 }
7328 else if (copyID != 0 && tv->vval.v_dict->dv_copyID == copyID)
7329 {
7330 *tofree = NULL;
7331 r = (char_u *)"{...}";
7332 }
7333 else
7334 {
7335 tv->vval.v_dict->dv_copyID = copyID;
7336 *tofree = dict2string(tv, copyID);
7337 r = *tofree;
7338 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007339 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007340
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007341 case VAR_STRING:
7342 case VAR_NUMBER:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007343 *tofree = NULL;
7344 r = get_tv_string_buf(tv, numbuf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007345 break;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007346
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007347#ifdef FEAT_FLOAT
7348 case VAR_FLOAT:
7349 *tofree = NULL;
7350 vim_snprintf((char *)numbuf, NUMBUFLEN, "%g", tv->vval.v_float);
7351 r = numbuf;
7352 break;
7353#endif
7354
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007355 default:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007356 EMSG2(_(e_intern2), "echo_string()");
Bram Moolenaare9a41262005-01-15 22:18:47 +00007357 *tofree = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007358 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00007359
7360 --recurse;
7361 return r;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007362}
7363
7364/*
7365 * Return a string with the string representation of a variable.
7366 * If the memory is allocated "tofree" is set to it, otherwise NULL.
7367 * "numbuf" is used for a number.
7368 * Puts quotes around strings, so that they can be parsed back by eval().
Bram Moolenaar92c5aba2007-08-14 20:29:31 +00007369 * May return NULL.
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007370 */
7371 static char_u *
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007372tv2string(tv, tofree, numbuf, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +00007373 typval_T *tv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007374 char_u **tofree;
7375 char_u *numbuf;
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007376 int copyID;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007377{
7378 switch (tv->v_type)
7379 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007380 case VAR_FUNC:
7381 *tofree = string_quote(tv->vval.v_string, TRUE);
7382 return *tofree;
7383 case VAR_STRING:
7384 *tofree = string_quote(tv->vval.v_string, FALSE);
7385 return *tofree;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007386#ifdef FEAT_FLOAT
7387 case VAR_FLOAT:
7388 *tofree = NULL;
7389 vim_snprintf((char *)numbuf, NUMBUFLEN - 1, "%g", tv->vval.v_float);
7390 return numbuf;
7391#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +00007392 case VAR_NUMBER:
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007393 case VAR_LIST:
Bram Moolenaar8c711452005-01-14 21:53:12 +00007394 case VAR_DICT:
Bram Moolenaare9a41262005-01-15 22:18:47 +00007395 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007396 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007397 EMSG2(_(e_intern2), "tv2string()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007398 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00007399 return echo_string(tv, tofree, numbuf, copyID);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007400}
7401
7402/*
Bram Moolenaar33570922005-01-25 22:26:29 +00007403 * Return string "str" in ' quotes, doubling ' characters.
7404 * If "str" is NULL an empty string is assumed.
Bram Moolenaar8c711452005-01-14 21:53:12 +00007405 * If "function" is TRUE make it function('string').
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007406 */
7407 static char_u *
7408string_quote(str, function)
7409 char_u *str;
7410 int function;
7411{
Bram Moolenaar33570922005-01-25 22:26:29 +00007412 unsigned len;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007413 char_u *p, *r, *s;
7414
Bram Moolenaar33570922005-01-25 22:26:29 +00007415 len = (function ? 13 : 3);
7416 if (str != NULL)
7417 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007418 len += (unsigned)STRLEN(str);
Bram Moolenaar33570922005-01-25 22:26:29 +00007419 for (p = str; *p != NUL; mb_ptr_adv(p))
7420 if (*p == '\'')
7421 ++len;
7422 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007423 s = r = alloc(len);
7424 if (r != NULL)
7425 {
7426 if (function)
7427 {
Bram Moolenaar8c711452005-01-14 21:53:12 +00007428 STRCPY(r, "function('");
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007429 r += 10;
7430 }
7431 else
Bram Moolenaar8c711452005-01-14 21:53:12 +00007432 *r++ = '\'';
Bram Moolenaar33570922005-01-25 22:26:29 +00007433 if (str != NULL)
7434 for (p = str; *p != NUL; )
7435 {
7436 if (*p == '\'')
7437 *r++ = '\'';
7438 MB_COPY_CHAR(p, r);
7439 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00007440 *r++ = '\'';
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007441 if (function)
7442 *r++ = ')';
7443 *r++ = NUL;
7444 }
7445 return s;
7446}
7447
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007448#ifdef FEAT_FLOAT
7449/*
7450 * Convert the string "text" to a floating point number.
7451 * This uses strtod(). setlocale(LC_NUMERIC, "C") has been used to make sure
7452 * this always uses a decimal point.
7453 * Returns the length of the text that was consumed.
7454 */
7455 static int
7456string2float(text, value)
7457 char_u *text;
7458 float_T *value; /* result stored here */
7459{
7460 char *s = (char *)text;
7461 float_T f;
7462
7463 f = strtod(s, &s);
7464 *value = f;
7465 return (int)((char_u *)s - text);
7466}
7467#endif
7468
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007469/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007470 * Get the value of an environment variable.
7471 * "arg" is pointing to the '$'. It is advanced to after the name.
7472 * If the environment variable was not set, silently assume it is empty.
7473 * Always return OK.
7474 */
7475 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007476get_env_tv(arg, rettv, evaluate)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007477 char_u **arg;
Bram Moolenaar33570922005-01-25 22:26:29 +00007478 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007479 int evaluate;
7480{
7481 char_u *string = NULL;
7482 int len;
7483 int cc;
7484 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007485 int mustfree = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007486
7487 ++*arg;
7488 name = *arg;
7489 len = get_env_len(arg);
7490 if (evaluate)
7491 {
7492 if (len != 0)
7493 {
7494 cc = name[len];
7495 name[len] = NUL;
Bram Moolenaar05159a02005-02-26 23:04:13 +00007496 /* first try vim_getenv(), fast for normal environment vars */
7497 string = vim_getenv(name, &mustfree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007498 if (string != NULL && *string != NUL)
Bram Moolenaar05159a02005-02-26 23:04:13 +00007499 {
7500 if (!mustfree)
7501 string = vim_strsave(string);
7502 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007503 else
7504 {
Bram Moolenaar05159a02005-02-26 23:04:13 +00007505 if (mustfree)
7506 vim_free(string);
7507
Bram Moolenaar071d4272004-06-13 20:20:40 +00007508 /* next try expanding things like $VIM and ${HOME} */
7509 string = expand_env_save(name - 1);
7510 if (string != NULL && *string == '$')
7511 {
7512 vim_free(string);
7513 string = NULL;
7514 }
7515 }
7516 name[len] = cc;
7517 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007518 rettv->v_type = VAR_STRING;
7519 rettv->vval.v_string = string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007520 }
7521
7522 return OK;
7523}
7524
7525/*
7526 * Array with names and number of arguments of all internal functions
7527 * MUST BE KEPT SORTED IN strcmp() ORDER FOR BINARY SEARCH!
7528 */
7529static struct fst
7530{
7531 char *f_name; /* function name */
7532 char f_min_argc; /* minimal number of arguments */
7533 char f_max_argc; /* maximal number of arguments */
Bram Moolenaar33570922005-01-25 22:26:29 +00007534 void (*f_func) __ARGS((typval_T *args, typval_T *rvar));
Bram Moolenaarbae0c162007-05-10 19:30:25 +00007535 /* implementation of function */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007536} functions[] =
7537{
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007538#ifdef FEAT_FLOAT
7539 {"abs", 1, 1, f_abs},
7540#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007541 {"add", 2, 2, f_add},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007542 {"append", 2, 2, f_append},
7543 {"argc", 0, 0, f_argc},
7544 {"argidx", 0, 0, f_argidx},
Bram Moolenaare2f98b92006-03-29 21:18:24 +00007545 {"argv", 0, 1, f_argv},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007546#ifdef FEAT_FLOAT
7547 {"atan", 1, 1, f_atan},
7548#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007549 {"browse", 4, 4, f_browse},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007550 {"browsedir", 2, 2, f_browsedir},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007551 {"bufexists", 1, 1, f_bufexists},
7552 {"buffer_exists", 1, 1, f_bufexists}, /* obsolete */
7553 {"buffer_name", 1, 1, f_bufname}, /* obsolete */
7554 {"buffer_number", 1, 1, f_bufnr}, /* obsolete */
7555 {"buflisted", 1, 1, f_buflisted},
7556 {"bufloaded", 1, 1, f_bufloaded},
7557 {"bufname", 1, 1, f_bufname},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007558 {"bufnr", 1, 2, f_bufnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007559 {"bufwinnr", 1, 1, f_bufwinnr},
7560 {"byte2line", 1, 1, f_byte2line},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007561 {"byteidx", 2, 2, f_byteidx},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007562 {"call", 2, 3, f_call},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007563#ifdef FEAT_FLOAT
7564 {"ceil", 1, 1, f_ceil},
7565#endif
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00007566 {"changenr", 0, 0, f_changenr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007567 {"char2nr", 1, 1, f_char2nr},
7568 {"cindent", 1, 1, f_cindent},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007569 {"clearmatches", 0, 0, f_clearmatches},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007570 {"col", 1, 1, f_col},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007571#if defined(FEAT_INS_EXPAND)
Bram Moolenaarade00832006-03-10 21:46:58 +00007572 {"complete", 2, 2, f_complete},
Bram Moolenaar572cb562005-08-05 21:35:02 +00007573 {"complete_add", 1, 1, f_complete_add},
7574 {"complete_check", 0, 0, f_complete_check},
7575#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007576 {"confirm", 1, 4, f_confirm},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007577 {"copy", 1, 1, f_copy},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007578#ifdef FEAT_FLOAT
7579 {"cos", 1, 1, f_cos},
7580#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007581 {"count", 2, 4, f_count},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007582 {"cscope_connection",0,3, f_cscope_connection},
Bram Moolenaara5525202006-03-02 22:52:09 +00007583 {"cursor", 1, 3, f_cursor},
Bram Moolenaar81bf7082005-02-12 14:31:42 +00007584 {"deepcopy", 1, 2, f_deepcopy},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007585 {"delete", 1, 1, f_delete},
7586 {"did_filetype", 0, 0, f_did_filetype},
Bram Moolenaar47136d72004-10-12 20:02:24 +00007587 {"diff_filler", 1, 1, f_diff_filler},
7588 {"diff_hlID", 2, 2, f_diff_hlID},
Bram Moolenaare49b69a2005-01-08 16:11:57 +00007589 {"empty", 1, 1, f_empty},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007590 {"escape", 2, 2, f_escape},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007591 {"eval", 1, 1, f_eval},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007592 {"eventhandler", 0, 0, f_eventhandler},
7593 {"executable", 1, 1, f_executable},
7594 {"exists", 1, 1, f_exists},
7595 {"expand", 1, 2, f_expand},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007596 {"extend", 2, 3, f_extend},
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00007597 {"feedkeys", 1, 2, f_feedkeys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007598 {"file_readable", 1, 1, f_filereadable}, /* obsolete */
7599 {"filereadable", 1, 1, f_filereadable},
7600 {"filewritable", 1, 1, f_filewritable},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007601 {"filter", 2, 2, f_filter},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007602 {"finddir", 1, 3, f_finddir},
7603 {"findfile", 1, 3, f_findfile},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007604#ifdef FEAT_FLOAT
7605 {"float2nr", 1, 1, f_float2nr},
7606 {"floor", 1, 1, f_floor},
7607#endif
Bram Moolenaaraebaf892008-05-28 14:49:58 +00007608 {"fnameescape", 1, 1, f_fnameescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007609 {"fnamemodify", 2, 2, f_fnamemodify},
7610 {"foldclosed", 1, 1, f_foldclosed},
7611 {"foldclosedend", 1, 1, f_foldclosedend},
7612 {"foldlevel", 1, 1, f_foldlevel},
7613 {"foldtext", 0, 0, f_foldtext},
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00007614 {"foldtextresult", 1, 1, f_foldtextresult},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007615 {"foreground", 0, 0, f_foreground},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007616 {"function", 1, 1, f_function},
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00007617 {"garbagecollect", 0, 1, f_garbagecollect},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007618 {"get", 2, 3, f_get},
Bram Moolenaar80fc0432005-07-20 22:06:07 +00007619 {"getbufline", 2, 3, f_getbufline},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007620 {"getbufvar", 2, 2, f_getbufvar},
7621 {"getchar", 0, 1, f_getchar},
7622 {"getcharmod", 0, 0, f_getcharmod},
7623 {"getcmdline", 0, 0, f_getcmdline},
7624 {"getcmdpos", 0, 0, f_getcmdpos},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007625 {"getcmdtype", 0, 0, f_getcmdtype},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007626 {"getcwd", 0, 0, f_getcwd},
Bram Moolenaar46c9c732004-12-12 11:37:09 +00007627 {"getfontname", 0, 1, f_getfontname},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007628 {"getfperm", 1, 1, f_getfperm},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007629 {"getfsize", 1, 1, f_getfsize},
7630 {"getftime", 1, 1, f_getftime},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007631 {"getftype", 1, 1, f_getftype},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007632 {"getline", 1, 2, f_getline},
Bram Moolenaar280f1262006-01-30 00:14:18 +00007633 {"getloclist", 1, 1, f_getqflist},
Bram Moolenaar2240aeb2007-07-27 19:33:14 +00007634 {"getmatches", 0, 0, f_getmatches},
Bram Moolenaar18081e32008-02-20 19:11:07 +00007635 {"getpid", 0, 0, f_getpid},
Bram Moolenaara5525202006-03-02 22:52:09 +00007636 {"getpos", 1, 1, f_getpos},
Bram Moolenaar2641f772005-03-25 21:58:17 +00007637 {"getqflist", 0, 0, f_getqflist},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007638 {"getreg", 0, 2, f_getreg},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007639 {"getregtype", 0, 1, f_getregtype},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007640 {"gettabwinvar", 3, 3, f_gettabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007641 {"getwinposx", 0, 0, f_getwinposx},
7642 {"getwinposy", 0, 0, f_getwinposy},
7643 {"getwinvar", 2, 2, f_getwinvar},
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00007644 {"glob", 1, 2, f_glob},
7645 {"globpath", 2, 3, f_globpath},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007646 {"has", 1, 1, f_has},
Bram Moolenaare9a41262005-01-15 22:18:47 +00007647 {"has_key", 2, 2, f_has_key},
Bram Moolenaard267b9c2007-04-26 15:06:45 +00007648 {"haslocaldir", 0, 0, f_haslocaldir},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007649 {"hasmapto", 1, 3, f_hasmapto},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007650 {"highlightID", 1, 1, f_hlID}, /* obsolete */
7651 {"highlight_exists",1, 1, f_hlexists}, /* obsolete */
7652 {"histadd", 2, 2, f_histadd},
7653 {"histdel", 1, 2, f_histdel},
7654 {"histget", 1, 2, f_histget},
7655 {"histnr", 1, 1, f_histnr},
7656 {"hlID", 1, 1, f_hlID},
7657 {"hlexists", 1, 1, f_hlexists},
7658 {"hostname", 0, 0, f_hostname},
7659 {"iconv", 3, 3, f_iconv},
7660 {"indent", 1, 1, f_indent},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007661 {"index", 2, 4, f_index},
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007662 {"input", 1, 3, f_input},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007663 {"inputdialog", 1, 3, f_inputdialog},
Bram Moolenaar6efa2b32005-09-10 19:26:26 +00007664 {"inputlist", 1, 1, f_inputlist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007665 {"inputrestore", 0, 0, f_inputrestore},
7666 {"inputsave", 0, 0, f_inputsave},
7667 {"inputsecret", 1, 2, f_inputsecret},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007668 {"insert", 2, 3, f_insert},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007669 {"isdirectory", 1, 1, f_isdirectory},
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00007670 {"islocked", 1, 1, f_islocked},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007671 {"items", 1, 1, f_items},
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007672 {"join", 1, 2, f_join},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007673 {"keys", 1, 1, f_keys},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007674 {"last_buffer_nr", 0, 0, f_last_buffer_nr},/* obsolete */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007675 {"len", 1, 1, f_len},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007676 {"libcall", 3, 3, f_libcall},
7677 {"libcallnr", 3, 3, f_libcallnr},
7678 {"line", 1, 1, f_line},
7679 {"line2byte", 1, 1, f_line2byte},
7680 {"lispindent", 1, 1, f_lispindent},
7681 {"localtime", 0, 0, f_localtime},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007682#ifdef FEAT_FLOAT
7683 {"log10", 1, 1, f_log10},
7684#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00007685 {"map", 2, 2, f_map},
Bram Moolenaar2c932302006-03-18 21:42:09 +00007686 {"maparg", 1, 3, f_maparg},
7687 {"mapcheck", 1, 3, f_mapcheck},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007688 {"match", 2, 4, f_match},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007689 {"matchadd", 2, 4, f_matchadd},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007690 {"matcharg", 1, 1, f_matcharg},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007691 {"matchdelete", 1, 1, f_matchdelete},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007692 {"matchend", 2, 4, f_matchend},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007693 {"matchlist", 2, 4, f_matchlist},
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00007694 {"matchstr", 2, 4, f_matchstr},
Bram Moolenaar6cc16192005-01-08 21:49:45 +00007695 {"max", 1, 1, f_max},
7696 {"min", 1, 1, f_min},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007697#ifdef vim_mkdir
7698 {"mkdir", 1, 3, f_mkdir},
7699#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007700 {"mode", 0, 1, f_mode},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007701 {"nextnonblank", 1, 1, f_nextnonblank},
7702 {"nr2char", 1, 1, f_nr2char},
Bram Moolenaar910f66f2006-04-05 20:41:53 +00007703 {"pathshorten", 1, 1, f_pathshorten},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007704#ifdef FEAT_FLOAT
7705 {"pow", 2, 2, f_pow},
7706#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007707 {"prevnonblank", 1, 1, f_prevnonblank},
Bram Moolenaar4be06f92005-07-29 22:36:03 +00007708 {"printf", 2, 19, f_printf},
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +00007709 {"pumvisible", 0, 0, f_pumvisible},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007710 {"range", 1, 3, f_range},
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00007711 {"readfile", 1, 3, f_readfile},
Bram Moolenaare580b0c2006-03-21 21:33:03 +00007712 {"reltime", 0, 2, f_reltime},
7713 {"reltimestr", 1, 1, f_reltimestr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007714 {"remote_expr", 2, 3, f_remote_expr},
7715 {"remote_foreground", 1, 1, f_remote_foreground},
7716 {"remote_peek", 1, 2, f_remote_peek},
7717 {"remote_read", 1, 1, f_remote_read},
7718 {"remote_send", 2, 3, f_remote_send},
Bram Moolenaar8a283e52005-01-06 23:28:25 +00007719 {"remove", 2, 3, f_remove},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007720 {"rename", 2, 2, f_rename},
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007721 {"repeat", 2, 2, f_repeat},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007722 {"resolve", 1, 1, f_resolve},
Bram Moolenaar0d660222005-01-07 21:51:51 +00007723 {"reverse", 1, 1, f_reverse},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007724#ifdef FEAT_FLOAT
7725 {"round", 1, 1, f_round},
7726#endif
Bram Moolenaar76929292008-01-06 19:07:36 +00007727 {"search", 1, 4, f_search},
Bram Moolenaare6facf92005-09-13 21:22:27 +00007728 {"searchdecl", 1, 3, f_searchdecl},
Bram Moolenaar76929292008-01-06 19:07:36 +00007729 {"searchpair", 3, 7, f_searchpair},
7730 {"searchpairpos", 3, 7, f_searchpairpos},
7731 {"searchpos", 1, 4, f_searchpos},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007732 {"server2client", 2, 2, f_server2client},
7733 {"serverlist", 0, 0, f_serverlist},
7734 {"setbufvar", 3, 3, f_setbufvar},
7735 {"setcmdpos", 1, 1, f_setcmdpos},
7736 {"setline", 2, 2, f_setline},
Bram Moolenaar17c7c012006-01-26 22:25:15 +00007737 {"setloclist", 2, 3, f_setloclist},
Bram Moolenaar6ee10162007-07-26 20:58:42 +00007738 {"setmatches", 1, 1, f_setmatches},
Bram Moolenaar0e34f622006-03-03 23:00:03 +00007739 {"setpos", 2, 2, f_setpos},
Bram Moolenaarf4630b62005-05-20 21:31:17 +00007740 {"setqflist", 1, 2, f_setqflist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007741 {"setreg", 2, 3, f_setreg},
Bram Moolenaar99ebf042006-04-15 20:28:54 +00007742 {"settabwinvar", 4, 4, f_settabwinvar},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007743 {"setwinvar", 3, 3, f_setwinvar},
Bram Moolenaar05bb9532008-07-04 09:44:11 +00007744 {"shellescape", 1, 2, f_shellescape},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007745 {"simplify", 1, 1, f_simplify},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007746#ifdef FEAT_FLOAT
7747 {"sin", 1, 1, f_sin},
7748#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +00007749 {"sort", 1, 2, f_sort},
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00007750 {"soundfold", 1, 1, f_soundfold},
Bram Moolenaar4463f292005-09-25 22:20:24 +00007751 {"spellbadword", 0, 1, f_spellbadword},
Bram Moolenaar69e0ff92005-09-30 21:23:56 +00007752 {"spellsuggest", 1, 3, f_spellsuggest},
Bram Moolenaar67fe1a12005-05-22 22:12:58 +00007753 {"split", 1, 3, f_split},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007754#ifdef FEAT_FLOAT
7755 {"sqrt", 1, 1, f_sqrt},
7756 {"str2float", 1, 1, f_str2float},
7757#endif
Bram Moolenaar2c932302006-03-18 21:42:09 +00007758 {"str2nr", 1, 2, f_str2nr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007759#ifdef HAVE_STRFTIME
7760 {"strftime", 1, 2, f_strftime},
7761#endif
Bram Moolenaar33570922005-01-25 22:26:29 +00007762 {"stridx", 2, 3, f_stridx},
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007763 {"string", 1, 1, f_string},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007764 {"strlen", 1, 1, f_strlen},
7765 {"strpart", 2, 3, f_strpart},
Bram Moolenaar532c7802005-01-27 14:44:31 +00007766 {"strridx", 2, 3, f_strridx},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007767 {"strtrans", 1, 1, f_strtrans},
7768 {"submatch", 1, 1, f_submatch},
7769 {"substitute", 4, 4, f_substitute},
7770 {"synID", 3, 3, f_synID},
7771 {"synIDattr", 2, 3, f_synIDattr},
7772 {"synIDtrans", 1, 1, f_synIDtrans},
Bram Moolenaar9d188ab2008-01-10 21:24:39 +00007773 {"synstack", 2, 2, f_synstack},
Bram Moolenaarc0197e22004-09-13 20:26:32 +00007774 {"system", 1, 2, f_system},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007775 {"tabpagebuflist", 0, 1, f_tabpagebuflist},
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007776 {"tabpagenr", 0, 1, f_tabpagenr},
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00007777 {"tabpagewinnr", 1, 2, f_tabpagewinnr},
Bram Moolenaard43b6cf2005-09-09 19:53:42 +00007778 {"tagfiles", 0, 0, f_tagfiles},
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007779 {"taglist", 1, 1, f_taglist},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007780 {"tempname", 0, 0, f_tempname},
Bram Moolenaard52d9742005-08-21 22:20:28 +00007781 {"test", 1, 1, f_test},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007782 {"tolower", 1, 1, f_tolower},
7783 {"toupper", 1, 1, f_toupper},
Bram Moolenaar8299df92004-07-10 09:47:34 +00007784 {"tr", 3, 3, f_tr},
Bram Moolenaar8c8de832008-06-24 22:58:06 +00007785#ifdef FEAT_FLOAT
7786 {"trunc", 1, 1, f_trunc},
7787#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007788 {"type", 1, 1, f_type},
Bram Moolenaar8c711452005-01-14 21:53:12 +00007789 {"values", 1, 1, f_values},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007790 {"virtcol", 1, 1, f_virtcol},
7791 {"visualmode", 0, 1, f_visualmode},
7792 {"winbufnr", 1, 1, f_winbufnr},
7793 {"wincol", 0, 0, f_wincol},
7794 {"winheight", 1, 1, f_winheight},
7795 {"winline", 0, 0, f_winline},
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00007796 {"winnr", 0, 1, f_winnr},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007797 {"winrestcmd", 0, 0, f_winrestcmd},
Bram Moolenaar768b8c42006-03-04 21:58:33 +00007798 {"winrestview", 1, 1, f_winrestview},
7799 {"winsaveview", 0, 0, f_winsaveview},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007800 {"winwidth", 1, 1, f_winwidth},
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00007801 {"writefile", 2, 3, f_writefile},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007802};
7803
7804#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7805
7806/*
7807 * Function given to ExpandGeneric() to obtain the list of internal
7808 * or user defined function names.
7809 */
7810 char_u *
7811get_function_name(xp, idx)
7812 expand_T *xp;
7813 int idx;
7814{
7815 static int intidx = -1;
7816 char_u *name;
7817
7818 if (idx == 0)
7819 intidx = -1;
7820 if (intidx < 0)
7821 {
7822 name = get_user_func_name(xp, idx);
7823 if (name != NULL)
7824 return name;
7825 }
7826 if (++intidx < (int)(sizeof(functions) / sizeof(struct fst)))
7827 {
7828 STRCPY(IObuff, functions[intidx].f_name);
7829 STRCAT(IObuff, "(");
7830 if (functions[intidx].f_max_argc == 0)
7831 STRCAT(IObuff, ")");
7832 return IObuff;
7833 }
7834
7835 return NULL;
7836}
7837
7838/*
7839 * Function given to ExpandGeneric() to obtain the list of internal or
7840 * user defined variable or function names.
7841 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007842 char_u *
7843get_expr_name(xp, idx)
7844 expand_T *xp;
7845 int idx;
7846{
7847 static int intidx = -1;
7848 char_u *name;
7849
7850 if (idx == 0)
7851 intidx = -1;
7852 if (intidx < 0)
7853 {
7854 name = get_function_name(xp, idx);
7855 if (name != NULL)
7856 return name;
7857 }
7858 return get_user_var_name(xp, ++intidx);
7859}
7860
7861#endif /* FEAT_CMDL_COMPL */
7862
7863/*
7864 * Find internal function in table above.
7865 * Return index, or -1 if not found
7866 */
7867 static int
7868find_internal_func(name)
7869 char_u *name; /* name of the function */
7870{
7871 int first = 0;
7872 int last = (int)(sizeof(functions) / sizeof(struct fst)) - 1;
7873 int cmp;
7874 int x;
7875
7876 /*
7877 * Find the function name in the table. Binary search.
7878 */
7879 while (first <= last)
7880 {
7881 x = first + ((unsigned)(last - first) >> 1);
7882 cmp = STRCMP(name, functions[x].f_name);
7883 if (cmp < 0)
7884 last = x - 1;
7885 else if (cmp > 0)
7886 first = x + 1;
7887 else
7888 return x;
7889 }
7890 return -1;
7891}
7892
7893/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007894 * Check if "name" is a variable of type VAR_FUNC. If so, return the function
7895 * name it contains, otherwise return "name".
7896 */
7897 static char_u *
7898deref_func_name(name, lenp)
7899 char_u *name;
7900 int *lenp;
7901{
Bram Moolenaar33570922005-01-25 22:26:29 +00007902 dictitem_T *v;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007903 int cc;
7904
7905 cc = name[*lenp];
7906 name[*lenp] = NUL;
Bram Moolenaara7043832005-01-21 11:56:39 +00007907 v = find_var(name, NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007908 name[*lenp] = cc;
Bram Moolenaar33570922005-01-25 22:26:29 +00007909 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007910 {
Bram Moolenaar33570922005-01-25 22:26:29 +00007911 if (v->di_tv.vval.v_string == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007912 {
7913 *lenp = 0;
7914 return (char_u *)""; /* just in case */
7915 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007916 *lenp = (int)STRLEN(v->di_tv.vval.v_string);
Bram Moolenaar33570922005-01-25 22:26:29 +00007917 return v->di_tv.vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00007918 }
7919
7920 return name;
7921}
7922
7923/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007924 * Allocate a variable for the result of a function.
7925 * Return OK or FAIL.
7926 */
7927 static int
Bram Moolenaare9a41262005-01-15 22:18:47 +00007928get_func_tv(name, len, rettv, arg, firstline, lastline, doesrange,
7929 evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007930 char_u *name; /* name of the function */
7931 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007932 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007933 char_u **arg; /* argument, pointing to the '(' */
7934 linenr_T firstline; /* first line of range */
7935 linenr_T lastline; /* last line of range */
7936 int *doesrange; /* return: function handled range */
7937 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00007938 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007939{
7940 char_u *argp;
7941 int ret = OK;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007942 typval_T argvars[MAX_FUNC_ARGS + 1]; /* vars for arguments */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007943 int argcount = 0; /* number of arguments found */
7944
7945 /*
7946 * Get the arguments.
7947 */
7948 argp = *arg;
7949 while (argcount < MAX_FUNC_ARGS)
7950 {
7951 argp = skipwhite(argp + 1); /* skip the '(' or ',' */
7952 if (*argp == ')' || *argp == ',' || *argp == NUL)
7953 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007954 if (eval1(&argp, &argvars[argcount], evaluate) == FAIL)
7955 {
7956 ret = FAIL;
7957 break;
7958 }
7959 ++argcount;
7960 if (*argp != ',')
7961 break;
7962 }
7963 if (*argp == ')')
7964 ++argp;
7965 else
7966 ret = FAIL;
7967
7968 if (ret == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007969 ret = call_func(name, len, rettv, argcount, argvars,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007970 firstline, lastline, doesrange, evaluate, selfdict);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007971 else if (!aborting())
Bram Moolenaar33570922005-01-25 22:26:29 +00007972 {
7973 if (argcount == MAX_FUNC_ARGS)
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +00007974 emsg_funcname(N_("E740: Too many arguments for function %s"), name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007975 else
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +00007976 emsg_funcname(N_("E116: Invalid arguments for function %s"), name);
Bram Moolenaar33570922005-01-25 22:26:29 +00007977 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007978
7979 while (--argcount >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007980 clear_tv(&argvars[argcount]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007981
7982 *arg = skipwhite(argp);
7983 return ret;
7984}
7985
7986
7987/*
7988 * Call a function with its resolved parameters
Bram Moolenaar280f1262006-01-30 00:14:18 +00007989 * Return OK when the function can't be called, FAIL otherwise.
7990 * Also returns OK when an error was encountered while executing the function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007991 */
7992 static int
Bram Moolenaarc70646c2005-01-04 21:52:38 +00007993call_func(name, len, rettv, argcount, argvars, firstline, lastline,
Bram Moolenaare9a41262005-01-15 22:18:47 +00007994 doesrange, evaluate, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007995 char_u *name; /* name of the function */
7996 int len; /* length of "name" */
Bram Moolenaar33570922005-01-25 22:26:29 +00007997 typval_T *rettv; /* return value goes here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007998 int argcount; /* number of "argvars" */
Bram Moolenaareb3593b2006-04-22 22:33:57 +00007999 typval_T *argvars; /* vars for arguments, must have "argcount"
8000 PLUS ONE elements! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008001 linenr_T firstline; /* first line of range */
8002 linenr_T lastline; /* last line of range */
8003 int *doesrange; /* return: function handled range */
8004 int evaluate;
Bram Moolenaar33570922005-01-25 22:26:29 +00008005 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008006{
8007 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008008#define ERROR_UNKNOWN 0
8009#define ERROR_TOOMANY 1
8010#define ERROR_TOOFEW 2
8011#define ERROR_SCRIPT 3
Bram Moolenaare9a41262005-01-15 22:18:47 +00008012#define ERROR_DICT 4
8013#define ERROR_NONE 5
8014#define ERROR_OTHER 6
Bram Moolenaar071d4272004-06-13 20:20:40 +00008015 int error = ERROR_NONE;
8016 int i;
8017 int llen;
8018 ufunc_T *fp;
8019 int cc;
8020#define FLEN_FIXED 40
8021 char_u fname_buf[FLEN_FIXED + 1];
8022 char_u *fname;
8023
8024 /*
8025 * In a script change <SID>name() and s:name() to K_SNR 123_name().
8026 * Change <SNR>123_name() to K_SNR 123_name().
8027 * Use fname_buf[] when it fits, otherwise allocate memory (slow).
8028 */
8029 cc = name[len];
8030 name[len] = NUL;
8031 llen = eval_fname_script(name);
8032 if (llen > 0)
8033 {
8034 fname_buf[0] = K_SPECIAL;
8035 fname_buf[1] = KS_EXTRA;
8036 fname_buf[2] = (int)KE_SNR;
8037 i = 3;
8038 if (eval_fname_sid(name)) /* "<SID>" or "s:" */
8039 {
8040 if (current_SID <= 0)
8041 error = ERROR_SCRIPT;
8042 else
8043 {
8044 sprintf((char *)fname_buf + 3, "%ld_", (long)current_SID);
8045 i = (int)STRLEN(fname_buf);
8046 }
8047 }
8048 if (i + STRLEN(name + llen) < FLEN_FIXED)
8049 {
8050 STRCPY(fname_buf + i, name + llen);
8051 fname = fname_buf;
8052 }
8053 else
8054 {
8055 fname = alloc((unsigned)(i + STRLEN(name + llen) + 1));
8056 if (fname == NULL)
8057 error = ERROR_OTHER;
8058 else
8059 {
8060 mch_memmove(fname, fname_buf, (size_t)i);
8061 STRCPY(fname + i, name + llen);
8062 }
8063 }
8064 }
8065 else
8066 fname = name;
8067
8068 *doesrange = FALSE;
8069
8070
8071 /* execute the function if no errors detected and executing */
8072 if (evaluate && error == ERROR_NONE)
8073 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +00008074 rettv->v_type = VAR_NUMBER; /* default rettv is number zero */
8075 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008076 error = ERROR_UNKNOWN;
8077
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008078 if (!builtin_function(fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008079 {
8080 /*
8081 * User defined function.
8082 */
8083 fp = find_func(fname);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008084
Bram Moolenaar071d4272004-06-13 20:20:40 +00008085#ifdef FEAT_AUTOCMD
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008086 /* Trigger FuncUndefined event, may load the function. */
8087 if (fp == NULL
8088 && apply_autocmds(EVENT_FUNCUNDEFINED,
8089 fname, fname, TRUE, NULL)
8090 && !aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00008091 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008092 /* executed an autocommand, search for the function again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008093 fp = find_func(fname);
8094 }
8095#endif
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008096 /* Try loading a package. */
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00008097 if (fp == NULL && script_autoload(fname, TRUE) && !aborting())
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00008098 {
8099 /* loaded a package, search for the function again */
8100 fp = find_func(fname);
8101 }
8102
Bram Moolenaar071d4272004-06-13 20:20:40 +00008103 if (fp != NULL)
8104 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008105 if (fp->uf_flags & FC_RANGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008106 *doesrange = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008107 if (argcount < fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008108 error = ERROR_TOOFEW;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008109 else if (!fp->uf_varargs && argcount > fp->uf_args.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008110 error = ERROR_TOOMANY;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008111 else if ((fp->uf_flags & FC_DICT) && selfdict == NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00008112 error = ERROR_DICT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008113 else
8114 {
8115 /*
8116 * Call the user function.
8117 * Save and restore search patterns, script variables and
8118 * redo buffer.
8119 */
8120 save_search_patterns();
8121 saveRedobuff();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008122 ++fp->uf_calls;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008123 call_user_func(fp, argcount, argvars, rettv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008124 firstline, lastline,
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00008125 (fp->uf_flags & FC_DICT) ? selfdict : NULL);
8126 if (--fp->uf_calls <= 0 && isdigit(*fp->uf_name)
8127 && fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +00008128 /* Function was unreferenced while being used, free it
8129 * now. */
8130 func_free(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008131 restoreRedobuff();
8132 restore_search_patterns();
8133 error = ERROR_NONE;
8134 }
8135 }
8136 }
8137 else
8138 {
8139 /*
8140 * Find the function name in the table, call its implementation.
8141 */
8142 i = find_internal_func(fname);
8143 if (i >= 0)
8144 {
8145 if (argcount < functions[i].f_min_argc)
8146 error = ERROR_TOOFEW;
8147 else if (argcount > functions[i].f_max_argc)
8148 error = ERROR_TOOMANY;
8149 else
8150 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008151 argvars[argcount].v_type = VAR_UNKNOWN;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008152 functions[i].f_func(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008153 error = ERROR_NONE;
8154 }
8155 }
8156 }
8157 /*
8158 * The function call (or "FuncUndefined" autocommand sequence) might
8159 * have been aborted by an error, an interrupt, or an explicitly thrown
8160 * exception that has not been caught so far. This situation can be
8161 * tested for by calling aborting(). For an error in an internal
8162 * function or for the "E132" error in call_user_func(), however, the
8163 * throw point at which the "force_abort" flag (temporarily reset by
8164 * emsg()) is normally updated has not been reached yet. We need to
8165 * update that flag first to make aborting() reliable.
8166 */
8167 update_force_abort();
8168 }
8169 if (error == ERROR_NONE)
8170 ret = OK;
8171
8172 /*
8173 * Report an error unless the argument evaluation or function call has been
8174 * cancelled due to an aborting error, an interrupt, or an exception.
8175 */
Bram Moolenaar8c711452005-01-14 21:53:12 +00008176 if (!aborting())
8177 {
8178 switch (error)
8179 {
8180 case ERROR_UNKNOWN:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008181 emsg_funcname(N_("E117: Unknown function: %s"), name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008182 break;
8183 case ERROR_TOOMANY:
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008184 emsg_funcname(e_toomanyarg, name);
Bram Moolenaar8c711452005-01-14 21:53:12 +00008185 break;
8186 case ERROR_TOOFEW:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008187 emsg_funcname(N_("E119: Not enough arguments for function: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008188 name);
8189 break;
8190 case ERROR_SCRIPT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008191 emsg_funcname(N_("E120: Using <SID> not in a script context: %s"),
Bram Moolenaar8c711452005-01-14 21:53:12 +00008192 name);
8193 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00008194 case ERROR_DICT:
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008195 emsg_funcname(N_("E725: Calling dict function without Dictionary: %s"),
Bram Moolenaare9a41262005-01-15 22:18:47 +00008196 name);
8197 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +00008198 }
8199 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008200
8201 name[len] = cc;
8202 if (fname != name && fname != fname_buf)
8203 vim_free(fname);
8204
8205 return ret;
8206}
8207
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008208/*
8209 * Give an error message with a function name. Handle <SNR> things.
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +00008210 * "ermsg" is to be passed without translation, use N_() instead of _().
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008211 */
8212 static void
Bram Moolenaar89d40322006-08-29 15:30:07 +00008213emsg_funcname(ermsg, name)
8214 char *ermsg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008215 char_u *name;
8216{
8217 char_u *p;
8218
8219 if (*name == K_SPECIAL)
8220 p = concat_str((char_u *)"<SNR>", name + 3);
8221 else
8222 p = name;
Bram Moolenaar89d40322006-08-29 15:30:07 +00008223 EMSG2(_(ermsg), p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00008224 if (p != name)
8225 vim_free(p);
8226}
8227
Bram Moolenaar05bb9532008-07-04 09:44:11 +00008228/*
8229 * Return TRUE for a non-zero Number and a non-empty String.
8230 */
8231 static int
8232non_zero_arg(argvars)
8233 typval_T *argvars;
8234{
8235 return ((argvars[0].v_type == VAR_NUMBER
8236 && argvars[0].vval.v_number != 0)
8237 || (argvars[0].v_type == VAR_STRING
8238 && argvars[0].vval.v_string != NULL
8239 && *argvars[0].vval.v_string != NUL));
8240}
8241
Bram Moolenaar071d4272004-06-13 20:20:40 +00008242/*********************************************
8243 * Implementation of the built-in functions
8244 */
8245
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008246#ifdef FEAT_FLOAT
8247/*
8248 * "abs(expr)" function
8249 */
8250 static void
8251f_abs(argvars, rettv)
8252 typval_T *argvars;
8253 typval_T *rettv;
8254{
8255 if (argvars[0].v_type == VAR_FLOAT)
8256 {
8257 rettv->v_type = VAR_FLOAT;
8258 rettv->vval.v_float = fabs(argvars[0].vval.v_float);
8259 }
8260 else
8261 {
8262 varnumber_T n;
8263 int error = FALSE;
8264
8265 n = get_tv_number_chk(&argvars[0], &error);
8266 if (error)
8267 rettv->vval.v_number = -1;
8268 else if (n > 0)
8269 rettv->vval.v_number = n;
8270 else
8271 rettv->vval.v_number = -n;
8272 }
8273}
8274#endif
8275
Bram Moolenaar071d4272004-06-13 20:20:40 +00008276/*
Bram Moolenaar0d660222005-01-07 21:51:51 +00008277 * "add(list, item)" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00008278 */
8279 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +00008280f_add(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008281 typval_T *argvars;
8282 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008283{
Bram Moolenaar33570922005-01-25 22:26:29 +00008284 list_T *l;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008285
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008286 rettv->vval.v_number = 1; /* Default: Failed */
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008287 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008288 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008289 if ((l = argvars[0].vval.v_list) != NULL
8290 && !tv_check_lock(l->lv_lock, (char_u *)"add()")
8291 && list_append_tv(l, &argvars[1]) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008292 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008293 }
8294 else
Bram Moolenaar0d660222005-01-07 21:51:51 +00008295 EMSG(_(e_listreq));
8296}
8297
8298/*
8299 * "append(lnum, string/list)" function
8300 */
8301 static void
8302f_append(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008303 typval_T *argvars;
8304 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008305{
8306 long lnum;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008307 char_u *line;
Bram Moolenaar33570922005-01-25 22:26:29 +00008308 list_T *l = NULL;
8309 listitem_T *li = NULL;
8310 typval_T *tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +00008311 long added = 0;
8312
Bram Moolenaar0d660222005-01-07 21:51:51 +00008313 lnum = get_tv_lnum(argvars);
8314 if (lnum >= 0
8315 && lnum <= curbuf->b_ml.ml_line_count
8316 && u_save(lnum, lnum + 1) == OK)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008317 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008318 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008319 {
Bram Moolenaar0d660222005-01-07 21:51:51 +00008320 l = argvars[1].vval.v_list;
8321 if (l == NULL)
8322 return;
8323 li = l->lv_first;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008324 }
Bram Moolenaar0d660222005-01-07 21:51:51 +00008325 for (;;)
8326 {
8327 if (l == NULL)
8328 tv = &argvars[1]; /* append a string */
8329 else if (li == NULL)
8330 break; /* end of list */
8331 else
8332 tv = &li->li_tv; /* append item from list */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008333 line = get_tv_string_chk(tv);
8334 if (line == NULL) /* type error */
8335 {
8336 rettv->vval.v_number = 1; /* Failed */
8337 break;
8338 }
8339 ml_append(lnum + added, line, (colnr_T)0, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +00008340 ++added;
8341 if (l == NULL)
8342 break;
8343 li = li->li_next;
8344 }
8345
8346 appended_lines_mark(lnum, added);
8347 if (curwin->w_cursor.lnum > lnum)
8348 curwin->w_cursor.lnum += added;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008349 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008350 else
8351 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008352}
8353
8354/*
8355 * "argc()" function
8356 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008357 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008358f_argc(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008359 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008360 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008361{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008362 rettv->vval.v_number = ARGCOUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008363}
8364
8365/*
8366 * "argidx()" function
8367 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008368 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008369f_argidx(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008370 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008371 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008372{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008373 rettv->vval.v_number = curwin->w_arg_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008374}
8375
8376/*
8377 * "argv(nr)" function
8378 */
8379 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008380f_argv(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008381 typval_T *argvars;
8382 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008383{
8384 int idx;
8385
Bram Moolenaare2f98b92006-03-29 21:18:24 +00008386 if (argvars[0].v_type != VAR_UNKNOWN)
8387 {
8388 idx = get_tv_number_chk(&argvars[0], NULL);
8389 if (idx >= 0 && idx < ARGCOUNT)
8390 rettv->vval.v_string = vim_strsave(alist_name(&ARGLIST[idx]));
8391 else
8392 rettv->vval.v_string = NULL;
8393 rettv->v_type = VAR_STRING;
8394 }
8395 else if (rettv_list_alloc(rettv) == OK)
8396 for (idx = 0; idx < ARGCOUNT; ++idx)
8397 list_append_string(rettv->vval.v_list,
8398 alist_name(&ARGLIST[idx]), -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008399}
8400
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008401#ifdef FEAT_FLOAT
8402static int get_float_arg __ARGS((typval_T *argvars, float_T *f));
8403
8404/*
8405 * Get the float value of "argvars[0]" into "f".
8406 * Returns FAIL when the argument is not a Number or Float.
8407 */
8408 static int
8409get_float_arg(argvars, f)
8410 typval_T *argvars;
8411 float_T *f;
8412{
8413 if (argvars[0].v_type == VAR_FLOAT)
8414 {
8415 *f = argvars[0].vval.v_float;
8416 return OK;
8417 }
8418 if (argvars[0].v_type == VAR_NUMBER)
8419 {
8420 *f = (float_T)argvars[0].vval.v_number;
8421 return OK;
8422 }
8423 EMSG(_("E808: Number or Float required"));
8424 return FAIL;
8425}
8426
8427/*
8428 * "atan()" function
8429 */
8430 static void
8431f_atan(argvars, rettv)
8432 typval_T *argvars;
8433 typval_T *rettv;
8434{
8435 float_T f;
8436
8437 rettv->v_type = VAR_FLOAT;
8438 if (get_float_arg(argvars, &f) == OK)
8439 rettv->vval.v_float = atan(f);
8440 else
8441 rettv->vval.v_float = 0.0;
8442}
8443#endif
8444
Bram Moolenaar071d4272004-06-13 20:20:40 +00008445/*
8446 * "browse(save, title, initdir, default)" function
8447 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008448 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008449f_browse(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008450 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008451 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008452{
8453#ifdef FEAT_BROWSE
8454 int save;
8455 char_u *title;
8456 char_u *initdir;
8457 char_u *defname;
8458 char_u buf[NUMBUFLEN];
8459 char_u buf2[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008460 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008461
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008462 save = get_tv_number_chk(&argvars[0], &error);
8463 title = get_tv_string_chk(&argvars[1]);
8464 initdir = get_tv_string_buf_chk(&argvars[2], buf);
8465 defname = get_tv_string_buf_chk(&argvars[3], buf2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008466
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008467 if (error || title == NULL || initdir == NULL || defname == NULL)
8468 rettv->vval.v_string = NULL;
8469 else
8470 rettv->vval.v_string =
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008471 do_browse(save ? BROWSE_SAVE : 0,
8472 title, defname, NULL, initdir, NULL, curbuf);
8473#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008474 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008475#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008476 rettv->v_type = VAR_STRING;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008477}
8478
8479/*
8480 * "browsedir(title, initdir)" function
8481 */
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008482 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008483f_browsedir(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008484 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008485 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008486{
8487#ifdef FEAT_BROWSE
8488 char_u *title;
8489 char_u *initdir;
8490 char_u buf[NUMBUFLEN];
8491
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008492 title = get_tv_string_chk(&argvars[0]);
8493 initdir = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008494
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008495 if (title == NULL || initdir == NULL)
8496 rettv->vval.v_string = NULL;
8497 else
8498 rettv->vval.v_string = do_browse(BROWSE_DIR,
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00008499 title, NULL, NULL, initdir, NULL, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008500#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008501 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008502#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008503 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008504}
8505
Bram Moolenaar33570922005-01-25 22:26:29 +00008506static buf_T *find_buffer __ARGS((typval_T *avar));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008507
Bram Moolenaar071d4272004-06-13 20:20:40 +00008508/*
8509 * Find a buffer by number or exact name.
8510 */
8511 static buf_T *
8512find_buffer(avar)
Bram Moolenaar33570922005-01-25 22:26:29 +00008513 typval_T *avar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008514{
8515 buf_T *buf = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008516
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008517 if (avar->v_type == VAR_NUMBER)
8518 buf = buflist_findnr((int)avar->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008519 else if (avar->v_type == VAR_STRING && avar->vval.v_string != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008520 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008521 buf = buflist_findname_exp(avar->vval.v_string);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008522 if (buf == NULL)
8523 {
8524 /* No full path name match, try a match with a URL or a "nofile"
8525 * buffer, these don't use the full path. */
8526 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8527 if (buf->b_fname != NULL
8528 && (path_with_url(buf->b_fname)
8529#ifdef FEAT_QUICKFIX
8530 || bt_nofile(buf)
8531#endif
8532 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +00008533 && STRCMP(buf->b_fname, avar->vval.v_string) == 0)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00008534 break;
8535 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008536 }
8537 return buf;
8538}
8539
8540/*
8541 * "bufexists(expr)" function
8542 */
8543 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008544f_bufexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008545 typval_T *argvars;
8546 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008547{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008548 rettv->vval.v_number = (find_buffer(&argvars[0]) != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008549}
8550
8551/*
8552 * "buflisted(expr)" function
8553 */
8554 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008555f_buflisted(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008556 typval_T *argvars;
8557 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008558{
8559 buf_T *buf;
8560
8561 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008562 rettv->vval.v_number = (buf != NULL && buf->b_p_bl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008563}
8564
8565/*
8566 * "bufloaded(expr)" function
8567 */
8568 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008569f_bufloaded(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008570 typval_T *argvars;
8571 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008572{
8573 buf_T *buf;
8574
8575 buf = find_buffer(&argvars[0]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008576 rettv->vval.v_number = (buf != NULL && buf->b_ml.ml_mfp != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008577}
8578
Bram Moolenaar33570922005-01-25 22:26:29 +00008579static buf_T *get_buf_tv __ARGS((typval_T *tv));
Bram Moolenaar0d660222005-01-07 21:51:51 +00008580
Bram Moolenaar071d4272004-06-13 20:20:40 +00008581/*
8582 * Get buffer by number or pattern.
8583 */
8584 static buf_T *
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008585get_buf_tv(tv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008586 typval_T *tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008587{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008588 char_u *name = tv->vval.v_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008589 int save_magic;
8590 char_u *save_cpo;
8591 buf_T *buf;
8592
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008593 if (tv->v_type == VAR_NUMBER)
8594 return buflist_findnr((int)tv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +00008595 if (tv->v_type != VAR_STRING)
8596 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008597 if (name == NULL || *name == NUL)
8598 return curbuf;
8599 if (name[0] == '$' && name[1] == NUL)
8600 return lastbuf;
8601
8602 /* Ignore 'magic' and 'cpoptions' here to make scripts portable */
8603 save_magic = p_magic;
8604 p_magic = TRUE;
8605 save_cpo = p_cpo;
8606 p_cpo = (char_u *)"";
8607
8608 buf = buflist_findnr(buflist_findpat(name, name + STRLEN(name),
8609 TRUE, FALSE));
8610
8611 p_magic = save_magic;
8612 p_cpo = save_cpo;
8613
8614 /* If not found, try expanding the name, like done for bufexists(). */
8615 if (buf == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008616 buf = find_buffer(tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008617
8618 return buf;
8619}
8620
8621/*
8622 * "bufname(expr)" function
8623 */
8624 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008625f_bufname(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008626 typval_T *argvars;
8627 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008628{
8629 buf_T *buf;
8630
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008631 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008632 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008633 buf = get_buf_tv(&argvars[0]);
8634 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008635 if (buf != NULL && buf->b_fname != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008636 rettv->vval.v_string = vim_strsave(buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008637 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008638 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008639 --emsg_off;
8640}
8641
8642/*
8643 * "bufnr(expr)" function
8644 */
8645 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008646f_bufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008647 typval_T *argvars;
8648 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008649{
8650 buf_T *buf;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008651 int error = FALSE;
8652 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008653
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008654 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008655 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008656 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008657 --emsg_off;
8658
8659 /* If the buffer isn't found and the second argument is not zero create a
8660 * new buffer. */
8661 if (buf == NULL
8662 && argvars[1].v_type != VAR_UNKNOWN
8663 && get_tv_number_chk(&argvars[1], &error) != 0
8664 && !error
8665 && (name = get_tv_string_chk(&argvars[0])) != NULL
8666 && !error)
8667 buf = buflist_new(name, NULL, (linenr_T)1, 0);
8668
Bram Moolenaar071d4272004-06-13 20:20:40 +00008669 if (buf != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008670 rettv->vval.v_number = buf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008671 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008672 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008673}
8674
8675/*
8676 * "bufwinnr(nr)" function
8677 */
8678 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008679f_bufwinnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008680 typval_T *argvars;
8681 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008682{
8683#ifdef FEAT_WINDOWS
8684 win_T *wp;
8685 int winnr = 0;
8686#endif
8687 buf_T *buf;
8688
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008689 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008690 ++emsg_off;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008691 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008692#ifdef FEAT_WINDOWS
8693 for (wp = firstwin; wp; wp = wp->w_next)
8694 {
8695 ++winnr;
8696 if (wp->w_buffer == buf)
8697 break;
8698 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008699 rettv->vval.v_number = (wp != NULL ? winnr : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008700#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008701 rettv->vval.v_number = (curwin->w_buffer == buf ? 1 : -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008702#endif
8703 --emsg_off;
8704}
8705
8706/*
8707 * "byte2line(byte)" function
8708 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008709 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008710f_byte2line(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00008711 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00008712 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008713{
8714#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008715 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008716#else
8717 long boff = 0;
8718
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008719 boff = get_tv_number(&argvars[0]) - 1; /* boff gets -1 on type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008720 if (boff < 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008721 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008722 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008723 rettv->vval.v_number = ml_find_line_or_offset(curbuf,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008724 (linenr_T)0, &boff);
8725#endif
8726}
8727
8728/*
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008729 * "byteidx()" function
8730 */
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008731 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008732f_byteidx(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008733 typval_T *argvars;
8734 typval_T *rettv;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008735{
8736#ifdef FEAT_MBYTE
8737 char_u *t;
8738#endif
8739 char_u *str;
8740 long idx;
8741
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008742 str = get_tv_string_chk(&argvars[0]);
8743 idx = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008744 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008745 if (str == NULL || idx < 0)
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008746 return;
8747
8748#ifdef FEAT_MBYTE
8749 t = str;
8750 for ( ; idx > 0; idx--)
8751 {
8752 if (*t == NUL) /* EOL reached */
8753 return;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008754 t += (*mb_ptr2len)(t);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008755 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008756 rettv->vval.v_number = (varnumber_T)(t - str);
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008757#else
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008758 if ((size_t)idx <= STRLEN(str))
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008759 rettv->vval.v_number = idx;
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00008760#endif
8761}
8762
8763/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008764 * "call(func, arglist)" function
8765 */
8766 static void
8767f_call(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008768 typval_T *argvars;
8769 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008770{
8771 char_u *func;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00008772 typval_T argv[MAX_FUNC_ARGS + 1];
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008773 int argc = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +00008774 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008775 int dummy;
Bram Moolenaar33570922005-01-25 22:26:29 +00008776 dict_T *selfdict = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008777
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008778 if (argvars[1].v_type != VAR_LIST)
8779 {
8780 EMSG(_(e_listreq));
8781 return;
8782 }
8783 if (argvars[1].vval.v_list == NULL)
8784 return;
8785
8786 if (argvars[0].v_type == VAR_FUNC)
8787 func = argvars[0].vval.v_string;
8788 else
8789 func = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008790 if (*func == NUL)
8791 return; /* type error or empty name */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008792
Bram Moolenaare9a41262005-01-15 22:18:47 +00008793 if (argvars[2].v_type != VAR_UNKNOWN)
8794 {
8795 if (argvars[2].v_type != VAR_DICT)
8796 {
8797 EMSG(_(e_dictreq));
8798 return;
8799 }
8800 selfdict = argvars[2].vval.v_dict;
8801 }
8802
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008803 for (item = argvars[1].vval.v_list->lv_first; item != NULL;
8804 item = item->li_next)
8805 {
8806 if (argc == MAX_FUNC_ARGS)
8807 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +00008808 EMSG(_("E699: Too many arguments"));
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008809 break;
8810 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00008811 /* Make a copy of each argument. This is needed to be able to set
8812 * v_lock to VAR_FIXED in the copy without changing the original list.
8813 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008814 copy_tv(&item->li_tv, &argv[argc++]);
8815 }
8816
8817 if (item == NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008818 (void)call_func(func, (int)STRLEN(func), rettv, argc, argv,
Bram Moolenaare9a41262005-01-15 22:18:47 +00008819 curwin->w_cursor.lnum, curwin->w_cursor.lnum,
8820 &dummy, TRUE, selfdict);
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008821
8822 /* Free the arguments. */
8823 while (argc > 0)
8824 clear_tv(&argv[--argc]);
8825}
8826
Bram Moolenaar8c8de832008-06-24 22:58:06 +00008827#ifdef FEAT_FLOAT
8828/*
8829 * "ceil({float})" function
8830 */
8831 static void
8832f_ceil(argvars, rettv)
8833 typval_T *argvars;
8834 typval_T *rettv;
8835{
8836 float_T f;
8837
8838 rettv->v_type = VAR_FLOAT;
8839 if (get_float_arg(argvars, &f) == OK)
8840 rettv->vval.v_float = ceil(f);
8841 else
8842 rettv->vval.v_float = 0.0;
8843}
8844#endif
8845
Bram Moolenaar8a283e52005-01-06 23:28:25 +00008846/*
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008847 * "changenr()" function
8848 */
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008849 static void
8850f_changenr(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008851 typval_T *argvars UNUSED;
Bram Moolenaarf0acfce2006-03-17 23:21:19 +00008852 typval_T *rettv;
8853{
8854 rettv->vval.v_number = curbuf->b_u_seq_cur;
8855}
8856
8857/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008858 * "char2nr(string)" function
8859 */
8860 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008861f_char2nr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008862 typval_T *argvars;
8863 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008864{
8865#ifdef FEAT_MBYTE
8866 if (has_mbyte)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00008867 rettv->vval.v_number = (*mb_ptr2char)(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008868 else
8869#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008870 rettv->vval.v_number = get_tv_string(&argvars[0])[0];
Bram Moolenaar071d4272004-06-13 20:20:40 +00008871}
8872
8873/*
8874 * "cindent(lnum)" function
8875 */
8876 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008877f_cindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008878 typval_T *argvars;
8879 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008880{
8881#ifdef FEAT_CINDENT
8882 pos_T pos;
8883 linenr_T lnum;
8884
8885 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008886 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008887 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
8888 {
8889 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008890 rettv->vval.v_number = get_c_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008891 curwin->w_cursor = pos;
8892 }
8893 else
8894#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008895 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008896}
8897
8898/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008899 * "clearmatches()" function
8900 */
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008901 static void
8902f_clearmatches(argvars, rettv)
Bram Moolenaar78a15312009-05-15 19:33:18 +00008903 typval_T *argvars UNUSED;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00008904 typval_T *rettv UNUSED;
Bram Moolenaar6ee10162007-07-26 20:58:42 +00008905{
8906#ifdef FEAT_SEARCH_EXTRA
8907 clear_matches(curwin);
8908#endif
8909}
8910
8911/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008912 * "col(string)" function
8913 */
8914 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008915f_col(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00008916 typval_T *argvars;
8917 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008918{
8919 colnr_T col = 0;
8920 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008921 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008922
Bram Moolenaar0e34f622006-03-03 23:00:03 +00008923 fp = var2fpos(&argvars[0], FALSE, &fnum);
8924 if (fp != NULL && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008925 {
8926 if (fp->col == MAXCOL)
8927 {
8928 /* '> can be MAXCOL, get the length of the line then */
8929 if (fp->lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008930 col = (colnr_T)STRLEN(ml_get(fp->lnum)) + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008931 else
8932 col = MAXCOL;
8933 }
8934 else
8935 {
8936 col = fp->col + 1;
8937#ifdef FEAT_VIRTUALEDIT
8938 /* col(".") when the cursor is on the NUL at the end of the line
8939 * because of "coladd" can be seen as an extra column. */
8940 if (virtual_active() && fp == &curwin->w_cursor)
8941 {
8942 char_u *p = ml_get_cursor();
8943
8944 if (curwin->w_cursor.coladd >= (colnr_T)chartabsize(p,
8945 curwin->w_virtcol - curwin->w_cursor.coladd))
8946 {
8947# ifdef FEAT_MBYTE
8948 int l;
8949
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00008950 if (*p != NUL && p[(l = (*mb_ptr2len)(p))] == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008951 col += l;
8952# else
8953 if (*p != NUL && p[1] == NUL)
8954 ++col;
8955# endif
8956 }
8957 }
8958#endif
8959 }
8960 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +00008961 rettv->vval.v_number = col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008962}
8963
Bram Moolenaar572cb562005-08-05 21:35:02 +00008964#if defined(FEAT_INS_EXPAND)
8965/*
Bram Moolenaarade00832006-03-10 21:46:58 +00008966 * "complete()" function
8967 */
Bram Moolenaarade00832006-03-10 21:46:58 +00008968 static void
8969f_complete(argvars, rettv)
8970 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00008971 typval_T *rettv UNUSED;
Bram Moolenaarade00832006-03-10 21:46:58 +00008972{
8973 int startcol;
8974
8975 if ((State & INSERT) == 0)
8976 {
8977 EMSG(_("E785: complete() can only be used in Insert mode"));
8978 return;
8979 }
Bram Moolenaarce6ef252006-07-12 19:49:41 +00008980
8981 /* Check for undo allowed here, because if something was already inserted
8982 * the line was already saved for undo and this check isn't done. */
8983 if (!undo_allowed())
8984 return;
8985
Bram Moolenaarade00832006-03-10 21:46:58 +00008986 if (argvars[1].v_type != VAR_LIST || argvars[1].vval.v_list == NULL)
8987 {
8988 EMSG(_(e_invarg));
8989 return;
8990 }
8991
8992 startcol = get_tv_number_chk(&argvars[0], NULL);
8993 if (startcol <= 0)
8994 return;
8995
8996 set_completion(startcol - 1, argvars[1].vval.v_list);
8997}
8998
8999/*
Bram Moolenaar572cb562005-08-05 21:35:02 +00009000 * "complete_add()" function
9001 */
Bram Moolenaar572cb562005-08-05 21:35:02 +00009002 static void
9003f_complete_add(argvars, rettv)
9004 typval_T *argvars;
9005 typval_T *rettv;
9006{
Bram Moolenaarceaf7b82006-03-19 22:18:55 +00009007 rettv->vval.v_number = ins_compl_add_tv(&argvars[0], 0);
Bram Moolenaar572cb562005-08-05 21:35:02 +00009008}
9009
9010/*
9011 * "complete_check()" function
9012 */
Bram Moolenaar572cb562005-08-05 21:35:02 +00009013 static void
9014f_complete_check(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009015 typval_T *argvars UNUSED;
Bram Moolenaar572cb562005-08-05 21:35:02 +00009016 typval_T *rettv;
9017{
9018 int saved = RedrawingDisabled;
9019
9020 RedrawingDisabled = 0;
9021 ins_compl_check_keys(0);
9022 rettv->vval.v_number = compl_interrupted;
9023 RedrawingDisabled = saved;
9024}
9025#endif
9026
Bram Moolenaar071d4272004-06-13 20:20:40 +00009027/*
9028 * "confirm(message, buttons[, default [, type]])" function
9029 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009030 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009031f_confirm(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009032 typval_T *argvars UNUSED;
9033 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009034{
9035#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
9036 char_u *message;
9037 char_u *buttons = NULL;
9038 char_u buf[NUMBUFLEN];
9039 char_u buf2[NUMBUFLEN];
9040 int def = 1;
9041 int type = VIM_GENERIC;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009042 char_u *typestr;
9043 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009044
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009045 message = get_tv_string_chk(&argvars[0]);
9046 if (message == NULL)
9047 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009048 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009049 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009050 buttons = get_tv_string_buf_chk(&argvars[1], buf);
9051 if (buttons == NULL)
9052 error = TRUE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009053 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009054 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009055 def = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009056 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009057 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009058 typestr = get_tv_string_buf_chk(&argvars[3], buf2);
9059 if (typestr == NULL)
9060 error = TRUE;
9061 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009062 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009063 switch (TOUPPER_ASC(*typestr))
9064 {
9065 case 'E': type = VIM_ERROR; break;
9066 case 'Q': type = VIM_QUESTION; break;
9067 case 'I': type = VIM_INFO; break;
9068 case 'W': type = VIM_WARNING; break;
9069 case 'G': type = VIM_GENERIC; break;
9070 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009071 }
9072 }
9073 }
9074 }
9075
9076 if (buttons == NULL || *buttons == NUL)
9077 buttons = (char_u *)_("&Ok");
9078
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009079 if (!error)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009080 rettv->vval.v_number = do_dialog(type, NULL, message, buttons,
Bram Moolenaar071d4272004-06-13 20:20:40 +00009081 def, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009082#endif
9083}
9084
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009085/*
9086 * "copy()" function
9087 */
9088 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009089f_copy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009090 typval_T *argvars;
9091 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009092{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009093 item_copy(&argvars[0], rettv, FALSE, 0);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009094}
Bram Moolenaar071d4272004-06-13 20:20:40 +00009095
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009096#ifdef FEAT_FLOAT
9097/*
9098 * "cos()" function
9099 */
9100 static void
9101f_cos(argvars, rettv)
9102 typval_T *argvars;
9103 typval_T *rettv;
9104{
9105 float_T f;
9106
9107 rettv->v_type = VAR_FLOAT;
9108 if (get_float_arg(argvars, &f) == OK)
9109 rettv->vval.v_float = cos(f);
9110 else
9111 rettv->vval.v_float = 0.0;
9112}
9113#endif
9114
Bram Moolenaar071d4272004-06-13 20:20:40 +00009115/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009116 * "count()" function
9117 */
9118 static void
9119f_count(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009120 typval_T *argvars;
9121 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009122{
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009123 long n = 0;
9124 int ic = FALSE;
9125
Bram Moolenaare9a41262005-01-15 22:18:47 +00009126 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009127 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009128 listitem_T *li;
9129 list_T *l;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009130 long idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009131
Bram Moolenaare9a41262005-01-15 22:18:47 +00009132 if ((l = argvars[0].vval.v_list) != NULL)
9133 {
9134 li = l->lv_first;
9135 if (argvars[2].v_type != VAR_UNKNOWN)
9136 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009137 int error = FALSE;
9138
9139 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009140 if (argvars[3].v_type != VAR_UNKNOWN)
9141 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009142 idx = get_tv_number_chk(&argvars[3], &error);
9143 if (!error)
9144 {
9145 li = list_find(l, idx);
9146 if (li == NULL)
9147 EMSGN(_(e_listidx), idx);
9148 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009149 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009150 if (error)
9151 li = NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009152 }
9153
9154 for ( ; li != NULL; li = li->li_next)
9155 if (tv_equal(&li->li_tv, &argvars[1], ic))
9156 ++n;
9157 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009158 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009159 else if (argvars[0].v_type == VAR_DICT)
9160 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009161 int todo;
9162 dict_T *d;
9163 hashitem_T *hi;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009164
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009165 if ((d = argvars[0].vval.v_dict) != NULL)
9166 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009167 int error = FALSE;
9168
Bram Moolenaare9a41262005-01-15 22:18:47 +00009169 if (argvars[2].v_type != VAR_UNKNOWN)
9170 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009171 ic = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009172 if (argvars[3].v_type != VAR_UNKNOWN)
9173 EMSG(_(e_invarg));
9174 }
9175
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009176 todo = error ? 0 : (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009177 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009178 {
9179 if (!HASHITEM_EMPTY(hi))
9180 {
9181 --todo;
9182 if (tv_equal(&HI2DI(hi)->di_tv, &argvars[1], ic))
9183 ++n;
9184 }
9185 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009186 }
9187 }
9188 else
9189 EMSG2(_(e_listdictarg), "count()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009190 rettv->vval.v_number = n;
9191}
9192
9193/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009194 * "cscope_connection([{num} , {dbpath} [, {prepend}]])" function
9195 *
9196 * Checks the existence of a cscope connection.
9197 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009198 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009199f_cscope_connection(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009200 typval_T *argvars UNUSED;
9201 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009202{
9203#ifdef FEAT_CSCOPE
9204 int num = 0;
9205 char_u *dbpath = NULL;
9206 char_u *prepend = NULL;
9207 char_u buf[NUMBUFLEN];
9208
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009209 if (argvars[0].v_type != VAR_UNKNOWN
9210 && argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009211 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009212 num = (int)get_tv_number(&argvars[0]);
9213 dbpath = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009214 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009215 prepend = get_tv_string_buf(&argvars[2], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009216 }
9217
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009218 rettv->vval.v_number = cs_connection(num, dbpath, prepend);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009219#endif
9220}
9221
9222/*
9223 * "cursor(lnum, col)" function
9224 *
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009225 * Moves the cursor to the specified line and column.
9226 * Returns 0 when the position could be set, -1 otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009227 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009228 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009229f_cursor(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009230 typval_T *argvars;
9231 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009232{
9233 long line, col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009234#ifdef FEAT_VIRTUALEDIT
9235 long coladd = 0;
9236#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009237
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009238 rettv->vval.v_number = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +00009239 if (argvars[1].v_type == VAR_UNKNOWN)
9240 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009241 pos_T pos;
Bram Moolenaara5525202006-03-02 22:52:09 +00009242
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009243 if (list2fpos(argvars, &pos, NULL) == FAIL)
Bram Moolenaara5525202006-03-02 22:52:09 +00009244 return;
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009245 line = pos.lnum;
9246 col = pos.col;
Bram Moolenaara5525202006-03-02 22:52:09 +00009247#ifdef FEAT_VIRTUALEDIT
Bram Moolenaar0e34f622006-03-03 23:00:03 +00009248 coladd = pos.coladd;
Bram Moolenaara5525202006-03-02 22:52:09 +00009249#endif
9250 }
9251 else
9252 {
9253 line = get_tv_lnum(argvars);
9254 col = get_tv_number_chk(&argvars[1], NULL);
9255#ifdef FEAT_VIRTUALEDIT
9256 if (argvars[2].v_type != VAR_UNKNOWN)
9257 coladd = get_tv_number_chk(&argvars[2], NULL);
9258#endif
9259 }
9260 if (line < 0 || col < 0
9261#ifdef FEAT_VIRTUALEDIT
9262 || coladd < 0
9263#endif
9264 )
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009265 return; /* type error; errmsg already given */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009266 if (line > 0)
9267 curwin->w_cursor.lnum = line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009268 if (col > 0)
9269 curwin->w_cursor.col = col - 1;
9270#ifdef FEAT_VIRTUALEDIT
Bram Moolenaara5525202006-03-02 22:52:09 +00009271 curwin->w_cursor.coladd = coladd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009272#endif
9273
9274 /* Make sure the cursor is in a valid position. */
9275 check_cursor();
9276#ifdef FEAT_MBYTE
9277 /* Correct cursor for multi-byte character. */
9278 if (has_mbyte)
9279 mb_adjust_cursor();
9280#endif
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00009281
9282 curwin->w_set_curswant = TRUE;
Bram Moolenaar798b30b2009-04-22 10:56:16 +00009283 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009284}
9285
9286/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009287 * "deepcopy()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +00009288 */
9289 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009290f_deepcopy(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009291 typval_T *argvars;
9292 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009293{
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009294 int noref = 0;
9295
9296 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009297 noref = get_tv_number_chk(&argvars[1], NULL);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00009298 if (noref < 0 || noref > 1)
9299 EMSG(_(e_invarg));
9300 else
Bram Moolenaar2c2398c2009-06-03 11:22:45 +00009301 {
9302 current_copyID += COPYID_INC;
9303 item_copy(&argvars[0], rettv, TRUE, noref == 0 ? current_copyID : 0);
9304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009305}
9306
9307/*
9308 * "delete()" function
9309 */
9310 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009311f_delete(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009312 typval_T *argvars;
9313 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009314{
9315 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009316 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009317 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009318 rettv->vval.v_number = mch_remove(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009319}
9320
9321/*
9322 * "did_filetype()" function
9323 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009324 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009325f_did_filetype(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009326 typval_T *argvars UNUSED;
9327 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009328{
9329#ifdef FEAT_AUTOCMD
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009330 rettv->vval.v_number = did_filetype;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009331#endif
9332}
9333
9334/*
Bram Moolenaar47136d72004-10-12 20:02:24 +00009335 * "diff_filler()" function
9336 */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009337 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009338f_diff_filler(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009339 typval_T *argvars UNUSED;
9340 typval_T *rettv UNUSED;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009341{
9342#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009343 rettv->vval.v_number = diff_check_fill(curwin, get_tv_lnum(argvars));
Bram Moolenaar47136d72004-10-12 20:02:24 +00009344#endif
9345}
9346
9347/*
9348 * "diff_hlID()" function
9349 */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009350 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009351f_diff_hlID(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009352 typval_T *argvars UNUSED;
9353 typval_T *rettv UNUSED;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009354{
9355#ifdef FEAT_DIFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009356 linenr_T lnum = get_tv_lnum(argvars);
Bram Moolenaar47136d72004-10-12 20:02:24 +00009357 static linenr_T prev_lnum = 0;
9358 static int changedtick = 0;
9359 static int fnum = 0;
9360 static int change_start = 0;
9361 static int change_end = 0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00009362 static hlf_T hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009363 int filler_lines;
9364 int col;
9365
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009366 if (lnum < 0) /* ignore type error in {lnum} arg */
9367 lnum = 0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009368 if (lnum != prev_lnum
9369 || changedtick != curbuf->b_changedtick
9370 || fnum != curbuf->b_fnum)
9371 {
9372 /* New line, buffer, change: need to get the values. */
9373 filler_lines = diff_check(curwin, lnum);
9374 if (filler_lines < 0)
9375 {
9376 if (filler_lines == -1)
9377 {
9378 change_start = MAXCOL;
9379 change_end = -1;
9380 if (diff_find_change(curwin, lnum, &change_start, &change_end))
9381 hlID = HLF_ADD; /* added line */
9382 else
9383 hlID = HLF_CHD; /* changed line */
9384 }
9385 else
9386 hlID = HLF_ADD; /* added line */
9387 }
9388 else
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009389 hlID = (hlf_T)0;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009390 prev_lnum = lnum;
9391 changedtick = curbuf->b_changedtick;
9392 fnum = curbuf->b_fnum;
9393 }
9394
9395 if (hlID == HLF_CHD || hlID == HLF_TXD)
9396 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009397 col = get_tv_number(&argvars[1]) - 1; /* ignore type error in {col} */
Bram Moolenaar47136d72004-10-12 20:02:24 +00009398 if (col >= change_start && col <= change_end)
9399 hlID = HLF_TXD; /* changed text */
9400 else
9401 hlID = HLF_CHD; /* changed line */
9402 }
Bram Moolenaar482aaeb2005-09-29 18:26:07 +00009403 rettv->vval.v_number = hlID == (hlf_T)0 ? 0 : (int)hlID;
Bram Moolenaar47136d72004-10-12 20:02:24 +00009404#endif
9405}
9406
9407/*
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009408 * "empty({expr})" function
9409 */
9410 static void
9411f_empty(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009412 typval_T *argvars;
9413 typval_T *rettv;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009414{
9415 int n;
9416
9417 switch (argvars[0].v_type)
9418 {
9419 case VAR_STRING:
9420 case VAR_FUNC:
9421 n = argvars[0].vval.v_string == NULL
9422 || *argvars[0].vval.v_string == NUL;
9423 break;
9424 case VAR_NUMBER:
9425 n = argvars[0].vval.v_number == 0;
9426 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +00009427#ifdef FEAT_FLOAT
9428 case VAR_FLOAT:
9429 n = argvars[0].vval.v_float == 0.0;
9430 break;
9431#endif
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009432 case VAR_LIST:
9433 n = argvars[0].vval.v_list == NULL
9434 || argvars[0].vval.v_list->lv_first == NULL;
9435 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009436 case VAR_DICT:
9437 n = argvars[0].vval.v_dict == NULL
Bram Moolenaar33570922005-01-25 22:26:29 +00009438 || argvars[0].vval.v_dict->dv_hashtab.ht_used == 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009439 break;
Bram Moolenaare49b69a2005-01-08 16:11:57 +00009440 default:
9441 EMSG2(_(e_intern2), "f_empty()");
9442 n = 0;
9443 }
9444
9445 rettv->vval.v_number = n;
9446}
9447
9448/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009449 * "escape({string}, {chars})" function
9450 */
9451 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009452f_escape(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009453 typval_T *argvars;
9454 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009455{
9456 char_u buf[NUMBUFLEN];
9457
Bram Moolenaar758711c2005-02-02 23:11:38 +00009458 rettv->vval.v_string = vim_strsave_escaped(get_tv_string(&argvars[0]),
9459 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009460 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009461}
9462
9463/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009464 * "eval()" function
9465 */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009466 static void
9467f_eval(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009468 typval_T *argvars;
9469 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009470{
9471 char_u *s;
9472
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009473 s = get_tv_string_chk(&argvars[0]);
9474 if (s != NULL)
9475 s = skipwhite(s);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009476
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009477 if (s == NULL || eval1(&s, rettv, TRUE) == FAIL)
9478 {
9479 rettv->v_type = VAR_NUMBER;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009480 rettv->vval.v_number = 0;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009481 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009482 else if (*s != NUL)
9483 EMSG(_(e_trailing));
9484}
9485
9486/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009487 * "eventhandler()" function
9488 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009489 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009490f_eventhandler(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009491 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +00009492 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009493{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009494 rettv->vval.v_number = vgetc_busy;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009495}
9496
9497/*
9498 * "executable()" function
9499 */
9500 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009501f_executable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009502 typval_T *argvars;
9503 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009504{
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009505 rettv->vval.v_number = mch_can_exe(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009506}
9507
9508/*
9509 * "exists()" function
9510 */
9511 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009512f_exists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009513 typval_T *argvars;
9514 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009515{
9516 char_u *p;
9517 char_u *name;
9518 int n = FALSE;
9519 int len = 0;
9520
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009521 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009522 if (*p == '$') /* environment variable */
9523 {
9524 /* first try "normal" environment variables (fast) */
9525 if (mch_getenv(p + 1) != NULL)
9526 n = TRUE;
9527 else
9528 {
9529 /* try expanding things like $VIM and ${HOME} */
9530 p = expand_env_save(p);
9531 if (p != NULL && *p != '$')
9532 n = TRUE;
9533 vim_free(p);
9534 }
9535 }
9536 else if (*p == '&' || *p == '+') /* option */
Bram Moolenaar79783442006-05-05 21:18:03 +00009537 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009538 n = (get_option_tv(&p, NULL, TRUE) == OK);
Bram Moolenaar79783442006-05-05 21:18:03 +00009539 if (*skipwhite(p) != NUL)
9540 n = FALSE; /* trailing garbage */
9541 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009542 else if (*p == '*') /* internal or user defined function */
9543 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009544 n = function_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009545 }
9546 else if (*p == ':')
9547 {
9548 n = cmd_exists(p + 1);
9549 }
9550 else if (*p == '#')
9551 {
9552#ifdef FEAT_AUTOCMD
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009553 if (p[1] == '#')
9554 n = autocmd_supported(p + 2);
9555 else
9556 n = au_exists(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009557#endif
9558 }
9559 else /* internal variable */
9560 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009561 char_u *tofree;
9562 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009563
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009564 /* get_name_len() takes care of expanding curly braces */
9565 name = p;
9566 len = get_name_len(&p, &tofree, TRUE, FALSE);
9567 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009568 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009569 if (tofree != NULL)
9570 name = tofree;
9571 n = (get_var_tv(name, len, &tv, FALSE) == OK);
9572 if (n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009573 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009574 /* handle d.key, l[idx], f(expr) */
9575 n = (handle_subscript(&p, &tv, TRUE, FALSE) == OK);
9576 if (n)
9577 clear_tv(&tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009578 }
9579 }
Bram Moolenaar79783442006-05-05 21:18:03 +00009580 if (*p != NUL)
9581 n = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009582
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00009583 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009584 }
9585
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009586 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009587}
9588
9589/*
9590 * "expand()" function
9591 */
9592 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009593f_expand(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009594 typval_T *argvars;
9595 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009596{
9597 char_u *s;
9598 int len;
9599 char_u *errormsg;
9600 int flags = WILD_SILENT|WILD_USE_NL|WILD_LIST_NOTFOUND;
9601 expand_T xpc;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009602 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009603
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009604 rettv->v_type = VAR_STRING;
9605 s = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009606 if (*s == '%' || *s == '#' || *s == '<')
9607 {
9608 ++emsg_off;
Bram Moolenaar63b92542007-03-27 14:57:09 +00009609 rettv->vval.v_string = eval_vars(s, s, &len, NULL, &errormsg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009610 --emsg_off;
9611 }
9612 else
9613 {
9614 /* When the optional second argument is non-zero, don't remove matches
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +00009615 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009616 if (argvars[1].v_type != VAR_UNKNOWN
9617 && get_tv_number_chk(&argvars[1], &error))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009618 flags |= WILD_KEEP_ALL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009619 if (!error)
9620 {
9621 ExpandInit(&xpc);
9622 xpc.xp_context = EXPAND_FILES;
9623 rettv->vval.v_string = ExpandOne(&xpc, s, NULL, flags, WILD_ALL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009624 }
9625 else
9626 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009627 }
9628}
9629
9630/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009631 * "extend(list, list [, idx])" function
Bram Moolenaare9a41262005-01-15 22:18:47 +00009632 * "extend(dict, dict [, action])" function
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009633 */
9634 static void
9635f_extend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009636 typval_T *argvars;
9637 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009638{
Bram Moolenaare9a41262005-01-15 22:18:47 +00009639 if (argvars[0].v_type == VAR_LIST && argvars[1].v_type == VAR_LIST)
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009640 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009641 list_T *l1, *l2;
9642 listitem_T *item;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009643 long before;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009644 int error = FALSE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009645
Bram Moolenaare9a41262005-01-15 22:18:47 +00009646 l1 = argvars[0].vval.v_list;
9647 l2 = argvars[1].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009648 if (l1 != NULL && !tv_check_lock(l1->lv_lock, (char_u *)"extend()")
9649 && l2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009650 {
9651 if (argvars[2].v_type != VAR_UNKNOWN)
9652 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009653 before = get_tv_number_chk(&argvars[2], &error);
9654 if (error)
9655 return; /* type error; errmsg already given */
9656
Bram Moolenaar758711c2005-02-02 23:11:38 +00009657 if (before == l1->lv_len)
9658 item = NULL;
9659 else
Bram Moolenaare9a41262005-01-15 22:18:47 +00009660 {
Bram Moolenaar758711c2005-02-02 23:11:38 +00009661 item = list_find(l1, before);
9662 if (item == NULL)
9663 {
9664 EMSGN(_(e_listidx), before);
9665 return;
9666 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009667 }
9668 }
9669 else
9670 item = NULL;
9671 list_extend(l1, l2, item);
9672
Bram Moolenaare9a41262005-01-15 22:18:47 +00009673 copy_tv(&argvars[0], rettv);
9674 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009675 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009676 else if (argvars[0].v_type == VAR_DICT && argvars[1].v_type == VAR_DICT)
9677 {
Bram Moolenaar33570922005-01-25 22:26:29 +00009678 dict_T *d1, *d2;
9679 dictitem_T *di1;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009680 char_u *action;
9681 int i;
Bram Moolenaar33570922005-01-25 22:26:29 +00009682 hashitem_T *hi2;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009683 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009684
9685 d1 = argvars[0].vval.v_dict;
9686 d2 = argvars[1].vval.v_dict;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009687 if (d1 != NULL && !tv_check_lock(d1->dv_lock, (char_u *)"extend()")
9688 && d2 != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009689 {
9690 /* Check the third argument. */
9691 if (argvars[2].v_type != VAR_UNKNOWN)
9692 {
9693 static char *(av[]) = {"keep", "force", "error"};
9694
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009695 action = get_tv_string_chk(&argvars[2]);
9696 if (action == NULL)
9697 return; /* type error; errmsg already given */
Bram Moolenaare9a41262005-01-15 22:18:47 +00009698 for (i = 0; i < 3; ++i)
9699 if (STRCMP(action, av[i]) == 0)
9700 break;
9701 if (i == 3)
9702 {
Bram Moolenaareb3593b2006-04-22 22:33:57 +00009703 EMSG2(_(e_invarg2), action);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009704 return;
9705 }
9706 }
9707 else
9708 action = (char_u *)"force";
9709
9710 /* Go over all entries in the second dict and add them to the
9711 * first dict. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009712 todo = (int)d2->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +00009713 for (hi2 = d2->dv_hashtab.ht_array; todo > 0; ++hi2)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009714 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009715 if (!HASHITEM_EMPTY(hi2))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009716 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009717 --todo;
9718 di1 = dict_find(d1, hi2->hi_key, -1);
9719 if (di1 == NULL)
9720 {
9721 di1 = dictitem_copy(HI2DI(hi2));
9722 if (di1 != NULL && dict_add(d1, di1) == FAIL)
9723 dictitem_free(di1);
9724 }
9725 else if (*action == 'e')
9726 {
9727 EMSG2(_("E737: Key already exists: %s"), hi2->hi_key);
9728 break;
9729 }
9730 else if (*action == 'f')
9731 {
9732 clear_tv(&di1->di_tv);
9733 copy_tv(&HI2DI(hi2)->di_tv, &di1->di_tv);
9734 }
Bram Moolenaare9a41262005-01-15 22:18:47 +00009735 }
9736 }
9737
Bram Moolenaare9a41262005-01-15 22:18:47 +00009738 copy_tv(&argvars[0], rettv);
9739 }
9740 }
9741 else
9742 EMSG2(_(e_listdictarg), "extend()");
Bram Moolenaar8a283e52005-01-06 23:28:25 +00009743}
9744
9745/*
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009746 * "feedkeys()" function
9747 */
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009748 static void
9749f_feedkeys(argvars, rettv)
9750 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009751 typval_T *rettv UNUSED;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009752{
9753 int remap = TRUE;
9754 char_u *keys, *flags;
9755 char_u nbuf[NUMBUFLEN];
9756 int typed = FALSE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009757 char_u *keys_esc;
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009758
Bram Moolenaar3d43a662007-04-27 20:15:55 +00009759 /* This is not allowed in the sandbox. If the commands would still be
9760 * executed in the sandbox it would be OK, but it probably happens later,
9761 * when "sandbox" is no longer set. */
9762 if (check_secure())
9763 return;
9764
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009765 keys = get_tv_string(&argvars[0]);
9766 if (*keys != NUL)
9767 {
9768 if (argvars[1].v_type != VAR_UNKNOWN)
9769 {
9770 flags = get_tv_string_buf(&argvars[1], nbuf);
9771 for ( ; *flags != NUL; ++flags)
9772 {
9773 switch (*flags)
9774 {
9775 case 'n': remap = FALSE; break;
9776 case 'm': remap = TRUE; break;
9777 case 't': typed = TRUE; break;
9778 }
9779 }
9780 }
9781
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009782 /* Need to escape K_SPECIAL and CSI before putting the string in the
9783 * typeahead buffer. */
9784 keys_esc = vim_strsave_escape_csi(keys);
9785 if (keys_esc != NULL)
9786 {
9787 ins_typebuf(keys_esc, (remap ? REMAP_YES : REMAP_NONE),
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009788 typebuf.tb_len, !typed, FALSE);
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009789 vim_free(keys_esc);
Bram Moolenaar437df8f2006-04-27 21:47:44 +00009790 if (vgetc_busy)
9791 typebuf_was_filled = TRUE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00009792 }
Bram Moolenaarf9393ef2006-04-24 19:47:27 +00009793 }
9794}
9795
9796/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009797 * "filereadable()" function
9798 */
9799 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009800f_filereadable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009801 typval_T *argvars;
9802 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009803{
Bram Moolenaarc236c162008-07-13 17:41:49 +00009804 int fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009805 char_u *p;
9806 int n;
9807
Bram Moolenaarc236c162008-07-13 17:41:49 +00009808#ifndef O_NONBLOCK
9809# define O_NONBLOCK 0
9810#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009811 p = get_tv_string(&argvars[0]);
Bram Moolenaarc236c162008-07-13 17:41:49 +00009812 if (*p && !mch_isdir(p) && (fd = mch_open((char *)p,
9813 O_RDONLY | O_NONBLOCK, 0)) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009814 {
9815 n = TRUE;
Bram Moolenaarc236c162008-07-13 17:41:49 +00009816 close(fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009817 }
9818 else
9819 n = FALSE;
9820
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009821 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009822}
9823
9824/*
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009825 * Return 0 for not writable, 1 for writable file, 2 for a dir which we have
Bram Moolenaar071d4272004-06-13 20:20:40 +00009826 * rights to write into.
9827 */
9828 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009829f_filewritable(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +00009830 typval_T *argvars;
9831 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009832{
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00009833 rettv->vval.v_number = filewritable(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00009834}
9835
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009836static void findfilendir __ARGS((typval_T *argvars, typval_T *rettv, int find_what));
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009837
9838 static void
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009839findfilendir(argvars, rettv, find_what)
Bram Moolenaar33570922005-01-25 22:26:29 +00009840 typval_T *argvars;
9841 typval_T *rettv;
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009842 int find_what;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009843{
9844#ifdef FEAT_SEARCHPATH
9845 char_u *fname;
9846 char_u *fresult = NULL;
9847 char_u *path = *curbuf->b_p_path == NUL ? p_path : curbuf->b_p_path;
9848 char_u *p;
9849 char_u pathbuf[NUMBUFLEN];
9850 int count = 1;
9851 int first = TRUE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009852 int error = FALSE;
9853#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009854
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009855 rettv->vval.v_string = NULL;
9856 rettv->v_type = VAR_STRING;
9857
9858#ifdef FEAT_SEARCHPATH
Bram Moolenaarc70646c2005-01-04 21:52:38 +00009859 fname = get_tv_string(&argvars[0]);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009860
Bram Moolenaar49cd9572005-01-03 21:06:01 +00009861 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009862 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009863 p = get_tv_string_buf_chk(&argvars[1], pathbuf);
9864 if (p == NULL)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009865 error = TRUE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009866 else
9867 {
9868 if (*p != NUL)
9869 path = p;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009870
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009871 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009872 count = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009873 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009874 }
9875
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009876 if (count < 0 && rettv_list_alloc(rettv) == FAIL)
9877 error = TRUE;
9878
9879 if (*fname != NUL && !error)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009880 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009881 do
9882 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009883 if (rettv->v_type == VAR_STRING)
9884 vim_free(fresult);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009885 fresult = find_file_in_path_option(first ? fname : NULL,
9886 first ? (int)STRLEN(fname) : 0,
Bram Moolenaar4d0ec162008-02-20 11:24:52 +00009887 0, first, path,
9888 find_what,
9889 curbuf->b_ffname,
9890 find_what == FINDFILE_DIR
9891 ? (char_u *)"" : curbuf->b_p_sua);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009892 first = FALSE;
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009893
9894 if (fresult != NULL && rettv->v_type == VAR_LIST)
9895 list_append_string(rettv->vval.v_list, fresult, -1);
9896
9897 } while ((rettv->v_type == VAR_LIST || --count > 0) && fresult != NULL);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009898 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009899
Bram Moolenaar899dddf2006-03-26 21:06:50 +00009900 if (rettv->v_type == VAR_STRING)
9901 rettv->vval.v_string = fresult;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009902#endif
Bram Moolenaar89cb5e02004-07-19 20:55:54 +00009903}
9904
Bram Moolenaar33570922005-01-25 22:26:29 +00009905static void filter_map __ARGS((typval_T *argvars, typval_T *rettv, int map));
9906static int filter_map_one __ARGS((typval_T *tv, char_u *expr, int map, int *remp));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009907
9908/*
9909 * Implementation of map() and filter().
9910 */
9911 static void
9912filter_map(argvars, rettv, map)
Bram Moolenaar33570922005-01-25 22:26:29 +00009913 typval_T *argvars;
9914 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009915 int map;
9916{
9917 char_u buf[NUMBUFLEN];
Bram Moolenaare9a41262005-01-15 22:18:47 +00009918 char_u *expr;
Bram Moolenaar33570922005-01-25 22:26:29 +00009919 listitem_T *li, *nli;
9920 list_T *l = NULL;
9921 dictitem_T *di;
9922 hashtab_T *ht;
9923 hashitem_T *hi;
9924 dict_T *d = NULL;
9925 typval_T save_val;
9926 typval_T save_key;
Bram Moolenaare9a41262005-01-15 22:18:47 +00009927 int rem;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009928 int todo;
Bram Moolenaar89d40322006-08-29 15:30:07 +00009929 char_u *ermsg = map ? (char_u *)"map()" : (char_u *)"filter()";
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009930 int save_did_emsg;
Bram Moolenaar627b1d32009-11-17 11:20:35 +00009931 int index = 0;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009932
Bram Moolenaare9a41262005-01-15 22:18:47 +00009933 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009934 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009935 if ((l = argvars[0].vval.v_list) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009936 || (map && tv_check_lock(l->lv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009937 return;
9938 }
9939 else if (argvars[0].v_type == VAR_DICT)
9940 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009941 if ((d = argvars[0].vval.v_dict) == NULL
Bram Moolenaar89d40322006-08-29 15:30:07 +00009942 || (map && tv_check_lock(d->dv_lock, ermsg)))
Bram Moolenaare9a41262005-01-15 22:18:47 +00009943 return;
9944 }
9945 else
9946 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009947 EMSG2(_(e_listdictarg), ermsg);
Bram Moolenaare9a41262005-01-15 22:18:47 +00009948 return;
9949 }
9950
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009951 expr = get_tv_string_buf_chk(&argvars[1], buf);
9952 /* On type errors, the preceding call has already displayed an error
9953 * message. Avoid a misleading error message for an empty string that
9954 * was not passed as argument. */
9955 if (expr != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +00009956 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009957 prepare_vimvar(VV_VAL, &save_val);
9958 expr = skipwhite(expr);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +00009959
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009960 /* We reset "did_emsg" to be able to detect whether an error
9961 * occurred during evaluation of the expression. */
9962 save_did_emsg = did_emsg;
9963 did_emsg = FALSE;
Bram Moolenaar280f1262006-01-30 00:14:18 +00009964
Bram Moolenaar627b1d32009-11-17 11:20:35 +00009965 prepare_vimvar(VV_KEY, &save_key);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009966 if (argvars[0].v_type == VAR_DICT)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009967 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009968 vimvars[VV_KEY].vv_type = VAR_STRING;
9969
9970 ht = &d->dv_hashtab;
9971 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00009972 todo = (int)ht->ht_used;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009973 for (hi = ht->ht_array; todo > 0; ++hi)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +00009974 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009975 if (!HASHITEM_EMPTY(hi))
9976 {
9977 --todo;
9978 di = HI2DI(hi);
Bram Moolenaar89d40322006-08-29 15:30:07 +00009979 if (tv_check_lock(di->di_tv.v_lock, ermsg))
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009980 break;
9981 vimvars[VV_KEY].vv_str = vim_strsave(di->di_key);
Bram Moolenaar280f1262006-01-30 00:14:18 +00009982 if (filter_map_one(&di->di_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00009983 || did_emsg)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009984 break;
9985 if (!map && rem)
9986 dictitem_remove(d, di);
9987 clear_tv(&vimvars[VV_KEY].vv_tv);
9988 }
9989 }
9990 hash_unlock(ht);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009991 }
9992 else
9993 {
Bram Moolenaar627b1d32009-11-17 11:20:35 +00009994 vimvars[VV_KEY].vv_type = VAR_NUMBER;
9995
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00009996 for (li = l->lv_first; li != NULL; li = nli)
9997 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00009998 if (tv_check_lock(li->li_tv.v_lock, ermsg))
Bram Moolenaar2e6aff32005-01-31 19:25:36 +00009999 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010000 nli = li->li_next;
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010001 vimvars[VV_KEY].vv_nr = index;
Bram Moolenaar280f1262006-01-30 00:14:18 +000010002 if (filter_map_one(&li->li_tv, expr, map, &rem) == FAIL
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010003 || did_emsg)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010004 break;
10005 if (!map && rem)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010006 listitem_remove(l, li);
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010007 ++index;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010008 }
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010009 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010010
Bram Moolenaar627b1d32009-11-17 11:20:35 +000010011 restore_vimvar(VV_KEY, &save_key);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010012 restore_vimvar(VV_VAL, &save_val);
Bram Moolenaar280f1262006-01-30 00:14:18 +000010013
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000010014 did_emsg |= save_did_emsg;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010015 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010016
10017 copy_tv(&argvars[0], rettv);
10018}
10019
10020 static int
10021filter_map_one(tv, expr, map, remp)
Bram Moolenaar33570922005-01-25 22:26:29 +000010022 typval_T *tv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010023 char_u *expr;
10024 int map;
10025 int *remp;
10026{
Bram Moolenaar33570922005-01-25 22:26:29 +000010027 typval_T rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010028 char_u *s;
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010029 int retval = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010030
Bram Moolenaar33570922005-01-25 22:26:29 +000010031 copy_tv(tv, &vimvars[VV_VAL].vv_tv);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010032 s = expr;
10033 if (eval1(&s, &rettv, TRUE) == FAIL)
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010034 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010035 if (*s != NUL) /* check for trailing chars after expr */
10036 {
10037 EMSG2(_(e_invexpr2), s);
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010038 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010039 }
10040 if (map)
10041 {
10042 /* map(): replace the list item value */
10043 clear_tv(tv);
Bram Moolenaar4463f292005-09-25 22:20:24 +000010044 rettv.v_lock = 0;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010045 *tv = rettv;
10046 }
10047 else
10048 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010049 int error = FALSE;
10050
Bram Moolenaare9a41262005-01-15 22:18:47 +000010051 /* filter(): when expr is zero remove the item */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010052 *remp = (get_tv_number_chk(&rettv, &error) == 0);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010053 clear_tv(&rettv);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010054 /* On type error, nothing has been removed; return FAIL to stop the
10055 * loop. The error message was given by get_tv_number_chk(). */
10056 if (error)
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010057 goto theend;
Bram Moolenaare9a41262005-01-15 22:18:47 +000010058 }
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010059 retval = OK;
10060theend:
Bram Moolenaar33570922005-01-25 22:26:29 +000010061 clear_tv(&vimvars[VV_VAL].vv_tv);
Bram Moolenaarb4066a12007-09-17 19:38:08 +000010062 return retval;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010063}
10064
10065/*
10066 * "filter()" function
10067 */
10068 static void
10069f_filter(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010070 typval_T *argvars;
10071 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010072{
10073 filter_map(argvars, rettv, FALSE);
10074}
10075
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000010076/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010077 * "finddir({fname}[, {path}[, {count}]])" function
10078 */
10079 static void
10080f_finddir(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010081 typval_T *argvars;
10082 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010083{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010084 findfilendir(argvars, rettv, FINDFILE_DIR);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010085}
10086
10087/*
10088 * "findfile({fname}[, {path}[, {count}]])" function
10089 */
10090 static void
10091f_findfile(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010092 typval_T *argvars;
10093 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010094{
Bram Moolenaar4d0ec162008-02-20 11:24:52 +000010095 findfilendir(argvars, rettv, FINDFILE_FILE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010096}
10097
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010098#ifdef FEAT_FLOAT
10099/*
10100 * "float2nr({float})" function
10101 */
10102 static void
10103f_float2nr(argvars, rettv)
10104 typval_T *argvars;
10105 typval_T *rettv;
10106{
10107 float_T f;
10108
10109 if (get_float_arg(argvars, &f) == OK)
10110 {
10111 if (f < -0x7fffffff)
10112 rettv->vval.v_number = -0x7fffffff;
10113 else if (f > 0x7fffffff)
10114 rettv->vval.v_number = 0x7fffffff;
10115 else
10116 rettv->vval.v_number = (varnumber_T)f;
10117 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000010118}
10119
10120/*
10121 * "floor({float})" function
10122 */
10123 static void
10124f_floor(argvars, rettv)
10125 typval_T *argvars;
10126 typval_T *rettv;
10127{
10128 float_T f;
10129
10130 rettv->v_type = VAR_FLOAT;
10131 if (get_float_arg(argvars, &f) == OK)
10132 rettv->vval.v_float = floor(f);
10133 else
10134 rettv->vval.v_float = 0.0;
10135}
10136#endif
10137
Bram Moolenaar0d660222005-01-07 21:51:51 +000010138/*
Bram Moolenaaraebaf892008-05-28 14:49:58 +000010139 * "fnameescape({string})" function
10140 */
10141 static void
10142f_fnameescape(argvars, rettv)
10143 typval_T *argvars;
10144 typval_T *rettv;
10145{
10146 rettv->vval.v_string = vim_strsave_fnameescape(
10147 get_tv_string(&argvars[0]), FALSE);
10148 rettv->v_type = VAR_STRING;
10149}
10150
10151/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010152 * "fnamemodify({fname}, {mods})" function
10153 */
10154 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010155f_fnamemodify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010156 typval_T *argvars;
10157 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010158{
10159 char_u *fname;
10160 char_u *mods;
10161 int usedlen = 0;
10162 int len;
10163 char_u *fbuf = NULL;
10164 char_u buf[NUMBUFLEN];
10165
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010166 fname = get_tv_string_chk(&argvars[0]);
10167 mods = get_tv_string_buf_chk(&argvars[1], buf);
10168 if (fname == NULL || mods == NULL)
10169 fname = NULL;
10170 else
10171 {
10172 len = (int)STRLEN(fname);
10173 (void)modify_fname(mods, &usedlen, &fname, &fbuf, &len);
10174 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010175
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010176 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010177 if (fname == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010178 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010179 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010180 rettv->vval.v_string = vim_strnsave(fname, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010181 vim_free(fbuf);
10182}
10183
Bram Moolenaar33570922005-01-25 22:26:29 +000010184static void foldclosed_both __ARGS((typval_T *argvars, typval_T *rettv, int end));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010185
10186/*
10187 * "foldclosed()" function
10188 */
10189 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010190foldclosed_both(argvars, rettv, end)
Bram Moolenaar33570922005-01-25 22:26:29 +000010191 typval_T *argvars;
10192 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010193 int end;
10194{
10195#ifdef FEAT_FOLDING
10196 linenr_T lnum;
10197 linenr_T first, last;
10198
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010199 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010200 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
10201 {
10202 if (hasFoldingWin(curwin, lnum, &first, &last, FALSE, NULL))
10203 {
10204 if (end)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010205 rettv->vval.v_number = (varnumber_T)last;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010206 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010207 rettv->vval.v_number = (varnumber_T)first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010208 return;
10209 }
10210 }
10211#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010212 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010213}
10214
10215/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010216 * "foldclosed()" function
10217 */
10218 static void
10219f_foldclosed(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010220 typval_T *argvars;
10221 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010222{
10223 foldclosed_both(argvars, rettv, FALSE);
10224}
10225
10226/*
10227 * "foldclosedend()" function
10228 */
10229 static void
10230f_foldclosedend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010231 typval_T *argvars;
10232 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010233{
10234 foldclosed_both(argvars, rettv, TRUE);
10235}
10236
10237/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010238 * "foldlevel()" function
10239 */
10240 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010241f_foldlevel(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010242 typval_T *argvars;
10243 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010244{
10245#ifdef FEAT_FOLDING
10246 linenr_T lnum;
10247
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010248 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010249 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010250 rettv->vval.v_number = foldLevel(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010251#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010252}
10253
10254/*
10255 * "foldtext()" function
10256 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010257 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010258f_foldtext(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010259 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010260 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010261{
10262#ifdef FEAT_FOLDING
10263 linenr_T lnum;
10264 char_u *s;
10265 char_u *r;
10266 int len;
10267 char *txt;
10268#endif
10269
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010270 rettv->v_type = VAR_STRING;
10271 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010272#ifdef FEAT_FOLDING
Bram Moolenaare9a41262005-01-15 22:18:47 +000010273 if ((linenr_T)vimvars[VV_FOLDSTART].vv_nr > 0
10274 && (linenr_T)vimvars[VV_FOLDEND].vv_nr
10275 <= curbuf->b_ml.ml_line_count
10276 && vimvars[VV_FOLDDASHES].vv_str != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010277 {
10278 /* Find first non-empty line in the fold. */
Bram Moolenaare9a41262005-01-15 22:18:47 +000010279 lnum = (linenr_T)vimvars[VV_FOLDSTART].vv_nr;
10280 while (lnum < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010281 {
10282 if (!linewhite(lnum))
10283 break;
10284 ++lnum;
10285 }
10286
10287 /* Find interesting text in this line. */
10288 s = skipwhite(ml_get(lnum));
10289 /* skip C comment-start */
10290 if (s[0] == '/' && (s[1] == '*' || s[1] == '/'))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010291 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000010292 s = skipwhite(s + 2);
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010293 if (*skipwhite(s) == NUL
Bram Moolenaare9a41262005-01-15 22:18:47 +000010294 && lnum + 1 < (linenr_T)vimvars[VV_FOLDEND].vv_nr)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000010295 {
10296 s = skipwhite(ml_get(lnum + 1));
10297 if (*s == '*')
10298 s = skipwhite(s + 1);
10299 }
10300 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010301 txt = _("+-%s%3ld lines: ");
10302 r = alloc((unsigned)(STRLEN(txt)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010303 + STRLEN(vimvars[VV_FOLDDASHES].vv_str) /* for %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010304 + 20 /* for %3ld */
10305 + STRLEN(s))); /* concatenated */
10306 if (r != NULL)
10307 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010308 sprintf((char *)r, txt, vimvars[VV_FOLDDASHES].vv_str,
10309 (long)((linenr_T)vimvars[VV_FOLDEND].vv_nr
10310 - (linenr_T)vimvars[VV_FOLDSTART].vv_nr + 1));
Bram Moolenaar071d4272004-06-13 20:20:40 +000010311 len = (int)STRLEN(r);
10312 STRCAT(r, s);
10313 /* remove 'foldmarker' and 'commentstring' */
10314 foldtext_cleanup(r + len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010315 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010316 }
10317 }
10318#endif
10319}
10320
10321/*
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010322 * "foldtextresult(lnum)" function
10323 */
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010324 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010325f_foldtextresult(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010326 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010327 typval_T *rettv;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010328{
10329#ifdef FEAT_FOLDING
10330 linenr_T lnum;
10331 char_u *text;
10332 char_u buf[51];
10333 foldinfo_T foldinfo;
10334 int fold_count;
10335#endif
10336
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010337 rettv->v_type = VAR_STRING;
10338 rettv->vval.v_string = NULL;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010339#ifdef FEAT_FOLDING
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010340 lnum = get_tv_lnum(argvars);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010341 /* treat illegal types and illegal string values for {lnum} the same */
10342 if (lnum < 0)
10343 lnum = 0;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010344 fold_count = foldedCount(curwin, lnum, &foldinfo);
10345 if (fold_count > 0)
10346 {
10347 text = get_foldtext(curwin, lnum, lnum + fold_count - 1,
10348 &foldinfo, buf);
10349 if (text == buf)
10350 text = vim_strsave(text);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010351 rettv->vval.v_string = text;
Bram Moolenaar7b0294c2004-10-11 10:16:09 +000010352 }
10353#endif
10354}
10355
10356/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010357 * "foreground()" function
10358 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010359 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010360f_foreground(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010361 typval_T *argvars UNUSED;
10362 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010363{
Bram Moolenaar071d4272004-06-13 20:20:40 +000010364#ifdef FEAT_GUI
10365 if (gui.in_use)
10366 gui_mch_set_foreground();
10367#else
10368# ifdef WIN32
10369 win32_set_foreground();
10370# endif
10371#endif
10372}
10373
10374/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010375 * "function()" function
10376 */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010377 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010378f_function(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010379 typval_T *argvars;
10380 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010381{
10382 char_u *s;
10383
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010384 s = get_tv_string(&argvars[0]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000010385 if (s == NULL || *s == NUL || VIM_ISDIGIT(*s))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010386 EMSG2(_(e_invarg2), s);
Bram Moolenaar3d0089f2008-12-03 08:52:26 +000010387 /* Don't check an autoload name for existence here. */
10388 else if (vim_strchr(s, AUTOLOAD_CHAR) == NULL && !function_exists(s))
Bram Moolenaare49b69a2005-01-08 16:11:57 +000010389 EMSG2(_("E700: Unknown function: %s"), s);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010390 else
10391 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010392 rettv->vval.v_string = vim_strsave(s);
10393 rettv->v_type = VAR_FUNC;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010394 }
10395}
10396
10397/*
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010398 * "garbagecollect()" function
10399 */
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010400 static void
10401f_garbagecollect(argvars, rettv)
10402 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010403 typval_T *rettv UNUSED;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010404{
Bram Moolenaar9fecb462006-09-05 10:59:47 +000010405 /* This is postponed until we are back at the toplevel, because we may be
10406 * using Lists and Dicts internally. E.g.: ":echo [garbagecollect()]". */
10407 want_garbage_collect = TRUE;
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +000010408
10409 if (argvars[0].v_type != VAR_UNKNOWN && get_tv_number(&argvars[0]) == 1)
10410 garbage_collect_at_exit = TRUE;
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000010411}
10412
10413/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000010414 * "get()" function
10415 */
10416 static void
10417f_get(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010418 typval_T *argvars;
10419 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010420{
Bram Moolenaar33570922005-01-25 22:26:29 +000010421 listitem_T *li;
10422 list_T *l;
10423 dictitem_T *di;
10424 dict_T *d;
10425 typval_T *tv = NULL;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010426
Bram Moolenaare9a41262005-01-15 22:18:47 +000010427 if (argvars[0].v_type == VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010428 {
Bram Moolenaare9a41262005-01-15 22:18:47 +000010429 if ((l = argvars[0].vval.v_list) != NULL)
Bram Moolenaar0d660222005-01-07 21:51:51 +000010430 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010431 int error = FALSE;
10432
10433 li = list_find(l, get_tv_number_chk(&argvars[1], &error));
10434 if (!error && li != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010435 tv = &li->li_tv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010436 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010437 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000010438 else if (argvars[0].v_type == VAR_DICT)
10439 {
10440 if ((d = argvars[0].vval.v_dict) != NULL)
10441 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000010442 di = dict_find(d, get_tv_string(&argvars[1]), -1);
Bram Moolenaare9a41262005-01-15 22:18:47 +000010443 if (di != NULL)
10444 tv = &di->di_tv;
10445 }
10446 }
10447 else
10448 EMSG2(_(e_listdictarg), "get()");
10449
10450 if (tv == NULL)
10451 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +000010452 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaare9a41262005-01-15 22:18:47 +000010453 copy_tv(&argvars[2], rettv);
10454 }
10455 else
10456 copy_tv(tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010457}
10458
Bram Moolenaar342337a2005-07-21 21:11:17 +000010459static void get_buffer_lines __ARGS((buf_T *buf, linenr_T start, linenr_T end, int retlist, typval_T *rettv));
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010460
10461/*
10462 * Get line or list of lines from buffer "buf" into "rettv".
Bram Moolenaar342337a2005-07-21 21:11:17 +000010463 * Return a range (from start to end) of lines in rettv from the specified
10464 * buffer.
10465 * If 'retlist' is TRUE, then the lines are returned as a Vim List.
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010466 */
10467 static void
Bram Moolenaar342337a2005-07-21 21:11:17 +000010468get_buffer_lines(buf, start, end, retlist, rettv)
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010469 buf_T *buf;
10470 linenr_T start;
10471 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010472 int retlist;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010473 typval_T *rettv;
10474{
10475 char_u *p;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010476
Bram Moolenaar798b30b2009-04-22 10:56:16 +000010477 if (retlist && rettv_list_alloc(rettv) == FAIL)
10478 return;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010479
10480 if (buf == NULL || buf->b_ml.ml_mfp == NULL || start < 0)
10481 return;
10482
10483 if (!retlist)
10484 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010485 if (start >= 1 && start <= buf->b_ml.ml_line_count)
10486 p = ml_get_buf(buf, start, FALSE);
10487 else
10488 p = (char_u *)"";
10489
10490 rettv->v_type = VAR_STRING;
10491 rettv->vval.v_string = vim_strsave(p);
10492 }
10493 else
10494 {
10495 if (end < start)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010496 return;
10497
10498 if (start < 1)
10499 start = 1;
10500 if (end > buf->b_ml.ml_line_count)
10501 end = buf->b_ml.ml_line_count;
10502 while (start <= end)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000010503 if (list_append_string(rettv->vval.v_list,
10504 ml_get_buf(buf, start++, FALSE), -1) == FAIL)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010505 break;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010506 }
10507}
10508
10509/*
10510 * "getbufline()" function
10511 */
10512 static void
10513f_getbufline(argvars, rettv)
10514 typval_T *argvars;
10515 typval_T *rettv;
10516{
10517 linenr_T lnum;
10518 linenr_T end;
10519 buf_T *buf;
10520
10521 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10522 ++emsg_off;
10523 buf = get_buf_tv(&argvars[0]);
10524 --emsg_off;
10525
Bram Moolenaar661b1822005-07-28 22:36:45 +000010526 lnum = get_tv_lnum_buf(&argvars[1], buf);
Bram Moolenaar342337a2005-07-21 21:11:17 +000010527 if (argvars[2].v_type == VAR_UNKNOWN)
10528 end = lnum;
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010529 else
Bram Moolenaar661b1822005-07-28 22:36:45 +000010530 end = get_tv_lnum_buf(&argvars[2], buf);
10531
Bram Moolenaar342337a2005-07-21 21:11:17 +000010532 get_buffer_lines(buf, lnum, end, TRUE, rettv);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010533}
10534
Bram Moolenaar0d660222005-01-07 21:51:51 +000010535/*
10536 * "getbufvar()" function
10537 */
10538 static void
10539f_getbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010540 typval_T *argvars;
10541 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010542{
10543 buf_T *buf;
10544 buf_T *save_curbuf;
10545 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000010546 dictitem_T *v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010547
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010548 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
10549 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010550 ++emsg_off;
10551 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010552
10553 rettv->v_type = VAR_STRING;
10554 rettv->vval.v_string = NULL;
10555
10556 if (buf != NULL && varname != NULL)
10557 {
Bram Moolenaar632deed2008-06-27 18:26:11 +000010558 /* set curbuf to be our buf, temporarily */
10559 save_curbuf = curbuf;
10560 curbuf = buf;
10561
Bram Moolenaar0d660222005-01-07 21:51:51 +000010562 if (*varname == '&') /* buffer-local-option */
Bram Moolenaar0d660222005-01-07 21:51:51 +000010563 get_option_tv(&varname, rettv, TRUE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010564 else
10565 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010566 if (*varname == NUL)
10567 /* let getbufvar({nr}, "") return the "b:" dictionary. The
10568 * scope prefix before the NUL byte is required by
10569 * find_var_in_ht(). */
10570 varname = (char_u *)"b:" + 2;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010571 /* look up the variable */
Bram Moolenaar632deed2008-06-27 18:26:11 +000010572 v = find_var_in_ht(&curbuf->b_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010573 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000010574 copy_tv(&v->di_tv, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000010575 }
Bram Moolenaar632deed2008-06-27 18:26:11 +000010576
10577 /* restore previous notion of curbuf */
10578 curbuf = save_curbuf;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010579 }
10580
10581 --emsg_off;
10582}
10583
10584/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010585 * "getchar()" function
10586 */
10587 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010588f_getchar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010589 typval_T *argvars;
10590 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010591{
10592 varnumber_T n;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000010593 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010594
Bram Moolenaar4015b2c2006-06-22 19:01:34 +000010595 /* Position the cursor. Needed after a message that ends in a space. */
10596 windgoto(msg_row, msg_col);
10597
Bram Moolenaar071d4272004-06-13 20:20:40 +000010598 ++no_mapping;
10599 ++allow_keys;
Bram Moolenaar9c8791f2007-09-05 19:47:23 +000010600 for (;;)
10601 {
10602 if (argvars[0].v_type == VAR_UNKNOWN)
10603 /* getchar(): blocking wait. */
10604 n = safe_vgetc();
10605 else if (get_tv_number_chk(&argvars[0], &error) == 1)
10606 /* getchar(1): only check if char avail */
10607 n = vpeekc();
10608 else if (error || vpeekc() == NUL)
10609 /* illegal argument or getchar(0) and no char avail: return zero */
10610 n = 0;
10611 else
10612 /* getchar(0) and char avail: return char */
10613 n = safe_vgetc();
10614 if (n == K_IGNORE)
10615 continue;
10616 break;
10617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010618 --no_mapping;
10619 --allow_keys;
10620
Bram Moolenaar219b8702006-11-01 14:32:36 +000010621 vimvars[VV_MOUSE_WIN].vv_nr = 0;
10622 vimvars[VV_MOUSE_LNUM].vv_nr = 0;
10623 vimvars[VV_MOUSE_COL].vv_nr = 0;
10624
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010625 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010626 if (IS_SPECIAL(n) || mod_mask != 0)
10627 {
10628 char_u temp[10]; /* modifier: 3, mbyte-char: 6, NUL: 1 */
10629 int i = 0;
10630
10631 /* Turn a special key into three bytes, plus modifier. */
10632 if (mod_mask != 0)
10633 {
10634 temp[i++] = K_SPECIAL;
10635 temp[i++] = KS_MODIFIER;
10636 temp[i++] = mod_mask;
10637 }
10638 if (IS_SPECIAL(n))
10639 {
10640 temp[i++] = K_SPECIAL;
10641 temp[i++] = K_SECOND(n);
10642 temp[i++] = K_THIRD(n);
10643 }
10644#ifdef FEAT_MBYTE
10645 else if (has_mbyte)
10646 i += (*mb_char2bytes)(n, temp + i);
10647#endif
10648 else
10649 temp[i++] = n;
10650 temp[i++] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010651 rettv->v_type = VAR_STRING;
10652 rettv->vval.v_string = vim_strsave(temp);
Bram Moolenaar219b8702006-11-01 14:32:36 +000010653
10654#ifdef FEAT_MOUSE
10655 if (n == K_LEFTMOUSE
10656 || n == K_LEFTMOUSE_NM
10657 || n == K_LEFTDRAG
10658 || n == K_LEFTRELEASE
10659 || n == K_LEFTRELEASE_NM
10660 || n == K_MIDDLEMOUSE
10661 || n == K_MIDDLEDRAG
10662 || n == K_MIDDLERELEASE
10663 || n == K_RIGHTMOUSE
10664 || n == K_RIGHTDRAG
10665 || n == K_RIGHTRELEASE
10666 || n == K_X1MOUSE
10667 || n == K_X1DRAG
10668 || n == K_X1RELEASE
10669 || n == K_X2MOUSE
10670 || n == K_X2DRAG
10671 || n == K_X2RELEASE
10672 || n == K_MOUSEDOWN
10673 || n == K_MOUSEUP)
10674 {
10675 int row = mouse_row;
10676 int col = mouse_col;
10677 win_T *win;
10678 linenr_T lnum;
10679# ifdef FEAT_WINDOWS
10680 win_T *wp;
10681# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010682 int winnr = 1;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010683
10684 if (row >= 0 && col >= 0)
10685 {
10686 /* Find the window at the mouse coordinates and compute the
10687 * text position. */
10688 win = mouse_find_win(&row, &col);
10689 (void)mouse_comp_pos(win, &row, &col, &lnum);
10690# ifdef FEAT_WINDOWS
10691 for (wp = firstwin; wp != win; wp = wp->w_next)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010692 ++winnr;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010693# endif
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +000010694 vimvars[VV_MOUSE_WIN].vv_nr = winnr;
Bram Moolenaar219b8702006-11-01 14:32:36 +000010695 vimvars[VV_MOUSE_LNUM].vv_nr = lnum;
10696 vimvars[VV_MOUSE_COL].vv_nr = col + 1;
10697 }
10698 }
10699#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000010700 }
10701}
10702
10703/*
10704 * "getcharmod()" function
10705 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010706 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010707f_getcharmod(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010708 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010709 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010710{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010711 rettv->vval.v_number = mod_mask;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010712}
10713
10714/*
10715 * "getcmdline()" function
10716 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010717 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010718f_getcmdline(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010719 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010720 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010721{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010722 rettv->v_type = VAR_STRING;
10723 rettv->vval.v_string = get_cmdline_str();
Bram Moolenaar071d4272004-06-13 20:20:40 +000010724}
10725
10726/*
10727 * "getcmdpos()" function
10728 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010729 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010730f_getcmdpos(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010731 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010732 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010733{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010734 rettv->vval.v_number = get_cmdline_pos() + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010735}
10736
10737/*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010738 * "getcmdtype()" function
10739 */
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010740 static void
10741f_getcmdtype(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010742 typval_T *argvars UNUSED;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000010743 typval_T *rettv;
10744{
10745 rettv->v_type = VAR_STRING;
10746 rettv->vval.v_string = alloc(2);
10747 if (rettv->vval.v_string != NULL)
10748 {
10749 rettv->vval.v_string[0] = get_cmdline_type();
10750 rettv->vval.v_string[1] = NUL;
10751 }
10752}
10753
10754/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010755 * "getcwd()" function
10756 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010757 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010758f_getcwd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010759 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010760 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010761{
10762 char_u cwd[MAXPATHL];
10763
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010764 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010765 if (mch_dirname(cwd, MAXPATHL) == FAIL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010766 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010767 else
10768 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010769 rettv->vval.v_string = vim_strsave(cwd);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010770#ifdef BACKSLASH_IN_FILENAME
Bram Moolenaar342337a2005-07-21 21:11:17 +000010771 if (rettv->vval.v_string != NULL)
10772 slash_adjust(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010773#endif
10774 }
10775}
10776
10777/*
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010778 * "getfontname()" function
10779 */
10780 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010781f_getfontname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000010782 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000010783 typval_T *rettv;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010784{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010785 rettv->v_type = VAR_STRING;
10786 rettv->vval.v_string = NULL;
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010787#ifdef FEAT_GUI
10788 if (gui.in_use)
10789 {
10790 GuiFont font;
10791 char_u *name = NULL;
10792
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010793 if (argvars[0].v_type == VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010794 {
10795 /* Get the "Normal" font. Either the name saved by
10796 * hl_set_font_name() or from the font ID. */
10797 font = gui.norm_font;
10798 name = hl_get_font_name();
10799 }
10800 else
10801 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010802 name = get_tv_string(&argvars[0]);
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010803 if (STRCMP(name, "*") == 0) /* don't use font dialog */
10804 return;
10805 font = gui_mch_get_font(name, FALSE);
10806 if (font == NOFONT)
10807 return; /* Invalid font name, return empty string. */
10808 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010809 rettv->vval.v_string = gui_mch_get_fontname(font, name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000010810 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar46c9c732004-12-12 11:37:09 +000010811 gui_mch_free_font(font);
10812 }
10813#endif
10814}
10815
10816/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010817 * "getfperm({fname})" function
10818 */
10819 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010820f_getfperm(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010821 typval_T *argvars;
10822 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010823{
10824 char_u *fname;
10825 struct stat st;
10826 char_u *perm = NULL;
10827 char_u flags[] = "rwx";
10828 int i;
10829
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010830 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010831
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010832 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010833 if (mch_stat((char *)fname, &st) >= 0)
10834 {
10835 perm = vim_strsave((char_u *)"---------");
10836 if (perm != NULL)
10837 {
10838 for (i = 0; i < 9; i++)
10839 {
10840 if (st.st_mode & (1 << (8 - i)))
10841 perm[i] = flags[i % 3];
10842 }
10843 }
10844 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010845 rettv->vval.v_string = perm;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010846}
10847
10848/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000010849 * "getfsize({fname})" function
10850 */
10851 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010852f_getfsize(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010853 typval_T *argvars;
10854 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010855{
10856 char_u *fname;
10857 struct stat st;
10858
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010859 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010860
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010861 rettv->v_type = VAR_NUMBER;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010862
10863 if (mch_stat((char *)fname, &st) >= 0)
10864 {
10865 if (mch_isdir(fname))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010866 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010867 else
Bram Moolenaard827ada2007-06-19 15:19:55 +000010868 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010869 rettv->vval.v_number = (varnumber_T)st.st_size;
Bram Moolenaard827ada2007-06-19 15:19:55 +000010870
10871 /* non-perfect check for overflow */
10872 if ((off_t)rettv->vval.v_number != (off_t)st.st_size)
10873 rettv->vval.v_number = -2;
10874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010875 }
10876 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010877 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010878}
10879
10880/*
10881 * "getftime({fname})" function
10882 */
10883 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010884f_getftime(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010885 typval_T *argvars;
10886 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010887{
10888 char_u *fname;
10889 struct stat st;
10890
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010891 fname = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010892
10893 if (mch_stat((char *)fname, &st) >= 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010894 rettv->vval.v_number = (varnumber_T)st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010895 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010896 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010897}
10898
10899/*
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010900 * "getftype({fname})" function
10901 */
10902 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010903f_getftype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010904 typval_T *argvars;
10905 typval_T *rettv;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010906{
10907 char_u *fname;
10908 struct stat st;
10909 char_u *type = NULL;
10910 char *t;
10911
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010912 fname = get_tv_string(&argvars[0]);
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010913
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010914 rettv->v_type = VAR_STRING;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010915 if (mch_lstat((char *)fname, &st) >= 0)
10916 {
10917#ifdef S_ISREG
10918 if (S_ISREG(st.st_mode))
10919 t = "file";
10920 else if (S_ISDIR(st.st_mode))
10921 t = "dir";
10922# ifdef S_ISLNK
10923 else if (S_ISLNK(st.st_mode))
10924 t = "link";
10925# endif
10926# ifdef S_ISBLK
10927 else if (S_ISBLK(st.st_mode))
10928 t = "bdev";
10929# endif
10930# ifdef S_ISCHR
10931 else if (S_ISCHR(st.st_mode))
10932 t = "cdev";
10933# endif
10934# ifdef S_ISFIFO
10935 else if (S_ISFIFO(st.st_mode))
10936 t = "fifo";
10937# endif
10938# ifdef S_ISSOCK
10939 else if (S_ISSOCK(st.st_mode))
10940 t = "fifo";
10941# endif
10942 else
10943 t = "other";
10944#else
10945# ifdef S_IFMT
10946 switch (st.st_mode & S_IFMT)
10947 {
10948 case S_IFREG: t = "file"; break;
10949 case S_IFDIR: t = "dir"; break;
10950# ifdef S_IFLNK
10951 case S_IFLNK: t = "link"; break;
10952# endif
10953# ifdef S_IFBLK
10954 case S_IFBLK: t = "bdev"; break;
10955# endif
10956# ifdef S_IFCHR
10957 case S_IFCHR: t = "cdev"; break;
10958# endif
10959# ifdef S_IFIFO
10960 case S_IFIFO: t = "fifo"; break;
10961# endif
10962# ifdef S_IFSOCK
10963 case S_IFSOCK: t = "socket"; break;
10964# endif
10965 default: t = "other";
10966 }
10967# else
10968 if (mch_isdir(fname))
10969 t = "dir";
10970 else
10971 t = "file";
10972# endif
10973#endif
10974 type = vim_strsave((char_u *)t);
10975 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000010976 rettv->vval.v_string = type;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000010977}
10978
10979/*
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010980 * "getline(lnum, [end])" function
Bram Moolenaar0d660222005-01-07 21:51:51 +000010981 */
10982 static void
10983f_getline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000010984 typval_T *argvars;
10985 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010986{
10987 linenr_T lnum;
10988 linenr_T end;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010989 int retlist;
Bram Moolenaar0d660222005-01-07 21:51:51 +000010990
10991 lnum = get_tv_lnum(argvars);
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010992 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar342337a2005-07-21 21:11:17 +000010993 {
Bram Moolenaar80fc0432005-07-20 22:06:07 +000010994 end = 0;
Bram Moolenaar342337a2005-07-21 21:11:17 +000010995 retlist = FALSE;
10996 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000010997 else
Bram Moolenaar342337a2005-07-21 21:11:17 +000010998 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000010999 end = get_tv_lnum(&argvars[1]);
Bram Moolenaar342337a2005-07-21 21:11:17 +000011000 retlist = TRUE;
11001 }
Bram Moolenaar80fc0432005-07-20 22:06:07 +000011002
Bram Moolenaar342337a2005-07-21 21:11:17 +000011003 get_buffer_lines(curbuf, lnum, end, retlist, rettv);
Bram Moolenaar0d660222005-01-07 21:51:51 +000011004}
11005
11006/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011007 * "getmatches()" function
11008 */
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011009 static void
11010f_getmatches(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011011 typval_T *argvars UNUSED;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011012 typval_T *rettv;
11013{
11014#ifdef FEAT_SEARCH_EXTRA
11015 dict_T *dict;
11016 matchitem_T *cur = curwin->w_match_head;
11017
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011018 if (rettv_list_alloc(rettv) == OK)
11019 {
11020 while (cur != NULL)
11021 {
11022 dict = dict_alloc();
11023 if (dict == NULL)
11024 return;
Bram Moolenaar6ee10162007-07-26 20:58:42 +000011025 dict_add_nr_str(dict, "group", 0L, syn_id2name(cur->hlg_id));
11026 dict_add_nr_str(dict, "pattern", 0L, cur->pattern);
11027 dict_add_nr_str(dict, "priority", (long)cur->priority, NULL);
11028 dict_add_nr_str(dict, "id", (long)cur->id, NULL);
11029 list_append_dict(rettv->vval.v_list, dict);
11030 cur = cur->next;
11031 }
11032 }
11033#endif
11034}
11035
11036/*
Bram Moolenaar18081e32008-02-20 19:11:07 +000011037 * "getpid()" function
11038 */
Bram Moolenaar18081e32008-02-20 19:11:07 +000011039 static void
11040f_getpid(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011041 typval_T *argvars UNUSED;
Bram Moolenaar18081e32008-02-20 19:11:07 +000011042 typval_T *rettv;
11043{
11044 rettv->vval.v_number = mch_get_pid();
11045}
11046
11047/*
Bram Moolenaara5525202006-03-02 22:52:09 +000011048 * "getpos(string)" function
11049 */
11050 static void
11051f_getpos(argvars, rettv)
11052 typval_T *argvars;
11053 typval_T *rettv;
11054{
11055 pos_T *fp;
11056 list_T *l;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011057 int fnum = -1;
Bram Moolenaara5525202006-03-02 22:52:09 +000011058
11059 if (rettv_list_alloc(rettv) == OK)
11060 {
11061 l = rettv->vval.v_list;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000011062 fp = var2fpos(&argvars[0], TRUE, &fnum);
11063 if (fnum != -1)
11064 list_append_number(l, (varnumber_T)fnum);
11065 else
11066 list_append_number(l, (varnumber_T)0);
Bram Moolenaara5525202006-03-02 22:52:09 +000011067 list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
11068 : (varnumber_T)0);
Bram Moolenaare65f7322007-10-02 20:08:54 +000011069 list_append_number(l, (fp != NULL)
11070 ? (varnumber_T)(fp->col == MAXCOL ? MAXCOL : fp->col + 1)
Bram Moolenaara5525202006-03-02 22:52:09 +000011071 : (varnumber_T)0);
11072 list_append_number(l,
11073#ifdef FEAT_VIRTUALEDIT
11074 (fp != NULL) ? (varnumber_T)fp->coladd :
11075#endif
11076 (varnumber_T)0);
11077 }
11078 else
11079 rettv->vval.v_number = FALSE;
11080}
11081
11082/*
Bram Moolenaar280f1262006-01-30 00:14:18 +000011083 * "getqflist()" and "getloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000011084 */
Bram Moolenaar2641f772005-03-25 21:58:17 +000011085 static void
Bram Moolenaar280f1262006-01-30 00:14:18 +000011086f_getqflist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011087 typval_T *argvars UNUSED;
11088 typval_T *rettv UNUSED;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011089{
11090#ifdef FEAT_QUICKFIX
Bram Moolenaar280f1262006-01-30 00:14:18 +000011091 win_T *wp;
Bram Moolenaar2641f772005-03-25 21:58:17 +000011092#endif
11093
Bram Moolenaar2641f772005-03-25 21:58:17 +000011094#ifdef FEAT_QUICKFIX
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011095 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000011096 {
Bram Moolenaar280f1262006-01-30 00:14:18 +000011097 wp = NULL;
11098 if (argvars[0].v_type != VAR_UNKNOWN) /* getloclist() */
11099 {
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011100 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar280f1262006-01-30 00:14:18 +000011101 if (wp == NULL)
11102 return;
11103 }
11104
Bram Moolenaareddf53b2006-02-27 00:11:10 +000011105 (void)get_errorlist(wp, rettv->vval.v_list);
Bram Moolenaar2641f772005-03-25 21:58:17 +000011106 }
11107#endif
11108}
11109
11110/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011111 * "getreg()" function
11112 */
11113 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011114f_getreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011115 typval_T *argvars;
11116 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011117{
11118 char_u *strregname;
11119 int regname;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011120 int arg2 = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011121 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011122
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011123 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011124 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011125 strregname = get_tv_string_chk(&argvars[0]);
11126 error = strregname == NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011127 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011128 arg2 = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000011129 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011130 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000011131 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011132 regname = (strregname == NULL ? '"' : *strregname);
11133 if (regname == 0)
11134 regname = '"';
11135
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011136 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011137 rettv->vval.v_string = error ? NULL :
11138 get_reg_contents(regname, TRUE, arg2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011139}
11140
11141/*
11142 * "getregtype()" function
11143 */
11144 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011145f_getregtype(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011146 typval_T *argvars;
11147 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011148{
11149 char_u *strregname;
11150 int regname;
11151 char_u buf[NUMBUFLEN + 2];
11152 long reglen = 0;
11153
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011154 if (argvars[0].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011155 {
11156 strregname = get_tv_string_chk(&argvars[0]);
11157 if (strregname == NULL) /* type error; errmsg already given */
11158 {
11159 rettv->v_type = VAR_STRING;
11160 rettv->vval.v_string = NULL;
11161 return;
11162 }
11163 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011164 else
11165 /* Default to v:register */
Bram Moolenaare9a41262005-01-15 22:18:47 +000011166 strregname = vimvars[VV_REG].vv_str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011167
11168 regname = (strregname == NULL ? '"' : *strregname);
11169 if (regname == 0)
11170 regname = '"';
11171
11172 buf[0] = NUL;
11173 buf[1] = NUL;
11174 switch (get_reg_type(regname, &reglen))
11175 {
11176 case MLINE: buf[0] = 'V'; break;
11177 case MCHAR: buf[0] = 'v'; break;
11178#ifdef FEAT_VISUAL
11179 case MBLOCK:
11180 buf[0] = Ctrl_V;
11181 sprintf((char *)buf + 1, "%ld", reglen + 1);
11182 break;
11183#endif
11184 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011185 rettv->v_type = VAR_STRING;
11186 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011187}
11188
11189/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011190 * "gettabwinvar()" function
11191 */
11192 static void
11193f_gettabwinvar(argvars, rettv)
11194 typval_T *argvars;
11195 typval_T *rettv;
11196{
11197 getwinvar(argvars, rettv, 1);
11198}
11199
11200/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011201 * "getwinposx()" function
11202 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011203 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011204f_getwinposx(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011205 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011206 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011207{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011208 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011209#ifdef FEAT_GUI
11210 if (gui.in_use)
11211 {
11212 int x, y;
11213
11214 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011215 rettv->vval.v_number = x;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011216 }
11217#endif
11218}
11219
11220/*
11221 * "getwinposy()" function
11222 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011223 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011224f_getwinposy(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011225 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011226 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011227{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011228 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011229#ifdef FEAT_GUI
11230 if (gui.in_use)
11231 {
11232 int x, y;
11233
11234 if (gui_mch_get_winpos(&x, &y) == OK)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011235 rettv->vval.v_number = y;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011236 }
11237#endif
11238}
11239
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011240/*
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011241 * Find window specified by "vp" in tabpage "tp".
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011242 */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011243 static win_T *
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011244find_win_by_nr(vp, tp)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011245 typval_T *vp;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011246 tabpage_T *tp; /* NULL for current tab page */
Bram Moolenaara40058a2005-07-11 22:42:07 +000011247{
11248#ifdef FEAT_WINDOWS
11249 win_T *wp;
11250#endif
11251 int nr;
11252
11253 nr = get_tv_number_chk(vp, NULL);
11254
11255#ifdef FEAT_WINDOWS
11256 if (nr < 0)
11257 return NULL;
11258 if (nr == 0)
11259 return curwin;
11260
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011261 for (wp = (tp == NULL || tp == curtab) ? firstwin : tp->tp_firstwin;
11262 wp != NULL; wp = wp->w_next)
Bram Moolenaara40058a2005-07-11 22:42:07 +000011263 if (--nr <= 0)
11264 break;
11265 return wp;
11266#else
11267 if (nr == 0 || nr == 1)
11268 return curwin;
11269 return NULL;
11270#endif
11271}
11272
Bram Moolenaar071d4272004-06-13 20:20:40 +000011273/*
11274 * "getwinvar()" function
11275 */
11276 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011277f_getwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011278 typval_T *argvars;
11279 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011280{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011281 getwinvar(argvars, rettv, 0);
11282}
11283
11284/*
11285 * getwinvar() and gettabwinvar()
11286 */
11287 static void
11288getwinvar(argvars, rettv, off)
11289 typval_T *argvars;
11290 typval_T *rettv;
11291 int off; /* 1 for gettabwinvar() */
11292{
Bram Moolenaar071d4272004-06-13 20:20:40 +000011293 win_T *win, *oldcurwin;
11294 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000011295 dictitem_T *v;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011296 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011297
Bram Moolenaar99ebf042006-04-15 20:28:54 +000011298#ifdef FEAT_WINDOWS
11299 if (off == 1)
11300 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
11301 else
11302 tp = curtab;
11303#endif
11304 win = find_win_by_nr(&argvars[off], tp);
11305 varname = get_tv_string_chk(&argvars[off + 1]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011306 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011307
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011308 rettv->v_type = VAR_STRING;
11309 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011310
11311 if (win != NULL && varname != NULL)
11312 {
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011313 /* Set curwin to be our win, temporarily. Also set curbuf, so
11314 * that we can get buffer-local options. */
11315 oldcurwin = curwin;
11316 curwin = win;
11317 curbuf = win->w_buffer;
11318
Bram Moolenaar071d4272004-06-13 20:20:40 +000011319 if (*varname == '&') /* window-local-option */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011320 get_option_tv(&varname, rettv, 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011321 else
11322 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011323 if (*varname == NUL)
11324 /* let getwinvar({nr}, "") return the "w:" dictionary. The
11325 * scope prefix before the NUL byte is required by
11326 * find_var_in_ht(). */
11327 varname = (char_u *)"w:" + 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011328 /* look up the variable */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011329 v = find_var_in_ht(&win->w_vars.dv_hashtab, varname, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011330 if (v != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000011331 copy_tv(&v->di_tv, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011332 }
Bram Moolenaar69a7e432006-10-10 10:55:47 +000011333
11334 /* restore previous notion of curwin */
11335 curwin = oldcurwin;
11336 curbuf = curwin->w_buffer;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011337 }
11338
11339 --emsg_off;
11340}
11341
11342/*
11343 * "glob()" function
11344 */
11345 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011346f_glob(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011347 typval_T *argvars;
11348 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011349{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011350 int flags = WILD_SILENT|WILD_USE_NL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011351 expand_T xpc;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011352 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011353
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011354 /* When the optional second argument is non-zero, don't remove matches
11355 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11356 if (argvars[1].v_type != VAR_UNKNOWN
11357 && get_tv_number_chk(&argvars[1], &error))
11358 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011359 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011360 if (!error)
11361 {
11362 ExpandInit(&xpc);
11363 xpc.xp_context = EXPAND_FILES;
11364 rettv->vval.v_string = ExpandOne(&xpc, get_tv_string(&argvars[0]),
11365 NULL, flags, WILD_ALL);
11366 }
11367 else
11368 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011369}
11370
11371/*
11372 * "globpath()" function
11373 */
11374 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011375f_globpath(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011376 typval_T *argvars;
11377 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011378{
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011379 int flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011380 char_u buf1[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011381 char_u *file = get_tv_string_buf_chk(&argvars[1], buf1);
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011382 int error = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011383
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011384 /* When the optional second argument is non-zero, don't remove matches
11385 * for 'wildignore' and don't put matches for 'suffixes' at the end. */
11386 if (argvars[2].v_type != VAR_UNKNOWN
11387 && get_tv_number_chk(&argvars[2], &error))
11388 flags |= WILD_KEEP_ALL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011389 rettv->v_type = VAR_STRING;
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011390 if (file == NULL || error)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000011391 rettv->vval.v_string = NULL;
11392 else
Bram Moolenaarbb5ddda2008-11-28 10:01:10 +000011393 rettv->vval.v_string = globpath(get_tv_string(&argvars[0]), file,
11394 flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011395}
11396
11397/*
11398 * "has()" function
11399 */
11400 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011401f_has(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011402 typval_T *argvars;
11403 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011404{
11405 int i;
11406 char_u *name;
11407 int n = FALSE;
11408 static char *(has_list[]) =
11409 {
11410#ifdef AMIGA
11411 "amiga",
11412# ifdef FEAT_ARP
11413 "arp",
11414# endif
11415#endif
11416#ifdef __BEOS__
11417 "beos",
11418#endif
11419#ifdef MSDOS
11420# ifdef DJGPP
11421 "dos32",
11422# else
11423 "dos16",
11424# endif
11425#endif
Bram Moolenaar241a8aa2005-12-06 20:04:44 +000011426#ifdef MACOS
Bram Moolenaar071d4272004-06-13 20:20:40 +000011427 "mac",
11428#endif
11429#if defined(MACOS_X_UNIX)
11430 "macunix",
11431#endif
11432#ifdef OS2
11433 "os2",
11434#endif
11435#ifdef __QNX__
11436 "qnx",
11437#endif
11438#ifdef RISCOS
11439 "riscos",
11440#endif
11441#ifdef UNIX
11442 "unix",
11443#endif
11444#ifdef VMS
11445 "vms",
11446#endif
11447#ifdef WIN16
11448 "win16",
11449#endif
11450#ifdef WIN32
11451 "win32",
11452#endif
11453#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
11454 "win32unix",
11455#endif
Bram Moolenaare37d7992010-01-12 13:18:33 +010011456#if defined(WIN64) || defined(_WIN64)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011457 "win64",
11458#endif
11459#ifdef EBCDIC
11460 "ebcdic",
11461#endif
11462#ifndef CASE_INSENSITIVE_FILENAME
11463 "fname_case",
11464#endif
11465#ifdef FEAT_ARABIC
11466 "arabic",
11467#endif
11468#ifdef FEAT_AUTOCMD
11469 "autocmd",
11470#endif
11471#ifdef FEAT_BEVAL
11472 "balloon_eval",
Bram Moolenaar342337a2005-07-21 21:11:17 +000011473# ifndef FEAT_GUI_W32 /* other GUIs always have multiline balloons */
11474 "balloon_multiline",
11475# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011476#endif
11477#if defined(SOME_BUILTIN_TCAPS) || defined(ALL_BUILTIN_TCAPS)
11478 "builtin_terms",
11479# ifdef ALL_BUILTIN_TCAPS
11480 "all_builtin_terms",
11481# endif
11482#endif
11483#ifdef FEAT_BYTEOFF
11484 "byte_offset",
11485#endif
11486#ifdef FEAT_CINDENT
11487 "cindent",
11488#endif
11489#ifdef FEAT_CLIENTSERVER
11490 "clientserver",
11491#endif
11492#ifdef FEAT_CLIPBOARD
11493 "clipboard",
11494#endif
11495#ifdef FEAT_CMDL_COMPL
11496 "cmdline_compl",
11497#endif
11498#ifdef FEAT_CMDHIST
11499 "cmdline_hist",
11500#endif
11501#ifdef FEAT_COMMENTS
11502 "comments",
11503#endif
11504#ifdef FEAT_CRYPT
11505 "cryptv",
11506#endif
11507#ifdef FEAT_CSCOPE
11508 "cscope",
11509#endif
Bram Moolenaarac6e65f2005-08-29 22:25:38 +000011510#ifdef CURSOR_SHAPE
11511 "cursorshape",
11512#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011513#ifdef DEBUG
11514 "debug",
11515#endif
11516#ifdef FEAT_CON_DIALOG
11517 "dialog_con",
11518#endif
11519#ifdef FEAT_GUI_DIALOG
11520 "dialog_gui",
11521#endif
11522#ifdef FEAT_DIFF
11523 "diff",
11524#endif
11525#ifdef FEAT_DIGRAPHS
11526 "digraphs",
11527#endif
11528#ifdef FEAT_DND
11529 "dnd",
11530#endif
11531#ifdef FEAT_EMACS_TAGS
11532 "emacs_tags",
11533#endif
11534 "eval", /* always present, of course! */
11535#ifdef FEAT_EX_EXTRA
11536 "ex_extra",
11537#endif
11538#ifdef FEAT_SEARCH_EXTRA
11539 "extra_search",
11540#endif
11541#ifdef FEAT_FKMAP
11542 "farsi",
11543#endif
11544#ifdef FEAT_SEARCHPATH
11545 "file_in_path",
11546#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000011547#if defined(UNIX) && !defined(USE_SYSTEM)
11548 "filterpipe",
11549#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011550#ifdef FEAT_FIND_ID
11551 "find_in_path",
11552#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011553#ifdef FEAT_FLOAT
11554 "float",
11555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011556#ifdef FEAT_FOLDING
11557 "folding",
11558#endif
11559#ifdef FEAT_FOOTER
11560 "footer",
11561#endif
11562#if !defined(USE_SYSTEM) && defined(UNIX)
11563 "fork",
11564#endif
11565#ifdef FEAT_GETTEXT
11566 "gettext",
11567#endif
11568#ifdef FEAT_GUI
11569 "gui",
11570#endif
11571#ifdef FEAT_GUI_ATHENA
11572# ifdef FEAT_GUI_NEXTAW
11573 "gui_neXtaw",
11574# else
11575 "gui_athena",
11576# endif
11577#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011578#ifdef FEAT_GUI_GTK
11579 "gui_gtk",
11580# ifdef HAVE_GTK2
11581 "gui_gtk2",
11582# endif
11583#endif
Bram Moolenaar7b188622007-09-25 10:51:12 +000011584#ifdef FEAT_GUI_GNOME
11585 "gui_gnome",
11586#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011587#ifdef FEAT_GUI_MAC
11588 "gui_mac",
11589#endif
11590#ifdef FEAT_GUI_MOTIF
11591 "gui_motif",
11592#endif
11593#ifdef FEAT_GUI_PHOTON
11594 "gui_photon",
11595#endif
11596#ifdef FEAT_GUI_W16
11597 "gui_win16",
11598#endif
11599#ifdef FEAT_GUI_W32
11600 "gui_win32",
11601#endif
11602#ifdef FEAT_HANGULIN
11603 "hangul_input",
11604#endif
11605#if defined(HAVE_ICONV_H) && defined(USE_ICONV)
11606 "iconv",
11607#endif
11608#ifdef FEAT_INS_EXPAND
11609 "insert_expand",
11610#endif
11611#ifdef FEAT_JUMPLIST
11612 "jumplist",
11613#endif
11614#ifdef FEAT_KEYMAP
11615 "keymap",
11616#endif
11617#ifdef FEAT_LANGMAP
11618 "langmap",
11619#endif
11620#ifdef FEAT_LIBCALL
11621 "libcall",
11622#endif
11623#ifdef FEAT_LINEBREAK
11624 "linebreak",
11625#endif
11626#ifdef FEAT_LISP
11627 "lispindent",
11628#endif
11629#ifdef FEAT_LISTCMDS
11630 "listcmds",
11631#endif
11632#ifdef FEAT_LOCALMAP
11633 "localmap",
11634#endif
11635#ifdef FEAT_MENU
11636 "menu",
11637#endif
11638#ifdef FEAT_SESSION
11639 "mksession",
11640#endif
11641#ifdef FEAT_MODIFY_FNAME
11642 "modify_fname",
11643#endif
11644#ifdef FEAT_MOUSE
11645 "mouse",
11646#endif
11647#ifdef FEAT_MOUSESHAPE
11648 "mouseshape",
11649#endif
11650#if defined(UNIX) || defined(VMS)
11651# ifdef FEAT_MOUSE_DEC
11652 "mouse_dec",
11653# endif
11654# ifdef FEAT_MOUSE_GPM
11655 "mouse_gpm",
11656# endif
11657# ifdef FEAT_MOUSE_JSB
11658 "mouse_jsbterm",
11659# endif
11660# ifdef FEAT_MOUSE_NET
11661 "mouse_netterm",
11662# endif
11663# ifdef FEAT_MOUSE_PTERM
11664 "mouse_pterm",
11665# endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000011666# ifdef FEAT_SYSMOUSE
11667 "mouse_sysmouse",
11668# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011669# ifdef FEAT_MOUSE_XTERM
11670 "mouse_xterm",
11671# endif
11672#endif
11673#ifdef FEAT_MBYTE
11674 "multi_byte",
11675#endif
11676#ifdef FEAT_MBYTE_IME
11677 "multi_byte_ime",
11678#endif
11679#ifdef FEAT_MULTI_LANG
11680 "multi_lang",
11681#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011682#ifdef FEAT_MZSCHEME
Bram Moolenaar33570922005-01-25 22:26:29 +000011683#ifndef DYNAMIC_MZSCHEME
Bram Moolenaar325b7a22004-07-05 15:58:32 +000011684 "mzscheme",
11685#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011686#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011687#ifdef FEAT_OLE
11688 "ole",
11689#endif
11690#ifdef FEAT_OSFILETYPE
11691 "osfiletype",
11692#endif
11693#ifdef FEAT_PATH_EXTRA
11694 "path_extra",
11695#endif
11696#ifdef FEAT_PERL
11697#ifndef DYNAMIC_PERL
11698 "perl",
11699#endif
11700#endif
11701#ifdef FEAT_PYTHON
11702#ifndef DYNAMIC_PYTHON
11703 "python",
11704#endif
11705#endif
11706#ifdef FEAT_POSTSCRIPT
11707 "postscript",
11708#endif
11709#ifdef FEAT_PRINTER
11710 "printer",
11711#endif
Bram Moolenaar05159a02005-02-26 23:04:13 +000011712#ifdef FEAT_PROFILE
11713 "profile",
11714#endif
Bram Moolenaare580b0c2006-03-21 21:33:03 +000011715#ifdef FEAT_RELTIME
11716 "reltime",
11717#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011718#ifdef FEAT_QUICKFIX
11719 "quickfix",
11720#endif
11721#ifdef FEAT_RIGHTLEFT
11722 "rightleft",
11723#endif
11724#if defined(FEAT_RUBY) && !defined(DYNAMIC_RUBY)
11725 "ruby",
11726#endif
11727#ifdef FEAT_SCROLLBIND
11728 "scrollbind",
11729#endif
11730#ifdef FEAT_CMDL_INFO
11731 "showcmd",
11732 "cmdline_info",
11733#endif
11734#ifdef FEAT_SIGNS
11735 "signs",
11736#endif
11737#ifdef FEAT_SMARTINDENT
11738 "smartindent",
11739#endif
11740#ifdef FEAT_SNIFF
11741 "sniff",
11742#endif
Bram Moolenaaref94eec2009-11-11 13:22:11 +000011743#ifdef STARTUPTIME
11744 "startuptime",
11745#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011746#ifdef FEAT_STL_OPT
11747 "statusline",
11748#endif
11749#ifdef FEAT_SUN_WORKSHOP
11750 "sun_workshop",
11751#endif
11752#ifdef FEAT_NETBEANS_INTG
11753 "netbeans_intg",
11754#endif
Bram Moolenaar3c56a962006-03-12 22:19:04 +000011755#ifdef FEAT_SPELL
Bram Moolenaar0e4d8772005-06-07 21:12:49 +000011756 "spell",
11757#endif
11758#ifdef FEAT_SYN_HL
Bram Moolenaar071d4272004-06-13 20:20:40 +000011759 "syntax",
11760#endif
11761#if defined(USE_SYSTEM) || !defined(UNIX)
11762 "system",
11763#endif
11764#ifdef FEAT_TAG_BINS
11765 "tag_binary",
11766#endif
11767#ifdef FEAT_TAG_OLDSTATIC
11768 "tag_old_static",
11769#endif
11770#ifdef FEAT_TAG_ANYWHITE
11771 "tag_any_white",
11772#endif
11773#ifdef FEAT_TCL
11774# ifndef DYNAMIC_TCL
11775 "tcl",
11776# endif
11777#endif
11778#ifdef TERMINFO
11779 "terminfo",
11780#endif
11781#ifdef FEAT_TERMRESPONSE
11782 "termresponse",
11783#endif
11784#ifdef FEAT_TEXTOBJ
11785 "textobjects",
11786#endif
11787#ifdef HAVE_TGETENT
11788 "tgetent",
11789#endif
11790#ifdef FEAT_TITLE
11791 "title",
11792#endif
11793#ifdef FEAT_TOOLBAR
11794 "toolbar",
11795#endif
11796#ifdef FEAT_USR_CMDS
11797 "user-commands", /* was accidentally included in 5.4 */
11798 "user_commands",
11799#endif
11800#ifdef FEAT_VIMINFO
11801 "viminfo",
11802#endif
11803#ifdef FEAT_VERTSPLIT
11804 "vertsplit",
11805#endif
11806#ifdef FEAT_VIRTUALEDIT
11807 "virtualedit",
11808#endif
11809#ifdef FEAT_VISUAL
11810 "visual",
11811#endif
11812#ifdef FEAT_VISUALEXTRA
11813 "visualextra",
11814#endif
11815#ifdef FEAT_VREPLACE
11816 "vreplace",
11817#endif
11818#ifdef FEAT_WILDIGN
11819 "wildignore",
11820#endif
11821#ifdef FEAT_WILDMENU
11822 "wildmenu",
11823#endif
11824#ifdef FEAT_WINDOWS
11825 "windows",
11826#endif
11827#ifdef FEAT_WAK
11828 "winaltkeys",
11829#endif
11830#ifdef FEAT_WRITEBACKUP
11831 "writebackup",
11832#endif
11833#ifdef FEAT_XIM
11834 "xim",
11835#endif
11836#ifdef FEAT_XFONTSET
11837 "xfontset",
11838#endif
11839#ifdef USE_XSMP
11840 "xsmp",
11841#endif
11842#ifdef USE_XSMP_INTERACT
11843 "xsmp_interact",
11844#endif
11845#ifdef FEAT_XCLIPBOARD
11846 "xterm_clipboard",
11847#endif
11848#ifdef FEAT_XTERM_SAVE
11849 "xterm_save",
11850#endif
11851#if defined(UNIX) && defined(FEAT_X11)
11852 "X11",
11853#endif
11854 NULL
11855 };
11856
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011857 name = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000011858 for (i = 0; has_list[i] != NULL; ++i)
11859 if (STRICMP(name, has_list[i]) == 0)
11860 {
11861 n = TRUE;
11862 break;
11863 }
11864
11865 if (n == FALSE)
11866 {
11867 if (STRNICMP(name, "patch", 5) == 0)
11868 n = has_patch(atoi((char *)name + 5));
11869 else if (STRICMP(name, "vim_starting") == 0)
11870 n = (starting != 0);
Bram Moolenaar42022d52008-12-09 09:57:49 +000011871#ifdef FEAT_MBYTE
11872 else if (STRICMP(name, "multi_byte_encoding") == 0)
11873 n = has_mbyte;
11874#endif
Bram Moolenaar342337a2005-07-21 21:11:17 +000011875#if defined(FEAT_BEVAL) && defined(FEAT_GUI_W32)
11876 else if (STRICMP(name, "balloon_multiline") == 0)
11877 n = multiline_balloon_available();
11878#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011879#ifdef DYNAMIC_TCL
11880 else if (STRICMP(name, "tcl") == 0)
11881 n = tcl_enabled(FALSE);
11882#endif
11883#if defined(USE_ICONV) && defined(DYNAMIC_ICONV)
11884 else if (STRICMP(name, "iconv") == 0)
11885 n = iconv_enabled(FALSE);
11886#endif
Bram Moolenaar33570922005-01-25 22:26:29 +000011887#ifdef DYNAMIC_MZSCHEME
11888 else if (STRICMP(name, "mzscheme") == 0)
11889 n = mzscheme_enabled(FALSE);
11890#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011891#ifdef DYNAMIC_RUBY
11892 else if (STRICMP(name, "ruby") == 0)
11893 n = ruby_enabled(FALSE);
11894#endif
11895#ifdef DYNAMIC_PYTHON
11896 else if (STRICMP(name, "python") == 0)
11897 n = python_enabled(FALSE);
11898#endif
11899#ifdef DYNAMIC_PERL
11900 else if (STRICMP(name, "perl") == 0)
11901 n = perl_enabled(FALSE);
11902#endif
11903#ifdef FEAT_GUI
11904 else if (STRICMP(name, "gui_running") == 0)
11905 n = (gui.in_use || gui.starting);
11906# ifdef FEAT_GUI_W32
11907 else if (STRICMP(name, "gui_win32s") == 0)
11908 n = gui_is_win32s();
11909# endif
11910# ifdef FEAT_BROWSE
11911 else if (STRICMP(name, "browse") == 0)
11912 n = gui.in_use; /* gui_mch_browse() works when GUI is running */
11913# endif
11914#endif
11915#ifdef FEAT_SYN_HL
11916 else if (STRICMP(name, "syntax_items") == 0)
11917 n = syntax_present(curbuf);
11918#endif
11919#if defined(WIN3264)
11920 else if (STRICMP(name, "win95") == 0)
11921 n = mch_windows95();
11922#endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +000011923#ifdef FEAT_NETBEANS_INTG
11924 else if (STRICMP(name, "netbeans_enabled") == 0)
11925 n = usingNetbeans;
11926#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000011927 }
11928
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011929 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011930}
11931
11932/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000011933 * "has_key()" function
11934 */
11935 static void
11936f_has_key(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011937 typval_T *argvars;
11938 typval_T *rettv;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011939{
Bram Moolenaare9a41262005-01-15 22:18:47 +000011940 if (argvars[0].v_type != VAR_DICT)
11941 {
11942 EMSG(_(e_dictreq));
11943 return;
11944 }
11945 if (argvars[0].vval.v_dict == NULL)
11946 return;
11947
11948 rettv->vval.v_number = dict_find(argvars[0].vval.v_dict,
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000011949 get_tv_string(&argvars[1]), -1) != NULL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000011950}
11951
11952/*
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011953 * "haslocaldir()" function
11954 */
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011955 static void
11956f_haslocaldir(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011957 typval_T *argvars UNUSED;
Bram Moolenaard267b9c2007-04-26 15:06:45 +000011958 typval_T *rettv;
11959{
11960 rettv->vval.v_number = (curwin->w_localdir != NULL);
11961}
11962
11963/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000011964 * "hasmapto()" function
11965 */
11966 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011967f_hasmapto(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000011968 typval_T *argvars;
11969 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011970{
11971 char_u *name;
11972 char_u *mode;
11973 char_u buf[NUMBUFLEN];
Bram Moolenaar2c932302006-03-18 21:42:09 +000011974 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011975
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011976 name = get_tv_string(&argvars[0]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000011977 if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000011978 mode = (char_u *)"nvo";
11979 else
Bram Moolenaar2c932302006-03-18 21:42:09 +000011980 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011981 mode = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000011982 if (argvars[2].v_type != VAR_UNKNOWN)
11983 abbr = get_tv_number(&argvars[2]);
11984 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000011985
Bram Moolenaar2c932302006-03-18 21:42:09 +000011986 if (map_to_exists(name, mode, abbr))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011987 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011988 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011989 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011990}
11991
11992/*
11993 * "histadd()" function
11994 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000011995 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000011996f_histadd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000011997 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000011998 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000011999{
12000#ifdef FEAT_CMDHIST
12001 int histype;
12002 char_u *str;
12003 char_u buf[NUMBUFLEN];
12004#endif
12005
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012006 rettv->vval.v_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012007 if (check_restricted() || check_secure())
12008 return;
12009#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012010 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12011 histype = str != NULL ? get_histtype(str) : -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012012 if (histype >= 0)
12013 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012014 str = get_tv_string_buf(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012015 if (*str != NUL)
12016 {
Bram Moolenaarc7be3f32009-12-24 14:01:12 +000012017 init_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012018 add_to_history(histype, str, FALSE, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012019 rettv->vval.v_number = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012020 return;
12021 }
12022 }
12023#endif
12024}
12025
12026/*
12027 * "histdel()" function
12028 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012029 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012030f_histdel(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012031 typval_T *argvars UNUSED;
12032 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012033{
12034#ifdef FEAT_CMDHIST
12035 int n;
12036 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012037 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012038
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012039 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12040 if (str == NULL)
12041 n = 0;
12042 else if (argvars[1].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012043 /* only one argument: clear entire history */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012044 n = clr_history(get_histtype(str));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012045 else if (argvars[1].v_type == VAR_NUMBER)
Bram Moolenaar071d4272004-06-13 20:20:40 +000012046 /* index given: remove that entry */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012047 n = del_history_idx(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012048 (int)get_tv_number(&argvars[1]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012049 else
12050 /* string given: remove all matching entries */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012051 n = del_history_entry(get_histtype(str),
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012052 get_tv_string_buf(&argvars[1], buf));
12053 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012054#endif
12055}
12056
12057/*
12058 * "histget()" function
12059 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012060 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012061f_histget(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012062 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012063 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012064{
12065#ifdef FEAT_CMDHIST
12066 int type;
12067 int idx;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012068 char_u *str;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012069
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012070 str = get_tv_string_chk(&argvars[0]); /* NULL on type error */
12071 if (str == NULL)
12072 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012073 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012074 {
12075 type = get_histtype(str);
12076 if (argvars[1].v_type == VAR_UNKNOWN)
12077 idx = get_history_idx(type);
12078 else
12079 idx = (int)get_tv_number_chk(&argvars[1], NULL);
12080 /* -1 on type error */
12081 rettv->vval.v_string = vim_strsave(get_history_entry(type, idx));
12082 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012083#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012084 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012085#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012086 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012087}
12088
12089/*
12090 * "histnr()" function
12091 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012092 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012093f_histnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012094 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012095 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012096{
12097 int i;
12098
12099#ifdef FEAT_CMDHIST
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012100 char_u *history = get_tv_string_chk(&argvars[0]);
12101
12102 i = history == NULL ? HIST_CMD - 1 : get_histtype(history);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012103 if (i >= HIST_CMD && i < HIST_COUNT)
12104 i = get_history_idx(i);
12105 else
12106#endif
12107 i = -1;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012108 rettv->vval.v_number = i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012109}
12110
12111/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012112 * "highlightID(name)" function
12113 */
12114 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012115f_hlID(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012116 typval_T *argvars;
12117 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012118{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012119 rettv->vval.v_number = syn_name2id(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012120}
12121
12122/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012123 * "highlight_exists()" function
12124 */
12125 static void
12126f_hlexists(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012127 typval_T *argvars;
12128 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012129{
12130 rettv->vval.v_number = highlight_exists(get_tv_string(&argvars[0]));
12131}
12132
12133/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012134 * "hostname()" function
12135 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012136 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012137f_hostname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012138 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012139 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012140{
12141 char_u hostname[256];
12142
12143 mch_get_host_name(hostname, 256);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012144 rettv->v_type = VAR_STRING;
12145 rettv->vval.v_string = vim_strsave(hostname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012146}
12147
12148/*
12149 * iconv() function
12150 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012151 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012152f_iconv(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012153 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012154 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012155{
12156#ifdef FEAT_MBYTE
12157 char_u buf1[NUMBUFLEN];
12158 char_u buf2[NUMBUFLEN];
12159 char_u *from, *to, *str;
12160 vimconv_T vimconv;
12161#endif
12162
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012163 rettv->v_type = VAR_STRING;
12164 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012165
12166#ifdef FEAT_MBYTE
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012167 str = get_tv_string(&argvars[0]);
12168 from = enc_canonize(enc_skip(get_tv_string_buf(&argvars[1], buf1)));
12169 to = enc_canonize(enc_skip(get_tv_string_buf(&argvars[2], buf2)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012170 vimconv.vc_type = CONV_NONE;
12171 convert_setup(&vimconv, from, to);
12172
12173 /* If the encodings are equal, no conversion needed. */
12174 if (vimconv.vc_type == CONV_NONE)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012175 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012176 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012177 rettv->vval.v_string = string_convert(&vimconv, str, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012178
12179 convert_setup(&vimconv, NULL, NULL);
12180 vim_free(from);
12181 vim_free(to);
12182#endif
12183}
12184
12185/*
12186 * "indent()" function
12187 */
12188 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012189f_indent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012190 typval_T *argvars;
12191 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012192{
12193 linenr_T lnum;
12194
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012195 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012196 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012197 rettv->vval.v_number = get_indent_lnum(lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012198 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012199 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012200}
12201
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012202/*
12203 * "index()" function
12204 */
12205 static void
12206f_index(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012207 typval_T *argvars;
12208 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012209{
Bram Moolenaar33570922005-01-25 22:26:29 +000012210 list_T *l;
12211 listitem_T *item;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012212 long idx = 0;
12213 int ic = FALSE;
12214
12215 rettv->vval.v_number = -1;
12216 if (argvars[0].v_type != VAR_LIST)
12217 {
12218 EMSG(_(e_listreq));
12219 return;
12220 }
12221 l = argvars[0].vval.v_list;
12222 if (l != NULL)
12223 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012224 item = l->lv_first;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012225 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012226 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012227 int error = FALSE;
12228
Bram Moolenaar758711c2005-02-02 23:11:38 +000012229 /* Start at specified item. Use the cached index that list_find()
12230 * sets, so that a negative number also works. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012231 item = list_find(l, get_tv_number_chk(&argvars[2], &error));
Bram Moolenaar758711c2005-02-02 23:11:38 +000012232 idx = l->lv_idx;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012233 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012234 ic = get_tv_number_chk(&argvars[3], &error);
12235 if (error)
12236 item = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012237 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012238
Bram Moolenaar758711c2005-02-02 23:11:38 +000012239 for ( ; item != NULL; item = item->li_next, ++idx)
12240 if (tv_equal(&item->li_tv, &argvars[1], ic))
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012241 {
12242 rettv->vval.v_number = idx;
12243 break;
12244 }
12245 }
12246}
12247
Bram Moolenaar071d4272004-06-13 20:20:40 +000012248static int inputsecret_flag = 0;
12249
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012250static void get_user_input __ARGS((typval_T *argvars, typval_T *rettv, int inputdialog));
12251
Bram Moolenaar071d4272004-06-13 20:20:40 +000012252/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012253 * This function is used by f_input() and f_inputdialog() functions. The third
12254 * argument to f_input() specifies the type of completion to use at the
12255 * prompt. The third argument to f_inputdialog() specifies the value to return
12256 * when the user cancels the prompt.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012257 */
12258 static void
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012259get_user_input(argvars, rettv, inputdialog)
Bram Moolenaar33570922005-01-25 22:26:29 +000012260 typval_T *argvars;
12261 typval_T *rettv;
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012262 int inputdialog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012263{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012264 char_u *prompt = get_tv_string_chk(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012265 char_u *p = NULL;
12266 int c;
12267 char_u buf[NUMBUFLEN];
12268 int cmd_silent_save = cmd_silent;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012269 char_u *defstr = (char_u *)"";
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012270 int xp_type = EXPAND_NOTHING;
12271 char_u *xp_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012272
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012273 rettv->v_type = VAR_STRING;
Bram Moolenaarce85c562007-09-16 12:21:16 +000012274 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012275
12276#ifdef NO_CONSOLE_INPUT
12277 /* While starting up, there is no place to enter text. */
12278 if (no_console_input())
Bram Moolenaar071d4272004-06-13 20:20:40 +000012279 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012280#endif
12281
12282 cmd_silent = FALSE; /* Want to see the prompt. */
12283 if (prompt != NULL)
12284 {
12285 /* Only the part of the message after the last NL is considered as
12286 * prompt for the command line */
12287 p = vim_strrchr(prompt, '\n');
12288 if (p == NULL)
12289 p = prompt;
12290 else
12291 {
12292 ++p;
12293 c = *p;
12294 *p = NUL;
12295 msg_start();
12296 msg_clr_eos();
12297 msg_puts_attr(prompt, echo_attr);
12298 msg_didout = FALSE;
12299 msg_starthere();
12300 *p = c;
12301 }
12302 cmdline_row = msg_row;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012303
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012304 if (argvars[1].v_type != VAR_UNKNOWN)
12305 {
12306 defstr = get_tv_string_buf_chk(&argvars[1], buf);
12307 if (defstr != NULL)
12308 stuffReadbuffSpec(defstr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012309
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012310 if (!inputdialog && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar4463f292005-09-25 22:20:24 +000012311 {
12312 char_u *xp_name;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000012313 int xp_namelen;
Bram Moolenaar4463f292005-09-25 22:20:24 +000012314 long argt;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012315
Bram Moolenaar4463f292005-09-25 22:20:24 +000012316 rettv->vval.v_string = NULL;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012317
Bram Moolenaar4463f292005-09-25 22:20:24 +000012318 xp_name = get_tv_string_buf_chk(&argvars[2], buf);
12319 if (xp_name == NULL)
12320 return;
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012321
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012322 xp_namelen = (int)STRLEN(xp_name);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012323
Bram Moolenaar4463f292005-09-25 22:20:24 +000012324 if (parse_compl_arg(xp_name, xp_namelen, &xp_type, &argt,
12325 &xp_arg) == FAIL)
12326 return;
12327 }
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012328 }
12329
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012330 if (defstr != NULL)
12331 rettv->vval.v_string =
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +000012332 getcmdline_prompt(inputsecret_flag ? NUL : '@', p, echo_attr,
12333 xp_type, xp_arg);
12334
12335 vim_free(xp_arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012336
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012337 /* since the user typed this, no need to wait for return */
12338 need_wait_return = FALSE;
12339 msg_didout = FALSE;
12340 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012341 cmd_silent = cmd_silent_save;
12342}
12343
12344/*
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012345 * "input()" function
12346 * Also handles inputsecret() when inputsecret is set.
12347 */
12348 static void
12349f_input(argvars, rettv)
12350 typval_T *argvars;
12351 typval_T *rettv;
12352{
12353 get_user_input(argvars, rettv, FALSE);
12354}
12355
12356/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012357 * "inputdialog()" function
12358 */
12359 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012360f_inputdialog(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012361 typval_T *argvars;
12362 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012363{
12364#if defined(FEAT_GUI_TEXTDIALOG)
12365 /* Use a GUI dialog if the GUI is running and 'c' is not in 'guioptions' */
12366 if (gui.in_use && vim_strchr(p_go, GO_CONDIALOG) == NULL)
12367 {
12368 char_u *message;
12369 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012370 char_u *defstr = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +000012371
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012372 message = get_tv_string_chk(&argvars[0]);
12373 if (argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaarc05f93f2006-05-02 22:09:31 +000012374 && (defstr = get_tv_string_buf_chk(&argvars[1], buf)) != NULL)
Bram Moolenaarce0842a2005-07-18 21:58:11 +000012375 vim_strncpy(IObuff, defstr, IOSIZE - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012376 else
12377 IObuff[0] = NUL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012378 if (message != NULL && defstr != NULL
12379 && do_dialog(VIM_QUESTION, NULL, message,
12380 (char_u *)_("&OK\n&Cancel"), 1, IObuff) == 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012381 rettv->vval.v_string = vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012382 else
12383 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012384 if (message != NULL && defstr != NULL
12385 && argvars[1].v_type != VAR_UNKNOWN
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012386 && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012387 rettv->vval.v_string = vim_strsave(
12388 get_tv_string_buf(&argvars[2], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012389 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012390 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012391 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012392 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012393 }
12394 else
12395#endif
Bram Moolenaarecbaf552006-07-13 06:31:00 +000012396 get_user_input(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012397}
12398
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012399/*
12400 * "inputlist()" function
12401 */
12402 static void
12403f_inputlist(argvars, rettv)
12404 typval_T *argvars;
12405 typval_T *rettv;
12406{
12407 listitem_T *li;
12408 int selected;
12409 int mouse_used;
12410
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012411#ifdef NO_CONSOLE_INPUT
12412 /* While starting up, there is no place to enter text. */
12413 if (no_console_input())
12414 return;
12415#endif
12416 if (argvars[0].v_type != VAR_LIST || argvars[0].vval.v_list == NULL)
12417 {
12418 EMSG2(_(e_listarg), "inputlist()");
12419 return;
12420 }
12421
12422 msg_start();
Bram Moolenaar412f7442006-07-23 19:51:57 +000012423 msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
Bram Moolenaar6efa2b32005-09-10 19:26:26 +000012424 lines_left = Rows; /* avoid more prompt */
12425 msg_scroll = TRUE;
12426 msg_clr_eos();
12427
12428 for (li = argvars[0].vval.v_list->lv_first; li != NULL; li = li->li_next)
12429 {
12430 msg_puts(get_tv_string(&li->li_tv));
12431 msg_putchar('\n');
12432 }
12433
12434 /* Ask for choice. */
12435 selected = prompt_for_number(&mouse_used);
12436 if (mouse_used)
12437 selected -= lines_left;
12438
12439 rettv->vval.v_number = selected;
12440}
12441
12442
Bram Moolenaar071d4272004-06-13 20:20:40 +000012443static garray_T ga_userinput = {0, 0, sizeof(tasave_T), 4, NULL};
12444
12445/*
12446 * "inputrestore()" function
12447 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012448 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012449f_inputrestore(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012450 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012451 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012452{
12453 if (ga_userinput.ga_len > 0)
12454 {
12455 --ga_userinput.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012456 restore_typeahead((tasave_T *)(ga_userinput.ga_data)
12457 + ga_userinput.ga_len);
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012458 /* default return is zero == OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012459 }
12460 else if (p_verbose > 1)
12461 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +000012462 verb_msg((char_u *)_("called inputrestore() more often than inputsave()"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012463 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012464 }
12465}
12466
12467/*
12468 * "inputsave()" function
12469 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012470 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012471f_inputsave(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012472 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012473 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012474{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012475 /* Add an entry to the stack of typeahead storage. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012476 if (ga_grow(&ga_userinput, 1) == OK)
12477 {
12478 save_typeahead((tasave_T *)(ga_userinput.ga_data)
12479 + ga_userinput.ga_len);
12480 ++ga_userinput.ga_len;
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012481 /* default return is zero == OK */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012482 }
12483 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012484 rettv->vval.v_number = 1; /* Failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012485}
12486
12487/*
12488 * "inputsecret()" function
12489 */
12490 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012491f_inputsecret(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012492 typval_T *argvars;
12493 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012494{
12495 ++cmdline_star;
12496 ++inputsecret_flag;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012497 f_input(argvars, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012498 --cmdline_star;
12499 --inputsecret_flag;
12500}
12501
12502/*
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012503 * "insert()" function
12504 */
12505 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012506f_insert(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012507 typval_T *argvars;
12508 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012509{
12510 long before = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000012511 listitem_T *item;
12512 list_T *l;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012513 int error = FALSE;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012514
12515 if (argvars[0].v_type != VAR_LIST)
Bram Moolenaar0d660222005-01-07 21:51:51 +000012516 EMSG2(_(e_listarg), "insert()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012517 else if ((l = argvars[0].vval.v_list) != NULL
12518 && !tv_check_lock(l->lv_lock, (char_u *)"insert()"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012519 {
12520 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012521 before = get_tv_number_chk(&argvars[2], &error);
12522 if (error)
12523 return; /* type error; errmsg already given */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012524
Bram Moolenaar758711c2005-02-02 23:11:38 +000012525 if (before == l->lv_len)
12526 item = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012527 else
12528 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012529 item = list_find(l, before);
12530 if (item == NULL)
12531 {
12532 EMSGN(_(e_listidx), before);
12533 l = NULL;
12534 }
12535 }
12536 if (l != NULL)
12537 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012538 list_insert_tv(l, &argvars[1], item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000012539 copy_tv(&argvars[0], rettv);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012540 }
12541 }
12542}
12543
12544/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012545 * "isdirectory()" function
12546 */
12547 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012548f_isdirectory(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012549 typval_T *argvars;
12550 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012551{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012552 rettv->vval.v_number = mch_isdir(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012553}
12554
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012555/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012556 * "islocked()" function
12557 */
12558 static void
12559f_islocked(argvars, rettv)
12560 typval_T *argvars;
12561 typval_T *rettv;
12562{
12563 lval_T lv;
12564 char_u *end;
12565 dictitem_T *di;
12566
12567 rettv->vval.v_number = -1;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000012568 end = get_lval(get_tv_string(&argvars[0]), NULL, &lv, FALSE, FALSE, FALSE,
12569 FNE_CHECK_START);
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012570 if (end != NULL && lv.ll_name != NULL)
12571 {
12572 if (*end != NUL)
12573 EMSG(_(e_trailing));
12574 else
12575 {
12576 if (lv.ll_tv == NULL)
12577 {
12578 if (check_changedtick(lv.ll_name))
12579 rettv->vval.v_number = 1; /* always locked */
12580 else
12581 {
12582 di = find_var(lv.ll_name, NULL);
12583 if (di != NULL)
12584 {
12585 /* Consider a variable locked when:
12586 * 1. the variable itself is locked
12587 * 2. the value of the variable is locked.
12588 * 3. the List or Dict value is locked.
12589 */
12590 rettv->vval.v_number = ((di->di_flags & DI_FLAGS_LOCK)
12591 || tv_islocked(&di->di_tv));
12592 }
12593 }
12594 }
12595 else if (lv.ll_range)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000012596 EMSG(_("E786: Range not allowed"));
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012597 else if (lv.ll_newkey != NULL)
12598 EMSG2(_(e_dictkey), lv.ll_newkey);
12599 else if (lv.ll_list != NULL)
12600 /* List item. */
12601 rettv->vval.v_number = tv_islocked(&lv.ll_li->li_tv);
12602 else
12603 /* Dictionary item. */
12604 rettv->vval.v_number = tv_islocked(&lv.ll_di->di_tv);
12605 }
12606 }
12607
12608 clear_lval(&lv);
12609}
12610
Bram Moolenaar33570922005-01-25 22:26:29 +000012611static void dict_list __ARGS((typval_T *argvars, typval_T *rettv, int what));
Bram Moolenaar8c711452005-01-14 21:53:12 +000012612
12613/*
12614 * Turn a dict into a list:
12615 * "what" == 0: list of keys
12616 * "what" == 1: list of values
12617 * "what" == 2: list of items
12618 */
12619 static void
12620dict_list(argvars, rettv, what)
Bram Moolenaar33570922005-01-25 22:26:29 +000012621 typval_T *argvars;
12622 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012623 int what;
12624{
Bram Moolenaar33570922005-01-25 22:26:29 +000012625 list_T *l2;
12626 dictitem_T *di;
12627 hashitem_T *hi;
12628 listitem_T *li;
12629 listitem_T *li2;
12630 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012631 int todo;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012632
Bram Moolenaar8c711452005-01-14 21:53:12 +000012633 if (argvars[0].v_type != VAR_DICT)
12634 {
12635 EMSG(_(e_dictreq));
12636 return;
12637 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012638 if ((d = argvars[0].vval.v_dict) == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012639 return;
12640
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012641 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012642 return;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012643
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000012644 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000012645 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012646 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012647 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar8c711452005-01-14 21:53:12 +000012648 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012649 --todo;
12650 di = HI2DI(hi);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012651
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012652 li = listitem_alloc();
12653 if (li == NULL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000012654 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000012655 list_append(rettv->vval.v_list, li);
Bram Moolenaar8c711452005-01-14 21:53:12 +000012656
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012657 if (what == 0)
12658 {
12659 /* keys() */
12660 li->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012661 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012662 li->li_tv.vval.v_string = vim_strsave(di->di_key);
12663 }
12664 else if (what == 1)
12665 {
12666 /* values() */
12667 copy_tv(&di->di_tv, &li->li_tv);
12668 }
12669 else
12670 {
12671 /* items() */
12672 l2 = list_alloc();
12673 li->li_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012674 li->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012675 li->li_tv.vval.v_list = l2;
12676 if (l2 == NULL)
12677 break;
12678 ++l2->lv_refcount;
12679
12680 li2 = listitem_alloc();
12681 if (li2 == NULL)
12682 break;
12683 list_append(l2, li2);
12684 li2->li_tv.v_type = VAR_STRING;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000012685 li2->li_tv.v_lock = 0;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000012686 li2->li_tv.vval.v_string = vim_strsave(di->di_key);
12687
12688 li2 = listitem_alloc();
12689 if (li2 == NULL)
12690 break;
12691 list_append(l2, li2);
12692 copy_tv(&di->di_tv, &li2->li_tv);
12693 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000012694 }
12695 }
12696}
12697
12698/*
12699 * "items(dict)" function
12700 */
12701 static void
12702f_items(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012703 typval_T *argvars;
12704 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012705{
12706 dict_list(argvars, rettv, 2);
12707}
12708
Bram Moolenaar071d4272004-06-13 20:20:40 +000012709/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012710 * "join()" function
12711 */
12712 static void
12713f_join(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012714 typval_T *argvars;
12715 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012716{
12717 garray_T ga;
12718 char_u *sep;
12719
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012720 if (argvars[0].v_type != VAR_LIST)
12721 {
12722 EMSG(_(e_listreq));
12723 return;
12724 }
12725 if (argvars[0].vval.v_list == NULL)
12726 return;
12727 if (argvars[1].v_type == VAR_UNKNOWN)
12728 sep = (char_u *)" ";
12729 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012730 sep = get_tv_string_chk(&argvars[1]);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012731
12732 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012733
12734 if (sep != NULL)
12735 {
12736 ga_init2(&ga, (int)sizeof(char), 80);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000012737 list_join(&ga, argvars[0].vval.v_list, sep, TRUE, 0);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012738 ga_append(&ga, NUL);
12739 rettv->vval.v_string = (char_u *)ga.ga_data;
12740 }
12741 else
12742 rettv->vval.v_string = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000012743}
12744
12745/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000012746 * "keys()" function
12747 */
12748 static void
12749f_keys(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012750 typval_T *argvars;
12751 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000012752{
12753 dict_list(argvars, rettv, 0);
12754}
12755
12756/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012757 * "last_buffer_nr()" function.
12758 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012759 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012760f_last_buffer_nr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012761 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012762 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012763{
12764 int n = 0;
12765 buf_T *buf;
12766
12767 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
12768 if (n < buf->b_fnum)
12769 n = buf->b_fnum;
12770
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012771 rettv->vval.v_number = n;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012772}
12773
12774/*
12775 * "len()" function
12776 */
12777 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012778f_len(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012779 typval_T *argvars;
12780 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012781{
12782 switch (argvars[0].v_type)
12783 {
12784 case VAR_STRING:
12785 case VAR_NUMBER:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012786 rettv->vval.v_number = (varnumber_T)STRLEN(
12787 get_tv_string(&argvars[0]));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012788 break;
12789 case VAR_LIST:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012790 rettv->vval.v_number = list_len(argvars[0].vval.v_list);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012791 break;
Bram Moolenaare9a41262005-01-15 22:18:47 +000012792 case VAR_DICT:
12793 rettv->vval.v_number = dict_len(argvars[0].vval.v_dict);
12794 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012795 default:
Bram Moolenaare49b69a2005-01-08 16:11:57 +000012796 EMSG(_("E701: Invalid type for len()"));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012797 break;
12798 }
12799}
12800
Bram Moolenaar33570922005-01-25 22:26:29 +000012801static void libcall_common __ARGS((typval_T *argvars, typval_T *rettv, int type));
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012802
12803 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012804libcall_common(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000012805 typval_T *argvars;
12806 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012807 int type;
12808{
12809#ifdef FEAT_LIBCALL
12810 char_u *string_in;
12811 char_u **string_result;
12812 int nr_result;
12813#endif
12814
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012815 rettv->v_type = type;
Bram Moolenaar798b30b2009-04-22 10:56:16 +000012816 if (type != VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012817 rettv->vval.v_string = NULL;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012818
12819 if (check_restricted() || check_secure())
12820 return;
12821
12822#ifdef FEAT_LIBCALL
12823 /* The first two args must be strings, otherwise its meaningless */
12824 if (argvars[0].v_type == VAR_STRING && argvars[1].v_type == VAR_STRING)
12825 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000012826 string_in = NULL;
12827 if (argvars[2].v_type == VAR_STRING)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012828 string_in = argvars[2].vval.v_string;
12829 if (type == VAR_NUMBER)
12830 string_result = NULL;
12831 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012832 string_result = &rettv->vval.v_string;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012833 if (mch_libcall(argvars[0].vval.v_string,
12834 argvars[1].vval.v_string,
12835 string_in,
12836 argvars[2].vval.v_number,
12837 string_result,
12838 &nr_result) == OK
12839 && type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012840 rettv->vval.v_number = nr_result;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012841 }
12842#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000012843}
12844
12845/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000012846 * "libcall()" function
12847 */
12848 static void
12849f_libcall(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012850 typval_T *argvars;
12851 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012852{
12853 libcall_common(argvars, rettv, VAR_STRING);
12854}
12855
12856/*
12857 * "libcallnr()" function
12858 */
12859 static void
12860f_libcallnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012861 typval_T *argvars;
12862 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000012863{
12864 libcall_common(argvars, rettv, VAR_NUMBER);
12865}
12866
12867/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000012868 * "line(string)" function
12869 */
12870 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012871f_line(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012872 typval_T *argvars;
12873 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012874{
12875 linenr_T lnum = 0;
12876 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012877 int fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012878
Bram Moolenaar0e34f622006-03-03 23:00:03 +000012879 fp = var2fpos(&argvars[0], TRUE, &fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012880 if (fp != NULL)
12881 lnum = fp->lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012882 rettv->vval.v_number = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012883}
12884
12885/*
12886 * "line2byte(lnum)" function
12887 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012888 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012889f_line2byte(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012890 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012891 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012892{
12893#ifndef FEAT_BYTEOFF
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012894 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012895#else
12896 linenr_T lnum;
12897
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012898 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012899 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012900 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012901 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012902 rettv->vval.v_number = ml_find_line_or_offset(curbuf, lnum, NULL);
12903 if (rettv->vval.v_number >= 0)
12904 ++rettv->vval.v_number;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012905#endif
12906}
12907
12908/*
12909 * "lispindent(lnum)" function
12910 */
12911 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012912f_lispindent(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000012913 typval_T *argvars;
12914 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012915{
12916#ifdef FEAT_LISP
12917 pos_T pos;
12918 linenr_T lnum;
12919
12920 pos = curwin->w_cursor;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012921 lnum = get_tv_lnum(argvars);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012922 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count)
12923 {
12924 curwin->w_cursor.lnum = lnum;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012925 rettv->vval.v_number = get_lisp_indent();
Bram Moolenaar071d4272004-06-13 20:20:40 +000012926 curwin->w_cursor = pos;
12927 }
12928 else
12929#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012930 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012931}
12932
12933/*
12934 * "localtime()" function
12935 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000012936 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012937f_localtime(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000012938 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000012939 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012940{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012941 rettv->vval.v_number = (varnumber_T)time(NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012942}
12943
Bram Moolenaar33570922005-01-25 22:26:29 +000012944static void get_maparg __ARGS((typval_T *argvars, typval_T *rettv, int exact));
Bram Moolenaar071d4272004-06-13 20:20:40 +000012945
12946 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012947get_maparg(argvars, rettv, exact)
Bram Moolenaar33570922005-01-25 22:26:29 +000012948 typval_T *argvars;
12949 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012950 int exact;
12951{
12952 char_u *keys;
12953 char_u *which;
12954 char_u buf[NUMBUFLEN];
12955 char_u *keys_buf = NULL;
12956 char_u *rhs;
12957 int mode;
12958 garray_T ga;
Bram Moolenaar2c932302006-03-18 21:42:09 +000012959 int abbr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012960
12961 /* return empty string for failure */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012962 rettv->v_type = VAR_STRING;
12963 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012964
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012965 keys = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012966 if (*keys == NUL)
12967 return;
12968
Bram Moolenaar49cd9572005-01-03 21:06:01 +000012969 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaar2c932302006-03-18 21:42:09 +000012970 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012971 which = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012972 if (argvars[2].v_type != VAR_UNKNOWN)
12973 abbr = get_tv_number(&argvars[2]);
12974 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000012975 else
12976 which = (char_u *)"";
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000012977 if (which == NULL)
12978 return;
12979
Bram Moolenaar071d4272004-06-13 20:20:40 +000012980 mode = get_map_mode(&which, 0);
12981
Bram Moolenaar3fb9eda2006-05-03 21:29:58 +000012982 keys = replace_termcodes(keys, &keys_buf, TRUE, TRUE, FALSE);
Bram Moolenaar2c932302006-03-18 21:42:09 +000012983 rhs = check_map(keys, mode, exact, FALSE, abbr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000012984 vim_free(keys_buf);
12985 if (rhs != NULL)
12986 {
12987 ga_init(&ga);
12988 ga.ga_itemsize = 1;
12989 ga.ga_growsize = 40;
12990
12991 while (*rhs != NUL)
12992 ga_concat(&ga, str2special(&rhs, FALSE));
12993
12994 ga_append(&ga, NUL);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000012995 rettv->vval.v_string = (char_u *)ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000012996 }
12997}
12998
Bram Moolenaar8c8de832008-06-24 22:58:06 +000012999#ifdef FEAT_FLOAT
13000/*
13001 * "log10()" function
13002 */
13003 static void
13004f_log10(argvars, rettv)
13005 typval_T *argvars;
13006 typval_T *rettv;
13007{
13008 float_T f;
13009
13010 rettv->v_type = VAR_FLOAT;
13011 if (get_float_arg(argvars, &f) == OK)
13012 rettv->vval.v_float = log10(f);
13013 else
13014 rettv->vval.v_float = 0.0;
13015}
13016#endif
13017
Bram Moolenaar071d4272004-06-13 20:20:40 +000013018/*
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013019 * "map()" function
13020 */
13021 static void
13022f_map(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013023 typval_T *argvars;
13024 typval_T *rettv;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013025{
13026 filter_map(argvars, rettv, TRUE);
13027}
13028
13029/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013030 * "maparg()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013031 */
13032 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013033f_maparg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013034 typval_T *argvars;
13035 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013036{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013037 get_maparg(argvars, rettv, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013038}
13039
13040/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013041 * "mapcheck()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000013042 */
13043 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000013044f_mapcheck(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013045 typval_T *argvars;
13046 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013047{
Bram Moolenaar0d660222005-01-07 21:51:51 +000013048 get_maparg(argvars, rettv, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013049}
13050
Bram Moolenaar33570922005-01-25 22:26:29 +000013051static void find_some_match __ARGS((typval_T *argvars, typval_T *rettv, int start));
Bram Moolenaar071d4272004-06-13 20:20:40 +000013052
13053 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013054find_some_match(argvars, rettv, type)
Bram Moolenaar33570922005-01-25 22:26:29 +000013055 typval_T *argvars;
13056 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013057 int type;
13058{
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013059 char_u *str = NULL;
13060 char_u *expr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013061 char_u *pat;
13062 regmatch_T regmatch;
13063 char_u patbuf[NUMBUFLEN];
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013064 char_u strbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000013065 char_u *save_cpo;
13066 long start = 0;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013067 long nth = 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013068 colnr_T startcol = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013069 int match = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000013070 list_T *l = NULL;
13071 listitem_T *li = NULL;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013072 long idx = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013073 char_u *tofree = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013074
13075 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
13076 save_cpo = p_cpo;
13077 p_cpo = (char_u *)"";
13078
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013079 rettv->vval.v_number = -1;
13080 if (type == 3)
13081 {
13082 /* return empty list when there are no matches */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013083 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013084 goto theend;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013085 }
13086 else if (type == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013087 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013088 rettv->v_type = VAR_STRING;
13089 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013090 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013091
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013092 if (argvars[0].v_type == VAR_LIST)
13093 {
13094 if ((l = argvars[0].vval.v_list) == NULL)
13095 goto theend;
13096 li = l->lv_first;
13097 }
13098 else
13099 expr = str = get_tv_string(&argvars[0]);
13100
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013101 pat = get_tv_string_buf_chk(&argvars[1], patbuf);
13102 if (pat == NULL)
13103 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013104
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013105 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013106 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013107 int error = FALSE;
13108
13109 start = get_tv_number_chk(&argvars[2], &error);
13110 if (error)
13111 goto theend;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013112 if (l != NULL)
13113 {
13114 li = list_find(l, start);
13115 if (li == NULL)
13116 goto theend;
Bram Moolenaar758711c2005-02-02 23:11:38 +000013117 idx = l->lv_idx; /* use the cached index */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013118 }
13119 else
13120 {
13121 if (start < 0)
13122 start = 0;
13123 if (start > (long)STRLEN(str))
13124 goto theend;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000013125 /* When "count" argument is there ignore matches before "start",
13126 * otherwise skip part of the string. Differs when pattern is "^"
13127 * or "\<". */
13128 if (argvars[3].v_type != VAR_UNKNOWN)
13129 startcol = start;
13130 else
13131 str += start;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013132 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013133
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013134 if (argvars[3].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013135 nth = get_tv_number_chk(&argvars[3], &error);
13136 if (error)
13137 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013138 }
13139
13140 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
13141 if (regmatch.regprog != NULL)
13142 {
13143 regmatch.rm_ic = p_ic;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013144
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013145 for (;;)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013146 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013147 if (l != NULL)
13148 {
13149 if (li == NULL)
13150 {
13151 match = FALSE;
13152 break;
13153 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013154 vim_free(tofree);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013155 str = echo_string(&li->li_tv, &tofree, strbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000013156 if (str == NULL)
13157 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013158 }
13159
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013160 match = vim_regexec_nl(&regmatch, str, (colnr_T)startcol);
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013161
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013162 if (match && --nth <= 0)
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013163 break;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013164 if (l == NULL && !match)
13165 break;
13166
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013167 /* Advance to just after the match. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013168 if (l != NULL)
13169 {
13170 li = li->li_next;
13171 ++idx;
13172 }
13173 else
13174 {
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013175#ifdef FEAT_MBYTE
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013176 startcol = (colnr_T)(regmatch.startp[0]
13177 + (*mb_ptr2len)(regmatch.startp[0]) - str);
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013178#else
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000013179 startcol = regmatch.startp[0] + 1 - str;
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013180#endif
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013181 }
Bram Moolenaar89cb5e02004-07-19 20:55:54 +000013182 }
13183
13184 if (match)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013185 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013186 if (type == 3)
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013187 {
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013188 int i;
13189
13190 /* return list with matched string and submatches */
13191 for (i = 0; i < NSUBEXP; ++i)
13192 {
13193 if (regmatch.endp[i] == NULL)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +000013194 {
13195 if (list_append_string(rettv->vval.v_list,
13196 (char_u *)"", 0) == FAIL)
13197 break;
13198 }
13199 else if (list_append_string(rettv->vval.v_list,
Bram Moolenaar4463f292005-09-25 22:20:24 +000013200 regmatch.startp[i],
13201 (int)(regmatch.endp[i] - regmatch.startp[i]))
13202 == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013203 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013204 }
13205 }
13206 else if (type == 2)
13207 {
13208 /* return matched string */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013209 if (l != NULL)
13210 copy_tv(&li->li_tv, rettv);
13211 else
13212 rettv->vval.v_string = vim_strnsave(regmatch.startp[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +000013213 (int)(regmatch.endp[0] - regmatch.startp[0]));
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000013214 }
13215 else if (l != NULL)
13216 rettv->vval.v_number = idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013217 else
13218 {
13219 if (type != 0)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013220 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013221 (varnumber_T)(regmatch.startp[0] - str);
13222 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013223 rettv->vval.v_number =
Bram Moolenaar071d4272004-06-13 20:20:40 +000013224 (varnumber_T)(regmatch.endp[0] - str);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013225 rettv->vval.v_number += (varnumber_T)(str - expr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013226 }
13227 }
13228 vim_free(regmatch.regprog);
13229 }
13230
13231theend:
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013232 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013233 p_cpo = save_cpo;
13234}
13235
13236/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013237 * "match()" function
13238 */
13239 static void
13240f_match(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013241 typval_T *argvars;
13242 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013243{
13244 find_some_match(argvars, rettv, 1);
13245}
13246
13247/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013248 * "matchadd()" function
13249 */
13250 static void
13251f_matchadd(argvars, rettv)
13252 typval_T *argvars;
13253 typval_T *rettv;
13254{
13255#ifdef FEAT_SEARCH_EXTRA
13256 char_u buf[NUMBUFLEN];
13257 char_u *grp = get_tv_string_buf_chk(&argvars[0], buf); /* group */
13258 char_u *pat = get_tv_string_buf_chk(&argvars[1], buf); /* pattern */
13259 int prio = 10; /* default priority */
13260 int id = -1;
13261 int error = FALSE;
13262
13263 rettv->vval.v_number = -1;
13264
13265 if (grp == NULL || pat == NULL)
13266 return;
13267 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013268 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013269 prio = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar2240aeb2007-07-27 19:33:14 +000013270 if (argvars[3].v_type != VAR_UNKNOWN)
13271 id = get_tv_number_chk(&argvars[3], &error);
13272 }
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013273 if (error == TRUE)
13274 return;
13275 if (id >= 1 && id <= 3)
13276 {
13277 EMSGN("E798: ID is reserved for \":match\": %ld", id);
13278 return;
13279 }
13280
13281 rettv->vval.v_number = match_add(curwin, grp, pat, prio, id);
13282#endif
13283}
13284
13285/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013286 * "matcharg()" function
13287 */
13288 static void
13289f_matcharg(argvars, rettv)
13290 typval_T *argvars;
13291 typval_T *rettv;
13292{
13293 if (rettv_list_alloc(rettv) == OK)
13294 {
13295#ifdef FEAT_SEARCH_EXTRA
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013296 int id = get_tv_number(&argvars[0]);
13297 matchitem_T *m;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013298
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013299 if (id >= 1 && id <= 3)
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013300 {
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013301 if ((m = (matchitem_T *)get_match(curwin, id)) != NULL)
13302 {
13303 list_append_string(rettv->vval.v_list,
13304 syn_id2name(m->hlg_id), -1);
13305 list_append_string(rettv->vval.v_list, m->pattern, -1);
13306 }
13307 else
13308 {
13309 list_append_string(rettv->vval.v_list, NUL, -1);
13310 list_append_string(rettv->vval.v_list, NUL, -1);
13311 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013312 }
13313#endif
13314 }
13315}
13316
13317/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000013318 * "matchdelete()" function
13319 */
13320 static void
13321f_matchdelete(argvars, rettv)
13322 typval_T *argvars;
13323 typval_T *rettv;
13324{
13325#ifdef FEAT_SEARCH_EXTRA
13326 rettv->vval.v_number = match_delete(curwin,
13327 (int)get_tv_number(&argvars[0]), TRUE);
13328#endif
13329}
13330
13331/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013332 * "matchend()" function
13333 */
13334 static void
13335f_matchend(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013336 typval_T *argvars;
13337 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013338{
13339 find_some_match(argvars, rettv, 0);
13340}
13341
13342/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013343 * "matchlist()" function
13344 */
13345 static void
13346f_matchlist(argvars, rettv)
13347 typval_T *argvars;
13348 typval_T *rettv;
13349{
13350 find_some_match(argvars, rettv, 3);
13351}
13352
13353/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013354 * "matchstr()" function
13355 */
13356 static void
13357f_matchstr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013358 typval_T *argvars;
13359 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013360{
13361 find_some_match(argvars, rettv, 2);
13362}
13363
Bram Moolenaar33570922005-01-25 22:26:29 +000013364static void max_min __ARGS((typval_T *argvars, typval_T *rettv, int domax));
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013365
13366 static void
13367max_min(argvars, rettv, domax)
Bram Moolenaar33570922005-01-25 22:26:29 +000013368 typval_T *argvars;
13369 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013370 int domax;
13371{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013372 long n = 0;
13373 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013374 int error = FALSE;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013375
13376 if (argvars[0].v_type == VAR_LIST)
13377 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013378 list_T *l;
13379 listitem_T *li;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013380
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013381 l = argvars[0].vval.v_list;
13382 if (l != NULL)
13383 {
13384 li = l->lv_first;
13385 if (li != NULL)
13386 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013387 n = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaard8e9bb22005-07-09 21:14:46 +000013388 for (;;)
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013389 {
13390 li = li->li_next;
13391 if (li == NULL)
13392 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013393 i = get_tv_number_chk(&li->li_tv, &error);
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013394 if (domax ? i > n : i < n)
13395 n = i;
13396 }
13397 }
13398 }
13399 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000013400 else if (argvars[0].v_type == VAR_DICT)
13401 {
Bram Moolenaar33570922005-01-25 22:26:29 +000013402 dict_T *d;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013403 int first = TRUE;
Bram Moolenaar33570922005-01-25 22:26:29 +000013404 hashitem_T *hi;
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013405 int todo;
Bram Moolenaare9a41262005-01-15 22:18:47 +000013406
13407 d = argvars[0].vval.v_dict;
13408 if (d != NULL)
13409 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013410 todo = (int)d->dv_hashtab.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000013411 for (hi = d->dv_hashtab.ht_array; todo > 0; ++hi)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013412 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013413 if (!HASHITEM_EMPTY(hi))
Bram Moolenaare9a41262005-01-15 22:18:47 +000013414 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013415 --todo;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013416 i = get_tv_number_chk(&HI2DI(hi)->di_tv, &error);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000013417 if (first)
13418 {
13419 n = i;
13420 first = FALSE;
13421 }
13422 else if (domax ? i > n : i < n)
Bram Moolenaare9a41262005-01-15 22:18:47 +000013423 n = i;
13424 }
13425 }
13426 }
13427 }
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013428 else
Bram Moolenaar758711c2005-02-02 23:11:38 +000013429 EMSG(_(e_listdictarg));
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013430 rettv->vval.v_number = error ? 0 : n;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013431}
13432
13433/*
13434 * "max()" function
13435 */
13436 static void
13437f_max(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013438 typval_T *argvars;
13439 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013440{
13441 max_min(argvars, rettv, TRUE);
13442}
13443
13444/*
13445 * "min()" function
13446 */
13447 static void
13448f_min(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013449 typval_T *argvars;
13450 typval_T *rettv;
Bram Moolenaar6cc16192005-01-08 21:49:45 +000013451{
13452 max_min(argvars, rettv, FALSE);
13453}
13454
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013455static int mkdir_recurse __ARGS((char_u *dir, int prot));
13456
13457/*
13458 * Create the directory in which "dir" is located, and higher levels when
13459 * needed.
13460 */
13461 static int
13462mkdir_recurse(dir, prot)
13463 char_u *dir;
13464 int prot;
13465{
13466 char_u *p;
13467 char_u *updir;
13468 int r = FAIL;
13469
13470 /* Get end of directory name in "dir".
13471 * We're done when it's "/" or "c:/". */
13472 p = gettail_sep(dir);
13473 if (p <= get_past_head(dir))
13474 return OK;
13475
13476 /* If the directory exists we're done. Otherwise: create it.*/
13477 updir = vim_strnsave(dir, (int)(p - dir));
13478 if (updir == NULL)
13479 return FAIL;
13480 if (mch_isdir(updir))
13481 r = OK;
13482 else if (mkdir_recurse(updir, prot) == OK)
13483 r = vim_mkdir_emsg(updir, prot);
13484 vim_free(updir);
13485 return r;
13486}
13487
13488#ifdef vim_mkdir
13489/*
13490 * "mkdir()" function
13491 */
13492 static void
13493f_mkdir(argvars, rettv)
13494 typval_T *argvars;
13495 typval_T *rettv;
13496{
13497 char_u *dir;
13498 char_u buf[NUMBUFLEN];
13499 int prot = 0755;
13500
13501 rettv->vval.v_number = FAIL;
13502 if (check_restricted() || check_secure())
13503 return;
13504
13505 dir = get_tv_string_buf(&argvars[0], buf);
13506 if (argvars[1].v_type != VAR_UNKNOWN)
13507 {
13508 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013509 prot = get_tv_number_chk(&argvars[2], NULL);
13510 if (prot != -1 && STRCMP(get_tv_string(&argvars[1]), "p") == 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013511 mkdir_recurse(dir, prot);
13512 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013513 rettv->vval.v_number = prot != -1 ? vim_mkdir_emsg(dir, prot) : 0;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013514}
13515#endif
13516
Bram Moolenaar0d660222005-01-07 21:51:51 +000013517/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013518 * "mode()" function
13519 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000013520 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013521f_mode(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013522 typval_T *argvars;
13523 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013524{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013525 char_u buf[3];
13526
13527 buf[1] = NUL;
13528 buf[2] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013529
13530#ifdef FEAT_VISUAL
13531 if (VIsual_active)
13532 {
13533 if (VIsual_select)
13534 buf[0] = VIsual_mode + 's' - 'v';
13535 else
13536 buf[0] = VIsual_mode;
13537 }
13538 else
13539#endif
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013540 if (State == HITRETURN || State == ASKMORE || State == SETWSIZE
13541 || State == CONFIRM)
13542 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013543 buf[0] = 'r';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013544 if (State == ASKMORE)
13545 buf[1] = 'm';
13546 else if (State == CONFIRM)
13547 buf[1] = '?';
13548 }
13549 else if (State == EXTERNCMD)
13550 buf[0] = '!';
Bram Moolenaar071d4272004-06-13 20:20:40 +000013551 else if (State & INSERT)
13552 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013553#ifdef FEAT_VREPLACE
13554 if (State & VREPLACE_FLAG)
13555 {
13556 buf[0] = 'R';
13557 buf[1] = 'v';
13558 }
13559 else
13560#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000013561 if (State & REPLACE_FLAG)
13562 buf[0] = 'R';
13563 else
13564 buf[0] = 'i';
13565 }
13566 else if (State & CMDLINE)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013567 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013568 buf[0] = 'c';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013569 if (exmode_active)
13570 buf[1] = 'v';
13571 }
13572 else if (exmode_active)
13573 {
13574 buf[0] = 'c';
13575 buf[1] = 'e';
13576 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013577 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013578 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000013579 buf[0] = 'n';
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013580 if (finish_op)
13581 buf[1] = 'o';
13582 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000013583
Bram Moolenaar05bb9532008-07-04 09:44:11 +000013584 /* Clear out the minor mode when the argument is not a non-zero number or
13585 * non-empty string. */
13586 if (!non_zero_arg(&argvars[0]))
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013587 buf[1] = NUL;
13588
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013589 rettv->vval.v_string = vim_strsave(buf);
13590 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013591}
13592
13593/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013594 * "nextnonblank()" function
13595 */
13596 static void
13597f_nextnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013598 typval_T *argvars;
13599 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013600{
13601 linenr_T lnum;
13602
13603 for (lnum = get_tv_lnum(argvars); ; ++lnum)
13604 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013605 if (lnum < 0 || lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar0d660222005-01-07 21:51:51 +000013606 {
13607 lnum = 0;
13608 break;
13609 }
13610 if (*skipwhite(ml_get(lnum)) != NUL)
13611 break;
13612 }
13613 rettv->vval.v_number = lnum;
13614}
13615
13616/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000013617 * "nr2char()" function
13618 */
13619 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013620f_nr2char(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013621 typval_T *argvars;
13622 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013623{
13624 char_u buf[NUMBUFLEN];
13625
13626#ifdef FEAT_MBYTE
13627 if (has_mbyte)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013628 buf[(*mb_char2bytes)((int)get_tv_number(&argvars[0]), buf)] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000013629 else
13630#endif
13631 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013632 buf[0] = (char_u)get_tv_number(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000013633 buf[1] = NUL;
13634 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000013635 rettv->v_type = VAR_STRING;
13636 rettv->vval.v_string = vim_strsave(buf);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000013637}
13638
13639/*
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013640 * "pathshorten()" function
13641 */
13642 static void
13643f_pathshorten(argvars, rettv)
13644 typval_T *argvars;
13645 typval_T *rettv;
13646{
13647 char_u *p;
13648
13649 rettv->v_type = VAR_STRING;
13650 p = get_tv_string_chk(&argvars[0]);
13651 if (p == NULL)
13652 rettv->vval.v_string = NULL;
13653 else
13654 {
13655 p = vim_strsave(p);
13656 rettv->vval.v_string = p;
13657 if (p != NULL)
13658 shorten_dir(p);
13659 }
13660}
13661
Bram Moolenaar8c8de832008-06-24 22:58:06 +000013662#ifdef FEAT_FLOAT
13663/*
13664 * "pow()" function
13665 */
13666 static void
13667f_pow(argvars, rettv)
13668 typval_T *argvars;
13669 typval_T *rettv;
13670{
13671 float_T fx, fy;
13672
13673 rettv->v_type = VAR_FLOAT;
13674 if (get_float_arg(argvars, &fx) == OK
13675 && get_float_arg(&argvars[1], &fy) == OK)
13676 rettv->vval.v_float = pow(fx, fy);
13677 else
13678 rettv->vval.v_float = 0.0;
13679}
13680#endif
13681
Bram Moolenaar910f66f2006-04-05 20:41:53 +000013682/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000013683 * "prevnonblank()" function
13684 */
13685 static void
13686f_prevnonblank(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013687 typval_T *argvars;
13688 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000013689{
13690 linenr_T lnum;
13691
13692 lnum = get_tv_lnum(argvars);
13693 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
13694 lnum = 0;
13695 else
13696 while (lnum >= 1 && *skipwhite(ml_get(lnum)) == NUL)
13697 --lnum;
13698 rettv->vval.v_number = lnum;
13699}
13700
Bram Moolenaara6c840d2005-08-22 22:59:46 +000013701#ifdef HAVE_STDARG_H
13702/* This dummy va_list is here because:
13703 * - passing a NULL pointer doesn't work when va_list isn't a pointer
13704 * - locally in the function results in a "used before set" warning
13705 * - using va_start() to initialize it gives "function with fixed args" error */
13706static va_list ap;
13707#endif
13708
Bram Moolenaar8c711452005-01-14 21:53:12 +000013709/*
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013710 * "printf()" function
13711 */
13712 static void
13713f_printf(argvars, rettv)
13714 typval_T *argvars;
13715 typval_T *rettv;
13716{
13717 rettv->v_type = VAR_STRING;
13718 rettv->vval.v_string = NULL;
Bram Moolenaard52d9742005-08-21 22:20:28 +000013719#ifdef HAVE_STDARG_H /* only very old compilers can't do this */
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013720 {
13721 char_u buf[NUMBUFLEN];
13722 int len;
13723 char_u *s;
13724 int saved_did_emsg = did_emsg;
13725 char *fmt;
13726
13727 /* Get the required length, allocate the buffer and do it for real. */
13728 did_emsg = FALSE;
13729 fmt = (char *)get_tv_string_buf(&argvars[0], buf);
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013730 len = vim_vsnprintf(NULL, 0, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013731 if (!did_emsg)
13732 {
13733 s = alloc(len + 1);
13734 if (s != NULL)
13735 {
13736 rettv->vval.v_string = s;
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000013737 (void)vim_vsnprintf((char *)s, len + 1, fmt, ap, argvars + 1);
Bram Moolenaar4be06f92005-07-29 22:36:03 +000013738 }
13739 }
13740 did_emsg |= saved_did_emsg;
13741 }
13742#endif
13743}
13744
13745/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013746 * "pumvisible()" function
13747 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013748 static void
13749f_pumvisible(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000013750 typval_T *argvars UNUSED;
13751 typval_T *rettv UNUSED;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013752{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000013753#ifdef FEAT_INS_EXPAND
13754 if (pum_visible())
13755 rettv->vval.v_number = 1;
13756#endif
13757}
13758
13759/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000013760 * "range()" function
13761 */
13762 static void
13763f_range(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000013764 typval_T *argvars;
13765 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013766{
13767 long start;
13768 long end;
13769 long stride = 1;
13770 long i;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013771 int error = FALSE;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013772
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013773 start = get_tv_number_chk(&argvars[0], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013774 if (argvars[1].v_type == VAR_UNKNOWN)
13775 {
13776 end = start - 1;
13777 start = 0;
13778 }
13779 else
13780 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013781 end = get_tv_number_chk(&argvars[1], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013782 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013783 stride = get_tv_number_chk(&argvars[2], &error);
Bram Moolenaar8c711452005-01-14 21:53:12 +000013784 }
13785
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000013786 if (error)
13787 return; /* type error; errmsg already given */
Bram Moolenaar8c711452005-01-14 21:53:12 +000013788 if (stride == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013789 EMSG(_("E726: Stride is zero"));
Bram Moolenaar92124a32005-06-17 22:03:40 +000013790 else if (stride > 0 ? end + 1 < start : end - 1 > start)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000013791 EMSG(_("E727: Start past end"));
Bram Moolenaar8c711452005-01-14 21:53:12 +000013792 else
13793 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013794 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013795 for (i = start; stride > 0 ? i <= end : i >= end; i += stride)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013796 if (list_append_number(rettv->vval.v_list,
13797 (varnumber_T)i) == FAIL)
Bram Moolenaar8c711452005-01-14 21:53:12 +000013798 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000013799 }
13800}
13801
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013802/*
13803 * "readfile()" function
13804 */
13805 static void
13806f_readfile(argvars, rettv)
13807 typval_T *argvars;
13808 typval_T *rettv;
13809{
13810 int binary = FALSE;
13811 char_u *fname;
13812 FILE *fd;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013813 listitem_T *li;
13814#define FREAD_SIZE 200 /* optimized for text lines */
13815 char_u buf[FREAD_SIZE];
13816 int readlen; /* size of last fread() */
13817 int buflen; /* nr of valid chars in buf[] */
13818 int filtd; /* how much in buf[] was NUL -> '\n' filtered */
13819 int tolist; /* first byte in buf[] still to be put in list */
13820 int chop; /* how many CR to chop off */
13821 char_u *prev = NULL; /* previously read bytes, if any */
13822 int prevlen = 0; /* length of "prev" if not NULL */
13823 char_u *s;
13824 int len;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013825 long maxline = MAXLNUM;
13826 long cnt = 0;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013827
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013828 if (argvars[1].v_type != VAR_UNKNOWN)
13829 {
13830 if (STRCMP(get_tv_string(&argvars[1]), "b") == 0)
13831 binary = TRUE;
13832 if (argvars[2].v_type != VAR_UNKNOWN)
13833 maxline = get_tv_number(&argvars[2]);
13834 }
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013835
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013836 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013837 return;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013838
13839 /* Always open the file in binary mode, library functions have a mind of
13840 * their own about CR-LF conversion. */
13841 fname = get_tv_string(&argvars[0]);
13842 if (*fname == NUL || (fd = mch_fopen((char *)fname, READBIN)) == NULL)
13843 {
13844 EMSG2(_(e_notopen), *fname == NUL ? (char_u *)_("<empty>") : fname);
13845 return;
13846 }
13847
13848 filtd = 0;
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013849 while (cnt < maxline || maxline < 0)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013850 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000013851 readlen = (int)fread(buf + filtd, 1, FREAD_SIZE - filtd, fd);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013852 buflen = filtd + readlen;
13853 tolist = 0;
13854 for ( ; filtd < buflen || readlen <= 0; ++filtd)
13855 {
13856 if (buf[filtd] == '\n' || readlen <= 0)
13857 {
13858 /* Only when in binary mode add an empty list item when the
13859 * last line ends in a '\n'. */
13860 if (!binary && readlen == 0 && filtd == 0)
13861 break;
13862
13863 /* Found end-of-line or end-of-file: add a text line to the
13864 * list. */
13865 chop = 0;
13866 if (!binary)
13867 while (filtd - chop - 1 >= tolist
13868 && buf[filtd - chop - 1] == '\r')
13869 ++chop;
13870 len = filtd - tolist - chop;
13871 if (prev == NULL)
13872 s = vim_strnsave(buf + tolist, len);
13873 else
13874 {
13875 s = alloc((unsigned)(prevlen + len + 1));
13876 if (s != NULL)
13877 {
13878 mch_memmove(s, prev, prevlen);
13879 vim_free(prev);
13880 prev = NULL;
13881 mch_memmove(s + prevlen, buf + tolist, len);
13882 s[prevlen + len] = NUL;
13883 }
13884 }
13885 tolist = filtd + 1;
13886
13887 li = listitem_alloc();
13888 if (li == NULL)
13889 {
13890 vim_free(s);
13891 break;
13892 }
13893 li->li_tv.v_type = VAR_STRING;
13894 li->li_tv.v_lock = 0;
13895 li->li_tv.vval.v_string = s;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013896 list_append(rettv->vval.v_list, li);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013897
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013898 if (++cnt >= maxline && maxline >= 0)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013899 break;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013900 if (readlen <= 0)
13901 break;
13902 }
13903 else if (buf[filtd] == NUL)
13904 buf[filtd] = '\n';
13905 }
13906 if (readlen <= 0)
13907 break;
13908
13909 if (tolist == 0)
13910 {
13911 /* "buf" is full, need to move text to an allocated buffer */
13912 if (prev == NULL)
13913 {
13914 prev = vim_strnsave(buf, buflen);
13915 prevlen = buflen;
13916 }
13917 else
13918 {
13919 s = alloc((unsigned)(prevlen + buflen));
13920 if (s != NULL)
13921 {
13922 mch_memmove(s, prev, prevlen);
13923 mch_memmove(s + prevlen, buf, buflen);
13924 vim_free(prev);
13925 prev = s;
13926 prevlen += buflen;
13927 }
13928 }
13929 filtd = 0;
13930 }
13931 else
13932 {
13933 mch_memmove(buf, buf + tolist, buflen - tolist);
13934 filtd -= tolist;
13935 }
13936 }
13937
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013938 /*
13939 * For a negative line count use only the lines at the end of the file,
13940 * free the rest.
13941 */
13942 if (maxline < 0)
13943 while (cnt > -maxline)
13944 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000013945 listitem_remove(rettv->vval.v_list, rettv->vval.v_list->lv_first);
Bram Moolenaarb982ca52005-03-28 21:02:15 +000013946 --cnt;
13947 }
13948
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000013949 vim_free(prev);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000013950 fclose(fd);
13951}
13952
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013953#if defined(FEAT_RELTIME)
13954static int list2proftime __ARGS((typval_T *arg, proftime_T *tm));
13955
13956/*
13957 * Convert a List to proftime_T.
13958 * Return FAIL when there is something wrong.
13959 */
13960 static int
13961list2proftime(arg, tm)
13962 typval_T *arg;
13963 proftime_T *tm;
13964{
13965 long n1, n2;
13966 int error = FALSE;
13967
13968 if (arg->v_type != VAR_LIST || arg->vval.v_list == NULL
13969 || arg->vval.v_list->lv_len != 2)
13970 return FAIL;
13971 n1 = list_find_nr(arg->vval.v_list, 0L, &error);
13972 n2 = list_find_nr(arg->vval.v_list, 1L, &error);
13973# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000013974 tm->HighPart = n1;
13975 tm->LowPart = n2;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000013976# else
13977 tm->tv_sec = n1;
13978 tm->tv_usec = n2;
13979# endif
13980 return error ? FAIL : OK;
13981}
13982#endif /* FEAT_RELTIME */
13983
13984/*
13985 * "reltime()" function
13986 */
13987 static void
13988f_reltime(argvars, rettv)
13989 typval_T *argvars;
13990 typval_T *rettv;
13991{
13992#ifdef FEAT_RELTIME
13993 proftime_T res;
13994 proftime_T start;
13995
13996 if (argvars[0].v_type == VAR_UNKNOWN)
13997 {
13998 /* No arguments: get current time. */
13999 profile_start(&res);
14000 }
14001 else if (argvars[1].v_type == VAR_UNKNOWN)
14002 {
14003 if (list2proftime(&argvars[0], &res) == FAIL)
14004 return;
14005 profile_end(&res);
14006 }
14007 else
14008 {
14009 /* Two arguments: compute the difference. */
14010 if (list2proftime(&argvars[0], &start) == FAIL
14011 || list2proftime(&argvars[1], &res) == FAIL)
14012 return;
14013 profile_sub(&res, &start);
14014 }
14015
14016 if (rettv_list_alloc(rettv) == OK)
14017 {
14018 long n1, n2;
14019
14020# ifdef WIN3264
Bram Moolenaardb552d602006-03-23 22:59:57 +000014021 n1 = res.HighPart;
14022 n2 = res.LowPart;
Bram Moolenaare580b0c2006-03-21 21:33:03 +000014023# else
14024 n1 = res.tv_sec;
14025 n2 = res.tv_usec;
14026# endif
14027 list_append_number(rettv->vval.v_list, (varnumber_T)n1);
14028 list_append_number(rettv->vval.v_list, (varnumber_T)n2);
14029 }
14030#endif
14031}
14032
14033/*
14034 * "reltimestr()" function
14035 */
14036 static void
14037f_reltimestr(argvars, rettv)
14038 typval_T *argvars;
14039 typval_T *rettv;
14040{
14041#ifdef FEAT_RELTIME
14042 proftime_T tm;
14043#endif
14044
14045 rettv->v_type = VAR_STRING;
14046 rettv->vval.v_string = NULL;
14047#ifdef FEAT_RELTIME
14048 if (list2proftime(&argvars[0], &tm) == OK)
14049 rettv->vval.v_string = vim_strsave((char_u *)profile_msg(&tm));
14050#endif
14051}
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000014052
Bram Moolenaar0d660222005-01-07 21:51:51 +000014053#if defined(FEAT_CLIENTSERVER) && defined(FEAT_X11)
14054static void make_connection __ARGS((void));
14055static int check_connection __ARGS((void));
14056
14057 static void
14058make_connection()
14059{
14060 if (X_DISPLAY == NULL
14061# ifdef FEAT_GUI
14062 && !gui.in_use
14063# endif
14064 )
14065 {
14066 x_force_connect = TRUE;
14067 setup_term_clip();
14068 x_force_connect = FALSE;
14069 }
14070}
14071
14072 static int
14073check_connection()
14074{
14075 make_connection();
14076 if (X_DISPLAY == NULL)
14077 {
14078 EMSG(_("E240: No connection to Vim server"));
14079 return FAIL;
14080 }
14081 return OK;
14082}
14083#endif
14084
14085#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014086static void remote_common __ARGS((typval_T *argvars, typval_T *rettv, int expr));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014087
14088 static void
14089remote_common(argvars, rettv, expr)
Bram Moolenaar33570922005-01-25 22:26:29 +000014090 typval_T *argvars;
14091 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014092 int expr;
14093{
14094 char_u *server_name;
14095 char_u *keys;
14096 char_u *r = NULL;
14097 char_u buf[NUMBUFLEN];
14098# ifdef WIN32
14099 HWND w;
14100# else
14101 Window w;
14102# endif
14103
14104 if (check_restricted() || check_secure())
14105 return;
14106
14107# ifdef FEAT_X11
14108 if (check_connection() == FAIL)
14109 return;
14110# endif
14111
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014112 server_name = get_tv_string_chk(&argvars[0]);
14113 if (server_name == NULL)
14114 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014115 keys = get_tv_string_buf(&argvars[1], buf);
14116# ifdef WIN32
14117 if (serverSendToVim(server_name, keys, &r, &w, expr, TRUE) < 0)
14118# else
14119 if (serverSendToVim(X_DISPLAY, server_name, keys, &r, &w, expr, 0, TRUE)
14120 < 0)
14121# endif
14122 {
14123 if (r != NULL)
14124 EMSG(r); /* sending worked but evaluation failed */
14125 else
14126 EMSG2(_("E241: Unable to send to %s"), server_name);
14127 return;
14128 }
14129
14130 rettv->vval.v_string = r;
14131
14132 if (argvars[2].v_type != VAR_UNKNOWN)
14133 {
Bram Moolenaar33570922005-01-25 22:26:29 +000014134 dictitem_T v;
Bram Moolenaar555b2802005-05-19 21:08:39 +000014135 char_u str[30];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014136 char_u *idvar;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014137
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014138 sprintf((char *)str, PRINTF_HEX_LONG_U, (long_u)w);
Bram Moolenaar33570922005-01-25 22:26:29 +000014139 v.di_tv.v_type = VAR_STRING;
14140 v.di_tv.vval.v_string = vim_strsave(str);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014141 idvar = get_tv_string_chk(&argvars[2]);
14142 if (idvar != NULL)
14143 set_var(idvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014144 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014145 }
14146}
14147#endif
14148
14149/*
14150 * "remote_expr()" function
14151 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014152 static void
14153f_remote_expr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014154 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014155 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014156{
14157 rettv->v_type = VAR_STRING;
14158 rettv->vval.v_string = NULL;
14159#ifdef FEAT_CLIENTSERVER
14160 remote_common(argvars, rettv, TRUE);
14161#endif
14162}
14163
14164/*
14165 * "remote_foreground()" function
14166 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014167 static void
14168f_remote_foreground(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014169 typval_T *argvars UNUSED;
14170 typval_T *rettv UNUSED;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014171{
Bram Moolenaar0d660222005-01-07 21:51:51 +000014172#ifdef FEAT_CLIENTSERVER
14173# ifdef WIN32
14174 /* On Win32 it's done in this application. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014175 {
14176 char_u *server_name = get_tv_string_chk(&argvars[0]);
14177
14178 if (server_name != NULL)
14179 serverForeground(server_name);
14180 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014181# else
14182 /* Send a foreground() expression to the server. */
14183 argvars[1].v_type = VAR_STRING;
14184 argvars[1].vval.v_string = vim_strsave((char_u *)"foreground()");
14185 argvars[2].v_type = VAR_UNKNOWN;
14186 remote_common(argvars, rettv, TRUE);
14187 vim_free(argvars[1].vval.v_string);
14188# endif
14189#endif
14190}
14191
Bram Moolenaar0d660222005-01-07 21:51:51 +000014192 static void
14193f_remote_peek(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014194 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014195 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014196{
14197#ifdef FEAT_CLIENTSERVER
Bram Moolenaar33570922005-01-25 22:26:29 +000014198 dictitem_T v;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014199 char_u *s = NULL;
14200# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014201 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014202# endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014203 char_u *serverid;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014204
14205 if (check_restricted() || check_secure())
14206 {
14207 rettv->vval.v_number = -1;
14208 return;
14209 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014210 serverid = get_tv_string_chk(&argvars[0]);
14211 if (serverid == NULL)
14212 {
14213 rettv->vval.v_number = -1;
14214 return; /* type error; errmsg already given */
14215 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000014216# ifdef WIN32
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014217 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014218 if (n == 0)
14219 rettv->vval.v_number = -1;
14220 else
14221 {
14222 s = serverGetReply((HWND)n, FALSE, FALSE, FALSE);
14223 rettv->vval.v_number = (s != NULL);
14224 }
14225# else
Bram Moolenaar0d660222005-01-07 21:51:51 +000014226 if (check_connection() == FAIL)
14227 return;
14228
14229 rettv->vval.v_number = serverPeekReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014230 serverStrToWin(serverid), &s);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014231# endif
14232
14233 if (argvars[1].v_type != VAR_UNKNOWN && rettv->vval.v_number > 0)
14234 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014235 char_u *retvar;
14236
Bram Moolenaar33570922005-01-25 22:26:29 +000014237 v.di_tv.v_type = VAR_STRING;
14238 v.di_tv.vval.v_string = vim_strsave(s);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014239 retvar = get_tv_string_chk(&argvars[1]);
14240 if (retvar != NULL)
14241 set_var(retvar, &v.di_tv, FALSE);
Bram Moolenaar33570922005-01-25 22:26:29 +000014242 vim_free(v.di_tv.vval.v_string);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014243 }
14244#else
14245 rettv->vval.v_number = -1;
14246#endif
14247}
14248
Bram Moolenaar0d660222005-01-07 21:51:51 +000014249 static void
14250f_remote_read(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014251 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014252 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014253{
14254 char_u *r = NULL;
14255
14256#ifdef FEAT_CLIENTSERVER
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014257 char_u *serverid = get_tv_string_chk(&argvars[0]);
14258
14259 if (serverid != NULL && !check_restricted() && !check_secure())
Bram Moolenaar0d660222005-01-07 21:51:51 +000014260 {
14261# ifdef WIN32
14262 /* The server's HWND is encoded in the 'id' parameter */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014263 long_u n = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014264
Bram Moolenaareb3593b2006-04-22 22:33:57 +000014265 sscanf(serverid, SCANF_HEX_LONG_U, &n);
Bram Moolenaar0d660222005-01-07 21:51:51 +000014266 if (n != 0)
14267 r = serverGetReply((HWND)n, FALSE, TRUE, TRUE);
14268 if (r == NULL)
14269# else
14270 if (check_connection() == FAIL || serverReadReply(X_DISPLAY,
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014271 serverStrToWin(serverid), &r, FALSE) < 0)
Bram Moolenaar0d660222005-01-07 21:51:51 +000014272# endif
14273 EMSG(_("E277: Unable to read a server reply"));
14274 }
14275#endif
14276 rettv->v_type = VAR_STRING;
14277 rettv->vval.v_string = r;
14278}
14279
14280/*
14281 * "remote_send()" function
14282 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014283 static void
14284f_remote_send(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000014285 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000014286 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014287{
14288 rettv->v_type = VAR_STRING;
14289 rettv->vval.v_string = NULL;
14290#ifdef FEAT_CLIENTSERVER
14291 remote_common(argvars, rettv, FALSE);
14292#endif
14293}
14294
14295/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000014296 * "remove()" function
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014297 */
14298 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014299f_remove(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014300 typval_T *argvars;
14301 typval_T *rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014302{
Bram Moolenaar33570922005-01-25 22:26:29 +000014303 list_T *l;
14304 listitem_T *item, *item2;
14305 listitem_T *li;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014306 long idx;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014307 long end;
Bram Moolenaar8c711452005-01-14 21:53:12 +000014308 char_u *key;
Bram Moolenaar33570922005-01-25 22:26:29 +000014309 dict_T *d;
14310 dictitem_T *di;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014311
Bram Moolenaar8c711452005-01-14 21:53:12 +000014312 if (argvars[0].v_type == VAR_DICT)
14313 {
14314 if (argvars[2].v_type != VAR_UNKNOWN)
14315 EMSG2(_(e_toomanyarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014316 else if ((d = argvars[0].vval.v_dict) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014317 && !tv_check_lock(d->dv_lock, (char_u *)"remove() argument"))
Bram Moolenaar8c711452005-01-14 21:53:12 +000014318 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014319 key = get_tv_string_chk(&argvars[1]);
14320 if (key != NULL)
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014321 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014322 di = dict_find(d, key, -1);
14323 if (di == NULL)
14324 EMSG2(_(e_dictkey), key);
14325 else
14326 {
14327 *rettv = di->di_tv;
14328 init_tv(&di->di_tv);
14329 dictitem_remove(d, di);
14330 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000014331 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000014332 }
14333 }
14334 else if (argvars[0].v_type != VAR_LIST)
14335 EMSG2(_(e_listdictarg), "remove()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014336 else if ((l = argvars[0].vval.v_list) != NULL
Bram Moolenaar9dfb0f82006-06-22 16:03:05 +000014337 && !tv_check_lock(l->lv_lock, (char_u *)"remove() argument"))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014338 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014339 int error = FALSE;
14340
14341 idx = get_tv_number_chk(&argvars[1], &error);
14342 if (error)
14343 ; /* type error: do nothing, errmsg already given */
14344 else if ((item = list_find(l, idx)) == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014345 EMSGN(_(e_listidx), idx);
14346 else
14347 {
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014348 if (argvars[2].v_type == VAR_UNKNOWN)
14349 {
14350 /* Remove one item, return its value. */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014351 list_remove(l, item, item);
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014352 *rettv = item->li_tv;
14353 vim_free(item);
14354 }
14355 else
14356 {
14357 /* Remove range of items, return list with values. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014358 end = get_tv_number_chk(&argvars[2], &error);
14359 if (error)
14360 ; /* type error: do nothing */
14361 else if ((item2 = list_find(l, end)) == NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014362 EMSGN(_(e_listidx), end);
14363 else
14364 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000014365 int cnt = 0;
14366
14367 for (li = item; li != NULL; li = li->li_next)
14368 {
14369 ++cnt;
14370 if (li == item2)
14371 break;
14372 }
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014373 if (li == NULL) /* didn't find "item2" after "item" */
14374 EMSG(_(e_invrange));
14375 else
14376 {
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000014377 list_remove(l, item, item2);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014378 if (rettv_list_alloc(rettv) == OK)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014379 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014380 l = rettv->vval.v_list;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014381 l->lv_first = item;
14382 l->lv_last = item2;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014383 item->li_prev = NULL;
14384 item2->li_next = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014385 l->lv_len = cnt;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014386 }
14387 }
14388 }
14389 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014390 }
14391 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014392}
14393
14394/*
14395 * "rename({from}, {to})" function
14396 */
14397 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014398f_rename(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014399 typval_T *argvars;
14400 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014401{
14402 char_u buf[NUMBUFLEN];
14403
14404 if (check_restricted() || check_secure())
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014405 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014406 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014407 rettv->vval.v_number = vim_rename(get_tv_string(&argvars[0]),
14408 get_tv_string_buf(&argvars[1], buf));
Bram Moolenaar071d4272004-06-13 20:20:40 +000014409}
14410
14411/*
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014412 * "repeat()" function
14413 */
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014414 static void
14415f_repeat(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014416 typval_T *argvars;
14417 typval_T *rettv;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014418{
14419 char_u *p;
14420 int n;
14421 int slen;
14422 int len;
14423 char_u *r;
14424 int i;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014425
14426 n = get_tv_number(&argvars[1]);
14427 if (argvars[0].v_type == VAR_LIST)
14428 {
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014429 if (rettv_list_alloc(rettv) == OK && argvars[0].vval.v_list != NULL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014430 while (n-- > 0)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014431 if (list_extend(rettv->vval.v_list,
14432 argvars[0].vval.v_list, NULL) == FAIL)
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014433 break;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000014434 }
14435 else
14436 {
14437 p = get_tv_string(&argvars[0]);
14438 rettv->v_type = VAR_STRING;
14439 rettv->vval.v_string = NULL;
14440
14441 slen = (int)STRLEN(p);
14442 len = slen * n;
14443 if (len <= 0)
14444 return;
14445
14446 r = alloc(len + 1);
14447 if (r != NULL)
14448 {
14449 for (i = 0; i < n; i++)
14450 mch_memmove(r + i * slen, p, (size_t)slen);
14451 r[len] = NUL;
14452 }
14453
14454 rettv->vval.v_string = r;
14455 }
14456}
14457
14458/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000014459 * "resolve()" function
14460 */
14461 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014462f_resolve(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014463 typval_T *argvars;
14464 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014465{
14466 char_u *p;
14467
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014468 p = get_tv_string(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014469#ifdef FEAT_SHORTCUT
14470 {
14471 char_u *v = NULL;
14472
14473 v = mch_resolve_shortcut(p);
14474 if (v != NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014475 rettv->vval.v_string = v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014476 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014477 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014478 }
14479#else
14480# ifdef HAVE_READLINK
14481 {
14482 char_u buf[MAXPATHL + 1];
14483 char_u *cpy;
14484 int len;
14485 char_u *remain = NULL;
14486 char_u *q;
14487 int is_relative_to_current = FALSE;
14488 int has_trailing_pathsep = FALSE;
14489 int limit = 100;
14490
14491 p = vim_strsave(p);
14492
14493 if (p[0] == '.' && (vim_ispathsep(p[1])
14494 || (p[1] == '.' && (vim_ispathsep(p[2])))))
14495 is_relative_to_current = TRUE;
14496
14497 len = STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014498 if (len > 0 && after_pathsep(p, p + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +000014499 has_trailing_pathsep = TRUE;
14500
14501 q = getnextcomp(p);
14502 if (*q != NUL)
14503 {
14504 /* Separate the first path component in "p", and keep the
14505 * remainder (beginning with the path separator). */
14506 remain = vim_strsave(q - 1);
14507 q[-1] = NUL;
14508 }
14509
14510 for (;;)
14511 {
14512 for (;;)
14513 {
14514 len = readlink((char *)p, (char *)buf, MAXPATHL);
14515 if (len <= 0)
14516 break;
14517 buf[len] = NUL;
14518
14519 if (limit-- == 0)
14520 {
14521 vim_free(p);
14522 vim_free(remain);
14523 EMSG(_("E655: Too many symbolic links (cycle?)"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014524 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014525 goto fail;
14526 }
14527
14528 /* Ensure that the result will have a trailing path separator
14529 * if the argument has one. */
14530 if (remain == NULL && has_trailing_pathsep)
14531 add_pathsep(buf);
14532
14533 /* Separate the first path component in the link value and
14534 * concatenate the remainders. */
14535 q = getnextcomp(vim_ispathsep(*buf) ? buf + 1 : buf);
14536 if (*q != NUL)
14537 {
14538 if (remain == NULL)
14539 remain = vim_strsave(q - 1);
14540 else
14541 {
Bram Moolenaar900b4d72005-12-12 22:05:50 +000014542 cpy = concat_str(q - 1, remain);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014543 if (cpy != NULL)
14544 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014545 vim_free(remain);
14546 remain = cpy;
14547 }
14548 }
14549 q[-1] = NUL;
14550 }
14551
14552 q = gettail(p);
14553 if (q > p && *q == NUL)
14554 {
14555 /* Ignore trailing path separator. */
14556 q[-1] = NUL;
14557 q = gettail(p);
14558 }
14559 if (q > p && !mch_isFullName(buf))
14560 {
14561 /* symlink is relative to directory of argument */
14562 cpy = alloc((unsigned)(STRLEN(p) + STRLEN(buf) + 1));
14563 if (cpy != NULL)
14564 {
14565 STRCPY(cpy, p);
14566 STRCPY(gettail(cpy), buf);
14567 vim_free(p);
14568 p = cpy;
14569 }
14570 }
14571 else
14572 {
14573 vim_free(p);
14574 p = vim_strsave(buf);
14575 }
14576 }
14577
14578 if (remain == NULL)
14579 break;
14580
14581 /* Append the first path component of "remain" to "p". */
14582 q = getnextcomp(remain + 1);
14583 len = q - remain - (*q != NUL);
14584 cpy = vim_strnsave(p, STRLEN(p) + len);
14585 if (cpy != NULL)
14586 {
14587 STRNCAT(cpy, remain, len);
14588 vim_free(p);
14589 p = cpy;
14590 }
14591 /* Shorten "remain". */
14592 if (*q != NUL)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014593 STRMOVE(remain, q - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014594 else
14595 {
14596 vim_free(remain);
14597 remain = NULL;
14598 }
14599 }
14600
14601 /* If the result is a relative path name, make it explicitly relative to
14602 * the current directory if and only if the argument had this form. */
14603 if (!vim_ispathsep(*p))
14604 {
14605 if (is_relative_to_current
14606 && *p != NUL
14607 && !(p[0] == '.'
14608 && (p[1] == NUL
14609 || vim_ispathsep(p[1])
14610 || (p[1] == '.'
14611 && (p[2] == NUL
14612 || vim_ispathsep(p[2]))))))
14613 {
14614 /* Prepend "./". */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000014615 cpy = concat_str((char_u *)"./", p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014616 if (cpy != NULL)
14617 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000014618 vim_free(p);
14619 p = cpy;
14620 }
14621 }
14622 else if (!is_relative_to_current)
14623 {
14624 /* Strip leading "./". */
14625 q = p;
14626 while (q[0] == '.' && vim_ispathsep(q[1]))
14627 q += 2;
14628 if (q > p)
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014629 STRMOVE(p, p + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014630 }
14631 }
14632
14633 /* Ensure that the result will have no trailing path separator
14634 * if the argument had none. But keep "/" or "//". */
14635 if (!has_trailing_pathsep)
14636 {
14637 q = p + STRLEN(p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000014638 if (after_pathsep(p, q))
14639 *gettail_sep(p) = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014640 }
14641
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014642 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014643 }
14644# else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014645 rettv->vval.v_string = vim_strsave(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014646# endif
14647#endif
14648
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014649 simplify_filename(rettv->vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014650
14651#ifdef HAVE_READLINK
14652fail:
14653#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014654 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014655}
14656
14657/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000014658 * "reverse({list})" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000014659 */
14660 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000014661f_reverse(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000014662 typval_T *argvars;
14663 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014664{
Bram Moolenaar33570922005-01-25 22:26:29 +000014665 list_T *l;
14666 listitem_T *li, *ni;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014667
Bram Moolenaar0d660222005-01-07 21:51:51 +000014668 if (argvars[0].v_type != VAR_LIST)
14669 EMSG2(_(e_listarg), "reverse()");
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000014670 else if ((l = argvars[0].vval.v_list) != NULL
14671 && !tv_check_lock(l->lv_lock, (char_u *)"reverse()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000014672 {
14673 li = l->lv_last;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000014674 l->lv_first = l->lv_last = NULL;
Bram Moolenaar758711c2005-02-02 23:11:38 +000014675 l->lv_len = 0;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014676 while (li != NULL)
14677 {
14678 ni = li->li_prev;
14679 list_append(l, li);
14680 li = ni;
14681 }
14682 rettv->vval.v_list = l;
14683 rettv->v_type = VAR_LIST;
14684 ++l->lv_refcount;
Bram Moolenaar52514562008-04-01 11:12:09 +000014685 l->lv_idx = l->lv_len - l->lv_idx - 1;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014686 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014687}
14688
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014689#define SP_NOMOVE 0x01 /* don't move cursor */
14690#define SP_REPEAT 0x02 /* repeat to find outer pair */
14691#define SP_RETCOUNT 0x04 /* return matchcount */
14692#define SP_SETPCMARK 0x08 /* set previous context mark */
14693#define SP_START 0x10 /* accept match at start position */
14694#define SP_SUBPAT 0x20 /* return nr of matching sub-pattern */
14695#define SP_END 0x40 /* leave cursor at end of match */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014696
Bram Moolenaar33570922005-01-25 22:26:29 +000014697static int get_search_arg __ARGS((typval_T *varp, int *flagsp));
Bram Moolenaar0d660222005-01-07 21:51:51 +000014698
14699/*
14700 * Get flags for a search function.
14701 * Possibly sets "p_ws".
14702 * Returns BACKWARD, FORWARD or zero (for an error).
14703 */
14704 static int
14705get_search_arg(varp, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014706 typval_T *varp;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014707 int *flagsp;
14708{
14709 int dir = FORWARD;
14710 char_u *flags;
14711 char_u nbuf[NUMBUFLEN];
14712 int mask;
14713
14714 if (varp->v_type != VAR_UNKNOWN)
14715 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014716 flags = get_tv_string_buf_chk(varp, nbuf);
14717 if (flags == NULL)
14718 return 0; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000014719 while (*flags != NUL)
14720 {
14721 switch (*flags)
14722 {
14723 case 'b': dir = BACKWARD; break;
14724 case 'w': p_ws = TRUE; break;
14725 case 'W': p_ws = FALSE; break;
14726 default: mask = 0;
14727 if (flagsp != NULL)
14728 switch (*flags)
14729 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014730 case 'c': mask = SP_START; break;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014731 case 'e': mask = SP_END; break;
14732 case 'm': mask = SP_RETCOUNT; break;
14733 case 'n': mask = SP_NOMOVE; break;
14734 case 'p': mask = SP_SUBPAT; break;
14735 case 'r': mask = SP_REPEAT; break;
14736 case 's': mask = SP_SETPCMARK; break;
Bram Moolenaar0d660222005-01-07 21:51:51 +000014737 }
14738 if (mask == 0)
14739 {
14740 EMSG2(_(e_invarg2), flags);
14741 dir = 0;
14742 }
14743 else
14744 *flagsp |= mask;
14745 }
14746 if (dir == 0)
14747 break;
14748 ++flags;
14749 }
14750 }
14751 return dir;
14752}
14753
Bram Moolenaar071d4272004-06-13 20:20:40 +000014754/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014755 * Shared by search() and searchpos() functions
Bram Moolenaar071d4272004-06-13 20:20:40 +000014756 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014757 static int
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014758search_cmn(argvars, match_pos, flagsp)
Bram Moolenaar33570922005-01-25 22:26:29 +000014759 typval_T *argvars;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014760 pos_T *match_pos;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014761 int *flagsp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014762{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014763 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014764 char_u *pat;
14765 pos_T pos;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014766 pos_T save_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014767 int save_p_ws = p_ws;
14768 int dir;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014769 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014770 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014771 proftime_T tm;
14772#ifdef FEAT_RELTIME
14773 long time_limit = 0;
14774#endif
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014775 int options = SEARCH_KEEP;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014776 int subpatnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014777
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014778 pat = get_tv_string(&argvars[0]);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014779 dir = get_search_arg(&argvars[1], flagsp); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014780 if (dir == 0)
14781 goto theend;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014782 flags = *flagsp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014783 if (flags & SP_START)
14784 options |= SEARCH_START;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014785 if (flags & SP_END)
14786 options |= SEARCH_END;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014787
Bram Moolenaar76929292008-01-06 19:07:36 +000014788 /* Optional arguments: line number to stop searching and timeout. */
14789 if (argvars[1].v_type != VAR_UNKNOWN && argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014790 {
14791 lnum_stop = get_tv_number_chk(&argvars[2], NULL);
14792 if (lnum_stop < 0)
14793 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014794#ifdef FEAT_RELTIME
14795 if (argvars[3].v_type != VAR_UNKNOWN)
14796 {
14797 time_limit = get_tv_number_chk(&argvars[3], NULL);
14798 if (time_limit < 0)
14799 goto theend;
14800 }
14801#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014802 }
14803
Bram Moolenaar76929292008-01-06 19:07:36 +000014804#ifdef FEAT_RELTIME
14805 /* Set the time limit, if there is one. */
14806 profile_setlimit(time_limit, &tm);
14807#endif
14808
Bram Moolenaar231334e2005-07-25 20:46:57 +000014809 /*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014810 * This function does not accept SP_REPEAT and SP_RETCOUNT flags.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014811 * Check to make sure only those flags are set.
14812 * Also, Only the SP_NOMOVE or the SP_SETPCMARK flag can be set. Both
14813 * flags cannot be set. Check for that condition also.
14814 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014815 if (((flags & (SP_REPEAT | SP_RETCOUNT)) != 0)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000014816 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014817 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000014818 EMSG2(_(e_invarg2), get_tv_string(&argvars[1]));
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014819 goto theend;
14820 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014821
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014822 pos = save_cursor = curwin->w_cursor;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014823 subpatnum = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000014824 options, RE_SEARCH, (linenr_T)lnum_stop, &tm);
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014825 if (subpatnum != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014826 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014827 if (flags & SP_SUBPAT)
14828 retval = subpatnum;
14829 else
14830 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000014831 if (flags & SP_SETPCMARK)
14832 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000014833 curwin->w_cursor = pos;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014834 if (match_pos != NULL)
14835 {
14836 /* Store the match cursor position */
14837 match_pos->lnum = pos.lnum;
14838 match_pos->col = pos.col + 1;
14839 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014840 /* "/$" will put the cursor after the end of the line, may need to
14841 * correct that here */
14842 check_cursor();
14843 }
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014844
14845 /* If 'n' flag is used: restore cursor position. */
14846 if (flags & SP_NOMOVE)
14847 curwin->w_cursor = save_cursor;
Bram Moolenaar7a42fa32007-07-10 11:28:55 +000014848 else
14849 curwin->w_set_curswant = TRUE;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014850theend:
Bram Moolenaar071d4272004-06-13 20:20:40 +000014851 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014852
14853 return retval;
14854}
14855
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014856#ifdef FEAT_FLOAT
14857/*
14858 * "round({float})" function
14859 */
14860 static void
14861f_round(argvars, rettv)
14862 typval_T *argvars;
14863 typval_T *rettv;
14864{
14865 float_T f;
14866
14867 rettv->v_type = VAR_FLOAT;
14868 if (get_float_arg(argvars, &f) == OK)
14869 /* round() is not in C90, use ceil() or floor() instead. */
14870 rettv->vval.v_float = f > 0 ? floor(f + 0.5) : ceil(f - 0.5);
14871 else
14872 rettv->vval.v_float = 0.0;
14873}
14874#endif
14875
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014876/*
14877 * "search()" function
14878 */
14879 static void
14880f_search(argvars, rettv)
14881 typval_T *argvars;
14882 typval_T *rettv;
14883{
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014884 int flags = 0;
14885
14886 rettv->vval.v_number = search_cmn(argvars, NULL, &flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +000014887}
14888
Bram Moolenaar071d4272004-06-13 20:20:40 +000014889/*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014890 * "searchdecl()" function
14891 */
14892 static void
14893f_searchdecl(argvars, rettv)
14894 typval_T *argvars;
14895 typval_T *rettv;
14896{
14897 int locally = 1;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014898 int thisblock = 0;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014899 int error = FALSE;
14900 char_u *name;
14901
14902 rettv->vval.v_number = 1; /* default: FAIL */
14903
14904 name = get_tv_string_chk(&argvars[0]);
14905 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaare6facf92005-09-13 21:22:27 +000014906 {
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014907 locally = get_tv_number_chk(&argvars[1], &error) == 0;
Bram Moolenaare6facf92005-09-13 21:22:27 +000014908 if (!error && argvars[2].v_type != VAR_UNKNOWN)
14909 thisblock = get_tv_number_chk(&argvars[2], &error) != 0;
14910 }
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014911 if (!error && name != NULL)
14912 rettv->vval.v_number = find_decl(name, (int)STRLEN(name),
Bram Moolenaare6facf92005-09-13 21:22:27 +000014913 locally, thisblock, SEARCH_KEEP) == FAIL;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000014914}
14915
14916/*
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014917 * Used by searchpair() and searchpairpos()
Bram Moolenaar071d4272004-06-13 20:20:40 +000014918 */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014919 static int
14920searchpair_cmn(argvars, match_pos)
Bram Moolenaar33570922005-01-25 22:26:29 +000014921 typval_T *argvars;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014922 pos_T *match_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014923{
14924 char_u *spat, *mpat, *epat;
14925 char_u *skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014926 int save_p_ws = p_ws;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014927 int dir;
14928 int flags = 0;
14929 char_u nbuf1[NUMBUFLEN];
14930 char_u nbuf2[NUMBUFLEN];
14931 char_u nbuf3[NUMBUFLEN];
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014932 int retval = 0; /* default: FAIL */
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014933 long lnum_stop = 0;
Bram Moolenaar76929292008-01-06 19:07:36 +000014934 long time_limit = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000014935
Bram Moolenaar071d4272004-06-13 20:20:40 +000014936 /* Get the three pattern arguments: start, middle, end. */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014937 spat = get_tv_string_chk(&argvars[0]);
14938 mpat = get_tv_string_buf_chk(&argvars[1], nbuf1);
14939 epat = get_tv_string_buf_chk(&argvars[2], nbuf2);
14940 if (spat == NULL || mpat == NULL || epat == NULL)
14941 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014942
Bram Moolenaar071d4272004-06-13 20:20:40 +000014943 /* Handle the optional fourth argument: flags */
14944 dir = get_search_arg(&argvars[3], &flags); /* may set p_ws */
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000014945 if (dir == 0)
14946 goto theend;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014947
14948 /* Don't accept SP_END or SP_SUBPAT.
Bram Moolenaar231334e2005-07-25 20:46:57 +000014949 * Only one of the SP_NOMOVE or SP_SETPCMARK flags can be set.
14950 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014951 if ((flags & (SP_END | SP_SUBPAT)) != 0
14952 || ((flags & SP_NOMOVE) && (flags & SP_SETPCMARK)))
Bram Moolenaar231334e2005-07-25 20:46:57 +000014953 {
Bram Moolenaar768b8c42006-03-04 21:58:33 +000014954 EMSG2(_(e_invarg2), get_tv_string(&argvars[3]));
Bram Moolenaar231334e2005-07-25 20:46:57 +000014955 goto theend;
14956 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000014957
Bram Moolenaar92de73d2008-01-22 10:59:38 +000014958 /* Using 'r' implies 'W', otherwise it doesn't work. */
14959 if (flags & SP_REPEAT)
14960 p_ws = FALSE;
14961
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014962 /* Optional fifth argument: skip expression */
Bram Moolenaar49cd9572005-01-03 21:06:01 +000014963 if (argvars[3].v_type == VAR_UNKNOWN
14964 || argvars[4].v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000014965 skip = (char_u *)"";
14966 else
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014967 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014968 skip = get_tv_string_buf_chk(&argvars[4], nbuf3);
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014969 if (argvars[5].v_type != VAR_UNKNOWN)
14970 {
14971 lnum_stop = get_tv_number_chk(&argvars[5], NULL);
14972 if (lnum_stop < 0)
14973 goto theend;
Bram Moolenaar76929292008-01-06 19:07:36 +000014974#ifdef FEAT_RELTIME
14975 if (argvars[6].v_type != VAR_UNKNOWN)
14976 {
14977 time_limit = get_tv_number_chk(&argvars[6], NULL);
14978 if (time_limit < 0)
14979 goto theend;
14980 }
14981#endif
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014982 }
14983 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000014984 if (skip == NULL)
14985 goto theend; /* type error */
Bram Moolenaar071d4272004-06-13 20:20:40 +000014986
Bram Moolenaareddf53b2006-02-27 00:11:10 +000014987 retval = do_searchpair(spat, mpat, epat, dir, skip, flags,
Bram Moolenaar76929292008-01-06 19:07:36 +000014988 match_pos, lnum_stop, time_limit);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000014989
14990theend:
14991 p_ws = save_p_ws;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000014992
14993 return retval;
14994}
14995
14996/*
14997 * "searchpair()" function
14998 */
14999 static void
15000f_searchpair(argvars, rettv)
15001 typval_T *argvars;
15002 typval_T *rettv;
15003{
15004 rettv->vval.v_number = searchpair_cmn(argvars, NULL);
15005}
15006
15007/*
15008 * "searchpairpos()" function
15009 */
15010 static void
15011f_searchpairpos(argvars, rettv)
15012 typval_T *argvars;
15013 typval_T *rettv;
15014{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015015 pos_T match_pos;
15016 int lnum = 0;
15017 int col = 0;
15018
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015019 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015020 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015021
15022 if (searchpair_cmn(argvars, &match_pos) > 0)
15023 {
15024 lnum = match_pos.lnum;
15025 col = match_pos.col;
15026 }
15027
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015028 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15029 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015030}
15031
15032/*
15033 * Search for a start/middle/end thing.
15034 * Used by searchpair(), see its documentation for the details.
15035 * Returns 0 or -1 for no match,
15036 */
15037 long
Bram Moolenaar76929292008-01-06 19:07:36 +000015038do_searchpair(spat, mpat, epat, dir, skip, flags, match_pos,
15039 lnum_stop, time_limit)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015040 char_u *spat; /* start pattern */
15041 char_u *mpat; /* middle pattern */
15042 char_u *epat; /* end pattern */
15043 int dir; /* BACKWARD or FORWARD */
15044 char_u *skip; /* skip expression */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000015045 int flags; /* SP_SETPCMARK and other SP_ values */
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015046 pos_T *match_pos;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015047 linenr_T lnum_stop; /* stop at this line if not zero */
Bram Moolenaar76929292008-01-06 19:07:36 +000015048 long time_limit; /* stop after this many msec */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015049{
15050 char_u *save_cpo;
15051 char_u *pat, *pat2 = NULL, *pat3 = NULL;
15052 long retval = 0;
15053 pos_T pos;
15054 pos_T firstpos;
15055 pos_T foundpos;
15056 pos_T save_cursor;
15057 pos_T save_pos;
15058 int n;
15059 int r;
15060 int nest = 1;
15061 int err;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015062 int options = SEARCH_KEEP;
Bram Moolenaar76929292008-01-06 19:07:36 +000015063 proftime_T tm;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015064
15065 /* Make 'cpoptions' empty, the 'l' flag should not be used here. */
15066 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015067 p_cpo = empty_option;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015068
Bram Moolenaar76929292008-01-06 19:07:36 +000015069#ifdef FEAT_RELTIME
15070 /* Set the time limit, if there is one. */
15071 profile_setlimit(time_limit, &tm);
15072#endif
15073
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015074 /* Make two search patterns: start/end (pat2, for in nested pairs) and
15075 * start/middle/end (pat3, for the top pair). */
15076 pat2 = alloc((unsigned)(STRLEN(spat) + STRLEN(epat) + 15));
15077 pat3 = alloc((unsigned)(STRLEN(spat) + STRLEN(mpat) + STRLEN(epat) + 23));
15078 if (pat2 == NULL || pat3 == NULL)
15079 goto theend;
15080 sprintf((char *)pat2, "\\(%s\\m\\)\\|\\(%s\\m\\)", spat, epat);
15081 if (*mpat == NUL)
15082 STRCPY(pat3, pat2);
15083 else
15084 sprintf((char *)pat3, "\\(%s\\m\\)\\|\\(%s\\m\\)\\|\\(%s\\m\\)",
15085 spat, epat, mpat);
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015086 if (flags & SP_START)
15087 options |= SEARCH_START;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015088
Bram Moolenaar071d4272004-06-13 20:20:40 +000015089 save_cursor = curwin->w_cursor;
15090 pos = curwin->w_cursor;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000015091 clearpos(&firstpos);
15092 clearpos(&foundpos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015093 pat = pat3;
15094 for (;;)
15095 {
15096 n = searchit(curwin, curbuf, &pos, dir, pat, 1L,
Bram Moolenaar76929292008-01-06 19:07:36 +000015097 options, RE_SEARCH, lnum_stop, &tm);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015098 if (n == FAIL || (firstpos.lnum != 0 && equalpos(pos, firstpos)))
15099 /* didn't find it or found the first match again: FAIL */
15100 break;
15101
15102 if (firstpos.lnum == 0)
15103 firstpos = pos;
Bram Moolenaarc9a2d2e2005-04-24 22:09:56 +000015104 if (equalpos(pos, foundpos))
15105 {
15106 /* Found the same position again. Can happen with a pattern that
15107 * has "\zs" at the end and searching backwards. Advance one
15108 * character and try again. */
15109 if (dir == BACKWARD)
15110 decl(&pos);
15111 else
15112 incl(&pos);
15113 }
15114 foundpos = pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015115
Bram Moolenaar92de73d2008-01-22 10:59:38 +000015116 /* clear the start flag to avoid getting stuck here */
15117 options &= ~SEARCH_START;
15118
Bram Moolenaar071d4272004-06-13 20:20:40 +000015119 /* If the skip pattern matches, ignore this match. */
15120 if (*skip != NUL)
15121 {
15122 save_pos = curwin->w_cursor;
15123 curwin->w_cursor = pos;
15124 r = eval_to_bool(skip, &err, NULL, FALSE);
15125 curwin->w_cursor = save_pos;
15126 if (err)
15127 {
15128 /* Evaluating {skip} caused an error, break here. */
15129 curwin->w_cursor = save_cursor;
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015130 retval = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015131 break;
15132 }
15133 if (r)
15134 continue;
15135 }
15136
15137 if ((dir == BACKWARD && n == 3) || (dir == FORWARD && n == 2))
15138 {
15139 /* Found end when searching backwards or start when searching
15140 * forward: nested pair. */
15141 ++nest;
15142 pat = pat2; /* nested, don't search for middle */
15143 }
15144 else
15145 {
15146 /* Found end when searching forward or start when searching
15147 * backward: end of (nested) pair; or found middle in outer pair. */
15148 if (--nest == 1)
15149 pat = pat3; /* outer level, search for middle */
15150 }
15151
15152 if (nest == 0)
15153 {
15154 /* Found the match: return matchcount or line number. */
15155 if (flags & SP_RETCOUNT)
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015156 ++retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015157 else
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015158 retval = pos.lnum;
Bram Moolenaar231334e2005-07-25 20:46:57 +000015159 if (flags & SP_SETPCMARK)
15160 setpcmark();
Bram Moolenaar071d4272004-06-13 20:20:40 +000015161 curwin->w_cursor = pos;
15162 if (!(flags & SP_REPEAT))
15163 break;
15164 nest = 1; /* search for next unmatched */
15165 }
15166 }
15167
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015168 if (match_pos != NULL)
15169 {
15170 /* Store the match cursor position */
15171 match_pos->lnum = curwin->w_cursor.lnum;
15172 match_pos->col = curwin->w_cursor.col + 1;
15173 }
15174
Bram Moolenaar071d4272004-06-13 20:20:40 +000015175 /* If 'n' flag is used or search failed: restore cursor position. */
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015176 if ((flags & SP_NOMOVE) || retval == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015177 curwin->w_cursor = save_cursor;
15178
15179theend:
15180 vim_free(pat2);
15181 vim_free(pat3);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000015182 if (p_cpo == empty_option)
15183 p_cpo = save_cpo;
15184 else
15185 /* Darn, evaluating the {skip} expression changed the value. */
15186 free_string_option(save_cpo);
Bram Moolenaar9fad3082005-07-19 22:22:13 +000015187
15188 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015189}
15190
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015191/*
15192 * "searchpos()" function
15193 */
15194 static void
15195f_searchpos(argvars, rettv)
15196 typval_T *argvars;
15197 typval_T *rettv;
15198{
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015199 pos_T match_pos;
15200 int lnum = 0;
15201 int col = 0;
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015202 int n;
15203 int flags = 0;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015204
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015205 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015206 return;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015207
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015208 n = search_cmn(argvars, &match_pos, &flags);
15209 if (n > 0)
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015210 {
15211 lnum = match_pos.lnum;
15212 col = match_pos.col;
15213 }
15214
Bram Moolenaareddf53b2006-02-27 00:11:10 +000015215 list_append_number(rettv->vval.v_list, (varnumber_T)lnum);
15216 list_append_number(rettv->vval.v_list, (varnumber_T)col);
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015217 if (flags & SP_SUBPAT)
15218 list_append_number(rettv->vval.v_list, (varnumber_T)n);
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000015219}
15220
15221
Bram Moolenaar0d660222005-01-07 21:51:51 +000015222 static void
15223f_server2client(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015224 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000015225 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015226{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015227#ifdef FEAT_CLIENTSERVER
15228 char_u buf[NUMBUFLEN];
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015229 char_u *server = get_tv_string_chk(&argvars[0]);
15230 char_u *reply = get_tv_string_buf_chk(&argvars[1], buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015231
Bram Moolenaar0d660222005-01-07 21:51:51 +000015232 rettv->vval.v_number = -1;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015233 if (server == NULL || reply == NULL)
15234 return;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015235 if (check_restricted() || check_secure())
15236 return;
15237# ifdef FEAT_X11
15238 if (check_connection() == FAIL)
15239 return;
15240# endif
15241
15242 if (serverSendReply(server, reply) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015243 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015244 EMSG(_("E258: Unable to send to client"));
15245 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015246 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015247 rettv->vval.v_number = 0;
15248#else
15249 rettv->vval.v_number = -1;
15250#endif
15251}
15252
Bram Moolenaar0d660222005-01-07 21:51:51 +000015253 static void
15254f_serverlist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015255 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000015256 typval_T *rettv;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015257{
15258 char_u *r = NULL;
15259
15260#ifdef FEAT_CLIENTSERVER
15261# ifdef WIN32
15262 r = serverGetVimNames();
15263# else
15264 make_connection();
15265 if (X_DISPLAY != NULL)
15266 r = serverGetVimNames(X_DISPLAY);
15267# endif
15268#endif
15269 rettv->v_type = VAR_STRING;
15270 rettv->vval.v_string = r;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015271}
15272
15273/*
15274 * "setbufvar()" function
15275 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015276 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015277f_setbufvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015278 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015279 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015280{
15281 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015282 aco_save_T aco;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015283 char_u *varname, *bufvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015284 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015285 char_u nbuf[NUMBUFLEN];
15286
15287 if (check_restricted() || check_secure())
15288 return;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015289 (void)get_tv_number(&argvars[0]); /* issue errmsg if type error */
15290 varname = get_tv_string_chk(&argvars[1]);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015291 buf = get_buf_tv(&argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015292 varp = &argvars[2];
15293
15294 if (buf != NULL && varname != NULL && varp != NULL)
15295 {
15296 /* set curbuf to be our buf, temporarily */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015297 aucmd_prepbuf(&aco, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015298
15299 if (*varname == '&')
15300 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015301 long numval;
15302 char_u *strval;
15303 int error = FALSE;
15304
Bram Moolenaar071d4272004-06-13 20:20:40 +000015305 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015306 numval = get_tv_number_chk(varp, &error);
15307 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015308 if (!error && strval != NULL)
15309 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015310 }
15311 else
15312 {
15313 bufvarname = alloc((unsigned)STRLEN(varname) + 3);
15314 if (bufvarname != NULL)
15315 {
15316 STRCPY(bufvarname, "b:");
15317 STRCPY(bufvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015318 set_var(bufvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015319 vim_free(bufvarname);
15320 }
15321 }
15322
15323 /* reset notion of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015324 aucmd_restbuf(&aco);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015325 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015326}
15327
15328/*
15329 * "setcmdpos()" function
15330 */
15331 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015332f_setcmdpos(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015333 typval_T *argvars;
15334 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015335{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015336 int pos = (int)get_tv_number(&argvars[0]) - 1;
15337
15338 if (pos >= 0)
15339 rettv->vval.v_number = set_cmdline_pos(pos);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015340}
15341
15342/*
15343 * "setline()" function
15344 */
15345 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015346f_setline(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015347 typval_T *argvars;
15348 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015349{
15350 linenr_T lnum;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +000015351 char_u *line = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015352 list_T *l = NULL;
15353 listitem_T *li = NULL;
15354 long added = 0;
15355 linenr_T lcount = curbuf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015356
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015357 lnum = get_tv_lnum(&argvars[0]);
15358 if (argvars[1].v_type == VAR_LIST)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015359 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015360 l = argvars[1].vval.v_list;
15361 li = l->lv_first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015362 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015363 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015364 line = get_tv_string_chk(&argvars[1]);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015365
Bram Moolenaar798b30b2009-04-22 10:56:16 +000015366 /* default result is zero == OK */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015367 for (;;)
15368 {
15369 if (l != NULL)
15370 {
15371 /* list argument, get next string */
15372 if (li == NULL)
15373 break;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015374 line = get_tv_string_chk(&li->li_tv);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015375 li = li->li_next;
15376 }
15377
15378 rettv->vval.v_number = 1; /* FAIL */
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015379 if (line == NULL || lnum < 1 || lnum > curbuf->b_ml.ml_line_count + 1)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015380 break;
15381 if (lnum <= curbuf->b_ml.ml_line_count)
15382 {
15383 /* existing line, replace it */
15384 if (u_savesub(lnum) == OK && ml_replace(lnum, line, TRUE) == OK)
15385 {
15386 changed_bytes(lnum, 0);
Bram Moolenaar87c19962007-04-26 08:54:21 +000015387 if (lnum == curwin->w_cursor.lnum)
15388 check_cursor_col();
Bram Moolenaar67fe1a12005-05-22 22:12:58 +000015389 rettv->vval.v_number = 0; /* OK */
15390 }
15391 }
15392 else if (added > 0 || u_save(lnum - 1, lnum) == OK)
15393 {
15394 /* lnum is one past the last line, append the line */
15395 ++added;
15396 if (ml_append(lnum - 1, line, (colnr_T)0, FALSE) == OK)
15397 rettv->vval.v_number = 0; /* OK */
15398 }
15399
15400 if (l == NULL) /* only one string argument */
15401 break;
15402 ++lnum;
15403 }
15404
15405 if (added > 0)
15406 appended_lines_mark(lcount, added);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015407}
15408
Bram Moolenaard9ff7d52008-03-20 12:23:49 +000015409static void set_qf_ll_list __ARGS((win_T *wp, typval_T *list_arg, typval_T *action_arg, typval_T *rettv));
15410
Bram Moolenaar071d4272004-06-13 20:20:40 +000015411/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015412 * Used by "setqflist()" and "setloclist()" functions
Bram Moolenaar2641f772005-03-25 21:58:17 +000015413 */
Bram Moolenaar2641f772005-03-25 21:58:17 +000015414 static void
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015415set_qf_ll_list(wp, list_arg, action_arg, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015416 win_T *wp UNUSED;
15417 typval_T *list_arg UNUSED;
15418 typval_T *action_arg UNUSED;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015419 typval_T *rettv;
15420{
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015421#ifdef FEAT_QUICKFIX
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015422 char_u *act;
15423 int action = ' ';
Bram Moolenaar0ac93792006-01-21 22:16:51 +000015424#endif
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015425
Bram Moolenaar2641f772005-03-25 21:58:17 +000015426 rettv->vval.v_number = -1;
15427
15428#ifdef FEAT_QUICKFIX
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015429 if (list_arg->v_type != VAR_LIST)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015430 EMSG(_(e_listreq));
15431 else
15432 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015433 list_T *l = list_arg->vval.v_list;
Bram Moolenaar2641f772005-03-25 21:58:17 +000015434
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015435 if (action_arg->v_type == VAR_STRING)
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015436 {
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015437 act = get_tv_string_chk(action_arg);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015438 if (act == NULL)
15439 return; /* type error; errmsg already given */
Bram Moolenaarf4630b62005-05-20 21:31:17 +000015440 if (*act == 'a' || *act == 'r')
15441 action = *act;
15442 }
15443
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015444 if (l != NULL && set_errorlist(wp, l, action) == OK)
Bram Moolenaar2641f772005-03-25 21:58:17 +000015445 rettv->vval.v_number = 0;
15446 }
15447#endif
15448}
15449
15450/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015451 * "setloclist()" function
15452 */
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015453 static void
15454f_setloclist(argvars, rettv)
15455 typval_T *argvars;
15456 typval_T *rettv;
15457{
15458 win_T *win;
15459
15460 rettv->vval.v_number = -1;
15461
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015462 win = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015463 if (win != NULL)
15464 set_qf_ll_list(win, &argvars[1], &argvars[2], rettv);
15465}
15466
15467/*
Bram Moolenaar6ee10162007-07-26 20:58:42 +000015468 * "setmatches()" function
15469 */
15470 static void
15471f_setmatches(argvars, rettv)
15472 typval_T *argvars;
15473 typval_T *rettv;
15474{
15475#ifdef FEAT_SEARCH_EXTRA
15476 list_T *l;
15477 listitem_T *li;
15478 dict_T *d;
15479
15480 rettv->vval.v_number = -1;
15481 if (argvars[0].v_type != VAR_LIST)
15482 {
15483 EMSG(_(e_listreq));
15484 return;
15485 }
15486 if ((l = argvars[0].vval.v_list) != NULL)
15487 {
15488
15489 /* To some extent make sure that we are dealing with a list from
15490 * "getmatches()". */
15491 li = l->lv_first;
15492 while (li != NULL)
15493 {
15494 if (li->li_tv.v_type != VAR_DICT
15495 || (d = li->li_tv.vval.v_dict) == NULL)
15496 {
15497 EMSG(_(e_invarg));
15498 return;
15499 }
15500 if (!(dict_find(d, (char_u *)"group", -1) != NULL
15501 && dict_find(d, (char_u *)"pattern", -1) != NULL
15502 && dict_find(d, (char_u *)"priority", -1) != NULL
15503 && dict_find(d, (char_u *)"id", -1) != NULL))
15504 {
15505 EMSG(_(e_invarg));
15506 return;
15507 }
15508 li = li->li_next;
15509 }
15510
15511 clear_matches(curwin);
15512 li = l->lv_first;
15513 while (li != NULL)
15514 {
15515 d = li->li_tv.vval.v_dict;
15516 match_add(curwin, get_dict_string(d, (char_u *)"group", FALSE),
15517 get_dict_string(d, (char_u *)"pattern", FALSE),
15518 (int)get_dict_number(d, (char_u *)"priority"),
15519 (int)get_dict_number(d, (char_u *)"id"));
15520 li = li->li_next;
15521 }
15522 rettv->vval.v_number = 0;
15523 }
15524#endif
15525}
15526
15527/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015528 * "setpos()" function
15529 */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015530 static void
15531f_setpos(argvars, rettv)
15532 typval_T *argvars;
15533 typval_T *rettv;
15534{
15535 pos_T pos;
15536 int fnum;
15537 char_u *name;
15538
Bram Moolenaar08250432008-02-13 11:42:46 +000015539 rettv->vval.v_number = -1;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015540 name = get_tv_string_chk(argvars);
15541 if (name != NULL)
15542 {
15543 if (list2fpos(&argvars[1], &pos, &fnum) == OK)
15544 {
Bram Moolenaar742d1ec2009-12-31 12:18:30 +000015545 if (--pos.col < 0)
15546 pos.col = 0;
Bram Moolenaar08250432008-02-13 11:42:46 +000015547 if (name[0] == '.' && name[1] == NUL)
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015548 {
Bram Moolenaar08250432008-02-13 11:42:46 +000015549 /* set cursor */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015550 if (fnum == curbuf->b_fnum)
15551 {
15552 curwin->w_cursor = pos;
15553 check_cursor();
Bram Moolenaar08250432008-02-13 11:42:46 +000015554 rettv->vval.v_number = 0;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015555 }
15556 else
15557 EMSG(_(e_invarg));
15558 }
Bram Moolenaar08250432008-02-13 11:42:46 +000015559 else if (name[0] == '\'' && name[1] != NUL && name[2] == NUL)
15560 {
15561 /* set mark */
15562 if (setmark_pos(name[1], &pos, fnum) == OK)
15563 rettv->vval.v_number = 0;
15564 }
Bram Moolenaar0e34f622006-03-03 23:00:03 +000015565 else
15566 EMSG(_(e_invarg));
15567 }
15568 }
15569}
15570
15571/*
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015572 * "setqflist()" function
15573 */
Bram Moolenaar17c7c012006-01-26 22:25:15 +000015574 static void
15575f_setqflist(argvars, rettv)
15576 typval_T *argvars;
15577 typval_T *rettv;
15578{
15579 set_qf_ll_list(NULL, &argvars[0], &argvars[1], rettv);
15580}
15581
15582/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000015583 * "setreg()" function
15584 */
15585 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015586f_setreg(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015587 typval_T *argvars;
15588 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015589{
15590 int regname;
15591 char_u *strregname;
15592 char_u *stropt;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015593 char_u *strval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015594 int append;
15595 char_u yank_type;
15596 long block_len;
15597
15598 block_len = -1;
15599 yank_type = MAUTO;
15600 append = FALSE;
15601
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015602 strregname = get_tv_string_chk(argvars);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015603 rettv->vval.v_number = 1; /* FAIL is default */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015604
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015605 if (strregname == NULL)
15606 return; /* type error; errmsg already given */
15607 regname = *strregname;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015608 if (regname == 0 || regname == '@')
15609 regname = '"';
15610 else if (regname == '=')
15611 return;
15612
Bram Moolenaar49cd9572005-01-03 21:06:01 +000015613 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015614 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015615 stropt = get_tv_string_chk(&argvars[2]);
15616 if (stropt == NULL)
15617 return; /* type error */
15618 for (; *stropt != NUL; ++stropt)
Bram Moolenaar071d4272004-06-13 20:20:40 +000015619 switch (*stropt)
15620 {
15621 case 'a': case 'A': /* append */
15622 append = TRUE;
15623 break;
15624 case 'v': case 'c': /* character-wise selection */
15625 yank_type = MCHAR;
15626 break;
15627 case 'V': case 'l': /* line-wise selection */
15628 yank_type = MLINE;
15629 break;
15630#ifdef FEAT_VISUAL
15631 case 'b': case Ctrl_V: /* block-wise selection */
15632 yank_type = MBLOCK;
15633 if (VIM_ISDIGIT(stropt[1]))
15634 {
15635 ++stropt;
15636 block_len = getdigits(&stropt) - 1;
15637 --stropt;
15638 }
15639 break;
15640#endif
15641 }
15642 }
15643
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015644 strval = get_tv_string_chk(&argvars[1]);
15645 if (strval != NULL)
15646 write_reg_contents_ex(regname, strval, -1,
Bram Moolenaar071d4272004-06-13 20:20:40 +000015647 append, yank_type, block_len);
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015648 rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015649}
15650
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015651/*
15652 * "settabwinvar()" function
15653 */
15654 static void
15655f_settabwinvar(argvars, rettv)
15656 typval_T *argvars;
15657 typval_T *rettv;
15658{
15659 setwinvar(argvars, rettv, 1);
15660}
Bram Moolenaar071d4272004-06-13 20:20:40 +000015661
15662/*
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015663 * "setwinvar()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015664 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015665 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000015666f_setwinvar(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015667 typval_T *argvars;
15668 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015669{
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015670 setwinvar(argvars, rettv, 0);
15671}
15672
15673/*
15674 * "setwinvar()" and "settabwinvar()" functions
15675 */
15676 static void
15677setwinvar(argvars, rettv, off)
15678 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015679 typval_T *rettv UNUSED;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015680 int off;
15681{
Bram Moolenaar071d4272004-06-13 20:20:40 +000015682 win_T *win;
15683#ifdef FEAT_WINDOWS
15684 win_T *save_curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015685 tabpage_T *save_curtab;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015686#endif
15687 char_u *varname, *winvarname;
Bram Moolenaar33570922005-01-25 22:26:29 +000015688 typval_T *varp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015689 char_u nbuf[NUMBUFLEN];
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015690 tabpage_T *tp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015691
15692 if (check_restricted() || check_secure())
15693 return;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015694
15695#ifdef FEAT_WINDOWS
15696 if (off == 1)
15697 tp = find_tabpage((int)get_tv_number_chk(&argvars[0], NULL));
15698 else
15699 tp = curtab;
15700#endif
15701 win = find_win_by_nr(&argvars[off], tp);
15702 varname = get_tv_string_chk(&argvars[off + 1]);
15703 varp = &argvars[off + 2];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015704
15705 if (win != NULL && varname != NULL && varp != NULL)
15706 {
15707#ifdef FEAT_WINDOWS
15708 /* set curwin to be our win, temporarily */
15709 save_curwin = curwin;
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015710 save_curtab = curtab;
15711 goto_tabpage_tp(tp);
15712 if (!win_valid(win))
15713 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015714 curwin = win;
15715 curbuf = curwin->w_buffer;
15716#endif
15717
15718 if (*varname == '&')
15719 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015720 long numval;
15721 char_u *strval;
15722 int error = FALSE;
15723
Bram Moolenaar071d4272004-06-13 20:20:40 +000015724 ++varname;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015725 numval = get_tv_number_chk(varp, &error);
15726 strval = get_tv_string_buf_chk(varp, nbuf);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015727 if (!error && strval != NULL)
15728 set_option_value(varname, numval, strval, OPT_LOCAL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015729 }
15730 else
15731 {
15732 winvarname = alloc((unsigned)STRLEN(varname) + 3);
15733 if (winvarname != NULL)
15734 {
15735 STRCPY(winvarname, "w:");
15736 STRCPY(winvarname + 2, varname);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000015737 set_var(winvarname, varp, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015738 vim_free(winvarname);
15739 }
15740 }
15741
15742#ifdef FEAT_WINDOWS
Bram Moolenaar99ebf042006-04-15 20:28:54 +000015743 /* Restore current tabpage and window, if still valid (autocomands can
15744 * make them invalid). */
15745 if (valid_tabpage(save_curtab))
15746 goto_tabpage_tp(save_curtab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015747 if (win_valid(save_curwin))
15748 {
15749 curwin = save_curwin;
15750 curbuf = curwin->w_buffer;
15751 }
15752#endif
15753 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015754}
15755
15756/*
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015757 * "shellescape({string})" function
15758 */
15759 static void
15760f_shellescape(argvars, rettv)
15761 typval_T *argvars;
15762 typval_T *rettv;
15763{
Bram Moolenaar05bb9532008-07-04 09:44:11 +000015764 rettv->vval.v_string = vim_strsave_shellescape(
15765 get_tv_string(&argvars[0]), non_zero_arg(&argvars[1]));
Bram Moolenaar60a495f2006-10-03 12:44:42 +000015766 rettv->v_type = VAR_STRING;
15767}
15768
15769/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015770 * "simplify()" function
Bram Moolenaar071d4272004-06-13 20:20:40 +000015771 */
15772 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015773f_simplify(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015774 typval_T *argvars;
15775 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015776{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015777 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015778
Bram Moolenaar0d660222005-01-07 21:51:51 +000015779 p = get_tv_string(&argvars[0]);
15780 rettv->vval.v_string = vim_strsave(p);
15781 simplify_filename(rettv->vval.v_string); /* simplify in place */
15782 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015783}
15784
Bram Moolenaar8c8de832008-06-24 22:58:06 +000015785#ifdef FEAT_FLOAT
15786/*
15787 * "sin()" function
15788 */
15789 static void
15790f_sin(argvars, rettv)
15791 typval_T *argvars;
15792 typval_T *rettv;
15793{
15794 float_T f;
15795
15796 rettv->v_type = VAR_FLOAT;
15797 if (get_float_arg(argvars, &f) == OK)
15798 rettv->vval.v_float = sin(f);
15799 else
15800 rettv->vval.v_float = 0.0;
15801}
15802#endif
15803
Bram Moolenaar0d660222005-01-07 21:51:51 +000015804static int
15805#ifdef __BORLANDC__
15806 _RTLENTRYF
15807#endif
15808 item_compare __ARGS((const void *s1, const void *s2));
15809static int
15810#ifdef __BORLANDC__
15811 _RTLENTRYF
15812#endif
15813 item_compare2 __ARGS((const void *s1, const void *s2));
15814
15815static int item_compare_ic;
15816static char_u *item_compare_func;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015817static int item_compare_func_err;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015818#define ITEM_COMPARE_FAIL 999
15819
Bram Moolenaar071d4272004-06-13 20:20:40 +000015820/*
Bram Moolenaar0d660222005-01-07 21:51:51 +000015821 * Compare functions for f_sort() below.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015822 */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015823 static int
15824#ifdef __BORLANDC__
15825_RTLENTRYF
15826#endif
15827item_compare(s1, s2)
15828 const void *s1;
15829 const void *s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015830{
Bram Moolenaar0d660222005-01-07 21:51:51 +000015831 char_u *p1, *p2;
15832 char_u *tofree1, *tofree2;
15833 int res;
15834 char_u numbuf1[NUMBUFLEN];
15835 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000015836
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000015837 p1 = tv2string(&(*(listitem_T **)s1)->li_tv, &tofree1, numbuf1, 0);
15838 p2 = tv2string(&(*(listitem_T **)s2)->li_tv, &tofree2, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000015839 if (p1 == NULL)
15840 p1 = (char_u *)"";
15841 if (p2 == NULL)
15842 p2 = (char_u *)"";
Bram Moolenaar0d660222005-01-07 21:51:51 +000015843 if (item_compare_ic)
15844 res = STRICMP(p1, p2);
Bram Moolenaar071d4272004-06-13 20:20:40 +000015845 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015846 res = STRCMP(p1, p2);
15847 vim_free(tofree1);
15848 vim_free(tofree2);
15849 return res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015850}
15851
15852 static int
Bram Moolenaar0d660222005-01-07 21:51:51 +000015853#ifdef __BORLANDC__
15854_RTLENTRYF
Bram Moolenaar071d4272004-06-13 20:20:40 +000015855#endif
Bram Moolenaar0d660222005-01-07 21:51:51 +000015856item_compare2(s1, s2)
15857 const void *s1;
15858 const void *s2;
15859{
15860 int res;
Bram Moolenaar33570922005-01-25 22:26:29 +000015861 typval_T rettv;
Bram Moolenaareb3593b2006-04-22 22:33:57 +000015862 typval_T argv[3];
Bram Moolenaar0d660222005-01-07 21:51:51 +000015863 int dummy;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015864
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015865 /* shortcut after failure in previous call; compare all items equal */
15866 if (item_compare_func_err)
15867 return 0;
15868
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015869 /* copy the values. This is needed to be able to set v_lock to VAR_FIXED
15870 * in the copy without changing the original list items. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015871 copy_tv(&(*(listitem_T **)s1)->li_tv, &argv[0]);
15872 copy_tv(&(*(listitem_T **)s2)->li_tv, &argv[1]);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015873
15874 rettv.v_type = VAR_UNKNOWN; /* clear_tv() uses this */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000015875 res = call_func(item_compare_func, (int)STRLEN(item_compare_func),
Bram Moolenaare9a41262005-01-15 22:18:47 +000015876 &rettv, 2, argv, 0L, 0L, &dummy, TRUE, NULL);
Bram Moolenaar0d660222005-01-07 21:51:51 +000015877 clear_tv(&argv[0]);
15878 clear_tv(&argv[1]);
15879
15880 if (res == FAIL)
15881 res = ITEM_COMPARE_FAIL;
15882 else
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015883 res = get_tv_number_chk(&rettv, &item_compare_func_err);
15884 if (item_compare_func_err)
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000015885 res = ITEM_COMPARE_FAIL; /* return value has wrong type */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015886 clear_tv(&rettv);
15887 return res;
15888}
15889
15890/*
15891 * "sort({list})" function
15892 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015893 static void
Bram Moolenaar0d660222005-01-07 21:51:51 +000015894f_sort(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000015895 typval_T *argvars;
15896 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015897{
Bram Moolenaar33570922005-01-25 22:26:29 +000015898 list_T *l;
15899 listitem_T *li;
15900 listitem_T **ptrs;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015901 long len;
15902 long i;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015903
Bram Moolenaar0d660222005-01-07 21:51:51 +000015904 if (argvars[0].v_type != VAR_LIST)
15905 EMSG2(_(e_listarg), "sort()");
Bram Moolenaar071d4272004-06-13 20:20:40 +000015906 else
15907 {
Bram Moolenaar0d660222005-01-07 21:51:51 +000015908 l = argvars[0].vval.v_list;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000015909 if (l == NULL || tv_check_lock(l->lv_lock, (char_u *)"sort()"))
Bram Moolenaar0d660222005-01-07 21:51:51 +000015910 return;
15911 rettv->vval.v_list = l;
15912 rettv->v_type = VAR_LIST;
15913 ++l->lv_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015914
Bram Moolenaar0d660222005-01-07 21:51:51 +000015915 len = list_len(l);
15916 if (len <= 1)
15917 return; /* short list sorts pretty quickly */
Bram Moolenaar071d4272004-06-13 20:20:40 +000015918
Bram Moolenaar0d660222005-01-07 21:51:51 +000015919 item_compare_ic = FALSE;
15920 item_compare_func = NULL;
15921 if (argvars[1].v_type != VAR_UNKNOWN)
15922 {
15923 if (argvars[1].v_type == VAR_FUNC)
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015924 item_compare_func = argvars[1].vval.v_string;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015925 else
15926 {
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015927 int error = FALSE;
15928
15929 i = get_tv_number_chk(&argvars[1], &error);
15930 if (error)
15931 return; /* type error; errmsg already given */
Bram Moolenaar0d660222005-01-07 21:51:51 +000015932 if (i == 1)
15933 item_compare_ic = TRUE;
15934 else
15935 item_compare_func = get_tv_string(&argvars[1]);
15936 }
15937 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000015938
Bram Moolenaar0d660222005-01-07 21:51:51 +000015939 /* Make an array with each entry pointing to an item in the List. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015940 ptrs = (listitem_T **)alloc((int)(len * sizeof(listitem_T *)));
Bram Moolenaar0d660222005-01-07 21:51:51 +000015941 if (ptrs == NULL)
15942 return;
15943 i = 0;
15944 for (li = l->lv_first; li != NULL; li = li->li_next)
15945 ptrs[i++] = li;
Bram Moolenaar071d4272004-06-13 20:20:40 +000015946
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015947 item_compare_func_err = FALSE;
Bram Moolenaar0d660222005-01-07 21:51:51 +000015948 /* test the compare function */
15949 if (item_compare_func != NULL
15950 && item_compare2((void *)&ptrs[0], (void *)&ptrs[1])
15951 == ITEM_COMPARE_FAIL)
Bram Moolenaare49b69a2005-01-08 16:11:57 +000015952 EMSG(_("E702: Sort compare function failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +000015953 else
Bram Moolenaar0d660222005-01-07 21:51:51 +000015954 {
15955 /* Sort the array with item pointers. */
Bram Moolenaar33570922005-01-25 22:26:29 +000015956 qsort((void *)ptrs, (size_t)len, sizeof(listitem_T *),
Bram Moolenaar0d660222005-01-07 21:51:51 +000015957 item_compare_func == NULL ? item_compare : item_compare2);
15958
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015959 if (!item_compare_func_err)
15960 {
15961 /* Clear the List and append the items in the sorted order. */
Bram Moolenaar52514562008-04-01 11:12:09 +000015962 l->lv_first = l->lv_last = l->lv_idx_item = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000015963 l->lv_len = 0;
15964 for (i = 0; i < len; ++i)
15965 list_append(l, ptrs[i]);
15966 }
Bram Moolenaar0d660222005-01-07 21:51:51 +000015967 }
15968
15969 vim_free(ptrs);
15970 }
15971}
15972
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015973/*
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015974 * "soundfold({word})" function
15975 */
15976 static void
15977f_soundfold(argvars, rettv)
15978 typval_T *argvars;
15979 typval_T *rettv;
15980{
15981 char_u *s;
15982
15983 rettv->v_type = VAR_STRING;
15984 s = get_tv_string(&argvars[0]);
Bram Moolenaar3c56a962006-03-12 22:19:04 +000015985#ifdef FEAT_SPELL
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +000015986 rettv->vval.v_string = eval_soundfold(s);
15987#else
15988 rettv->vval.v_string = vim_strsave(s);
15989#endif
15990}
15991
15992/*
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015993 * "spellbadword()" function
15994 */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015995 static void
15996f_spellbadword(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000015997 typval_T *argvars UNUSED;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000015998 typval_T *rettv;
15999{
Bram Moolenaar4463f292005-09-25 22:20:24 +000016000 char_u *word = (char_u *)"";
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016001 hlf_T attr = HLF_COUNT;
Bram Moolenaar1d2ba7f2006-02-14 22:29:30 +000016002 int len = 0;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016003
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016004 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016005 return;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016006
Bram Moolenaar3c56a962006-03-12 22:19:04 +000016007#ifdef FEAT_SPELL
Bram Moolenaar4463f292005-09-25 22:20:24 +000016008 if (argvars[0].v_type == VAR_UNKNOWN)
16009 {
16010 /* Find the start and length of the badly spelled word. */
16011 len = spell_move_to(curwin, FORWARD, TRUE, TRUE, &attr);
16012 if (len != 0)
16013 word = ml_get_cursor();
16014 }
16015 else if (curwin->w_p_spell && *curbuf->b_p_spl != NUL)
16016 {
16017 char_u *str = get_tv_string_chk(&argvars[0]);
16018 int capcol = -1;
16019
16020 if (str != NULL)
16021 {
16022 /* Check the argument for spelling. */
16023 while (*str != NUL)
16024 {
Bram Moolenaar4770d092006-01-12 23:22:24 +000016025 len = spell_check(curwin, str, &attr, &capcol, FALSE);
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016026 if (attr != HLF_COUNT)
Bram Moolenaar4463f292005-09-25 22:20:24 +000016027 {
16028 word = str;
16029 break;
16030 }
16031 str += len;
16032 }
16033 }
16034 }
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016035#endif
Bram Moolenaar4463f292005-09-25 22:20:24 +000016036
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016037 list_append_string(rettv->vval.v_list, word, len);
16038 list_append_string(rettv->vval.v_list, (char_u *)(
Bram Moolenaar482aaeb2005-09-29 18:26:07 +000016039 attr == HLF_SPB ? "bad" :
16040 attr == HLF_SPR ? "rare" :
16041 attr == HLF_SPL ? "local" :
16042 attr == HLF_SPC ? "caps" :
16043 ""), -1);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016044}
16045
16046/*
16047 * "spellsuggest()" function
16048 */
16049 static void
16050f_spellsuggest(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016051 typval_T *argvars UNUSED;
Bram Moolenaard857f0e2005-06-21 22:37:39 +000016052 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 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016534 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016535f_synID(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016536 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016537 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016538{
16539 int id = 0;
16540#ifdef FEAT_SYN_HL
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016541 long lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016542 long col;
16543 int trans;
Bram Moolenaar92124a32005-06-17 22:03:40 +000016544 int transerr = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016545
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016546 lnum = get_tv_lnum(argvars); /* -1 on type error */
16547 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16548 trans = get_tv_number_chk(&argvars[2], &transerr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016549
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016550 if (!transerr && lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar54ff3412005-04-20 19:48:33 +000016551 && col >= 0 && col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016552 id = syn_get_id(curwin, lnum, (colnr_T)col, trans, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016553#endif
16554
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016555 rettv->vval.v_number = id;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016556}
16557
16558/*
16559 * "synIDattr(id, what [, mode])" function
16560 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016561 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016562f_synIDattr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016563 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016564 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016565{
16566 char_u *p = NULL;
16567#ifdef FEAT_SYN_HL
16568 int id;
16569 char_u *what;
16570 char_u *mode;
16571 char_u modebuf[NUMBUFLEN];
16572 int modec;
16573
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016574 id = get_tv_number(&argvars[0]);
16575 what = get_tv_string(&argvars[1]);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016576 if (argvars[2].v_type != VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016577 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016578 mode = get_tv_string_buf(&argvars[2], modebuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016579 modec = TOLOWER_ASC(mode[0]);
16580 if (modec != 't' && modec != 'c'
16581#ifdef FEAT_GUI
16582 && modec != 'g'
16583#endif
16584 )
16585 modec = 0; /* replace invalid with current */
16586 }
16587 else
16588 {
16589#ifdef FEAT_GUI
16590 if (gui.in_use)
16591 modec = 'g';
16592 else
16593#endif
16594 if (t_colors > 1)
16595 modec = 'c';
16596 else
16597 modec = 't';
16598 }
16599
16600
16601 switch (TOLOWER_ASC(what[0]))
16602 {
16603 case 'b':
16604 if (TOLOWER_ASC(what[1]) == 'g') /* bg[#] */
16605 p = highlight_color(id, what, modec);
16606 else /* bold */
16607 p = highlight_has_attr(id, HL_BOLD, modec);
16608 break;
16609
16610 case 'f': /* fg[#] */
16611 p = highlight_color(id, what, modec);
16612 break;
16613
16614 case 'i':
16615 if (TOLOWER_ASC(what[1]) == 'n') /* inverse */
16616 p = highlight_has_attr(id, HL_INVERSE, modec);
16617 else /* italic */
16618 p = highlight_has_attr(id, HL_ITALIC, modec);
16619 break;
16620
16621 case 'n': /* name */
16622 p = get_highlight_name(NULL, id - 1);
16623 break;
16624
16625 case 'r': /* reverse */
16626 p = highlight_has_attr(id, HL_INVERSE, modec);
16627 break;
16628
Bram Moolenaar6f507d62008-11-28 10:16:05 +000016629 case 's':
16630 if (TOLOWER_ASC(what[1]) == 'p') /* sp[#] */
16631 p = highlight_color(id, what, modec);
16632 else /* standout */
16633 p = highlight_has_attr(id, HL_STANDOUT, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016634 break;
16635
Bram Moolenaar5b743bf2005-03-15 22:50:43 +000016636 case 'u':
16637 if (STRLEN(what) <= 5 || TOLOWER_ASC(what[5]) != 'c')
16638 /* underline */
16639 p = highlight_has_attr(id, HL_UNDERLINE, modec);
16640 else
16641 /* undercurl */
16642 p = highlight_has_attr(id, HL_UNDERCURL, modec);
Bram Moolenaar071d4272004-06-13 20:20:40 +000016643 break;
16644 }
16645
16646 if (p != NULL)
16647 p = vim_strsave(p);
16648#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016649 rettv->v_type = VAR_STRING;
16650 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016651}
16652
16653/*
16654 * "synIDtrans(id)" function
16655 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016656 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016657f_synIDtrans(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016658 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016659 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 */
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016678 static void
16679f_synstack(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016680 typval_T *argvars UNUSED;
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016681 typval_T *rettv;
16682{
16683#ifdef FEAT_SYN_HL
16684 long lnum;
16685 long col;
16686 int i;
16687 int id;
16688#endif
16689
16690 rettv->v_type = VAR_LIST;
16691 rettv->vval.v_list = NULL;
16692
16693#ifdef FEAT_SYN_HL
16694 lnum = get_tv_lnum(argvars); /* -1 on type error */
16695 col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
16696
16697 if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
Bram Moolenaar6cad8bd2008-09-10 13:39:10 +000016698 && col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016699 && rettv_list_alloc(rettv) != FAIL)
16700 {
Bram Moolenaar56cefaf2008-01-12 15:47:10 +000016701 (void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
Bram Moolenaar9d188ab2008-01-10 21:24:39 +000016702 for (i = 0; ; ++i)
16703 {
16704 id = syn_get_stack_item(i);
16705 if (id < 0)
16706 break;
16707 if (list_append_number(rettv->vval.v_list, id) == FAIL)
16708 break;
16709 }
16710 }
16711#endif
16712}
16713
16714/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016715 * "system()" function
16716 */
16717 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016718f_system(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000016719 typval_T *argvars;
16720 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016721{
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016722 char_u *res = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016723 char_u *p;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016724 char_u *infile = NULL;
16725 char_u buf[NUMBUFLEN];
16726 int err = FALSE;
16727 FILE *fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016728
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016729 if (check_restricted() || check_secure())
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016730 goto done;
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000016731
Bram Moolenaar49cd9572005-01-03 21:06:01 +000016732 if (argvars[1].v_type != VAR_UNKNOWN)
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016733 {
16734 /*
16735 * Write the string to a temp file, to be used for input of the shell
16736 * command.
16737 */
16738 if ((infile = vim_tempname('i')) == NULL)
16739 {
16740 EMSG(_(e_notmp));
Bram Moolenaare6f565a2007-12-07 16:09:32 +000016741 goto done;
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016742 }
16743
16744 fd = mch_fopen((char *)infile, WRITEBIN);
16745 if (fd == NULL)
16746 {
16747 EMSG2(_(e_notopen), infile);
16748 goto done;
16749 }
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016750 p = get_tv_string_buf_chk(&argvars[1], buf);
16751 if (p == NULL)
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016752 {
16753 fclose(fd);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016754 goto done; /* type error; errmsg already given */
Bram Moolenaareb3593b2006-04-22 22:33:57 +000016755 }
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016756 if (fwrite(p, STRLEN(p), 1, fd) != 1)
16757 err = TRUE;
16758 if (fclose(fd) != 0)
16759 err = TRUE;
16760 if (err)
16761 {
16762 EMSG(_("E677: Error writing temp file"));
16763 goto done;
16764 }
16765 }
16766
Bram Moolenaare580b0c2006-03-21 21:33:03 +000016767 res = get_cmd_output(get_tv_string(&argvars[0]), infile,
16768 SHELL_SILENT | SHELL_COOKED);
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016769
Bram Moolenaar071d4272004-06-13 20:20:40 +000016770#ifdef USE_CR
16771 /* translate <CR> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016772 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016773 {
16774 char_u *s;
16775
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016776 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016777 {
16778 if (*s == CAR)
16779 *s = NL;
16780 }
16781 }
16782#else
16783# ifdef USE_CRNL
16784 /* translate <CR><NL> into <NL> */
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016785 if (res != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016786 {
16787 char_u *s, *d;
16788
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016789 d = res;
16790 for (s = res; *s; ++s)
Bram Moolenaar071d4272004-06-13 20:20:40 +000016791 {
16792 if (s[0] == CAR && s[1] == NL)
16793 ++s;
16794 *d++ = *s;
16795 }
16796 *d = NUL;
16797 }
16798# endif
16799#endif
Bram Moolenaarc0197e22004-09-13 20:26:32 +000016800
16801done:
16802 if (infile != NULL)
16803 {
16804 mch_remove(infile);
16805 vim_free(infile);
16806 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016807 rettv->v_type = VAR_STRING;
16808 rettv->vval.v_string = res;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016809}
16810
16811/*
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016812 * "tabpagebuflist()" function
16813 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016814 static void
16815f_tabpagebuflist(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016816 typval_T *argvars UNUSED;
16817 typval_T *rettv UNUSED;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016818{
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016819#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016820 tabpage_T *tp;
16821 win_T *wp = NULL;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016822
16823 if (argvars[0].v_type == VAR_UNKNOWN)
16824 wp = firstwin;
16825 else
16826 {
16827 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16828 if (tp != NULL)
Bram Moolenaar238a5642006-02-21 22:12:05 +000016829 wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016830 }
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016831 if (wp != NULL && rettv_list_alloc(rettv) != FAIL)
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016832 {
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016833 for (; wp != NULL; wp = wp->w_next)
16834 if (list_append_number(rettv->vval.v_list,
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016835 wp->w_buffer->b_fnum) == FAIL)
Bram Moolenaar798b30b2009-04-22 10:56:16 +000016836 break;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016837 }
16838#endif
16839}
16840
16841
16842/*
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016843 * "tabpagenr()" function
16844 */
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016845 static void
16846f_tabpagenr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016847 typval_T *argvars UNUSED;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016848 typval_T *rettv;
16849{
16850 int nr = 1;
16851#ifdef FEAT_WINDOWS
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016852 char_u *arg;
16853
16854 if (argvars[0].v_type != VAR_UNKNOWN)
16855 {
16856 arg = get_tv_string_chk(&argvars[0]);
16857 nr = 0;
16858 if (arg != NULL)
16859 {
16860 if (STRCMP(arg, "$") == 0)
Bram Moolenaara5621492006-02-25 21:55:24 +000016861 nr = tabpage_index(NULL) - 1;
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016862 else
16863 EMSG2(_(e_invexpr2), arg);
16864 }
16865 }
16866 else
Bram Moolenaar32466aa2006-02-24 23:53:04 +000016867 nr = tabpage_index(curtab);
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016868#endif
16869 rettv->vval.v_number = nr;
16870}
16871
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016872
16873#ifdef FEAT_WINDOWS
16874static int get_winnr __ARGS((tabpage_T *tp, typval_T *argvar));
16875
16876/*
16877 * Common code for tabpagewinnr() and winnr().
16878 */
16879 static int
16880get_winnr(tp, argvar)
16881 tabpage_T *tp;
16882 typval_T *argvar;
16883{
16884 win_T *twin;
16885 int nr = 1;
16886 win_T *wp;
16887 char_u *arg;
16888
16889 twin = (tp == curtab) ? curwin : tp->tp_curwin;
16890 if (argvar->v_type != VAR_UNKNOWN)
16891 {
16892 arg = get_tv_string_chk(argvar);
16893 if (arg == NULL)
16894 nr = 0; /* type error; errmsg already given */
16895 else if (STRCMP(arg, "$") == 0)
16896 twin = (tp == curtab) ? lastwin : tp->tp_lastwin;
16897 else if (STRCMP(arg, "#") == 0)
16898 {
16899 twin = (tp == curtab) ? prevwin : tp->tp_prevwin;
16900 if (twin == NULL)
16901 nr = 0;
16902 }
16903 else
16904 {
16905 EMSG2(_(e_invexpr2), arg);
16906 nr = 0;
16907 }
16908 }
16909
16910 if (nr > 0)
16911 for (wp = (tp == curtab) ? firstwin : tp->tp_firstwin;
16912 wp != twin; wp = wp->w_next)
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016913 {
16914 if (wp == NULL)
16915 {
16916 /* didn't find it in this tabpage */
16917 nr = 0;
16918 break;
16919 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016920 ++nr;
Bram Moolenaar4940e3f2007-03-25 15:49:08 +000016921 }
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016922 return nr;
16923}
16924#endif
16925
16926/*
16927 * "tabpagewinnr()" function
16928 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016929 static void
16930f_tabpagewinnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016931 typval_T *argvars UNUSED;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000016932 typval_T *rettv;
16933{
16934 int nr = 1;
16935#ifdef FEAT_WINDOWS
16936 tabpage_T *tp;
16937
16938 tp = find_tabpage((int)get_tv_number(&argvars[0]));
16939 if (tp == NULL)
16940 nr = 0;
16941 else
16942 nr = get_winnr(tp, &argvars[1]);
16943#endif
16944 rettv->vval.v_number = nr;
16945}
16946
16947
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000016948/*
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016949 * "tagfiles()" function
16950 */
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016951 static void
16952f_tagfiles(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016953 typval_T *argvars UNUSED;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016954 typval_T *rettv;
16955{
16956 char_u fname[MAXPATHL + 1];
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016957 tagname_T tn;
16958 int first;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016959
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016960 if (rettv_list_alloc(rettv) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016961 return;
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016962
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016963 for (first = TRUE; ; first = FALSE)
16964 if (get_tagfname(&tn, first, fname) == FAIL
16965 || list_append_string(rettv->vval.v_list, fname, -1) == FAIL)
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016966 break;
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016967 tagname_free(&tn);
Bram Moolenaard43b6cf2005-09-09 19:53:42 +000016968}
16969
16970/*
Bram Moolenaare2ac10d2005-03-07 23:26:06 +000016971 * "taglist()" function
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016972 */
16973 static void
16974f_taglist(argvars, rettv)
16975 typval_T *argvars;
16976 typval_T *rettv;
16977{
16978 char_u *tag_pattern;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016979
16980 tag_pattern = get_tv_string(&argvars[0]);
16981
16982 rettv->vval.v_number = FALSE;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000016983 if (*tag_pattern == NUL)
16984 return;
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016985
Bram Moolenaareddf53b2006-02-27 00:11:10 +000016986 if (rettv_list_alloc(rettv) == OK)
16987 (void)get_tags(rettv->vval.v_list, tag_pattern);
Bram Moolenaar19a09a12005-03-04 23:39:37 +000016988}
16989
16990/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000016991 * "tempname()" function
16992 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016993 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000016994f_tempname(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000016995 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000016996 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000016997{
16998 static int x = 'A';
16999
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017000 rettv->v_type = VAR_STRING;
17001 rettv->vval.v_string = vim_tempname(x);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017002
17003 /* Advance 'x' to use A-Z and 0-9, so that there are at least 34 different
17004 * names. Skip 'I' and 'O', they are used for shell redirection. */
17005 do
17006 {
17007 if (x == 'Z')
17008 x = '0';
17009 else if (x == '9')
17010 x = 'A';
17011 else
17012 {
17013#ifdef EBCDIC
17014 if (x == 'I')
17015 x = 'J';
17016 else if (x == 'R')
17017 x = 'S';
17018 else
17019#endif
17020 ++x;
17021 }
17022 } while (x == 'I' || x == 'O');
17023}
17024
17025/*
Bram Moolenaard52d9742005-08-21 22:20:28 +000017026 * "test(list)" function: Just checking the walls...
17027 */
Bram Moolenaard52d9742005-08-21 22:20:28 +000017028 static void
17029f_test(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017030 typval_T *argvars UNUSED;
17031 typval_T *rettv UNUSED;
Bram Moolenaard52d9742005-08-21 22:20:28 +000017032{
17033 /* Used for unit testing. Change the code below to your liking. */
17034#if 0
17035 listitem_T *li;
17036 list_T *l;
17037 char_u *bad, *good;
17038
17039 if (argvars[0].v_type != VAR_LIST)
17040 return;
17041 l = argvars[0].vval.v_list;
17042 if (l == NULL)
17043 return;
17044 li = l->lv_first;
17045 if (li == NULL)
17046 return;
17047 bad = get_tv_string(&li->li_tv);
17048 li = li->li_next;
17049 if (li == NULL)
17050 return;
17051 good = get_tv_string(&li->li_tv);
17052 rettv->vval.v_number = test_edit_score(bad, good);
17053#endif
17054}
17055
17056/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017057 * "tolower(string)" function
17058 */
17059 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017060f_tolower(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017061 typval_T *argvars;
17062 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017063{
17064 char_u *p;
17065
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017066 p = vim_strsave(get_tv_string(&argvars[0]));
17067 rettv->v_type = VAR_STRING;
17068 rettv->vval.v_string = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017069
17070 if (p != NULL)
17071 while (*p != NUL)
17072 {
17073#ifdef FEAT_MBYTE
17074 int l;
17075
17076 if (enc_utf8)
17077 {
17078 int c, lc;
17079
17080 c = utf_ptr2char(p);
17081 lc = utf_tolower(c);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017082 l = utf_ptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017083 /* TODO: reallocate string when byte count changes. */
17084 if (utf_char2len(lc) == l)
17085 utf_char2bytes(lc, p);
17086 p += l;
17087 }
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017088 else if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017089 p += l; /* skip multi-byte character */
17090 else
17091#endif
17092 {
17093 *p = TOLOWER_LOC(*p); /* note that tolower() can be a macro */
17094 ++p;
17095 }
17096 }
17097}
17098
17099/*
17100 * "toupper(string)" function
17101 */
17102 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017103f_toupper(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017104 typval_T *argvars;
17105 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017106{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017107 rettv->v_type = VAR_STRING;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017108 rettv->vval.v_string = strup_save(get_tv_string(&argvars[0]));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017109}
17110
17111/*
Bram Moolenaar8299df92004-07-10 09:47:34 +000017112 * "tr(string, fromstr, tostr)" function
17113 */
17114 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017115f_tr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017116 typval_T *argvars;
17117 typval_T *rettv;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017118{
17119 char_u *instr;
17120 char_u *fromstr;
17121 char_u *tostr;
17122 char_u *p;
17123#ifdef FEAT_MBYTE
Bram Moolenaar342337a2005-07-21 21:11:17 +000017124 int inlen;
17125 int fromlen;
17126 int tolen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017127 int idx;
17128 char_u *cpstr;
17129 int cplen;
17130 int first = TRUE;
17131#endif
17132 char_u buf[NUMBUFLEN];
17133 char_u buf2[NUMBUFLEN];
17134 garray_T ga;
17135
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017136 instr = get_tv_string(&argvars[0]);
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017137 fromstr = get_tv_string_buf_chk(&argvars[1], buf);
17138 tostr = get_tv_string_buf_chk(&argvars[2], buf2);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017139
17140 /* Default return value: empty string. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017141 rettv->v_type = VAR_STRING;
17142 rettv->vval.v_string = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017143 if (fromstr == NULL || tostr == NULL)
17144 return; /* type error; errmsg already given */
Bram Moolenaar8299df92004-07-10 09:47:34 +000017145 ga_init2(&ga, (int)sizeof(char), 80);
17146
17147#ifdef FEAT_MBYTE
17148 if (!has_mbyte)
17149#endif
17150 /* not multi-byte: fromstr and tostr must be the same length */
17151 if (STRLEN(fromstr) != STRLEN(tostr))
17152 {
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017153#ifdef FEAT_MBYTE
Bram Moolenaar8299df92004-07-10 09:47:34 +000017154error:
Bram Moolenaar5eb86f92004-07-26 12:53:41 +000017155#endif
Bram Moolenaar8299df92004-07-10 09:47:34 +000017156 EMSG2(_(e_invarg2), fromstr);
17157 ga_clear(&ga);
17158 return;
17159 }
17160
17161 /* fromstr and tostr have to contain the same number of chars */
17162 while (*instr != NUL)
17163 {
17164#ifdef FEAT_MBYTE
17165 if (has_mbyte)
17166 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017167 inlen = (*mb_ptr2len)(instr);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017168 cpstr = instr;
17169 cplen = inlen;
17170 idx = 0;
17171 for (p = fromstr; *p != NUL; p += fromlen)
17172 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017173 fromlen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017174 if (fromlen == inlen && STRNCMP(instr, p, inlen) == 0)
17175 {
17176 for (p = tostr; *p != NUL; p += tolen)
17177 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017178 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017179 if (idx-- == 0)
17180 {
17181 cplen = tolen;
17182 cpstr = p;
17183 break;
17184 }
17185 }
17186 if (*p == NUL) /* tostr is shorter than fromstr */
17187 goto error;
17188 break;
17189 }
17190 ++idx;
17191 }
17192
17193 if (first && cpstr == instr)
17194 {
17195 /* Check that fromstr and tostr have the same number of
17196 * (multi-byte) characters. Done only once when a character
17197 * of instr doesn't appear in fromstr. */
17198 first = FALSE;
17199 for (p = tostr; *p != NUL; p += tolen)
17200 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000017201 tolen = (*mb_ptr2len)(p);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017202 --idx;
17203 }
17204 if (idx != 0)
17205 goto error;
17206 }
17207
17208 ga_grow(&ga, cplen);
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000017209 mch_memmove((char *)ga.ga_data + ga.ga_len, cpstr, (size_t)cplen);
Bram Moolenaar8299df92004-07-10 09:47:34 +000017210 ga.ga_len += cplen;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017211
17212 instr += inlen;
17213 }
17214 else
17215#endif
17216 {
17217 /* When not using multi-byte chars we can do it faster. */
17218 p = vim_strchr(fromstr, *instr);
17219 if (p != NULL)
17220 ga_append(&ga, tostr[p - fromstr]);
17221 else
17222 ga_append(&ga, *instr);
17223 ++instr;
17224 }
17225 }
17226
Bram Moolenaar61b974b2006-12-05 09:32:29 +000017227 /* add a terminating NUL */
17228 ga_grow(&ga, 1);
17229 ga_append(&ga, NUL);
17230
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017231 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar8299df92004-07-10 09:47:34 +000017232}
17233
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017234#ifdef FEAT_FLOAT
17235/*
17236 * "trunc({float})" function
17237 */
17238 static void
17239f_trunc(argvars, rettv)
17240 typval_T *argvars;
17241 typval_T *rettv;
17242{
17243 float_T f;
17244
17245 rettv->v_type = VAR_FLOAT;
17246 if (get_float_arg(argvars, &f) == OK)
17247 /* trunc() is not in C90, use floor() or ceil() instead. */
17248 rettv->vval.v_float = f > 0 ? floor(f) : ceil(f);
17249 else
17250 rettv->vval.v_float = 0.0;
17251}
17252#endif
17253
Bram Moolenaar8299df92004-07-10 09:47:34 +000017254/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017255 * "type(expr)" function
17256 */
17257 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017258f_type(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017259 typval_T *argvars;
17260 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017261{
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017262 int n;
17263
17264 switch (argvars[0].v_type)
17265 {
17266 case VAR_NUMBER: n = 0; break;
17267 case VAR_STRING: n = 1; break;
17268 case VAR_FUNC: n = 2; break;
17269 case VAR_LIST: n = 3; break;
Bram Moolenaar758711c2005-02-02 23:11:38 +000017270 case VAR_DICT: n = 4; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000017271#ifdef FEAT_FLOAT
17272 case VAR_FLOAT: n = 5; break;
17273#endif
Bram Moolenaar6cc16192005-01-08 21:49:45 +000017274 default: EMSG2(_(e_intern2), "f_type()"); n = 0; break;
17275 }
17276 rettv->vval.v_number = n;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017277}
17278
17279/*
Bram Moolenaar8c711452005-01-14 21:53:12 +000017280 * "values(dict)" function
17281 */
17282 static void
17283f_values(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017284 typval_T *argvars;
17285 typval_T *rettv;
Bram Moolenaar8c711452005-01-14 21:53:12 +000017286{
17287 dict_list(argvars, rettv, 1);
17288}
17289
17290/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017291 * "virtcol(string)" function
17292 */
17293 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017294f_virtcol(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017295 typval_T *argvars;
17296 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017297{
17298 colnr_T vcol = 0;
17299 pos_T *fp;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017300 int fnum = curbuf->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017301
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017302 fp = var2fpos(&argvars[0], FALSE, &fnum);
17303 if (fp != NULL && fp->lnum <= curbuf->b_ml.ml_line_count
17304 && fnum == curbuf->b_fnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017305 {
17306 getvvcol(curwin, fp, NULL, NULL, &vcol);
17307 ++vcol;
17308 }
17309
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017310 rettv->vval.v_number = vcol;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017311}
17312
17313/*
17314 * "visualmode()" function
17315 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017316 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017317f_visualmode(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017318 typval_T *argvars UNUSED;
17319 typval_T *rettv UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017320{
17321#ifdef FEAT_VISUAL
17322 char_u str[2];
17323
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017324 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017325 str[0] = curbuf->b_visual_mode_eval;
17326 str[1] = NUL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017327 rettv->vval.v_string = vim_strsave(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017328
17329 /* A non-zero number or non-empty string argument: reset mode. */
Bram Moolenaar05bb9532008-07-04 09:44:11 +000017330 if (non_zero_arg(&argvars[0]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000017331 curbuf->b_visual_mode_eval = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017332#endif
17333}
17334
17335/*
17336 * "winbufnr(nr)" function
17337 */
17338 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017339f_winbufnr(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017340 typval_T *argvars;
17341 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017342{
17343 win_T *wp;
17344
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017345 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017346 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017347 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017348 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017349 rettv->vval.v_number = wp->w_buffer->b_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017350}
17351
17352/*
17353 * "wincol()" function
17354 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017355 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017356f_wincol(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017357 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017358 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017359{
17360 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017361 rettv->vval.v_number = curwin->w_wcol + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017362}
17363
17364/*
17365 * "winheight(nr)" function
17366 */
17367 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017368f_winheight(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017369 typval_T *argvars;
17370 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017371{
17372 win_T *wp;
17373
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017374 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017375 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017376 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017377 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017378 rettv->vval.v_number = wp->w_height;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017379}
17380
17381/*
17382 * "winline()" function
17383 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017384 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017385f_winline(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017386 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017387 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017388{
17389 validate_cursor();
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017390 rettv->vval.v_number = curwin->w_wrow + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017391}
17392
17393/*
17394 * "winnr()" function
17395 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017396 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017397f_winnr(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017398 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017399 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017400{
17401 int nr = 1;
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017402
Bram Moolenaar071d4272004-06-13 20:20:40 +000017403#ifdef FEAT_WINDOWS
Bram Moolenaarfaa959a2006-02-20 21:37:40 +000017404 nr = get_winnr(curtab, &argvars[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017405#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017406 rettv->vval.v_number = nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017407}
17408
17409/*
17410 * "winrestcmd()" function
17411 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017412 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017413f_winrestcmd(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017414 typval_T *argvars UNUSED;
Bram Moolenaar33570922005-01-25 22:26:29 +000017415 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017416{
17417#ifdef FEAT_WINDOWS
17418 win_T *wp;
17419 int winnr = 1;
17420 garray_T ga;
17421 char_u buf[50];
17422
17423 ga_init2(&ga, (int)sizeof(char), 70);
17424 for (wp = firstwin; wp != NULL; wp = wp->w_next)
17425 {
17426 sprintf((char *)buf, "%dresize %d|", winnr, wp->w_height);
17427 ga_concat(&ga, buf);
17428# ifdef FEAT_VERTSPLIT
17429 sprintf((char *)buf, "vert %dresize %d|", winnr, wp->w_width);
17430 ga_concat(&ga, buf);
17431# endif
17432 ++winnr;
17433 }
Bram Moolenaar269ec652004-07-29 08:43:53 +000017434 ga_append(&ga, NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017435
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017436 rettv->vval.v_string = ga.ga_data;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017437#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017438 rettv->vval.v_string = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017439#endif
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017440 rettv->v_type = VAR_STRING;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017441}
17442
17443/*
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017444 * "winrestview()" function
17445 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017446 static void
17447f_winrestview(argvars, rettv)
17448 typval_T *argvars;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017449 typval_T *rettv UNUSED;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017450{
17451 dict_T *dict;
17452
17453 if (argvars[0].v_type != VAR_DICT
17454 || (dict = argvars[0].vval.v_dict) == NULL)
17455 EMSG(_(e_invarg));
17456 else
17457 {
17458 curwin->w_cursor.lnum = get_dict_number(dict, (char_u *)"lnum");
17459 curwin->w_cursor.col = get_dict_number(dict, (char_u *)"col");
17460#ifdef FEAT_VIRTUALEDIT
17461 curwin->w_cursor.coladd = get_dict_number(dict, (char_u *)"coladd");
17462#endif
17463 curwin->w_curswant = get_dict_number(dict, (char_u *)"curswant");
Bram Moolenaar362e1a32006-03-06 23:29:24 +000017464 curwin->w_set_curswant = FALSE;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017465
Bram Moolenaar6f11a412006-09-06 20:16:42 +000017466 set_topline(curwin, get_dict_number(dict, (char_u *)"topline"));
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017467#ifdef FEAT_DIFF
17468 curwin->w_topfill = get_dict_number(dict, (char_u *)"topfill");
17469#endif
17470 curwin->w_leftcol = get_dict_number(dict, (char_u *)"leftcol");
17471 curwin->w_skipcol = get_dict_number(dict, (char_u *)"skipcol");
17472
17473 check_cursor();
17474 changed_cline_bef_curs();
17475 invalidate_botline();
17476 redraw_later(VALID);
17477
17478 if (curwin->w_topline == 0)
17479 curwin->w_topline = 1;
17480 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
17481 curwin->w_topline = curbuf->b_ml.ml_line_count;
17482#ifdef FEAT_DIFF
17483 check_topfill(curwin, TRUE);
17484#endif
17485 }
17486}
17487
17488/*
17489 * "winsaveview()" function
17490 */
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017491 static void
17492f_winsaveview(argvars, rettv)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000017493 typval_T *argvars UNUSED;
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017494 typval_T *rettv;
17495{
17496 dict_T *dict;
17497
17498 dict = dict_alloc();
17499 if (dict == NULL)
17500 return;
17501 rettv->v_type = VAR_DICT;
17502 rettv->vval.v_dict = dict;
17503 ++dict->dv_refcount;
17504
17505 dict_add_nr_str(dict, "lnum", (long)curwin->w_cursor.lnum, NULL);
17506 dict_add_nr_str(dict, "col", (long)curwin->w_cursor.col, NULL);
17507#ifdef FEAT_VIRTUALEDIT
17508 dict_add_nr_str(dict, "coladd", (long)curwin->w_cursor.coladd, NULL);
17509#endif
Bram Moolenaar9af1ba92006-08-29 19:55:53 +000017510 update_curswant();
Bram Moolenaar768b8c42006-03-04 21:58:33 +000017511 dict_add_nr_str(dict, "curswant", (long)curwin->w_curswant, NULL);
17512
17513 dict_add_nr_str(dict, "topline", (long)curwin->w_topline, NULL);
17514#ifdef FEAT_DIFF
17515 dict_add_nr_str(dict, "topfill", (long)curwin->w_topfill, NULL);
17516#endif
17517 dict_add_nr_str(dict, "leftcol", (long)curwin->w_leftcol, NULL);
17518 dict_add_nr_str(dict, "skipcol", (long)curwin->w_skipcol, NULL);
17519}
17520
17521/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017522 * "winwidth(nr)" function
17523 */
17524 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017525f_winwidth(argvars, rettv)
Bram Moolenaar33570922005-01-25 22:26:29 +000017526 typval_T *argvars;
17527 typval_T *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017528{
17529 win_T *wp;
17530
Bram Moolenaar99ebf042006-04-15 20:28:54 +000017531 wp = find_win_by_nr(&argvars[0], NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017532 if (wp == NULL)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017533 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017534 else
17535#ifdef FEAT_VERTSPLIT
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017536 rettv->vval.v_number = wp->w_width;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017537#else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017538 rettv->vval.v_number = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017539#endif
17540}
17541
Bram Moolenaar071d4272004-06-13 20:20:40 +000017542/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017543 * "writefile()" function
17544 */
17545 static void
17546f_writefile(argvars, rettv)
17547 typval_T *argvars;
17548 typval_T *rettv;
17549{
17550 int binary = FALSE;
17551 char_u *fname;
17552 FILE *fd;
17553 listitem_T *li;
17554 char_u *s;
17555 int ret = 0;
17556 int c;
17557
Bram Moolenaard9fe7c42007-04-29 11:53:56 +000017558 if (check_restricted() || check_secure())
17559 return;
17560
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017561 if (argvars[0].v_type != VAR_LIST)
17562 {
17563 EMSG2(_(e_listarg), "writefile()");
17564 return;
17565 }
17566 if (argvars[0].vval.v_list == NULL)
17567 return;
17568
17569 if (argvars[2].v_type != VAR_UNKNOWN
17570 && STRCMP(get_tv_string(&argvars[2]), "b") == 0)
17571 binary = TRUE;
17572
17573 /* Always open the file in binary mode, library functions have a mind of
17574 * their own about CR-LF conversion. */
17575 fname = get_tv_string(&argvars[1]);
17576 if (*fname == NUL || (fd = mch_fopen((char *)fname, WRITEBIN)) == NULL)
17577 {
17578 EMSG2(_(e_notcreate), *fname == NUL ? (char_u *)_("<empty>") : fname);
17579 ret = -1;
17580 }
17581 else
17582 {
17583 for (li = argvars[0].vval.v_list->lv_first; li != NULL;
17584 li = li->li_next)
17585 {
17586 for (s = get_tv_string(&li->li_tv); *s != NUL; ++s)
17587 {
17588 if (*s == '\n')
17589 c = putc(NUL, fd);
17590 else
17591 c = putc(*s, fd);
17592 if (c == EOF)
17593 {
17594 ret = -1;
17595 break;
17596 }
17597 }
17598 if (!binary || li->li_next != NULL)
17599 if (putc('\n', fd) == EOF)
17600 {
17601 ret = -1;
17602 break;
17603 }
17604 if (ret < 0)
17605 {
17606 EMSG(_(e_write));
17607 break;
17608 }
17609 }
17610 fclose(fd);
17611 }
17612
17613 rettv->vval.v_number = ret;
17614}
17615
17616/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017617 * Translate a String variable into a position.
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017618 * Returns NULL when there is an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017619 */
17620 static pos_T *
Bram Moolenaar477933c2007-07-17 14:32:23 +000017621var2fpos(varp, dollar_lnum, fnum)
Bram Moolenaar33570922005-01-25 22:26:29 +000017622 typval_T *varp;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017623 int dollar_lnum; /* TRUE when $ is last line */
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017624 int *fnum; /* set to fnum for '0, 'A, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017625{
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017626 char_u *name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017627 static pos_T pos;
Bram Moolenaar261bfea2006-03-01 22:12:31 +000017628 pos_T *pp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017629
Bram Moolenaara5525202006-03-02 22:52:09 +000017630 /* Argument can be [lnum, col, coladd]. */
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017631 if (varp->v_type == VAR_LIST)
17632 {
17633 list_T *l;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017634 int len;
Bram Moolenaara5525202006-03-02 22:52:09 +000017635 int error = FALSE;
Bram Moolenaar477933c2007-07-17 14:32:23 +000017636 listitem_T *li;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017637
17638 l = varp->vval.v_list;
17639 if (l == NULL)
17640 return NULL;
17641
17642 /* Get the line number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017643 pos.lnum = list_find_nr(l, 0L, &error);
17644 if (error || pos.lnum <= 0 || pos.lnum > curbuf->b_ml.ml_line_count)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017645 return NULL; /* invalid line number */
17646
17647 /* Get the column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017648 pos.col = list_find_nr(l, 1L, &error);
17649 if (error)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017650 return NULL;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017651 len = (long)STRLEN(ml_get(pos.lnum));
Bram Moolenaar477933c2007-07-17 14:32:23 +000017652
17653 /* We accept "$" for the column number: last column. */
17654 li = list_find(l, 1L);
17655 if (li != NULL && li->li_tv.v_type == VAR_STRING
17656 && li->li_tv.vval.v_string != NULL
17657 && STRCMP(li->li_tv.vval.v_string, "$") == 0)
17658 pos.col = len + 1;
17659
Bram Moolenaara5525202006-03-02 22:52:09 +000017660 /* Accept a position up to the NUL after the line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +000017661 if (pos.col == 0 || (int)pos.col > len + 1)
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017662 return NULL; /* invalid column number */
Bram Moolenaara5525202006-03-02 22:52:09 +000017663 --pos.col;
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017664
Bram Moolenaara5525202006-03-02 22:52:09 +000017665#ifdef FEAT_VIRTUALEDIT
17666 /* Get the virtual offset. Defaults to zero. */
17667 pos.coladd = list_find_nr(l, 2L, &error);
17668 if (error)
17669 pos.coladd = 0;
17670#endif
17671
Bram Moolenaar32466aa2006-02-24 23:53:04 +000017672 return &pos;
17673 }
17674
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000017675 name = get_tv_string_chk(varp);
17676 if (name == NULL)
17677 return NULL;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017678 if (name[0] == '.') /* cursor */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017679 return &curwin->w_cursor;
Bram Moolenaar9ecd0232008-06-20 15:31:51 +000017680#ifdef FEAT_VISUAL
17681 if (name[0] == 'v' && name[1] == NUL) /* Visual start */
17682 {
17683 if (VIsual_active)
17684 return &VIsual;
17685 return &curwin->w_cursor;
17686 }
17687#endif
17688 if (name[0] == '\'') /* mark */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017689 {
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017690 pp = getmark_fnum(name[1], FALSE, fnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017691 if (pp == NULL || pp == (pos_T *)-1 || pp->lnum <= 0)
17692 return NULL;
17693 return pp;
17694 }
Bram Moolenaara5525202006-03-02 22:52:09 +000017695
17696#ifdef FEAT_VIRTUALEDIT
17697 pos.coladd = 0;
17698#endif
17699
Bram Moolenaar477933c2007-07-17 14:32:23 +000017700 if (name[0] == 'w' && dollar_lnum)
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017701 {
17702 pos.col = 0;
17703 if (name[1] == '0') /* "w0": first visible line */
17704 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017705 update_topline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017706 pos.lnum = curwin->w_topline;
17707 return &pos;
17708 }
17709 else if (name[1] == '$') /* "w$": last visible line */
17710 {
Bram Moolenaarf740b292006-02-16 22:11:02 +000017711 validate_botline();
Bram Moolenaarf52c7252006-02-10 23:23:57 +000017712 pos.lnum = curwin->w_botline - 1;
17713 return &pos;
17714 }
17715 }
17716 else if (name[0] == '$') /* last column or line */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017717 {
Bram Moolenaar477933c2007-07-17 14:32:23 +000017718 if (dollar_lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017719 {
17720 pos.lnum = curbuf->b_ml.ml_line_count;
17721 pos.col = 0;
17722 }
17723 else
17724 {
17725 pos.lnum = curwin->w_cursor.lnum;
17726 pos.col = (colnr_T)STRLEN(ml_get_curline());
17727 }
17728 return &pos;
17729 }
17730 return NULL;
17731}
17732
17733/*
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017734 * Convert list in "arg" into a position and optional file number.
17735 * When "fnump" is NULL there is no file number, only 3 items.
17736 * Note that the column is passed on as-is, the caller may want to decrement
17737 * it to use 1 for the first column.
17738 * Return FAIL when conversion is not possible, doesn't check the position for
17739 * validity.
17740 */
17741 static int
17742list2fpos(arg, posp, fnump)
17743 typval_T *arg;
17744 pos_T *posp;
17745 int *fnump;
17746{
17747 list_T *l = arg->vval.v_list;
17748 long i = 0;
17749 long n;
17750
Bram Moolenaarbde35262006-07-23 20:12:24 +000017751 /* List must be: [fnum, lnum, col, coladd], where "fnum" is only there
17752 * when "fnump" isn't NULL and "coladd" is optional. */
17753 if (arg->v_type != VAR_LIST
17754 || l == NULL
17755 || l->lv_len < (fnump == NULL ? 2 : 3)
17756 || l->lv_len > (fnump == NULL ? 3 : 4))
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017757 return FAIL;
17758
17759 if (fnump != NULL)
17760 {
17761 n = list_find_nr(l, i++, NULL); /* fnum */
17762 if (n < 0)
17763 return FAIL;
17764 if (n == 0)
17765 n = curbuf->b_fnum; /* current buffer */
17766 *fnump = n;
17767 }
17768
17769 n = list_find_nr(l, i++, NULL); /* lnum */
17770 if (n < 0)
17771 return FAIL;
17772 posp->lnum = n;
17773
17774 n = list_find_nr(l, i++, NULL); /* col */
17775 if (n < 0)
17776 return FAIL;
17777 posp->col = n;
17778
17779#ifdef FEAT_VIRTUALEDIT
17780 n = list_find_nr(l, i, NULL);
17781 if (n < 0)
Bram Moolenaarbde35262006-07-23 20:12:24 +000017782 posp->coladd = 0;
17783 else
17784 posp->coladd = n;
Bram Moolenaar0e34f622006-03-03 23:00:03 +000017785#endif
17786
17787 return OK;
17788}
17789
17790/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000017791 * Get the length of an environment variable name.
17792 * Advance "arg" to the first character after the name.
17793 * Return 0 for error.
17794 */
17795 static int
17796get_env_len(arg)
17797 char_u **arg;
17798{
17799 char_u *p;
17800 int len;
17801
17802 for (p = *arg; vim_isIDc(*p); ++p)
17803 ;
17804 if (p == *arg) /* no name found */
17805 return 0;
17806
17807 len = (int)(p - *arg);
17808 *arg = p;
17809 return len;
17810}
17811
17812/*
17813 * Get the length of the name of a function or internal variable.
17814 * "arg" is advanced to the first non-white character after the name.
17815 * Return 0 if something is wrong.
17816 */
17817 static int
17818get_id_len(arg)
17819 char_u **arg;
17820{
17821 char_u *p;
17822 int len;
17823
17824 /* Find the end of the name. */
17825 for (p = *arg; eval_isnamec(*p); ++p)
17826 ;
17827 if (p == *arg) /* no name found */
17828 return 0;
17829
17830 len = (int)(p - *arg);
17831 *arg = skipwhite(p);
17832
17833 return len;
17834}
17835
17836/*
Bram Moolenaara7043832005-01-21 11:56:39 +000017837 * Get the length of the name of a variable or function.
17838 * Only the name is recognized, does not handle ".key" or "[idx]".
Bram Moolenaar071d4272004-06-13 20:20:40 +000017839 * "arg" is advanced to the first non-white character after the name.
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017840 * Return -1 if curly braces expansion failed.
17841 * Return 0 if something else is wrong.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017842 * If the name contains 'magic' {}'s, expand them and return the
17843 * expanded name in an allocated string via 'alias' - caller must free.
17844 */
17845 static int
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017846get_name_len(arg, alias, evaluate, verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017847 char_u **arg;
17848 char_u **alias;
17849 int evaluate;
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017850 int verbose;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017851{
17852 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017853 char_u *p;
17854 char_u *expr_start;
17855 char_u *expr_end;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017856
17857 *alias = NULL; /* default to no alias */
17858
17859 if ((*arg)[0] == K_SPECIAL && (*arg)[1] == KS_EXTRA
17860 && (*arg)[2] == (int)KE_SNR)
17861 {
17862 /* hard coded <SNR>, already translated */
17863 *arg += 3;
17864 return get_id_len(arg) + 3;
17865 }
17866 len = eval_fname_script(*arg);
17867 if (len > 0)
17868 {
17869 /* literal "<SID>", "s:" or "<SNR>" */
17870 *arg += len;
17871 }
17872
Bram Moolenaar071d4272004-06-13 20:20:40 +000017873 /*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017874 * Find the end of the name; check for {} construction.
Bram Moolenaar071d4272004-06-13 20:20:40 +000017875 */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017876 p = find_name_end(*arg, &expr_start, &expr_end,
17877 len > 0 ? 0 : FNE_CHECK_START);
Bram Moolenaar071d4272004-06-13 20:20:40 +000017878 if (expr_start != NULL)
17879 {
17880 char_u *temp_string;
17881
17882 if (!evaluate)
17883 {
17884 len += (int)(p - *arg);
17885 *arg = skipwhite(p);
17886 return len;
17887 }
17888
17889 /*
17890 * Include any <SID> etc in the expanded string:
17891 * Thus the -len here.
17892 */
17893 temp_string = make_expanded_name(*arg - len, expr_start, expr_end, p);
17894 if (temp_string == NULL)
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017895 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017896 *alias = temp_string;
17897 *arg = skipwhite(p);
17898 return (int)STRLEN(temp_string);
17899 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017900
17901 len += get_id_len(arg);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017902 if (len == 0 && verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017903 EMSG2(_(e_invexpr2), *arg);
17904
17905 return len;
17906}
17907
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017908/*
17909 * Find the end of a variable or function name, taking care of magic braces.
17910 * If "expr_start" is not NULL then "expr_start" and "expr_end" are set to the
17911 * start and end of the first magic braces item.
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017912 * "flags" can have FNE_INCL_BR and FNE_CHECK_START.
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017913 * Return a pointer to just after the name. Equal to "arg" if there is no
17914 * valid name.
17915 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000017916 static char_u *
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017917find_name_end(arg, expr_start, expr_end, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017918 char_u *arg;
17919 char_u **expr_start;
17920 char_u **expr_end;
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017921 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017922{
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017923 int mb_nest = 0;
17924 int br_nest = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017925 char_u *p;
17926
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017927 if (expr_start != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017928 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017929 *expr_start = NULL;
17930 *expr_end = NULL;
17931 }
17932
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017933 /* Quick check for valid starting character. */
17934 if ((flags & FNE_CHECK_START) && !eval_isnamec1(*arg) && *arg != '{')
17935 return arg;
17936
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017937 for (p = arg; *p != NUL
17938 && (eval_isnamec(*p)
Bram Moolenaare9a41262005-01-15 22:18:47 +000017939 || *p == '{'
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000017940 || ((flags & FNE_INCL_BR) && (*p == '[' || *p == '.'))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017941 || mb_nest != 0
Bram Moolenaar8af24422005-08-08 22:06:28 +000017942 || br_nest != 0); mb_ptr_adv(p))
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017943 {
Bram Moolenaar8af24422005-08-08 22:06:28 +000017944 if (*p == '\'')
17945 {
17946 /* skip over 'string' to avoid counting [ and ] inside it. */
17947 for (p = p + 1; *p != NUL && *p != '\''; mb_ptr_adv(p))
17948 ;
17949 if (*p == NUL)
17950 break;
17951 }
17952 else if (*p == '"')
17953 {
17954 /* skip over "str\"ing" to avoid counting [ and ] inside it. */
17955 for (p = p + 1; *p != NUL && *p != '"'; mb_ptr_adv(p))
17956 if (*p == '\\' && p[1] != NUL)
17957 ++p;
17958 if (*p == NUL)
17959 break;
17960 }
17961
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017962 if (mb_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017963 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017964 if (*p == '[')
17965 ++br_nest;
17966 else if (*p == ']')
17967 --br_nest;
Bram Moolenaar071d4272004-06-13 20:20:40 +000017968 }
Bram Moolenaar8af24422005-08-08 22:06:28 +000017969
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017970 if (br_nest == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017971 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000017972 if (*p == '{')
17973 {
17974 mb_nest++;
17975 if (expr_start != NULL && *expr_start == NULL)
17976 *expr_start = p;
17977 }
17978 else if (*p == '}')
17979 {
17980 mb_nest--;
17981 if (expr_start != NULL && mb_nest == 0 && *expr_end == NULL)
17982 *expr_end = p;
17983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017984 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000017985 }
17986
17987 return p;
17988}
17989
17990/*
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000017991 * Expands out the 'magic' {}'s in a variable/function name.
17992 * Note that this can call itself recursively, to deal with
17993 * constructs like foo{bar}{baz}{bam}
17994 * The four pointer arguments point to "foo{expre}ss{ion}bar"
17995 * "in_start" ^
17996 * "expr_start" ^
17997 * "expr_end" ^
17998 * "in_end" ^
17999 *
18000 * Returns a new allocated string, which the caller must free.
18001 * Returns NULL for failure.
18002 */
18003 static char_u *
18004make_expanded_name(in_start, expr_start, expr_end, in_end)
18005 char_u *in_start;
18006 char_u *expr_start;
18007 char_u *expr_end;
18008 char_u *in_end;
18009{
18010 char_u c1;
18011 char_u *retval = NULL;
18012 char_u *temp_result;
18013 char_u *nextcmd = NULL;
18014
18015 if (expr_end == NULL || in_end == NULL)
18016 return NULL;
18017 *expr_start = NUL;
18018 *expr_end = NUL;
18019 c1 = *in_end;
18020 *in_end = NUL;
18021
Bram Moolenaar362e1a32006-03-06 23:29:24 +000018022 temp_result = eval_to_string(expr_start + 1, &nextcmd, FALSE);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018023 if (temp_result != NULL && nextcmd == NULL)
18024 {
18025 retval = alloc((unsigned)(STRLEN(temp_result) + (expr_start - in_start)
18026 + (in_end - expr_end) + 1));
18027 if (retval != NULL)
18028 {
18029 STRCPY(retval, in_start);
18030 STRCAT(retval, temp_result);
18031 STRCAT(retval, expr_end + 1);
18032 }
18033 }
18034 vim_free(temp_result);
18035
18036 *in_end = c1; /* put char back for error messages */
18037 *expr_start = '{';
18038 *expr_end = '}';
18039
18040 if (retval != NULL)
18041 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018042 temp_result = find_name_end(retval, &expr_start, &expr_end, 0);
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +000018043 if (expr_start != NULL)
18044 {
18045 /* Further expansion! */
18046 temp_result = make_expanded_name(retval, expr_start,
18047 expr_end, temp_result);
18048 vim_free(retval);
18049 retval = temp_result;
18050 }
18051 }
18052
18053 return retval;
18054}
18055
18056/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018057 * Return TRUE if character "c" can be used in a variable or function name.
Bram Moolenaare9a41262005-01-15 22:18:47 +000018058 * Does not include '{' or '}' for magic braces.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018059 */
18060 static int
18061eval_isnamec(c)
18062 int c;
18063{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000018064 return (ASCII_ISALNUM(c) || c == '_' || c == ':' || c == AUTOLOAD_CHAR);
18065}
18066
18067/*
18068 * Return TRUE if character "c" can be used as the first character in a
18069 * variable or function name (excluding '{' and '}').
18070 */
18071 static int
18072eval_isnamec1(c)
18073 int c;
18074{
18075 return (ASCII_ISALPHA(c) || c == '_');
Bram Moolenaar071d4272004-06-13 20:20:40 +000018076}
18077
18078/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000018079 * Set number v: variable to "val".
18080 */
18081 void
18082set_vim_var_nr(idx, val)
18083 int idx;
18084 long val;
18085{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018086 vimvars[idx].vv_nr = val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018087}
18088
18089/*
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018090 * Get number v: variable value.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018091 */
18092 long
18093get_vim_var_nr(idx)
18094 int idx;
18095{
Bram Moolenaare9a41262005-01-15 22:18:47 +000018096 return vimvars[idx].vv_nr;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018097}
18098
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018099/*
18100 * Get string v: variable value. Uses a static buffer, can only be used once.
18101 */
18102 char_u *
18103get_vim_var_str(idx)
18104 int idx;
18105{
18106 return get_tv_string(&vimvars[idx].vv_tv);
18107}
Bram Moolenaar19a09a12005-03-04 23:39:37 +000018108
Bram Moolenaar071d4272004-06-13 20:20:40 +000018109/*
Bram Moolenaard812df62008-11-09 12:46:09 +000018110 * Get List v: variable value. Caller must take care of reference count when
18111 * needed.
18112 */
18113 list_T *
18114get_vim_var_list(idx)
18115 int idx;
18116{
18117 return vimvars[idx].vv_list;
18118}
18119
18120/*
Bram Moolenaarda9591e2009-09-30 13:17:02 +000018121 * Set v:char to character "c".
18122 */
18123 void
18124set_vim_var_char(c)
18125 int c;
18126{
18127#ifdef FEAT_MBYTE
18128 char_u buf[MB_MAXBYTES];
18129#else
18130 char_u buf[2];
18131#endif
18132
18133#ifdef FEAT_MBYTE
18134 if (has_mbyte)
18135 buf[(*mb_char2bytes)(c, buf)] = NUL;
18136 else
18137#endif
18138 {
18139 buf[0] = c;
18140 buf[1] = NUL;
18141 }
18142 set_vim_var_string(VV_CHAR, buf, -1);
18143}
18144
18145/*
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018146 * Set v:count to "count" and v:count1 to "count1".
18147 * When "set_prevcount" is TRUE first set v:prevcount from v:count.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018148 */
18149 void
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018150set_vcount(count, count1, set_prevcount)
Bram Moolenaar071d4272004-06-13 20:20:40 +000018151 long count;
18152 long count1;
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018153 int set_prevcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018154{
Bram Moolenaar8df74be2008-11-20 15:12:02 +000018155 if (set_prevcount)
18156 vimvars[VV_PREVCOUNT].vv_nr = vimvars[VV_COUNT].vv_nr;
Bram Moolenaare9a41262005-01-15 22:18:47 +000018157 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);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000018934 dict->dv_refcount = DO_NOT_FREE_CNT;
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000018935 dict->dv_copyID = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000018936 dict_var->di_tv.vval.v_dict = dict;
18937 dict_var->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000018938 dict_var->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000018939 dict_var->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
18940 dict_var->di_key[0] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018941}
18942
18943/*
18944 * Clean up a list of internal variables.
Bram Moolenaar33570922005-01-25 22:26:29 +000018945 * Frees all allocated variables and the value they contain.
18946 * Clears hashtab "ht", does not free it.
Bram Moolenaar071d4272004-06-13 20:20:40 +000018947 */
18948 void
Bram Moolenaara7043832005-01-21 11:56:39 +000018949vars_clear(ht)
Bram Moolenaar33570922005-01-25 22:26:29 +000018950 hashtab_T *ht;
18951{
18952 vars_clear_ext(ht, TRUE);
18953}
18954
18955/*
18956 * Like vars_clear(), but only free the value if "free_val" is TRUE.
18957 */
18958 static void
18959vars_clear_ext(ht, free_val)
18960 hashtab_T *ht;
18961 int free_val;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018962{
Bram Moolenaara7043832005-01-21 11:56:39 +000018963 int todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000018964 hashitem_T *hi;
18965 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018966
Bram Moolenaar33570922005-01-25 22:26:29 +000018967 hash_lock(ht);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000018968 todo = (int)ht->ht_used;
Bram Moolenaara7043832005-01-21 11:56:39 +000018969 for (hi = ht->ht_array; todo > 0; ++hi)
18970 {
18971 if (!HASHITEM_EMPTY(hi))
18972 {
18973 --todo;
18974
Bram Moolenaar33570922005-01-25 22:26:29 +000018975 /* Free the variable. Don't remove it from the hashtab,
Bram Moolenaara7043832005-01-21 11:56:39 +000018976 * ht_array might change then. hash_clear() takes care of it
18977 * later. */
Bram Moolenaar33570922005-01-25 22:26:29 +000018978 v = HI2DI(hi);
18979 if (free_val)
18980 clear_tv(&v->di_tv);
18981 if ((v->di_flags & DI_FLAGS_FIX) == 0)
18982 vim_free(v);
Bram Moolenaara7043832005-01-21 11:56:39 +000018983 }
18984 }
18985 hash_clear(ht);
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000018986 ht->ht_used = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018987}
18988
Bram Moolenaara7043832005-01-21 11:56:39 +000018989/*
Bram Moolenaar33570922005-01-25 22:26:29 +000018990 * Delete a variable from hashtab "ht" at item "hi".
18991 * Clear the variable value and free the dictitem.
Bram Moolenaara7043832005-01-21 11:56:39 +000018992 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000018993 static void
Bram Moolenaara7043832005-01-21 11:56:39 +000018994delete_var(ht, hi)
Bram Moolenaar33570922005-01-25 22:26:29 +000018995 hashtab_T *ht;
18996 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000018997{
Bram Moolenaar33570922005-01-25 22:26:29 +000018998 dictitem_T *di = HI2DI(hi);
Bram Moolenaara7043832005-01-21 11:56:39 +000018999
19000 hash_remove(ht, hi);
Bram Moolenaar33570922005-01-25 22:26:29 +000019001 clear_tv(&di->di_tv);
19002 vim_free(di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019003}
19004
19005/*
19006 * List the value of one internal variable.
19007 */
19008 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019009list_one_var(v, prefix, first)
Bram Moolenaar33570922005-01-25 22:26:29 +000019010 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019011 char_u *prefix;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019012 int *first;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019013{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019014 char_u *tofree;
19015 char_u *s;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019016 char_u numbuf[NUMBUFLEN];
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019017
Bram Moolenaar2c2398c2009-06-03 11:22:45 +000019018 current_copyID += COPYID_INC;
19019 s = echo_string(&v->di_tv, &tofree, numbuf, current_copyID);
Bram Moolenaar33570922005-01-25 22:26:29 +000019020 list_one_var_a(prefix, v->di_key, v->di_tv.v_type,
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019021 s == NULL ? (char_u *)"" : s, first);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019022 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019023}
19024
Bram Moolenaar071d4272004-06-13 20:20:40 +000019025 static void
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019026list_one_var_a(prefix, name, type, string, first)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019027 char_u *prefix;
19028 char_u *name;
19029 int type;
19030 char_u *string;
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019031 int *first; /* when TRUE clear rest of screen and set to FALSE */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019032{
Bram Moolenaar31859182007-08-14 20:41:13 +000019033 /* don't use msg() or msg_attr() to avoid overwriting "v:statusmsg" */
19034 msg_start();
19035 msg_puts(prefix);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019036 if (name != NULL) /* "a:" vars don't have a name stored */
19037 msg_puts(name);
19038 msg_putchar(' ');
19039 msg_advance(22);
19040 if (type == VAR_NUMBER)
19041 msg_putchar('#');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019042 else if (type == VAR_FUNC)
19043 msg_putchar('*');
19044 else if (type == VAR_LIST)
19045 {
19046 msg_putchar('[');
19047 if (*string == '[')
19048 ++string;
19049 }
Bram Moolenaar8c711452005-01-14 21:53:12 +000019050 else if (type == VAR_DICT)
19051 {
19052 msg_putchar('{');
19053 if (*string == '{')
19054 ++string;
19055 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019056 else
19057 msg_putchar(' ');
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019058
Bram Moolenaar071d4272004-06-13 20:20:40 +000019059 msg_outtrans(string);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019060
19061 if (type == VAR_FUNC)
19062 msg_puts((char_u *)"()");
Bram Moolenaar7d61a922007-08-30 09:12:23 +000019063 if (*first)
19064 {
19065 msg_clr_eos();
19066 *first = FALSE;
19067 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019068}
19069
19070/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019071 * Set variable "name" to value in "tv".
Bram Moolenaar071d4272004-06-13 20:20:40 +000019072 * If the variable already exists, the value is updated.
19073 * Otherwise the variable is created.
19074 */
19075 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019076set_var(name, tv, copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019077 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000019078 typval_T *tv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019079 int copy; /* make copy of value in "tv" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019080{
Bram Moolenaar33570922005-01-25 22:26:29 +000019081 dictitem_T *v;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019082 char_u *varname;
Bram Moolenaar33570922005-01-25 22:26:29 +000019083 hashtab_T *ht;
Bram Moolenaar92124a32005-06-17 22:03:40 +000019084 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019085
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019086 if (tv->v_type == VAR_FUNC)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019087 {
19088 if (!(vim_strchr((char_u *)"wbs", name[0]) != NULL && name[1] == ':')
19089 && !ASCII_ISUPPER((name[0] != NUL && name[1] == ':')
19090 ? name[2] : name[0]))
19091 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019092 EMSG2(_("E704: Funcref variable name must start with a capital: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019093 return;
19094 }
19095 if (function_exists(name))
19096 {
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +000019097 EMSG2(_("E705: Variable name conflicts with existing function: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019098 name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019099 return;
19100 }
19101 }
19102
Bram Moolenaara7043832005-01-21 11:56:39 +000019103 ht = find_var_ht(name, &varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019104 if (ht == NULL || *varname == NUL)
Bram Moolenaara7043832005-01-21 11:56:39 +000019105 {
Bram Moolenaar92124a32005-06-17 22:03:40 +000019106 EMSG2(_(e_illvar), name);
Bram Moolenaara7043832005-01-21 11:56:39 +000019107 return;
19108 }
19109
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019110 v = find_var_in_ht(ht, varname, TRUE);
Bram Moolenaar33570922005-01-25 22:26:29 +000019111 if (v != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019112 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019113 /* existing variable, need to clear the value */
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019114 if (var_check_ro(v->di_flags, name)
19115 || tv_check_lock(v->di_tv.v_lock, name))
Bram Moolenaar33570922005-01-25 22:26:29 +000019116 return;
19117 if (v->di_tv.v_type != tv->v_type
19118 && !((v->di_tv.v_type == VAR_STRING
19119 || v->di_tv.v_type == VAR_NUMBER)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019120 && (tv->v_type == VAR_STRING
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019121 || tv->v_type == VAR_NUMBER))
19122#ifdef FEAT_FLOAT
19123 && !((v->di_tv.v_type == VAR_NUMBER
19124 || v->di_tv.v_type == VAR_FLOAT)
19125 && (tv->v_type == VAR_NUMBER
19126 || tv->v_type == VAR_FLOAT))
19127#endif
19128 )
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019129 {
Bram Moolenaare49b69a2005-01-08 16:11:57 +000019130 EMSG2(_("E706: Variable type mismatch for: %s"), name);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019131 return;
19132 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019133
19134 /*
Bram Moolenaar758711c2005-02-02 23:11:38 +000019135 * Handle setting internal v: variables separately: we don't change
19136 * the type.
Bram Moolenaar33570922005-01-25 22:26:29 +000019137 */
19138 if (ht == &vimvarht)
19139 {
19140 if (v->di_tv.v_type == VAR_STRING)
19141 {
19142 vim_free(v->di_tv.vval.v_string);
19143 if (copy || tv->v_type != VAR_STRING)
19144 v->di_tv.vval.v_string = vim_strsave(get_tv_string(tv));
19145 else
19146 {
19147 /* Take over the string to avoid an extra alloc/free. */
19148 v->di_tv.vval.v_string = tv->vval.v_string;
19149 tv->vval.v_string = NULL;
19150 }
19151 }
19152 else if (v->di_tv.v_type != VAR_NUMBER)
19153 EMSG2(_(e_intern2), "set_var()");
19154 else
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019155 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019156 v->di_tv.vval.v_number = get_tv_number(tv);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019157 if (STRCMP(varname, "searchforward") == 0)
19158 set_search_direction(v->di_tv.vval.v_number ? '/' : '?');
19159 }
Bram Moolenaar33570922005-01-25 22:26:29 +000019160 return;
19161 }
19162
19163 clear_tv(&v->di_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019164 }
19165 else /* add a new variable */
19166 {
Bram Moolenaar5fcc3fe2006-06-22 15:35:14 +000019167 /* Can't add "v:" variable. */
19168 if (ht == &vimvarht)
19169 {
19170 EMSG2(_(e_illvar), name);
19171 return;
19172 }
19173
Bram Moolenaar92124a32005-06-17 22:03:40 +000019174 /* Make sure the variable name is valid. */
19175 for (p = varname; *p != NUL; ++p)
Bram Moolenaara5792f52005-11-23 21:25:05 +000019176 if (!eval_isnamec1(*p) && (p == varname || !VIM_ISDIGIT(*p))
19177 && *p != AUTOLOAD_CHAR)
Bram Moolenaar92124a32005-06-17 22:03:40 +000019178 {
19179 EMSG2(_(e_illvar), varname);
19180 return;
19181 }
19182
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019183 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
19184 + STRLEN(varname)));
Bram Moolenaara7043832005-01-21 11:56:39 +000019185 if (v == NULL)
19186 return;
Bram Moolenaar33570922005-01-25 22:26:29 +000019187 STRCPY(v->di_key, varname);
Bram Moolenaar33570922005-01-25 22:26:29 +000019188 if (hash_add(ht, DI2HIKEY(v)) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019189 {
Bram Moolenaara7043832005-01-21 11:56:39 +000019190 vim_free(v);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019191 return;
19192 }
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019193 v->di_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019194 }
Bram Moolenaara7043832005-01-21 11:56:39 +000019195
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019196 if (copy || tv->v_type == VAR_NUMBER || tv->v_type == VAR_FLOAT)
Bram Moolenaar33570922005-01-25 22:26:29 +000019197 copy_tv(tv, &v->di_tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019198 else
19199 {
Bram Moolenaar33570922005-01-25 22:26:29 +000019200 v->di_tv = *tv;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019201 v->di_tv.v_lock = 0;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019202 init_tv(tv);
Bram Moolenaar1c2fda22005-01-02 11:43:19 +000019203 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019204}
19205
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019206/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019207 * Return TRUE if di_flags "flags" indicates variable "name" is read-only.
Bram Moolenaar33570922005-01-25 22:26:29 +000019208 * Also give an error message.
19209 */
19210 static int
19211var_check_ro(flags, name)
19212 int flags;
19213 char_u *name;
19214{
19215 if (flags & DI_FLAGS_RO)
19216 {
19217 EMSG2(_(e_readonlyvar), name);
19218 return TRUE;
19219 }
19220 if ((flags & DI_FLAGS_RO_SBX) && sandbox)
19221 {
19222 EMSG2(_(e_readonlysbx), name);
19223 return TRUE;
19224 }
19225 return FALSE;
19226}
19227
19228/*
Bram Moolenaar4e957af2006-09-02 11:41:07 +000019229 * Return TRUE if di_flags "flags" indicates variable "name" is fixed.
19230 * Also give an error message.
19231 */
19232 static int
19233var_check_fixed(flags, name)
19234 int flags;
19235 char_u *name;
19236{
19237 if (flags & DI_FLAGS_FIX)
19238 {
19239 EMSG2(_("E795: Cannot delete variable %s"), name);
19240 return TRUE;
19241 }
19242 return FALSE;
19243}
19244
19245/*
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019246 * Return TRUE if typeval "tv" is set to be locked (immutable).
19247 * Also give an error message, using "name".
19248 */
19249 static int
19250tv_check_lock(lock, name)
19251 int lock;
19252 char_u *name;
19253{
19254 if (lock & VAR_LOCKED)
19255 {
19256 EMSG2(_("E741: Value is locked: %s"),
19257 name == NULL ? (char_u *)_("Unknown") : name);
19258 return TRUE;
19259 }
19260 if (lock & VAR_FIXED)
19261 {
19262 EMSG2(_("E742: Cannot change value of %s"),
19263 name == NULL ? (char_u *)_("Unknown") : name);
19264 return TRUE;
19265 }
19266 return FALSE;
19267}
19268
19269/*
Bram Moolenaar33570922005-01-25 22:26:29 +000019270 * Copy the values from typval_T "from" to typval_T "to".
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019271 * When needed allocates string or increases reference count.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019272 * Does not make a copy of a list or dict but copies the reference!
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000019273 * It is OK for "from" and "to" to point to the same item. This is used to
19274 * make a copy later.
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019275 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019276 static void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019277copy_tv(from, to)
Bram Moolenaar33570922005-01-25 22:26:29 +000019278 typval_T *from;
19279 typval_T *to;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019280{
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019281 to->v_type = from->v_type;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019282 to->v_lock = 0;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019283 switch (from->v_type)
19284 {
19285 case VAR_NUMBER:
19286 to->vval.v_number = from->vval.v_number;
19287 break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019288#ifdef FEAT_FLOAT
19289 case VAR_FLOAT:
19290 to->vval.v_float = from->vval.v_float;
19291 break;
19292#endif
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019293 case VAR_STRING:
19294 case VAR_FUNC:
19295 if (from->vval.v_string == NULL)
19296 to->vval.v_string = NULL;
19297 else
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019298 {
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019299 to->vval.v_string = vim_strsave(from->vval.v_string);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019300 if (from->v_type == VAR_FUNC)
19301 func_ref(to->vval.v_string);
19302 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019303 break;
19304 case VAR_LIST:
19305 if (from->vval.v_list == NULL)
19306 to->vval.v_list = NULL;
19307 else
19308 {
19309 to->vval.v_list = from->vval.v_list;
19310 ++to->vval.v_list->lv_refcount;
19311 }
19312 break;
Bram Moolenaar8c711452005-01-14 21:53:12 +000019313 case VAR_DICT:
19314 if (from->vval.v_dict == NULL)
19315 to->vval.v_dict = NULL;
19316 else
19317 {
19318 to->vval.v_dict = from->vval.v_dict;
19319 ++to->vval.v_dict->dv_refcount;
19320 }
19321 break;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019322 default:
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019323 EMSG2(_(e_intern2), "copy_tv()");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019324 break;
19325 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019326}
19327
19328/*
Bram Moolenaare9a41262005-01-15 22:18:47 +000019329 * Make a copy of an item.
19330 * Lists and Dictionaries are also copied. A deep copy if "deep" is set.
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019331 * For deepcopy() "copyID" is zero for a full copy or the ID for when a
19332 * reference to an already copied list/dict can be used.
19333 * Returns FAIL or OK.
Bram Moolenaare9a41262005-01-15 22:18:47 +000019334 */
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019335 static int
19336item_copy(from, to, deep, copyID)
Bram Moolenaar33570922005-01-25 22:26:29 +000019337 typval_T *from;
19338 typval_T *to;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019339 int deep;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019340 int copyID;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019341{
19342 static int recurse = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019343 int ret = OK;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019344
Bram Moolenaar33570922005-01-25 22:26:29 +000019345 if (recurse >= DICT_MAXNEST)
Bram Moolenaare9a41262005-01-15 22:18:47 +000019346 {
19347 EMSG(_("E698: variable nested too deep for making a copy"));
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019348 return FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019349 }
19350 ++recurse;
19351
19352 switch (from->v_type)
19353 {
19354 case VAR_NUMBER:
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019355#ifdef FEAT_FLOAT
19356 case VAR_FLOAT:
19357#endif
Bram Moolenaare9a41262005-01-15 22:18:47 +000019358 case VAR_STRING:
19359 case VAR_FUNC:
19360 copy_tv(from, to);
19361 break;
19362 case VAR_LIST:
19363 to->v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019364 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019365 if (from->vval.v_list == NULL)
19366 to->vval.v_list = NULL;
19367 else if (copyID != 0 && from->vval.v_list->lv_copyID == copyID)
19368 {
19369 /* use the copy made earlier */
19370 to->vval.v_list = from->vval.v_list->lv_copylist;
19371 ++to->vval.v_list->lv_refcount;
19372 }
19373 else
19374 to->vval.v_list = list_copy(from->vval.v_list, deep, copyID);
19375 if (to->vval.v_list == NULL)
19376 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019377 break;
19378 case VAR_DICT:
19379 to->v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000019380 to->v_lock = 0;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019381 if (from->vval.v_dict == NULL)
19382 to->vval.v_dict = NULL;
19383 else if (copyID != 0 && from->vval.v_dict->dv_copyID == copyID)
19384 {
19385 /* use the copy made earlier */
19386 to->vval.v_dict = from->vval.v_dict->dv_copydict;
19387 ++to->vval.v_dict->dv_refcount;
19388 }
19389 else
19390 to->vval.v_dict = dict_copy(from->vval.v_dict, deep, copyID);
19391 if (to->vval.v_dict == NULL)
19392 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019393 break;
19394 default:
19395 EMSG2(_(e_intern2), "item_copy()");
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019396 ret = FAIL;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019397 }
19398 --recurse;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019399 return ret;
Bram Moolenaare9a41262005-01-15 22:18:47 +000019400}
19401
19402/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000019403 * ":echo expr1 ..." print each argument separated with a space, add a
19404 * newline at the end.
19405 * ":echon expr1 ..." print each argument plain.
19406 */
19407 void
19408ex_echo(eap)
19409 exarg_T *eap;
19410{
19411 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019412 typval_T rettv;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019413 char_u *tofree;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019414 char_u *p;
19415 int needclr = TRUE;
19416 int atstart = TRUE;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000019417 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000019418
19419 if (eap->skip)
19420 ++emsg_skip;
19421 while (*arg != NUL && *arg != '|' && *arg != '\n' && !got_int)
19422 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019423 /* If eval1() causes an error message the text from the command may
19424 * still need to be cleared. E.g., "echo 22,44". */
19425 need_clr_eos = needclr;
19426
Bram Moolenaar071d4272004-06-13 20:20:40 +000019427 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019428 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019429 {
19430 /*
19431 * Report the invalid expression unless the expression evaluation
19432 * has been cancelled due to an aborting error, an interrupt, or an
19433 * exception.
19434 */
19435 if (!aborting())
19436 EMSG2(_(e_invexpr2), p);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019437 need_clr_eos = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019438 break;
19439 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000019440 need_clr_eos = FALSE;
19441
Bram Moolenaar071d4272004-06-13 20:20:40 +000019442 if (!eap->skip)
19443 {
19444 if (atstart)
19445 {
19446 atstart = FALSE;
19447 /* Call msg_start() after eval1(), evaluating the expression
19448 * may cause a message to appear. */
19449 if (eap->cmdidx == CMD_echo)
19450 msg_start();
19451 }
19452 else if (eap->cmdidx == CMD_echo)
19453 msg_puts_attr((char_u *)" ", echo_attr);
Bram Moolenaar2c2398c2009-06-03 11:22:45 +000019454 current_copyID += COPYID_INC;
19455 p = echo_string(&rettv, &tofree, numbuf, current_copyID);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019456 if (p != NULL)
19457 for ( ; *p != NUL && !got_int; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019458 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019459 if (*p == '\n' || *p == '\r' || *p == TAB)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019460 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019461 if (*p != TAB && needclr)
19462 {
19463 /* remove any text still there from the command */
19464 msg_clr_eos();
19465 needclr = FALSE;
19466 }
19467 msg_putchar_attr(*p, echo_attr);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019468 }
19469 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019470 {
19471#ifdef FEAT_MBYTE
19472 if (has_mbyte)
19473 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000019474 int i = (*mb_ptr2len)(p);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019475
19476 (void)msg_outtrans_len_attr(p, i, echo_attr);
19477 p += i - 1;
19478 }
19479 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000019480#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019481 (void)msg_outtrans_len_attr(p, 1, echo_attr);
19482 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019483 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000019484 vim_free(tofree);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019485 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019486 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019487 arg = skipwhite(arg);
19488 }
19489 eap->nextcmd = check_nextcmd(arg);
19490
19491 if (eap->skip)
19492 --emsg_skip;
19493 else
19494 {
19495 /* remove text that may still be there from the command */
19496 if (needclr)
19497 msg_clr_eos();
19498 if (eap->cmdidx == CMD_echo)
19499 msg_end();
19500 }
19501}
19502
19503/*
19504 * ":echohl {name}".
19505 */
19506 void
19507ex_echohl(eap)
19508 exarg_T *eap;
19509{
19510 int id;
19511
19512 id = syn_name2id(eap->arg);
19513 if (id == 0)
19514 echo_attr = 0;
19515 else
19516 echo_attr = syn_id2attr(id);
19517}
19518
19519/*
19520 * ":execute expr1 ..." execute the result of an expression.
19521 * ":echomsg expr1 ..." Print a message
19522 * ":echoerr expr1 ..." Print an error
19523 * Each gets spaces around each argument and a newline at the end for
19524 * echo commands
19525 */
19526 void
19527ex_execute(eap)
19528 exarg_T *eap;
19529{
19530 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000019531 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019532 int ret = OK;
19533 char_u *p;
19534 garray_T ga;
19535 int len;
19536 int save_did_emsg;
19537
19538 ga_init2(&ga, 1, 80);
19539
19540 if (eap->skip)
19541 ++emsg_skip;
19542 while (*arg != NUL && *arg != '|' && *arg != '\n')
19543 {
19544 p = arg;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019545 if (eval1(&arg, &rettv, !eap->skip) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019546 {
19547 /*
19548 * Report the invalid expression unless the expression evaluation
19549 * has been cancelled due to an aborting error, an interrupt, or an
19550 * exception.
19551 */
19552 if (!aborting())
19553 EMSG2(_(e_invexpr2), p);
19554 ret = FAIL;
19555 break;
19556 }
19557
19558 if (!eap->skip)
19559 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019560 p = get_tv_string(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019561 len = (int)STRLEN(p);
19562 if (ga_grow(&ga, len + 2) == FAIL)
19563 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019564 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019565 ret = FAIL;
19566 break;
19567 }
19568 if (ga.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019569 ((char_u *)(ga.ga_data))[ga.ga_len++] = ' ';
Bram Moolenaar071d4272004-06-13 20:20:40 +000019570 STRCPY((char_u *)(ga.ga_data) + ga.ga_len, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019571 ga.ga_len += len;
19572 }
19573
Bram Moolenaarc70646c2005-01-04 21:52:38 +000019574 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019575 arg = skipwhite(arg);
19576 }
19577
19578 if (ret != FAIL && ga.ga_data != NULL)
19579 {
19580 if (eap->cmdidx == CMD_echomsg)
Bram Moolenaar4770d092006-01-12 23:22:24 +000019581 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000019582 MSG_ATTR(ga.ga_data, echo_attr);
Bram Moolenaar4770d092006-01-12 23:22:24 +000019583 out_flush();
19584 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019585 else if (eap->cmdidx == CMD_echoerr)
19586 {
19587 /* We don't want to abort following commands, restore did_emsg. */
19588 save_did_emsg = did_emsg;
19589 EMSG((char_u *)ga.ga_data);
19590 if (!force_abort)
19591 did_emsg = save_did_emsg;
19592 }
19593 else if (eap->cmdidx == CMD_execute)
19594 do_cmdline((char_u *)ga.ga_data,
19595 eap->getline, eap->cookie, DOCMD_NOWAIT|DOCMD_VERBOSE);
19596 }
19597
19598 ga_clear(&ga);
19599
19600 if (eap->skip)
19601 --emsg_skip;
19602
19603 eap->nextcmd = check_nextcmd(arg);
19604}
19605
19606/*
19607 * Skip over the name of an option: "&option", "&g:option" or "&l:option".
19608 * "arg" points to the "&" or '+' when called, to "option" when returning.
19609 * Returns NULL when no option name found. Otherwise pointer to the char
19610 * after the option name.
19611 */
19612 static char_u *
19613find_option_end(arg, opt_flags)
19614 char_u **arg;
19615 int *opt_flags;
19616{
19617 char_u *p = *arg;
19618
19619 ++p;
19620 if (*p == 'g' && p[1] == ':')
19621 {
19622 *opt_flags = OPT_GLOBAL;
19623 p += 2;
19624 }
19625 else if (*p == 'l' && p[1] == ':')
19626 {
19627 *opt_flags = OPT_LOCAL;
19628 p += 2;
19629 }
19630 else
19631 *opt_flags = 0;
19632
19633 if (!ASCII_ISALPHA(*p))
19634 return NULL;
19635 *arg = p;
19636
19637 if (p[0] == 't' && p[1] == '_' && p[2] != NUL && p[3] != NUL)
19638 p += 4; /* termcap option */
19639 else
19640 while (ASCII_ISALPHA(*p))
19641 ++p;
19642 return p;
19643}
19644
19645/*
19646 * ":function"
19647 */
19648 void
19649ex_function(eap)
19650 exarg_T *eap;
19651{
19652 char_u *theline;
19653 int j;
19654 int c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019655 int saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019656 char_u *name = NULL;
19657 char_u *p;
19658 char_u *arg;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019659 char_u *line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019660 garray_T newargs;
19661 garray_T newlines;
19662 int varargs = FALSE;
19663 int mustend = FALSE;
19664 int flags = 0;
19665 ufunc_T *fp;
19666 int indent;
19667 int nesting;
19668 char_u *skip_until = NULL;
Bram Moolenaar33570922005-01-25 22:26:29 +000019669 dictitem_T *v;
19670 funcdict_T fudi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019671 static int func_nr = 0; /* number for nameless function */
19672 int paren;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019673 hashtab_T *ht;
19674 int todo;
19675 hashitem_T *hi;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019676 int sourcing_lnum_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019677
19678 /*
19679 * ":function" without argument: list functions.
19680 */
19681 if (ends_excmd(*eap->arg))
19682 {
19683 if (!eap->skip)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019684 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019685 todo = (int)func_hashtab.ht_used;
Bram Moolenaar038eb0e2005-02-27 22:43:26 +000019686 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019687 {
19688 if (!HASHITEM_EMPTY(hi))
19689 {
19690 --todo;
19691 fp = HI2UF(hi);
19692 if (!isdigit(*fp->uf_name))
19693 list_func_head(fp, FALSE);
19694 }
19695 }
19696 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019697 eap->nextcmd = check_nextcmd(eap->arg);
19698 return;
19699 }
19700
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019701 /*
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019702 * ":function /pat": list functions matching pattern.
19703 */
19704 if (*eap->arg == '/')
19705 {
19706 p = skip_regexp(eap->arg + 1, '/', TRUE, NULL);
19707 if (!eap->skip)
19708 {
19709 regmatch_T regmatch;
19710
19711 c = *p;
19712 *p = NUL;
19713 regmatch.regprog = vim_regcomp(eap->arg + 1, RE_MAGIC);
19714 *p = c;
19715 if (regmatch.regprog != NULL)
19716 {
19717 regmatch.rm_ic = p_ic;
19718
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000019719 todo = (int)func_hashtab.ht_used;
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019720 for (hi = func_hashtab.ht_array; todo > 0 && !got_int; ++hi)
19721 {
19722 if (!HASHITEM_EMPTY(hi))
19723 {
19724 --todo;
19725 fp = HI2UF(hi);
19726 if (!isdigit(*fp->uf_name)
19727 && vim_regexec(&regmatch, fp->uf_name, 0))
19728 list_func_head(fp, FALSE);
19729 }
19730 }
Bram Moolenaar69f2d5a2009-04-22 14:10:39 +000019731 vim_free(regmatch.regprog);
Bram Moolenaardd2436f2005-09-05 22:14:46 +000019732 }
19733 }
19734 if (*p == '/')
19735 ++p;
19736 eap->nextcmd = check_nextcmd(p);
19737 return;
19738 }
19739
19740 /*
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019741 * Get the function name. There are these situations:
19742 * func normal function name
19743 * "name" == func, "fudi.fd_dict" == NULL
19744 * dict.func new dictionary entry
19745 * "name" == NULL, "fudi.fd_dict" set,
19746 * "fudi.fd_di" == NULL, "fudi.fd_newkey" == func
19747 * dict.func existing dict entry with a Funcref
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019748 * "name" == func, "fudi.fd_dict" set,
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019749 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19750 * dict.func existing dict entry that's not a Funcref
19751 * "name" == NULL, "fudi.fd_dict" set,
19752 * "fudi.fd_di" set, "fudi.fd_newkey" == NULL
19753 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019754 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019755 name = trans_function_name(&p, eap->skip, 0, &fudi);
19756 paren = (vim_strchr(p, '(') != NULL);
19757 if (name == NULL && (fudi.fd_dict == NULL || !paren) && !eap->skip)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019758 {
19759 /*
19760 * Return on an invalid expression in braces, unless the expression
19761 * evaluation has been cancelled due to an aborting error, an
19762 * interrupt, or an exception.
19763 */
19764 if (!aborting())
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019765 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000019766 if (!eap->skip && fudi.fd_newkey != NULL)
19767 EMSG2(_(e_dictkey), fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019768 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019769 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019770 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019771 else
19772 eap->skip = TRUE;
19773 }
Bram Moolenaar1f35bf92006-03-07 22:38:47 +000019774
Bram Moolenaar071d4272004-06-13 20:20:40 +000019775 /* An error in a function call during evaluation of an expression in magic
19776 * braces should not cause the function not to be defined. */
19777 saved_did_emsg = did_emsg;
19778 did_emsg = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019779
19780 /*
19781 * ":function func" with only function name: list function.
19782 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019783 if (!paren)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019784 {
19785 if (!ends_excmd(*skipwhite(p)))
19786 {
19787 EMSG(_(e_trailing));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019788 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019789 }
19790 eap->nextcmd = check_nextcmd(p);
19791 if (eap->nextcmd != NULL)
19792 *p = NUL;
19793 if (!eap->skip && !got_int)
19794 {
19795 fp = find_func(name);
19796 if (fp != NULL)
19797 {
19798 list_func_head(fp, TRUE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019799 for (j = 0; j < fp->uf_lines.ga_len && !got_int; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019800 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019801 if (FUNCLINE(fp, j) == NULL)
19802 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019803 msg_putchar('\n');
19804 msg_outnum((long)(j + 1));
19805 if (j < 9)
19806 msg_putchar(' ');
19807 if (j < 99)
19808 msg_putchar(' ');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000019809 msg_prt_line(FUNCLINE(fp, j), FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019810 out_flush(); /* show a line at a time */
19811 ui_breakcheck();
19812 }
19813 if (!got_int)
19814 {
19815 msg_putchar('\n');
19816 msg_puts((char_u *)" endfunction");
19817 }
19818 }
19819 else
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000019820 emsg_funcname(N_("E123: Undefined function: %s"), name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000019821 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019822 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019823 }
19824
19825 /*
19826 * ":function name(arg1, arg2)" Define function.
19827 */
19828 p = skipwhite(p);
19829 if (*p != '(')
19830 {
19831 if (!eap->skip)
19832 {
19833 EMSG2(_("E124: Missing '(': %s"), eap->arg);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019834 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019835 }
19836 /* attempt to continue by skipping some text */
19837 if (vim_strchr(p, '(') != NULL)
19838 p = vim_strchr(p, '(');
19839 }
19840 p = skipwhite(p + 1);
19841
19842 ga_init2(&newargs, (int)sizeof(char_u *), 3);
19843 ga_init2(&newlines, (int)sizeof(char_u *), 3);
19844
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019845 if (!eap->skip)
19846 {
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019847 /* Check the name of the function. Unless it's a dictionary function
19848 * (that we are overwriting). */
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019849 if (name != NULL)
19850 arg = name;
19851 else
19852 arg = fudi.fd_newkey;
Bram Moolenaarb42dc232006-11-21 18:36:05 +000019853 if (arg != NULL && (fudi.fd_di == NULL
19854 || fudi.fd_di->di_tv.v_type != VAR_FUNC))
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019855 {
19856 if (*arg == K_SPECIAL)
19857 j = 3;
19858 else
19859 j = 0;
19860 while (arg[j] != NUL && (j == 0 ? eval_isnamec1(arg[j])
19861 : eval_isnamec(arg[j])))
19862 ++j;
19863 if (arg[j] != NUL)
Bram Moolenaarb67cc162009-02-04 15:27:06 +000019864 emsg_funcname((char *)e_invarg2, arg);
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019865 }
19866 }
19867
Bram Moolenaar071d4272004-06-13 20:20:40 +000019868 /*
19869 * Isolate the arguments: "arg1, arg2, ...)"
19870 */
19871 while (*p != ')')
19872 {
19873 if (p[0] == '.' && p[1] == '.' && p[2] == '.')
19874 {
19875 varargs = TRUE;
19876 p += 3;
19877 mustend = TRUE;
19878 }
19879 else
19880 {
19881 arg = p;
19882 while (ASCII_ISALNUM(*p) || *p == '_')
19883 ++p;
19884 if (arg == p || isdigit(*arg)
19885 || (p - arg == 9 && STRNCMP(arg, "firstline", 9) == 0)
19886 || (p - arg == 8 && STRNCMP(arg, "lastline", 8) == 0))
19887 {
19888 if (!eap->skip)
19889 EMSG2(_("E125: Illegal argument: %s"), arg);
19890 break;
19891 }
19892 if (ga_grow(&newargs, 1) == FAIL)
19893 goto erret;
19894 c = *p;
19895 *p = NUL;
19896 arg = vim_strsave(arg);
19897 if (arg == NULL)
19898 goto erret;
19899 ((char_u **)(newargs.ga_data))[newargs.ga_len] = arg;
19900 *p = c;
19901 newargs.ga_len++;
Bram Moolenaar071d4272004-06-13 20:20:40 +000019902 if (*p == ',')
19903 ++p;
19904 else
19905 mustend = TRUE;
19906 }
19907 p = skipwhite(p);
19908 if (mustend && *p != ')')
19909 {
19910 if (!eap->skip)
19911 EMSG2(_(e_invarg2), eap->arg);
19912 break;
19913 }
19914 }
19915 ++p; /* skip the ')' */
19916
Bram Moolenaare9a41262005-01-15 22:18:47 +000019917 /* find extra arguments "range", "dict" and "abort" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000019918 for (;;)
19919 {
19920 p = skipwhite(p);
19921 if (STRNCMP(p, "range", 5) == 0)
19922 {
19923 flags |= FC_RANGE;
19924 p += 5;
19925 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000019926 else if (STRNCMP(p, "dict", 4) == 0)
19927 {
19928 flags |= FC_DICT;
19929 p += 4;
19930 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019931 else if (STRNCMP(p, "abort", 5) == 0)
19932 {
19933 flags |= FC_ABORT;
19934 p += 5;
19935 }
19936 else
19937 break;
19938 }
19939
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019940 /* When there is a line break use what follows for the function body.
19941 * Makes 'exe "func Test()\n...\nendfunc"' work. */
19942 if (*p == '\n')
19943 line_arg = p + 1;
19944 else if (*p != NUL && *p != '"' && !eap->skip && !did_emsg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019945 EMSG(_(e_trailing));
19946
19947 /*
19948 * Read the body of the function, until ":endfunction" is found.
19949 */
19950 if (KeyTyped)
19951 {
19952 /* Check if the function already exists, don't let the user type the
19953 * whole function before telling him it doesn't work! For a script we
19954 * need to skip the body to be able to find what follows. */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019955 if (!eap->skip && !eap->forceit)
19956 {
19957 if (fudi.fd_dict != NULL && fudi.fd_newkey == NULL)
19958 EMSG(_(e_funcdict));
19959 else if (name != NULL && find_func(name) != NULL)
Bram Moolenaar81bf7082005-02-12 14:31:42 +000019960 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000019961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000019962
Bram Moolenaard857f0e2005-06-21 22:37:39 +000019963 if (!eap->skip && did_emsg)
19964 goto erret;
19965
Bram Moolenaar071d4272004-06-13 20:20:40 +000019966 msg_putchar('\n'); /* don't overwrite the function name */
19967 cmdline_row = msg_row;
19968 }
19969
19970 indent = 2;
19971 nesting = 0;
19972 for (;;)
19973 {
19974 msg_scroll = TRUE;
19975 need_wait_return = FALSE;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000019976 sourcing_lnum_off = sourcing_lnum;
19977
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000019978 if (line_arg != NULL)
19979 {
19980 /* Use eap->arg, split up in parts by line breaks. */
19981 theline = line_arg;
19982 p = vim_strchr(theline, '\n');
19983 if (p == NULL)
19984 line_arg += STRLEN(line_arg);
19985 else
19986 {
19987 *p = NUL;
19988 line_arg = p + 1;
19989 }
19990 }
19991 else if (eap->getline == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000019992 theline = getcmdline(':', 0L, indent);
19993 else
19994 theline = eap->getline(':', eap->cookie, indent);
19995 if (KeyTyped)
19996 lines_left = Rows - 1;
19997 if (theline == NULL)
19998 {
19999 EMSG(_("E126: Missing :endfunction"));
20000 goto erret;
20001 }
20002
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020003 /* Detect line continuation: sourcing_lnum increased more than one. */
20004 if (sourcing_lnum > sourcing_lnum_off + 1)
20005 sourcing_lnum_off = sourcing_lnum - sourcing_lnum_off - 1;
20006 else
20007 sourcing_lnum_off = 0;
20008
Bram Moolenaar071d4272004-06-13 20:20:40 +000020009 if (skip_until != NULL)
20010 {
20011 /* between ":append" and "." and between ":python <<EOF" and "EOF"
20012 * don't check for ":endfunc". */
20013 if (STRCMP(theline, skip_until) == 0)
20014 {
20015 vim_free(skip_until);
20016 skip_until = NULL;
20017 }
20018 }
20019 else
20020 {
20021 /* skip ':' and blanks*/
20022 for (p = theline; vim_iswhite(*p) || *p == ':'; ++p)
20023 ;
20024
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020025 /* Check for "endfunction". */
20026 if (checkforcmd(&p, "endfunction", 4) && nesting-- == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020027 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020028 if (line_arg == NULL)
20029 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020030 break;
20031 }
20032
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020033 /* Increase indent inside "if", "while", "for" and "try", decrease
Bram Moolenaar071d4272004-06-13 20:20:40 +000020034 * at "end". */
20035 if (indent > 2 && STRNCMP(p, "end", 3) == 0)
20036 indent -= 2;
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020037 else if (STRNCMP(p, "if", 2) == 0
20038 || STRNCMP(p, "wh", 2) == 0
20039 || STRNCMP(p, "for", 3) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000020040 || STRNCMP(p, "try", 3) == 0)
20041 indent += 2;
20042
20043 /* Check for defining a function inside this function. */
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020044 if (checkforcmd(&p, "function", 2))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020045 {
Bram Moolenaar31c67ef2005-01-11 21:34:41 +000020046 if (*p == '!')
20047 p = skipwhite(p + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020048 p += eval_fname_script(p);
20049 if (ASCII_ISALPHA(*p))
20050 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020051 vim_free(trans_function_name(&p, TRUE, 0, NULL));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020052 if (*skipwhite(p) == '(')
20053 {
20054 ++nesting;
20055 indent += 2;
20056 }
20057 }
20058 }
20059
20060 /* Check for ":append" or ":insert". */
20061 p = skip_range(p, NULL);
20062 if ((p[0] == 'a' && (!ASCII_ISALPHA(p[1]) || p[1] == 'p'))
20063 || (p[0] == 'i'
20064 && (!ASCII_ISALPHA(p[1]) || (p[1] == 'n'
20065 && (!ASCII_ISALPHA(p[2]) || (p[2] == 's'))))))
20066 skip_until = vim_strsave((char_u *)".");
20067
20068 /* Check for ":python <<EOF", ":tcl <<EOF", etc. */
20069 arg = skipwhite(skiptowhite(p));
20070 if (arg[0] == '<' && arg[1] =='<'
20071 && ((p[0] == 'p' && p[1] == 'y'
20072 && (!ASCII_ISALPHA(p[2]) || p[2] == 't'))
20073 || (p[0] == 'p' && p[1] == 'e'
20074 && (!ASCII_ISALPHA(p[2]) || p[2] == 'r'))
20075 || (p[0] == 't' && p[1] == 'c'
20076 && (!ASCII_ISALPHA(p[2]) || p[2] == 'l'))
20077 || (p[0] == 'r' && p[1] == 'u' && p[2] == 'b'
20078 && (!ASCII_ISALPHA(p[3]) || p[3] == 'y'))
Bram Moolenaar325b7a22004-07-05 15:58:32 +000020079 || (p[0] == 'm' && p[1] == 'z'
20080 && (!ASCII_ISALPHA(p[2]) || p[2] == 's'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000020081 ))
20082 {
20083 /* ":python <<" continues until a dot, like ":append" */
20084 p = skipwhite(arg + 2);
20085 if (*p == NUL)
20086 skip_until = vim_strsave((char_u *)".");
20087 else
20088 skip_until = vim_strsave(p);
20089 }
20090 }
20091
20092 /* Add the line to the function. */
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020093 if (ga_grow(&newlines, 1 + sourcing_lnum_off) == FAIL)
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020094 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020095 if (line_arg == NULL)
20096 vim_free(theline);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020097 goto erret;
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020098 }
20099
20100 /* Copy the line to newly allocated memory. get_one_sourceline()
20101 * allocates 250 bytes per line, this saves 80% on average. The cost
20102 * is an extra alloc/free. */
20103 p = vim_strsave(theline);
20104 if (p != NULL)
20105 {
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020106 if (line_arg == NULL)
20107 vim_free(theline);
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020108 theline = p;
20109 }
20110
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020111 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = theline;
20112
20113 /* Add NULL lines for continuation lines, so that the line count is
20114 * equal to the index in the growarray. */
20115 while (sourcing_lnum_off-- > 0)
20116 ((char_u **)(newlines.ga_data))[newlines.ga_len++] = NULL;
Bram Moolenaar997fb4b2006-02-17 21:53:23 +000020117
20118 /* Check for end of eap->arg. */
20119 if (line_arg != NULL && *line_arg == NUL)
20120 line_arg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020121 }
20122
20123 /* Don't define the function when skipping commands or when an error was
20124 * detected. */
20125 if (eap->skip || did_emsg)
20126 goto erret;
20127
20128 /*
20129 * If there are no errors, add the function
20130 */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020131 if (fudi.fd_dict == NULL)
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020132 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020133 v = find_var(name, &ht);
Bram Moolenaar33570922005-01-25 22:26:29 +000020134 if (v != NULL && v->di_tv.v_type == VAR_FUNC)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020135 {
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000020136 emsg_funcname(N_("E707: Function name conflicts with variable: %s"),
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020137 name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020138 goto erret;
20139 }
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020140
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020141 fp = find_func(name);
20142 if (fp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020143 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020144 if (!eap->forceit)
20145 {
Bram Moolenaar81bf7082005-02-12 14:31:42 +000020146 emsg_funcname(e_funcexts, name);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020147 goto erret;
20148 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020149 if (fp->uf_calls > 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020150 {
Bram Moolenaar7b76b0a2009-01-28 18:09:38 +000020151 emsg_funcname(N_("E127: Cannot redefine function %s: It is in use"),
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020152 name);
20153 goto erret;
20154 }
20155 /* redefine existing function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020156 ga_clear_strings(&(fp->uf_args));
20157 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020158 vim_free(name);
20159 name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020160 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020161 }
20162 else
20163 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020164 char numbuf[20];
20165
20166 fp = NULL;
20167 if (fudi.fd_newkey == NULL && !eap->forceit)
20168 {
20169 EMSG(_(e_funcdict));
20170 goto erret;
20171 }
Bram Moolenaar758711c2005-02-02 23:11:38 +000020172 if (fudi.fd_di == NULL)
20173 {
20174 /* Can't add a function to a locked dictionary */
20175 if (tv_check_lock(fudi.fd_dict->dv_lock, eap->arg))
20176 goto erret;
20177 }
20178 /* Can't change an existing function if it is locked */
20179 else if (tv_check_lock(fudi.fd_di->di_tv.v_lock, eap->arg))
20180 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020181
20182 /* Give the function a sequential number. Can only be used with a
20183 * Funcref! */
20184 vim_free(name);
20185 sprintf(numbuf, "%d", ++func_nr);
20186 name = vim_strsave((char_u *)numbuf);
20187 if (name == NULL)
20188 goto erret;
20189 }
20190
20191 if (fp == NULL)
20192 {
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020193 if (fudi.fd_dict == NULL && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020194 {
20195 int slen, plen;
20196 char_u *scriptname;
20197
20198 /* Check that the autoload name matches the script name. */
20199 j = FAIL;
20200 if (sourcing_name != NULL)
20201 {
20202 scriptname = autoload_name(name);
20203 if (scriptname != NULL)
20204 {
20205 p = vim_strchr(scriptname, '/');
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020206 plen = (int)STRLEN(p);
20207 slen = (int)STRLEN(sourcing_name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020208 if (slen > plen && fnamecmp(p,
20209 sourcing_name + slen - plen) == 0)
20210 j = OK;
20211 vim_free(scriptname);
20212 }
20213 }
20214 if (j == FAIL)
20215 {
20216 EMSG2(_("E746: Function name does not match script file name: %s"), name);
20217 goto erret;
20218 }
20219 }
20220
20221 fp = (ufunc_T *)alloc((unsigned)(sizeof(ufunc_T) + STRLEN(name)));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020222 if (fp == NULL)
20223 goto erret;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020224
20225 if (fudi.fd_dict != NULL)
20226 {
20227 if (fudi.fd_di == NULL)
20228 {
20229 /* add new dict entry */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020230 fudi.fd_di = dictitem_alloc(fudi.fd_newkey);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020231 if (fudi.fd_di == NULL)
20232 {
20233 vim_free(fp);
20234 goto erret;
20235 }
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020236 if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
20237 {
20238 vim_free(fudi.fd_di);
Bram Moolenaar0a5fd8b2006-08-16 20:02:22 +000020239 vim_free(fp);
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020240 goto erret;
20241 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020242 }
20243 else
20244 /* overwrite existing dict entry */
20245 clear_tv(&fudi.fd_di->di_tv);
20246 fudi.fd_di->di_tv.v_type = VAR_FUNC;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000020247 fudi.fd_di->di_tv.v_lock = 0;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020248 fudi.fd_di->di_tv.vval.v_string = vim_strsave(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020249 fp->uf_refcount = 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +000020250
20251 /* behave like "dict" was used */
20252 flags |= FC_DICT;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020253 }
20254
Bram Moolenaar071d4272004-06-13 20:20:40 +000020255 /* insert the new function in the function list */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020256 STRCPY(fp->uf_name, name);
20257 hash_add(&func_hashtab, UF2HIKEY(fp));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020258 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020259 fp->uf_args = newargs;
20260 fp->uf_lines = newlines;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020261#ifdef FEAT_PROFILE
20262 fp->uf_tml_count = NULL;
20263 fp->uf_tml_total = NULL;
20264 fp->uf_tml_self = NULL;
20265 fp->uf_profiling = FALSE;
20266 if (prof_def_func())
20267 func_do_profile(fp);
20268#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020269 fp->uf_varargs = varargs;
20270 fp->uf_flags = flags;
20271 fp->uf_calls = 0;
20272 fp->uf_script_ID = current_SID;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020273 goto ret_free;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020274
20275erret:
Bram Moolenaar071d4272004-06-13 20:20:40 +000020276 ga_clear_strings(&newargs);
20277 ga_clear_strings(&newlines);
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020278ret_free:
20279 vim_free(skip_until);
20280 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020281 vim_free(name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020282 did_emsg |= saved_did_emsg;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020283}
20284
20285/*
20286 * Get a function name, translating "<SID>" and "<SNR>".
Bram Moolenaara7043832005-01-21 11:56:39 +000020287 * Also handles a Funcref in a List or Dictionary.
Bram Moolenaar071d4272004-06-13 20:20:40 +000020288 * Returns the function name in allocated memory, or NULL for failure.
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020289 * flags:
20290 * TFN_INT: internal function name OK
20291 * TFN_QUIET: be quiet
Bram Moolenaar071d4272004-06-13 20:20:40 +000020292 * Advances "pp" to just after the function name (if no error).
20293 */
20294 static char_u *
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020295trans_function_name(pp, skip, flags, fdp)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020296 char_u **pp;
20297 int skip; /* only find the end, don't evaluate */
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020298 int flags;
Bram Moolenaar33570922005-01-25 22:26:29 +000020299 funcdict_T *fdp; /* return: info about dictionary used */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020300{
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020301 char_u *name = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020302 char_u *start;
20303 char_u *end;
20304 int lead;
20305 char_u sid_buf[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +000020306 int len;
Bram Moolenaar33570922005-01-25 22:26:29 +000020307 lval_T lv;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020308
20309 if (fdp != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000020310 vim_memset(fdp, 0, sizeof(funcdict_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020311 start = *pp;
Bram Moolenaara7043832005-01-21 11:56:39 +000020312
20313 /* Check for hard coded <SNR>: already translated function ID (from a user
20314 * command). */
20315 if ((*pp)[0] == K_SPECIAL && (*pp)[1] == KS_EXTRA
20316 && (*pp)[2] == (int)KE_SNR)
20317 {
20318 *pp += 3;
20319 len = get_id_len(pp) + 3;
20320 return vim_strnsave(start, len);
20321 }
20322
20323 /* A name starting with "<SID>" or "<SNR>" is local to a script. But
20324 * don't skip over "s:", get_lval() needs it for "s:dict.func". */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020325 lead = eval_fname_script(start);
Bram Moolenaara7043832005-01-21 11:56:39 +000020326 if (lead > 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020327 start += lead;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020328
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020329 end = get_lval(start, NULL, &lv, FALSE, skip, flags & TFN_QUIET,
20330 lead > 2 ? 0 : FNE_CHECK_START);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020331 if (end == start)
20332 {
20333 if (!skip)
20334 EMSG(_("E129: Function name required"));
20335 goto theend;
20336 }
Bram Moolenaara7043832005-01-21 11:56:39 +000020337 if (end == NULL || (lv.ll_tv != NULL && (lead > 2 || lv.ll_range)))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020338 {
20339 /*
20340 * Report an invalid expression in braces, unless the expression
20341 * evaluation has been cancelled due to an aborting error, an
20342 * interrupt, or an exception.
20343 */
20344 if (!aborting())
20345 {
20346 if (end != NULL)
20347 EMSG2(_(e_invarg2), start);
20348 }
20349 else
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020350 *pp = find_name_end(start, NULL, NULL, FNE_INCL_BR);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020351 goto theend;
20352 }
20353
20354 if (lv.ll_tv != NULL)
20355 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020356 if (fdp != NULL)
20357 {
20358 fdp->fd_dict = lv.ll_dict;
20359 fdp->fd_newkey = lv.ll_newkey;
20360 lv.ll_newkey = NULL;
20361 fdp->fd_di = lv.ll_di;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020362 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020363 if (lv.ll_tv->v_type == VAR_FUNC && lv.ll_tv->vval.v_string != NULL)
20364 {
20365 name = vim_strsave(lv.ll_tv->vval.v_string);
20366 *pp = end;
20367 }
20368 else
20369 {
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020370 if (!skip && !(flags & TFN_QUIET) && (fdp == NULL
20371 || lv.ll_dict == NULL || fdp->fd_newkey == NULL))
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020372 EMSG(_(e_funcref));
20373 else
20374 *pp = end;
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020375 name = NULL;
20376 }
20377 goto theend;
20378 }
20379
20380 if (lv.ll_name == NULL)
20381 {
20382 /* Error found, but continue after the function name. */
20383 *pp = end;
20384 goto theend;
20385 }
20386
Bram Moolenaar33e1a802007-09-06 12:26:44 +000020387 /* Check if the name is a Funcref. If so, use the value. */
20388 if (lv.ll_exp_name != NULL)
20389 {
20390 len = (int)STRLEN(lv.ll_exp_name);
20391 name = deref_func_name(lv.ll_exp_name, &len);
20392 if (name == lv.ll_exp_name)
20393 name = NULL;
20394 }
20395 else
20396 {
20397 len = (int)(end - *pp);
20398 name = deref_func_name(*pp, &len);
20399 if (name == *pp)
20400 name = NULL;
20401 }
20402 if (name != NULL)
20403 {
20404 name = vim_strsave(name);
20405 *pp = end;
20406 goto theend;
20407 }
20408
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020409 if (lv.ll_exp_name != NULL)
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020410 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020411 len = (int)STRLEN(lv.ll_exp_name);
Bram Moolenaarc32840f2006-01-14 21:23:38 +000020412 if (lead <= 2 && lv.ll_name == lv.ll_exp_name
20413 && STRNCMP(lv.ll_name, "s:", 2) == 0)
20414 {
20415 /* When there was "s:" already or the name expanded to get a
20416 * leading "s:" then remove it. */
20417 lv.ll_name += 2;
20418 len -= 2;
20419 lead = 2;
20420 }
20421 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020422 else
Bram Moolenaara7043832005-01-21 11:56:39 +000020423 {
20424 if (lead == 2) /* skip over "s:" */
20425 lv.ll_name += 2;
20426 len = (int)(end - lv.ll_name);
20427 }
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020428
20429 /*
20430 * Copy the function name to allocated memory.
20431 * Accept <SID>name() inside a script, translate into <SNR>123_name().
20432 * Accept <SNR>123_name() outside a script.
20433 */
20434 if (skip)
20435 lead = 0; /* do nothing */
20436 else if (lead > 0)
20437 {
20438 lead = 3;
Bram Moolenaar86c9ee22006-05-13 11:33:27 +000020439 if ((lv.ll_exp_name != NULL && eval_fname_sid(lv.ll_exp_name))
20440 || eval_fname_sid(*pp))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020441 {
Bram Moolenaar899dddf2006-03-26 21:06:50 +000020442 /* It's "s:" or "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020443 if (current_SID <= 0)
20444 {
20445 EMSG(_(e_usingsid));
20446 goto theend;
20447 }
20448 sprintf((char *)sid_buf, "%ld_", (long)current_SID);
20449 lead += (int)STRLEN(sid_buf);
20450 }
20451 }
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020452 else if (!(flags & TFN_INT) && builtin_function(lv.ll_name))
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020453 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020454 EMSG2(_("E128: Function name must start with a capital or contain a colon: %s"), lv.ll_name);
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020455 goto theend;
20456 }
20457 name = alloc((unsigned)(len + lead + 1));
20458 if (name != NULL)
20459 {
20460 if (lead > 0)
20461 {
20462 name[0] = K_SPECIAL;
20463 name[1] = KS_EXTRA;
20464 name[2] = (int)KE_SNR;
Bram Moolenaara7043832005-01-21 11:56:39 +000020465 if (lead > 3) /* If it's "<SID>" */
Bram Moolenaar7480b5c2005-01-16 22:07:38 +000020466 STRCPY(name + 3, sid_buf);
20467 }
20468 mch_memmove(name + lead, lv.ll_name, (size_t)len);
20469 name[len + lead] = NUL;
20470 }
20471 *pp = end;
20472
20473theend:
20474 clear_lval(&lv);
20475 return name;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020476}
20477
20478/*
20479 * Return 5 if "p" starts with "<SID>" or "<SNR>" (ignoring case).
20480 * Return 2 if "p" starts with "s:".
20481 * Return 0 otherwise.
20482 */
20483 static int
20484eval_fname_script(p)
20485 char_u *p;
20486{
20487 if (p[0] == '<' && (STRNICMP(p + 1, "SID>", 4) == 0
20488 || STRNICMP(p + 1, "SNR>", 4) == 0))
20489 return 5;
20490 if (p[0] == 's' && p[1] == ':')
20491 return 2;
20492 return 0;
20493}
20494
20495/*
20496 * Return TRUE if "p" starts with "<SID>" or "s:".
20497 * Only works if eval_fname_script() returned non-zero for "p"!
20498 */
20499 static int
20500eval_fname_sid(p)
20501 char_u *p;
20502{
20503 return (*p == 's' || TOUPPER_ASC(p[2]) == 'I');
20504}
20505
20506/*
20507 * List the head of the function: "name(arg1, arg2)".
20508 */
20509 static void
20510list_func_head(fp, indent)
20511 ufunc_T *fp;
20512 int indent;
20513{
20514 int j;
20515
20516 msg_start();
20517 if (indent)
20518 MSG_PUTS(" ");
20519 MSG_PUTS("function ");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020520 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020521 {
20522 MSG_PUTS_ATTR("<SNR>", hl_attr(HLF_8));
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020523 msg_puts(fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020524 }
20525 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020526 msg_puts(fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020527 msg_putchar('(');
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020528 for (j = 0; j < fp->uf_args.ga_len; ++j)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020529 {
20530 if (j)
20531 MSG_PUTS(", ");
20532 msg_puts(FUNCARG(fp, j));
20533 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020534 if (fp->uf_varargs)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020535 {
20536 if (j)
20537 MSG_PUTS(", ");
20538 MSG_PUTS("...");
20539 }
20540 msg_putchar(')');
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000020541 msg_clr_eos();
Bram Moolenaar5b8d8fd2005-08-16 23:01:50 +000020542 if (p_verbose > 0)
20543 last_set_msg(fp->uf_script_ID);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020544}
20545
20546/*
20547 * Find a function by name, return pointer to it in ufuncs.
20548 * Return NULL for unknown function.
20549 */
20550 static ufunc_T *
20551find_func(name)
20552 char_u *name;
20553{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020554 hashitem_T *hi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020555
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020556 hi = hash_find(&func_hashtab, name);
20557 if (!HASHITEM_EMPTY(hi))
20558 return HI2UF(hi);
20559 return NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020560}
20561
Bram Moolenaar29a1c1d2005-06-24 23:11:15 +000020562#if defined(EXITFREE) || defined(PROTO)
20563 void
20564free_all_functions()
20565{
20566 hashitem_T *hi;
20567
20568 /* Need to start all over every time, because func_free() may change the
20569 * hash table. */
20570 while (func_hashtab.ht_used > 0)
20571 for (hi = func_hashtab.ht_array; ; ++hi)
20572 if (!HASHITEM_EMPTY(hi))
20573 {
20574 func_free(HI2UF(hi));
20575 break;
20576 }
20577}
20578#endif
20579
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020580/*
20581 * Return TRUE if a function "name" exists.
20582 */
20583 static int
20584function_exists(name)
20585 char_u *name;
20586{
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020587 char_u *nm = name;
20588 char_u *p;
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020589 int n = FALSE;
20590
Bram Moolenaaraa35dd12006-04-29 22:03:41 +000020591 p = trans_function_name(&nm, FALSE, TFN_INT|TFN_QUIET, NULL);
Bram Moolenaar79783442006-05-05 21:18:03 +000020592 nm = skipwhite(nm);
20593
20594 /* Only accept "funcname", "funcname ", "funcname (..." and
20595 * "funcname(...", not "funcname!...". */
20596 if (p != NULL && (*nm == NUL || *nm == '('))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020597 {
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020598 if (builtin_function(p))
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020599 n = (find_internal_func(p) >= 0);
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020600 else
20601 n = (find_func(p) != NULL);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020602 }
Bram Moolenaar79783442006-05-05 21:18:03 +000020603 vim_free(p);
Bram Moolenaar49cd9572005-01-03 21:06:01 +000020604 return n;
20605}
20606
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020607/*
20608 * Return TRUE if "name" looks like a builtin function name: starts with a
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020609 * lower case letter and doesn't contain a ':' or AUTOLOAD_CHAR.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020610 */
20611 static int
20612builtin_function(name)
20613 char_u *name;
20614{
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020615 return ASCII_ISLOWER(name[0]) && vim_strchr(name, ':') == NULL
20616 && vim_strchr(name, AUTOLOAD_CHAR) == NULL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020617}
20618
Bram Moolenaar05159a02005-02-26 23:04:13 +000020619#if defined(FEAT_PROFILE) || defined(PROTO)
20620/*
20621 * Start profiling function "fp".
20622 */
20623 static void
20624func_do_profile(fp)
20625 ufunc_T *fp;
20626{
20627 fp->uf_tm_count = 0;
20628 profile_zero(&fp->uf_tm_self);
20629 profile_zero(&fp->uf_tm_total);
20630 if (fp->uf_tml_count == NULL)
20631 fp->uf_tml_count = (int *)alloc_clear((unsigned)
20632 (sizeof(int) * fp->uf_lines.ga_len));
20633 if (fp->uf_tml_total == NULL)
20634 fp->uf_tml_total = (proftime_T *)alloc_clear((unsigned)
20635 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20636 if (fp->uf_tml_self == NULL)
20637 fp->uf_tml_self = (proftime_T *)alloc_clear((unsigned)
20638 (sizeof(proftime_T) * fp->uf_lines.ga_len));
20639 fp->uf_tml_idx = -1;
20640 if (fp->uf_tml_count == NULL || fp->uf_tml_total == NULL
20641 || fp->uf_tml_self == NULL)
20642 return; /* out of memory */
20643
20644 fp->uf_profiling = TRUE;
20645}
20646
20647/*
20648 * Dump the profiling results for all functions in file "fd".
20649 */
20650 void
20651func_dump_profile(fd)
20652 FILE *fd;
20653{
20654 hashitem_T *hi;
20655 int todo;
20656 ufunc_T *fp;
20657 int i;
Bram Moolenaar73830342005-02-28 22:48:19 +000020658 ufunc_T **sorttab;
20659 int st_len = 0;
Bram Moolenaar05159a02005-02-26 23:04:13 +000020660
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000020661 todo = (int)func_hashtab.ht_used;
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020662 if (todo == 0)
20663 return; /* nothing to dump */
20664
Bram Moolenaar73830342005-02-28 22:48:19 +000020665 sorttab = (ufunc_T **)alloc((unsigned)(sizeof(ufunc_T) * todo));
20666
Bram Moolenaar05159a02005-02-26 23:04:13 +000020667 for (hi = func_hashtab.ht_array; todo > 0; ++hi)
20668 {
20669 if (!HASHITEM_EMPTY(hi))
20670 {
20671 --todo;
20672 fp = HI2UF(hi);
20673 if (fp->uf_profiling)
20674 {
Bram Moolenaar73830342005-02-28 22:48:19 +000020675 if (sorttab != NULL)
20676 sorttab[st_len++] = fp;
20677
Bram Moolenaar05159a02005-02-26 23:04:13 +000020678 if (fp->uf_name[0] == K_SPECIAL)
20679 fprintf(fd, "FUNCTION <SNR>%s()\n", fp->uf_name + 3);
20680 else
20681 fprintf(fd, "FUNCTION %s()\n", fp->uf_name);
20682 if (fp->uf_tm_count == 1)
20683 fprintf(fd, "Called 1 time\n");
20684 else
20685 fprintf(fd, "Called %d times\n", fp->uf_tm_count);
20686 fprintf(fd, "Total time: %s\n", profile_msg(&fp->uf_tm_total));
20687 fprintf(fd, " Self time: %s\n", profile_msg(&fp->uf_tm_self));
20688 fprintf(fd, "\n");
20689 fprintf(fd, "count total (s) self (s)\n");
20690
20691 for (i = 0; i < fp->uf_lines.ga_len; ++i)
20692 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000020693 if (FUNCLINE(fp, i) == NULL)
20694 continue;
Bram Moolenaar73830342005-02-28 22:48:19 +000020695 prof_func_line(fd, fp->uf_tml_count[i],
20696 &fp->uf_tml_total[i], &fp->uf_tml_self[i], TRUE);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020697 fprintf(fd, "%s\n", FUNCLINE(fp, i));
20698 }
20699 fprintf(fd, "\n");
20700 }
20701 }
20702 }
Bram Moolenaar73830342005-02-28 22:48:19 +000020703
20704 if (sorttab != NULL && st_len > 0)
20705 {
20706 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20707 prof_total_cmp);
20708 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE);
20709 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *),
20710 prof_self_cmp);
20711 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE);
20712 }
Bram Moolenaar61c4e2c2008-08-25 02:49:18 +000020713
20714 vim_free(sorttab);
Bram Moolenaar05159a02005-02-26 23:04:13 +000020715}
Bram Moolenaar73830342005-02-28 22:48:19 +000020716
20717 static void
20718prof_sort_list(fd, sorttab, st_len, title, prefer_self)
20719 FILE *fd;
20720 ufunc_T **sorttab;
20721 int st_len;
20722 char *title;
20723 int prefer_self; /* when equal print only self time */
20724{
20725 int i;
20726 ufunc_T *fp;
20727
20728 fprintf(fd, "FUNCTIONS SORTED ON %s TIME\n", title);
20729 fprintf(fd, "count total (s) self (s) function\n");
20730 for (i = 0; i < 20 && i < st_len; ++i)
20731 {
20732 fp = sorttab[i];
20733 prof_func_line(fd, fp->uf_tm_count, &fp->uf_tm_total, &fp->uf_tm_self,
20734 prefer_self);
20735 if (fp->uf_name[0] == K_SPECIAL)
20736 fprintf(fd, " <SNR>%s()\n", fp->uf_name + 3);
20737 else
20738 fprintf(fd, " %s()\n", fp->uf_name);
20739 }
20740 fprintf(fd, "\n");
20741}
20742
20743/*
20744 * Print the count and times for one function or function line.
20745 */
20746 static void
20747prof_func_line(fd, count, total, self, prefer_self)
20748 FILE *fd;
20749 int count;
20750 proftime_T *total;
20751 proftime_T *self;
20752 int prefer_self; /* when equal print only self time */
20753{
20754 if (count > 0)
20755 {
20756 fprintf(fd, "%5d ", count);
20757 if (prefer_self && profile_equal(total, self))
20758 fprintf(fd, " ");
20759 else
20760 fprintf(fd, "%s ", profile_msg(total));
20761 if (!prefer_self && profile_equal(total, self))
20762 fprintf(fd, " ");
20763 else
20764 fprintf(fd, "%s ", profile_msg(self));
20765 }
20766 else
20767 fprintf(fd, " ");
20768}
20769
20770/*
20771 * Compare function for total time sorting.
20772 */
20773 static int
20774#ifdef __BORLANDC__
20775_RTLENTRYF
20776#endif
20777prof_total_cmp(s1, s2)
20778 const void *s1;
20779 const void *s2;
20780{
20781 ufunc_T *p1, *p2;
20782
20783 p1 = *(ufunc_T **)s1;
20784 p2 = *(ufunc_T **)s2;
20785 return profile_cmp(&p1->uf_tm_total, &p2->uf_tm_total);
20786}
20787
20788/*
20789 * Compare function for self time sorting.
20790 */
20791 static int
20792#ifdef __BORLANDC__
20793_RTLENTRYF
20794#endif
20795prof_self_cmp(s1, s2)
20796 const void *s1;
20797 const void *s2;
20798{
20799 ufunc_T *p1, *p2;
20800
20801 p1 = *(ufunc_T **)s1;
20802 p2 = *(ufunc_T **)s2;
20803 return profile_cmp(&p1->uf_tm_self, &p2->uf_tm_self);
20804}
20805
Bram Moolenaar05159a02005-02-26 23:04:13 +000020806#endif
20807
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020808/*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020809 * If "name" has a package name try autoloading the script for it.
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020810 * Return TRUE if a package was loaded.
20811 */
20812 static int
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020813script_autoload(name, reload)
20814 char_u *name;
20815 int reload; /* load script again when already loaded */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020816{
20817 char_u *p;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020818 char_u *scriptname, *tofree;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020819 int ret = FALSE;
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020820 int i;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020821
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020822 /* If there is no '#' after name[0] there is no package name. */
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020823 p = vim_strchr(name, AUTOLOAD_CHAR);
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020824 if (p == NULL || p == name)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020825 return FALSE;
20826
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020827 tofree = scriptname = autoload_name(name);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020828
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020829 /* Find the name in the list of previously loaded package names. Skip
20830 * "autoload/", it's always the same. */
20831 for (i = 0; i < ga_loaded.ga_len; ++i)
20832 if (STRCMP(((char_u **)ga_loaded.ga_data)[i] + 9, scriptname + 9) == 0)
20833 break;
20834 if (!reload && i < ga_loaded.ga_len)
20835 ret = FALSE; /* was loaded already */
20836 else
20837 {
20838 /* Remember the name if it wasn't loaded already. */
20839 if (i == ga_loaded.ga_len && ga_grow(&ga_loaded, 1) == OK)
20840 {
20841 ((char_u **)ga_loaded.ga_data)[ga_loaded.ga_len++] = scriptname;
20842 tofree = NULL;
20843 }
20844
20845 /* Try loading the package from $VIMRUNTIME/autoload/<name>.vim */
Bram Moolenaar90cfdbe2005-08-12 19:59:19 +000020846 if (source_runtime(scriptname, FALSE) == OK)
Bram Moolenaar87e25fd2005-07-27 21:13:01 +000020847 ret = TRUE;
20848 }
20849
20850 vim_free(tofree);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020851 return ret;
20852}
20853
20854/*
20855 * Return the autoload script name for a function or variable name.
20856 * Returns NULL when out of memory.
20857 */
20858 static char_u *
20859autoload_name(name)
20860 char_u *name;
20861{
20862 char_u *p;
20863 char_u *scriptname;
20864
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020865 /* Get the script file name: replace '#' with '/', append ".vim". */
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020866 scriptname = alloc((unsigned)(STRLEN(name) + 14));
20867 if (scriptname == NULL)
20868 return FALSE;
20869 STRCPY(scriptname, "autoload/");
20870 STRCAT(scriptname, name);
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020871 *vim_strrchr(scriptname, AUTOLOAD_CHAR) = NUL;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020872 STRCAT(scriptname, ".vim");
Bram Moolenaar34cdc3e2005-05-18 22:24:46 +000020873 while ((p = vim_strchr(scriptname, AUTOLOAD_CHAR)) != NULL)
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020874 *p = '/';
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020875 return scriptname;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +000020876}
20877
Bram Moolenaar071d4272004-06-13 20:20:40 +000020878#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
20879
20880/*
20881 * Function given to ExpandGeneric() to obtain the list of user defined
20882 * function names.
20883 */
20884 char_u *
20885get_user_func_name(xp, idx)
20886 expand_T *xp;
20887 int idx;
20888{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020889 static long_u done;
20890 static hashitem_T *hi;
20891 ufunc_T *fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020892
20893 if (idx == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020894 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020895 done = 0;
20896 hi = func_hashtab.ht_array;
20897 }
20898 if (done < func_hashtab.ht_used)
20899 {
20900 if (done++ > 0)
20901 ++hi;
20902 while (HASHITEM_EMPTY(hi))
20903 ++hi;
20904 fp = HI2UF(hi);
20905
20906 if (STRLEN(fp->uf_name) + 4 >= IOSIZE)
20907 return fp->uf_name; /* prevents overflow */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020908
20909 cat_func_name(IObuff, fp);
20910 if (xp->xp_context != EXPAND_USER_FUNC)
20911 {
20912 STRCAT(IObuff, "(");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020913 if (!fp->uf_varargs && fp->uf_args.ga_len == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020914 STRCAT(IObuff, ")");
20915 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020916 return IObuff;
20917 }
20918 return NULL;
20919}
20920
20921#endif /* FEAT_CMDL_COMPL */
20922
20923/*
20924 * Copy the function name of "fp" to buffer "buf".
20925 * "buf" must be able to hold the function name plus three bytes.
20926 * Takes care of script-local function names.
20927 */
20928 static void
20929cat_func_name(buf, fp)
20930 char_u *buf;
20931 ufunc_T *fp;
20932{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020933 if (fp->uf_name[0] == K_SPECIAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020934 {
20935 STRCPY(buf, "<SNR>");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020936 STRCAT(buf, fp->uf_name + 3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020937 }
20938 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020939 STRCPY(buf, fp->uf_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020940}
20941
20942/*
20943 * ":delfunction {name}"
20944 */
20945 void
20946ex_delfunction(eap)
20947 exarg_T *eap;
20948{
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020949 ufunc_T *fp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020950 char_u *p;
20951 char_u *name;
Bram Moolenaar33570922005-01-25 22:26:29 +000020952 funcdict_T fudi;
Bram Moolenaar071d4272004-06-13 20:20:40 +000020953
20954 p = eap->arg;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020955 name = trans_function_name(&p, eap->skip, 0, &fudi);
20956 vim_free(fudi.fd_newkey);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020957 if (name == NULL)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020958 {
20959 if (fudi.fd_dict != NULL && !eap->skip)
20960 EMSG(_(e_funcref));
Bram Moolenaar071d4272004-06-13 20:20:40 +000020961 return;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020962 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000020963 if (!ends_excmd(*skipwhite(p)))
20964 {
20965 vim_free(name);
20966 EMSG(_(e_trailing));
20967 return;
20968 }
20969 eap->nextcmd = check_nextcmd(p);
20970 if (eap->nextcmd != NULL)
20971 *p = NUL;
20972
20973 if (!eap->skip)
20974 fp = find_func(name);
20975 vim_free(name);
20976
20977 if (!eap->skip)
20978 {
20979 if (fp == NULL)
20980 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000020981 EMSG2(_(e_nofunc), eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020982 return;
20983 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000020984 if (fp->uf_calls > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020985 {
20986 EMSG2(_("E131: Cannot delete function %s: It is in use"), eap->arg);
20987 return;
20988 }
20989
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020990 if (fudi.fd_dict != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000020991 {
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020992 /* Delete the dict item that refers to the function, it will
20993 * invoke func_unref() and possibly delete the function. */
Bram Moolenaarce5e58e2005-01-19 22:24:34 +000020994 dictitem_remove(fudi.fd_dict, fudi.fd_di);
Bram Moolenaar071d4272004-06-13 20:20:40 +000020995 }
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000020996 else
20997 func_free(fp);
20998 }
20999}
21000
21001/*
21002 * Free a function and remove it from the list of functions.
21003 */
21004 static void
21005func_free(fp)
21006 ufunc_T *fp;
21007{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021008 hashitem_T *hi;
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021009
21010 /* clear this function */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021011 ga_clear_strings(&(fp->uf_args));
21012 ga_clear_strings(&(fp->uf_lines));
Bram Moolenaar05159a02005-02-26 23:04:13 +000021013#ifdef FEAT_PROFILE
21014 vim_free(fp->uf_tml_count);
21015 vim_free(fp->uf_tml_total);
21016 vim_free(fp->uf_tml_self);
21017#endif
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021018
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021019 /* remove the function from the function hashtable */
21020 hi = hash_find(&func_hashtab, UF2HIKEY(fp));
21021 if (HASHITEM_EMPTY(hi))
21022 EMSG2(_(e_intern2), "func_free()");
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021023 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021024 hash_remove(&func_hashtab, hi);
21025
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021026 vim_free(fp);
21027}
21028
21029/*
21030 * Unreference a Function: decrement the reference count and free it when it
21031 * becomes zero. Only for numbered functions.
21032 */
21033 static void
21034func_unref(name)
21035 char_u *name;
21036{
21037 ufunc_T *fp;
21038
21039 if (name != NULL && isdigit(*name))
21040 {
21041 fp = find_func(name);
21042 if (fp == NULL)
21043 EMSG2(_(e_intern2), "func_unref()");
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021044 else if (--fp->uf_refcount <= 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021045 {
21046 /* Only delete it when it's not being used. Otherwise it's done
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021047 * when "uf_calls" becomes zero. */
21048 if (fp->uf_calls == 0)
Bram Moolenaar9ef486d2005-01-17 22:23:00 +000021049 func_free(fp);
21050 }
21051 }
21052}
21053
21054/*
21055 * Count a reference to a Function.
21056 */
21057 static void
21058func_ref(name)
21059 char_u *name;
21060{
21061 ufunc_T *fp;
21062
21063 if (name != NULL && isdigit(*name))
21064 {
21065 fp = find_func(name);
21066 if (fp == NULL)
21067 EMSG2(_(e_intern2), "func_ref()");
21068 else
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021069 ++fp->uf_refcount;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021070 }
21071}
21072
21073/*
21074 * Call a user function.
21075 */
21076 static void
Bram Moolenaare9a41262005-01-15 22:18:47 +000021077call_user_func(fp, argcount, argvars, rettv, firstline, lastline, selfdict)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021078 ufunc_T *fp; /* pointer to function */
21079 int argcount; /* nr of args */
Bram Moolenaar33570922005-01-25 22:26:29 +000021080 typval_T *argvars; /* arguments */
21081 typval_T *rettv; /* return value */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021082 linenr_T firstline; /* first line of range */
21083 linenr_T lastline; /* last line of range */
Bram Moolenaar33570922005-01-25 22:26:29 +000021084 dict_T *selfdict; /* Dictionary for "self" */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021085{
Bram Moolenaar33570922005-01-25 22:26:29 +000021086 char_u *save_sourcing_name;
21087 linenr_T save_sourcing_lnum;
21088 scid_T save_current_SID;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021089 funccall_T *fc;
Bram Moolenaar33570922005-01-25 22:26:29 +000021090 int save_did_emsg;
21091 static int depth = 0;
21092 dictitem_T *v;
21093 int fixvar_idx = 0; /* index in fixvar[] */
21094 int i;
21095 int ai;
21096 char_u numbuf[NUMBUFLEN];
21097 char_u *name;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021098#ifdef FEAT_PROFILE
21099 proftime_T wait_start;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021100 proftime_T call_start;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021101#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021102
21103 /* If depth of calling is getting too high, don't execute the function */
21104 if (depth >= p_mfd)
21105 {
21106 EMSG(_("E132: Function call depth is higher than 'maxfuncdepth'"));
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021107 rettv->v_type = VAR_NUMBER;
21108 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021109 return;
21110 }
21111 ++depth;
21112
21113 line_breakcheck(); /* check for CTRL-C hit */
21114
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021115 fc = (funccall_T *)alloc(sizeof(funccall_T));
21116 fc->caller = current_funccal;
21117 current_funccal = fc;
21118 fc->func = fp;
21119 fc->rettv = rettv;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021120 rettv->vval.v_number = 0;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021121 fc->linenr = 0;
21122 fc->returned = FALSE;
21123 fc->level = ex_nesting_level;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021124 /* Check if this function has a breakpoint. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021125 fc->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name, (linenr_T)0);
21126 fc->dbg_tick = debug_tick;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021127
Bram Moolenaar33570922005-01-25 22:26:29 +000021128 /*
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021129 * Note about using fc->fixvar[]: This is an array of FIXVAR_CNT variables
Bram Moolenaar33570922005-01-25 22:26:29 +000021130 * with names up to VAR_SHORT_LEN long. This avoids having to alloc/free
21131 * each argument variable and saves a lot of time.
21132 */
21133 /*
21134 * Init l: variables.
21135 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021136 init_var_dict(&fc->l_vars, &fc->l_vars_var);
Bram Moolenaara7043832005-01-21 11:56:39 +000021137 if (selfdict != NULL)
Bram Moolenaare9a41262005-01-15 22:18:47 +000021138 {
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021139 /* Set l:self to "selfdict". Use "name" to avoid a warning from
21140 * some compiler that checks the destination size. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021141 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar76b92b22006-03-24 22:46:53 +000021142 name = v->di_key;
21143 STRCPY(name, "self");
Bram Moolenaar33570922005-01-25 22:26:29 +000021144 v->di_flags = DI_FLAGS_RO + DI_FLAGS_FIX;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021145 hash_add(&fc->l_vars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021146 v->di_tv.v_type = VAR_DICT;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021147 v->di_tv.v_lock = 0;
Bram Moolenaar33570922005-01-25 22:26:29 +000021148 v->di_tv.vval.v_dict = selfdict;
21149 ++selfdict->dv_refcount;
21150 }
Bram Moolenaare9a41262005-01-15 22:18:47 +000021151
Bram Moolenaar33570922005-01-25 22:26:29 +000021152 /*
21153 * Init a: variables.
21154 * Set a:0 to "argcount".
21155 * Set a:000 to a list with room for the "..." arguments.
21156 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021157 init_var_dict(&fc->l_avars, &fc->l_avars_var);
21158 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "0",
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021159 (varnumber_T)(argcount - fp->uf_args.ga_len));
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021160 /* Use "name" to avoid a warning from some compiler that checks the
21161 * destination size. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021162 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar0cd49302008-11-20 09:37:01 +000021163 name = v->di_key;
21164 STRCPY(name, "000");
Bram Moolenaar33570922005-01-25 22:26:29 +000021165 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021166 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021167 v->di_tv.v_type = VAR_LIST;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021168 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021169 v->di_tv.vval.v_list = &fc->l_varlist;
21170 vim_memset(&fc->l_varlist, 0, sizeof(list_T));
21171 fc->l_varlist.lv_refcount = DO_NOT_FREE_CNT;
21172 fc->l_varlist.lv_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021173
21174 /*
21175 * Set a:firstline to "firstline" and a:lastline to "lastline".
21176 * Set a:name to named arguments.
21177 * Set a:N to the "..." arguments.
21178 */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021179 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "firstline",
Bram Moolenaar33570922005-01-25 22:26:29 +000021180 (varnumber_T)firstline);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021181 add_nr_var(&fc->l_avars, &fc->fixvar[fixvar_idx++].var, "lastline",
Bram Moolenaar33570922005-01-25 22:26:29 +000021182 (varnumber_T)lastline);
21183 for (i = 0; i < argcount; ++i)
21184 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021185 ai = i - fp->uf_args.ga_len;
Bram Moolenaar33570922005-01-25 22:26:29 +000021186 if (ai < 0)
21187 /* named argument a:name */
21188 name = FUNCARG(fp, i);
21189 else
Bram Moolenaare9a41262005-01-15 22:18:47 +000021190 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021191 /* "..." argument a:1, a:2, etc. */
21192 sprintf((char *)numbuf, "%d", ai + 1);
21193 name = numbuf;
21194 }
21195 if (fixvar_idx < FIXVAR_CNT && STRLEN(name) <= VAR_SHORT_LEN)
21196 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021197 v = &fc->fixvar[fixvar_idx++].var;
Bram Moolenaar33570922005-01-25 22:26:29 +000021198 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21199 }
21200 else
21201 {
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021202 v = (dictitem_T *)alloc((unsigned)(sizeof(dictitem_T)
21203 + STRLEN(name)));
Bram Moolenaar33570922005-01-25 22:26:29 +000021204 if (v == NULL)
21205 break;
21206 v->di_flags = DI_FLAGS_RO;
21207 }
21208 STRCPY(v->di_key, name);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021209 hash_add(&fc->l_avars.dv_hashtab, DI2HIKEY(v));
Bram Moolenaar33570922005-01-25 22:26:29 +000021210
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021211 /* Note: the values are copied directly to avoid alloc/free.
21212 * "argvars" must have VAR_FIXED for v_lock. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021213 v->di_tv = argvars[i];
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021214 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021215
21216 if (ai >= 0 && ai < MAX_FUNC_ARGS)
21217 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021218 list_append(&fc->l_varlist, &fc->l_listitems[ai]);
21219 fc->l_listitems[ai].li_tv = argvars[i];
21220 fc->l_listitems[ai].li_tv.v_lock = VAR_FIXED;
Bram Moolenaare9a41262005-01-15 22:18:47 +000021221 }
21222 }
21223
Bram Moolenaar071d4272004-06-13 20:20:40 +000021224 /* Don't redraw while executing the function. */
21225 ++RedrawingDisabled;
21226 save_sourcing_name = sourcing_name;
21227 save_sourcing_lnum = sourcing_lnum;
21228 sourcing_lnum = 1;
21229 sourcing_name = alloc((unsigned)((save_sourcing_name == NULL ? 0
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021230 : STRLEN(save_sourcing_name)) + STRLEN(fp->uf_name) + 13));
Bram Moolenaar071d4272004-06-13 20:20:40 +000021231 if (sourcing_name != NULL)
21232 {
21233 if (save_sourcing_name != NULL
21234 && STRNCMP(save_sourcing_name, "function ", 9) == 0)
21235 sprintf((char *)sourcing_name, "%s..", save_sourcing_name);
21236 else
21237 STRCPY(sourcing_name, "function ");
21238 cat_func_name(sourcing_name + STRLEN(sourcing_name), fp);
21239
21240 if (p_verbose >= 12)
21241 {
21242 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021243 verbose_enter_scroll();
21244
Bram Moolenaar555b2802005-05-19 21:08:39 +000021245 smsg((char_u *)_("calling %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021246 if (p_verbose >= 14)
21247 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021248 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021249 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021250 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021251 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021252
21253 msg_puts((char_u *)"(");
21254 for (i = 0; i < argcount; ++i)
21255 {
21256 if (i > 0)
21257 msg_puts((char_u *)", ");
Bram Moolenaar49cd9572005-01-03 21:06:01 +000021258 if (argvars[i].v_type == VAR_NUMBER)
21259 msg_outnum((long)argvars[i].vval.v_number);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021260 else
21261 {
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021262 s = tv2string(&argvars[i], &tofree, numbuf2, 0);
21263 if (s != NULL)
21264 {
21265 trunc_string(s, buf, MSG_BUF_CLEN);
21266 msg_puts(buf);
21267 vim_free(tofree);
21268 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021269 }
21270 }
21271 msg_puts((char_u *)")");
21272 }
21273 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021274
21275 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021276 --no_wait_return;
21277 }
21278 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021279#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021280 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021281 {
21282 if (!fp->uf_profiling && has_profiling(FALSE, fp->uf_name, NULL))
21283 func_do_profile(fp);
21284 if (fp->uf_profiling
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021285 || (fc->caller != NULL && fc->caller->func->uf_profiling))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021286 {
21287 ++fp->uf_tm_count;
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021288 profile_start(&call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021289 profile_zero(&fp->uf_tm_children);
21290 }
21291 script_prof_save(&wait_start);
21292 }
21293#endif
21294
Bram Moolenaar071d4272004-06-13 20:20:40 +000021295 save_current_SID = current_SID;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021296 current_SID = fp->uf_script_ID;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021297 save_did_emsg = did_emsg;
21298 did_emsg = FALSE;
21299
21300 /* call do_cmdline() to execute the lines */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021301 do_cmdline(NULL, get_func_line, (void *)fc,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021302 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
21303
21304 --RedrawingDisabled;
21305
21306 /* when the function was aborted because of an error, return -1 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021307 if ((did_emsg && (fp->uf_flags & FC_ABORT)) || rettv->v_type == VAR_UNKNOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021308 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021309 clear_tv(rettv);
21310 rettv->v_type = VAR_NUMBER;
21311 rettv->vval.v_number = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021312 }
21313
Bram Moolenaar05159a02005-02-26 23:04:13 +000021314#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021315 if (do_profiling == PROF_YES && (fp->uf_profiling
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021316 || (fc->caller != NULL && fc->caller->func->uf_profiling)))
Bram Moolenaar05159a02005-02-26 23:04:13 +000021317 {
Bram Moolenaare9da72e2006-11-01 17:34:40 +000021318 profile_end(&call_start);
21319 profile_sub_wait(&wait_start, &call_start);
21320 profile_add(&fp->uf_tm_total, &call_start);
21321 profile_self(&fp->uf_tm_self, &call_start, &fp->uf_tm_children);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021322 if (fc->caller != NULL && fc->caller->func->uf_profiling)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021323 {
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021324 profile_add(&fc->caller->func->uf_tm_children, &call_start);
21325 profile_add(&fc->caller->func->uf_tml_children, &call_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021326 }
21327 }
21328#endif
21329
Bram Moolenaar071d4272004-06-13 20:20:40 +000021330 /* when being verbose, mention the return value */
21331 if (p_verbose >= 12)
21332 {
Bram Moolenaar071d4272004-06-13 20:20:40 +000021333 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021334 verbose_enter_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021335
Bram Moolenaar071d4272004-06-13 20:20:40 +000021336 if (aborting())
Bram Moolenaar555b2802005-05-19 21:08:39 +000021337 smsg((char_u *)_("%s aborted"), sourcing_name);
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021338 else if (fc->rettv->v_type == VAR_NUMBER)
Bram Moolenaar555b2802005-05-19 21:08:39 +000021339 smsg((char_u *)_("%s returning #%ld"), sourcing_name,
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021340 (long)fc->rettv->vval.v_number);
Bram Moolenaar758711c2005-02-02 23:11:38 +000021341 else
Bram Moolenaar071d4272004-06-13 20:20:40 +000021342 {
Bram Moolenaar758711c2005-02-02 23:11:38 +000021343 char_u buf[MSG_BUF_LEN];
Bram Moolenaar89d40322006-08-29 15:30:07 +000021344 char_u numbuf2[NUMBUFLEN];
Bram Moolenaar758711c2005-02-02 23:11:38 +000021345 char_u *tofree;
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021346 char_u *s;
Bram Moolenaar758711c2005-02-02 23:11:38 +000021347
Bram Moolenaar555b2802005-05-19 21:08:39 +000021348 /* The value may be very long. Skip the middle part, so that we
21349 * have some idea how it starts and ends. smsg() would always
21350 * truncate it at the end. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021351 s = tv2string(fc->rettv, &tofree, numbuf2, 0);
Bram Moolenaar92c5aba2007-08-14 20:29:31 +000021352 if (s != NULL)
21353 {
21354 trunc_string(s, buf, MSG_BUF_CLEN);
21355 smsg((char_u *)_("%s returning %s"), sourcing_name, buf);
21356 vim_free(tofree);
21357 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021358 }
21359 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021360
21361 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021362 --no_wait_return;
21363 }
21364
21365 vim_free(sourcing_name);
21366 sourcing_name = save_sourcing_name;
21367 sourcing_lnum = save_sourcing_lnum;
21368 current_SID = save_current_SID;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021369#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021370 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021371 script_prof_restore(&wait_start);
21372#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021373
21374 if (p_verbose >= 12 && sourcing_name != NULL)
21375 {
21376 ++no_wait_return;
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021377 verbose_enter_scroll();
21378
Bram Moolenaar555b2802005-05-19 21:08:39 +000021379 smsg((char_u *)_("continuing in %s"), sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021380 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaar54ee7752005-05-31 22:22:17 +000021381
21382 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +000021383 --no_wait_return;
21384 }
21385
21386 did_emsg |= save_did_emsg;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021387 current_funccal = fc->caller;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021388 --depth;
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021389
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000021390 /* If the a:000 list and the l: and a: dicts are not referenced we can
21391 * free the funccall_T and what's in it. */
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021392 if (fc->l_varlist.lv_refcount == DO_NOT_FREE_CNT
21393 && fc->l_vars.dv_refcount == DO_NOT_FREE_CNT
21394 && fc->l_avars.dv_refcount == DO_NOT_FREE_CNT)
21395 {
21396 free_funccal(fc, FALSE);
21397 }
21398 else
21399 {
21400 hashitem_T *hi;
21401 listitem_T *li;
21402 int todo;
21403
21404 /* "fc" is still in use. This can happen when returning "a:000" or
21405 * assigning "l:" to a global variable.
21406 * Link "fc" in the list for garbage collection later. */
21407 fc->caller = previous_funccal;
21408 previous_funccal = fc;
21409
21410 /* Make a copy of the a: variables, since we didn't do that above. */
21411 todo = (int)fc->l_avars.dv_hashtab.ht_used;
21412 for (hi = fc->l_avars.dv_hashtab.ht_array; todo > 0; ++hi)
21413 {
21414 if (!HASHITEM_EMPTY(hi))
21415 {
21416 --todo;
21417 v = HI2DI(hi);
21418 copy_tv(&v->di_tv, &v->di_tv);
21419 }
21420 }
21421
21422 /* Make a copy of the a:000 items, since we didn't do that above. */
21423 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21424 copy_tv(&li->li_tv, &li->li_tv);
21425 }
21426}
21427
21428/*
21429 * Return TRUE if items in "fc" do not have "copyID". That means they are not
Bram Moolenaarc0a6fac2009-05-24 11:40:58 +000021430 * referenced from anywhere that is in use.
Bram Moolenaar8ba1bd22008-12-23 22:52:58 +000021431 */
21432 static int
21433can_free_funccal(fc, copyID)
21434 funccall_T *fc;
21435 int copyID;
21436{
21437 return (fc->l_varlist.lv_copyID != copyID
21438 && fc->l_vars.dv_copyID != copyID
21439 && fc->l_avars.dv_copyID != copyID);
21440}
21441
21442/*
21443 * Free "fc" and what it contains.
21444 */
21445 static void
21446free_funccal(fc, free_val)
21447 funccall_T *fc;
21448 int free_val; /* a: vars were allocated */
21449{
21450 listitem_T *li;
21451
21452 /* The a: variables typevals may not have been allocated, only free the
21453 * allocated variables. */
21454 vars_clear_ext(&fc->l_avars.dv_hashtab, free_val);
21455
21456 /* free all l: variables */
21457 vars_clear(&fc->l_vars.dv_hashtab);
21458
21459 /* Free the a:000 variables if they were allocated. */
21460 if (free_val)
21461 for (li = fc->l_varlist.lv_first; li != NULL; li = li->li_next)
21462 clear_tv(&li->li_tv);
21463
21464 vim_free(fc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021465}
21466
21467/*
Bram Moolenaar33570922005-01-25 22:26:29 +000021468 * Add a number variable "name" to dict "dp" with value "nr".
21469 */
21470 static void
21471add_nr_var(dp, v, name, nr)
21472 dict_T *dp;
21473 dictitem_T *v;
21474 char *name;
21475 varnumber_T nr;
21476{
21477 STRCPY(v->di_key, name);
21478 v->di_flags = DI_FLAGS_RO | DI_FLAGS_FIX;
21479 hash_add(&dp->dv_hashtab, DI2HIKEY(v));
21480 v->di_tv.v_type = VAR_NUMBER;
Bram Moolenaar2e6aff32005-01-31 19:25:36 +000021481 v->di_tv.v_lock = VAR_FIXED;
Bram Moolenaar33570922005-01-25 22:26:29 +000021482 v->di_tv.vval.v_number = nr;
21483}
21484
21485/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021486 * ":return [expr]"
21487 */
21488 void
21489ex_return(eap)
21490 exarg_T *eap;
21491{
21492 char_u *arg = eap->arg;
Bram Moolenaar33570922005-01-25 22:26:29 +000021493 typval_T rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021494 int returning = FALSE;
21495
21496 if (current_funccal == NULL)
21497 {
21498 EMSG(_("E133: :return not inside a function"));
21499 return;
21500 }
21501
21502 if (eap->skip)
21503 ++emsg_skip;
21504
21505 eap->nextcmd = NULL;
21506 if ((*arg != NUL && *arg != '|' && *arg != '\n')
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021507 && eval0(arg, &rettv, &eap->nextcmd, !eap->skip) != FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021508 {
21509 if (!eap->skip)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021510 returning = do_return(eap, FALSE, TRUE, &rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021511 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021512 clear_tv(&rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021513 }
21514 /* It's safer to return also on error. */
21515 else if (!eap->skip)
21516 {
21517 /*
21518 * Return unless the expression evaluation has been cancelled due to an
21519 * aborting error, an interrupt, or an exception.
21520 */
21521 if (!aborting())
21522 returning = do_return(eap, FALSE, TRUE, NULL);
21523 }
21524
21525 /* When skipping or the return gets pending, advance to the next command
21526 * in this line (!returning). Otherwise, ignore the rest of the line.
21527 * Following lines will be ignored by get_func_line(). */
21528 if (returning)
21529 eap->nextcmd = NULL;
21530 else if (eap->nextcmd == NULL) /* no argument */
21531 eap->nextcmd = check_nextcmd(arg);
21532
21533 if (eap->skip)
21534 --emsg_skip;
21535}
21536
21537/*
21538 * Return from a function. Possibly makes the return pending. Also called
21539 * for a pending return at the ":endtry" or after returning from an extra
21540 * do_cmdline(). "reanimate" is used in the latter case. "is_cmd" is set
Bram Moolenaar33570922005-01-25 22:26:29 +000021541 * when called due to a ":return" command. "rettv" may point to a typval_T
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021542 * with the return rettv. Returns TRUE when the return can be carried out,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021543 * FALSE when the return gets pending.
21544 */
21545 int
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021546do_return(eap, reanimate, is_cmd, rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021547 exarg_T *eap;
21548 int reanimate;
21549 int is_cmd;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021550 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021551{
21552 int idx;
21553 struct condstack *cstack = eap->cstack;
21554
21555 if (reanimate)
21556 /* Undo the return. */
21557 current_funccal->returned = FALSE;
21558
21559 /*
21560 * Cleanup (and inactivate) conditionals, but stop when a try conditional
21561 * not in its finally clause (which then is to be executed next) is found.
21562 * In this case, make the ":return" pending for execution at the ":endtry".
21563 * Otherwise, return normally.
21564 */
21565 idx = cleanup_conditionals(eap->cstack, 0, TRUE);
21566 if (idx >= 0)
21567 {
21568 cstack->cs_pending[idx] = CSTP_RETURN;
21569
21570 if (!is_cmd && !reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021571 /* A pending return again gets pending. "rettv" points to an
21572 * allocated variable with the rettv of the original ":return"'s
Bram Moolenaar071d4272004-06-13 20:20:40 +000021573 * argument if present or is NULL else. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021574 cstack->cs_rettv[idx] = rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021575 else
21576 {
21577 /* When undoing a return in order to make it pending, get the stored
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021578 * return rettv. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021579 if (reanimate)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021580 rettv = current_funccal->rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021581
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021582 if (rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021583 {
21584 /* Store the value of the pending return. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021585 if ((cstack->cs_rettv[idx] = alloc_tv()) != NULL)
Bram Moolenaar33570922005-01-25 22:26:29 +000021586 *(typval_T *)cstack->cs_rettv[idx] = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021587 else
21588 EMSG(_(e_outofmem));
21589 }
21590 else
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021591 cstack->cs_rettv[idx] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021592
21593 if (reanimate)
21594 {
21595 /* The pending return value could be overwritten by a ":return"
21596 * without argument in a finally clause; reset the default
21597 * return value. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021598 current_funccal->rettv->v_type = VAR_NUMBER;
21599 current_funccal->rettv->vval.v_number = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021600 }
21601 }
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021602 report_make_pending(CSTP_RETURN, rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021603 }
21604 else
21605 {
21606 current_funccal->returned = TRUE;
21607
21608 /* If the return is carried out now, store the return value. For
21609 * a return immediately after reanimation, the value is already
21610 * there. */
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021611 if (!reanimate && rettv != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021612 {
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021613 clear_tv(current_funccal->rettv);
Bram Moolenaar33570922005-01-25 22:26:29 +000021614 *current_funccal->rettv = *(typval_T *)rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021615 if (!is_cmd)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021616 vim_free(rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021617 }
21618 }
21619
21620 return idx < 0;
21621}
21622
21623/*
21624 * Free the variable with a pending return value.
21625 */
21626 void
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021627discard_pending_return(rettv)
21628 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021629{
Bram Moolenaar33570922005-01-25 22:26:29 +000021630 free_tv((typval_T *)rettv);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021631}
21632
21633/*
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021634 * Generate a return command for producing the value of "rettv". The result
Bram Moolenaar071d4272004-06-13 20:20:40 +000021635 * is an allocated string. Used by report_pending() for verbose messages.
21636 */
21637 char_u *
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021638get_return_cmd(rettv)
21639 void *rettv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021640{
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021641 char_u *s = NULL;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021642 char_u *tofree = NULL;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021643 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021644
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021645 if (rettv != NULL)
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021646 s = echo_string((typval_T *)rettv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021647 if (s == NULL)
21648 s = (char_u *)"";
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021649
21650 STRCPY(IObuff, ":return ");
21651 STRNCPY(IObuff + 8, s, IOSIZE - 8);
21652 if (STRLEN(s) + 8 >= IOSIZE)
21653 STRCPY(IObuff + IOSIZE - 4, "...");
21654 vim_free(tofree);
21655 return vim_strsave(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021656}
21657
21658/*
21659 * Get next function line.
21660 * Called by do_cmdline() to get the next line.
21661 * Returns allocated string, or NULL for end of function.
21662 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021663 char_u *
21664get_func_line(c, cookie, indent)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000021665 int c UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021666 void *cookie;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000021667 int indent UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021668{
Bram Moolenaar33570922005-01-25 22:26:29 +000021669 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021670 ufunc_T *fp = fcp->func;
21671 char_u *retval;
21672 garray_T *gap; /* growarray with function lines */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021673
21674 /* If breakpoints have been added/deleted need to check for it. */
21675 if (fcp->dbg_tick != debug_tick)
21676 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021677 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021678 sourcing_lnum);
21679 fcp->dbg_tick = debug_tick;
21680 }
Bram Moolenaar05159a02005-02-26 23:04:13 +000021681#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021682 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +000021683 func_line_end(cookie);
21684#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021685
Bram Moolenaar05159a02005-02-26 23:04:13 +000021686 gap = &fp->uf_lines;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021687 if (((fp->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
21688 || fcp->returned)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021689 retval = NULL;
21690 else
21691 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021692 /* Skip NULL lines (continuation lines). */
21693 while (fcp->linenr < gap->ga_len
21694 && ((char_u **)(gap->ga_data))[fcp->linenr] == NULL)
21695 ++fcp->linenr;
21696 if (fcp->linenr >= gap->ga_len)
21697 retval = NULL;
21698 else
21699 {
21700 retval = vim_strsave(((char_u **)(gap->ga_data))[fcp->linenr++]);
21701 sourcing_lnum = fcp->linenr;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021702#ifdef FEAT_PROFILE
Bram Moolenaarb3656ed2006-03-20 21:59:49 +000021703 if (do_profiling == PROF_YES)
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021704 func_line_start(cookie);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021705#endif
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021706 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021707 }
21708
21709 /* Did we encounter a breakpoint? */
21710 if (fcp->breakpoint != 0 && fcp->breakpoint <= sourcing_lnum)
21711 {
Bram Moolenaar05159a02005-02-26 23:04:13 +000021712 dbg_breakpoint(fp->uf_name, sourcing_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021713 /* Find next breakpoint. */
Bram Moolenaar05159a02005-02-26 23:04:13 +000021714 fcp->breakpoint = dbg_find_breakpoint(FALSE, fp->uf_name,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021715 sourcing_lnum);
21716 fcp->dbg_tick = debug_tick;
21717 }
21718
21719 return retval;
21720}
21721
Bram Moolenaar05159a02005-02-26 23:04:13 +000021722#if defined(FEAT_PROFILE) || defined(PROTO)
21723/*
21724 * Called when starting to read a function line.
21725 * "sourcing_lnum" must be correct!
21726 * When skipping lines it may not actually be executed, but we won't find out
21727 * until later and we need to store the time now.
21728 */
21729 void
21730func_line_start(cookie)
21731 void *cookie;
21732{
21733 funccall_T *fcp = (funccall_T *)cookie;
21734 ufunc_T *fp = fcp->func;
21735
21736 if (fp->uf_profiling && sourcing_lnum >= 1
21737 && sourcing_lnum <= fp->uf_lines.ga_len)
21738 {
21739 fp->uf_tml_idx = sourcing_lnum - 1;
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021740 /* Skip continuation lines. */
21741 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL)
21742 --fp->uf_tml_idx;
Bram Moolenaar05159a02005-02-26 23:04:13 +000021743 fp->uf_tml_execed = FALSE;
21744 profile_start(&fp->uf_tml_start);
21745 profile_zero(&fp->uf_tml_children);
21746 profile_get_wait(&fp->uf_tml_wait);
21747 }
21748}
21749
21750/*
21751 * Called when actually executing a function line.
21752 */
21753 void
21754func_line_exec(cookie)
21755 void *cookie;
21756{
21757 funccall_T *fcp = (funccall_T *)cookie;
21758 ufunc_T *fp = fcp->func;
21759
21760 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21761 fp->uf_tml_execed = TRUE;
21762}
21763
21764/*
21765 * Called when done with a function line.
21766 */
21767 void
21768func_line_end(cookie)
21769 void *cookie;
21770{
21771 funccall_T *fcp = (funccall_T *)cookie;
21772 ufunc_T *fp = fcp->func;
21773
21774 if (fp->uf_profiling && fp->uf_tml_idx >= 0)
21775 {
21776 if (fp->uf_tml_execed)
21777 {
21778 ++fp->uf_tml_count[fp->uf_tml_idx];
21779 profile_end(&fp->uf_tml_start);
21780 profile_sub_wait(&fp->uf_tml_wait, &fp->uf_tml_start);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021781 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start);
Bram Moolenaar1056d982006-03-09 22:37:52 +000021782 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start,
21783 &fp->uf_tml_children);
Bram Moolenaar05159a02005-02-26 23:04:13 +000021784 }
21785 fp->uf_tml_idx = -1;
21786 }
21787}
21788#endif
21789
Bram Moolenaar071d4272004-06-13 20:20:40 +000021790/*
21791 * Return TRUE if the currently active function should be ended, because a
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021792 * return was encountered or an error occurred. Used inside a ":while".
Bram Moolenaar071d4272004-06-13 20:20:40 +000021793 */
21794 int
21795func_has_ended(cookie)
21796 void *cookie;
21797{
Bram Moolenaar33570922005-01-25 22:26:29 +000021798 funccall_T *fcp = (funccall_T *)cookie;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021799
21800 /* Ignore the "abort" flag if the abortion behavior has been changed due to
21801 * an error inside a try conditional. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021802 return (((fcp->func->uf_flags & FC_ABORT) && did_emsg && !aborted_in_try())
Bram Moolenaar071d4272004-06-13 20:20:40 +000021803 || fcp->returned);
21804}
21805
21806/*
21807 * return TRUE if cookie indicates a function which "abort"s on errors.
21808 */
21809 int
21810func_has_abort(cookie)
21811 void *cookie;
21812{
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000021813 return ((funccall_T *)cookie)->func->uf_flags & FC_ABORT;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021814}
21815
21816#if defined(FEAT_VIMINFO) || defined(FEAT_SESSION)
21817typedef enum
21818{
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021819 VAR_FLAVOUR_DEFAULT, /* doesn't start with uppercase */
21820 VAR_FLAVOUR_SESSION, /* starts with uppercase, some lower */
21821 VAR_FLAVOUR_VIMINFO /* all uppercase */
Bram Moolenaar071d4272004-06-13 20:20:40 +000021822} var_flavour_T;
21823
21824static var_flavour_T var_flavour __ARGS((char_u *varname));
21825
21826 static var_flavour_T
21827var_flavour(varname)
21828 char_u *varname;
21829{
21830 char_u *p = varname;
21831
21832 if (ASCII_ISUPPER(*p))
21833 {
21834 while (*(++p))
21835 if (ASCII_ISLOWER(*p))
21836 return VAR_FLAVOUR_SESSION;
21837 return VAR_FLAVOUR_VIMINFO;
21838 }
21839 else
21840 return VAR_FLAVOUR_DEFAULT;
21841}
21842#endif
21843
21844#if defined(FEAT_VIMINFO) || defined(PROTO)
21845/*
21846 * Restore global vars that start with a capital from the viminfo file
21847 */
21848 int
21849read_viminfo_varlist(virp, writing)
21850 vir_T *virp;
21851 int writing;
21852{
21853 char_u *tab;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021854 int type = VAR_NUMBER;
Bram Moolenaar33570922005-01-25 22:26:29 +000021855 typval_T tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021856
21857 if (!writing && (find_viminfo_parameter('!') != NULL))
21858 {
21859 tab = vim_strchr(virp->vir_line + 1, '\t');
21860 if (tab != NULL)
21861 {
21862 *tab++ = '\0'; /* isolate the variable name */
21863 if (*tab == 'S') /* string var */
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021864 type = VAR_STRING;
21865#ifdef FEAT_FLOAT
21866 else if (*tab == 'F')
21867 type = VAR_FLOAT;
21868#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021869
21870 tab = vim_strchr(tab, '\t');
21871 if (tab != NULL)
21872 {
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021873 tv.v_type = type;
21874 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021875 tv.vval.v_string = viminfo_readstring(virp,
Bram Moolenaar071d4272004-06-13 20:20:40 +000021876 (int)(tab - virp->vir_line + 1), TRUE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021877#ifdef FEAT_FLOAT
21878 else if (type == VAR_FLOAT)
21879 (void)string2float(tab + 1, &tv.vval.v_float);
21880#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000021881 else
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021882 tv.vval.v_number = atol((char *)tab + 1);
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021883 set_var(virp->vir_line + 1, &tv, FALSE);
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021884 if (type == VAR_STRING)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021885 vim_free(tv.vval.v_string);
Bram Moolenaar071d4272004-06-13 20:20:40 +000021886 }
21887 }
21888 }
21889
21890 return viminfo_readline(virp);
21891}
21892
21893/*
21894 * Write global vars that start with a capital to the viminfo file
21895 */
21896 void
21897write_viminfo_varlist(fp)
21898 FILE *fp;
21899{
Bram Moolenaar33570922005-01-25 22:26:29 +000021900 hashitem_T *hi;
21901 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021902 int todo;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021903 char *s;
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021904 char_u *p;
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021905 char_u *tofree;
Bram Moolenaar8a283e52005-01-06 23:28:25 +000021906 char_u numbuf[NUMBUFLEN];
Bram Moolenaar071d4272004-06-13 20:20:40 +000021907
21908 if (find_viminfo_parameter('!') == NULL)
21909 return;
21910
21911 fprintf(fp, _("\n# global variables:\n"));
Bram Moolenaara7043832005-01-21 11:56:39 +000021912
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021913 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021914 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021915 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021916 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021917 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021918 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021919 this_var = HI2DI(hi);
21920 if (var_flavour(this_var->di_key) == VAR_FLAVOUR_VIMINFO)
Bram Moolenaarc70646c2005-01-04 21:52:38 +000021921 {
Bram Moolenaar33570922005-01-25 22:26:29 +000021922 switch (this_var->di_tv.v_type)
Bram Moolenaara7043832005-01-21 11:56:39 +000021923 {
21924 case VAR_STRING: s = "STR"; break;
21925 case VAR_NUMBER: s = "NUM"; break;
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021926#ifdef FEAT_FLOAT
21927 case VAR_FLOAT: s = "FLO"; break;
21928#endif
Bram Moolenaara7043832005-01-21 11:56:39 +000021929 default: continue;
21930 }
Bram Moolenaar33570922005-01-25 22:26:29 +000021931 fprintf(fp, "!%s\t%s\t", this_var->di_key, s);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +000021932 p = echo_string(&this_var->di_tv, &tofree, numbuf, 0);
Bram Moolenaar81bf7082005-02-12 14:31:42 +000021933 if (p != NULL)
21934 viminfo_writestring(fp, p);
Bram Moolenaara7043832005-01-21 11:56:39 +000021935 vim_free(tofree);
21936 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021937 }
21938 }
21939}
21940#endif
21941
21942#if defined(FEAT_SESSION) || defined(PROTO)
21943 int
21944store_session_globals(fd)
21945 FILE *fd;
21946{
Bram Moolenaar33570922005-01-25 22:26:29 +000021947 hashitem_T *hi;
21948 dictitem_T *this_var;
Bram Moolenaara7043832005-01-21 11:56:39 +000021949 int todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +000021950 char_u *p, *t;
21951
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000021952 todo = (int)globvarht.ht_used;
Bram Moolenaar33570922005-01-25 22:26:29 +000021953 for (hi = globvarht.ht_array; todo > 0; ++hi)
Bram Moolenaar071d4272004-06-13 20:20:40 +000021954 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021955 if (!HASHITEM_EMPTY(hi))
Bram Moolenaar071d4272004-06-13 20:20:40 +000021956 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021957 --todo;
Bram Moolenaar33570922005-01-25 22:26:29 +000021958 this_var = HI2DI(hi);
21959 if ((this_var->di_tv.v_type == VAR_NUMBER
21960 || this_var->di_tv.v_type == VAR_STRING)
21961 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
Bram Moolenaar3d60ec22005-01-05 22:19:46 +000021962 {
Bram Moolenaara7043832005-01-21 11:56:39 +000021963 /* Escape special characters with a backslash. Turn a LF and
21964 * CR into \n and \r. */
Bram Moolenaar33570922005-01-25 22:26:29 +000021965 p = vim_strsave_escaped(get_tv_string(&this_var->di_tv),
Bram Moolenaara7043832005-01-21 11:56:39 +000021966 (char_u *)"\\\"\n\r");
21967 if (p == NULL) /* out of memory */
21968 break;
21969 for (t = p; *t != NUL; ++t)
21970 if (*t == '\n')
21971 *t = 'n';
21972 else if (*t == '\r')
21973 *t = 'r';
21974 if ((fprintf(fd, "let %s = %c%s%c",
Bram Moolenaar33570922005-01-25 22:26:29 +000021975 this_var->di_key,
21976 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21977 : ' ',
21978 p,
21979 (this_var->di_tv.v_type == VAR_STRING) ? '"'
21980 : ' ') < 0)
Bram Moolenaara7043832005-01-21 11:56:39 +000021981 || put_eol(fd) == FAIL)
21982 {
21983 vim_free(p);
21984 return FAIL;
21985 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000021986 vim_free(p);
21987 }
Bram Moolenaar8c8de832008-06-24 22:58:06 +000021988#ifdef FEAT_FLOAT
21989 else if (this_var->di_tv.v_type == VAR_FLOAT
21990 && var_flavour(this_var->di_key) == VAR_FLAVOUR_SESSION)
21991 {
21992 float_T f = this_var->di_tv.vval.v_float;
21993 int sign = ' ';
21994
21995 if (f < 0)
21996 {
21997 f = -f;
21998 sign = '-';
21999 }
22000 if ((fprintf(fd, "let %s = %c&%f",
22001 this_var->di_key, sign, f) < 0)
22002 || put_eol(fd) == FAIL)
22003 return FAIL;
22004 }
22005#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022006 }
22007 }
22008 return OK;
22009}
22010#endif
22011
Bram Moolenaar661b1822005-07-28 22:36:45 +000022012/*
22013 * Display script name where an item was last set.
22014 * Should only be invoked when 'verbose' is non-zero.
22015 */
22016 void
22017last_set_msg(scriptID)
22018 scid_T scriptID;
22019{
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000022020 char_u *p;
22021
Bram Moolenaar661b1822005-07-28 22:36:45 +000022022 if (scriptID != 0)
22023 {
Bram Moolenaarcafda4f2005-09-06 19:25:11 +000022024 p = home_replace_save(NULL, get_scriptname(scriptID));
22025 if (p != NULL)
22026 {
22027 verbose_enter();
22028 MSG_PUTS(_("\n\tLast set from "));
22029 MSG_PUTS(p);
22030 vim_free(p);
22031 verbose_leave();
22032 }
Bram Moolenaar661b1822005-07-28 22:36:45 +000022033 }
22034}
22035
Bram Moolenaard812df62008-11-09 12:46:09 +000022036/*
22037 * List v:oldfiles in a nice way.
22038 */
Bram Moolenaard812df62008-11-09 12:46:09 +000022039 void
22040ex_oldfiles(eap)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +000022041 exarg_T *eap UNUSED;
Bram Moolenaard812df62008-11-09 12:46:09 +000022042{
22043 list_T *l = vimvars[VV_OLDFILES].vv_list;
22044 listitem_T *li;
22045 int nr = 0;
22046
22047 if (l == NULL)
22048 msg((char_u *)_("No old files"));
22049 else
22050 {
22051 msg_start();
22052 msg_scroll = TRUE;
22053 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
22054 {
22055 msg_outnum((long)++nr);
22056 MSG_PUTS(": ");
22057 msg_outtrans(get_tv_string(&li->li_tv));
22058 msg_putchar('\n');
22059 out_flush(); /* output one line at a time */
22060 ui_breakcheck();
22061 }
22062 /* Assume "got_int" was set to truncate the listing. */
22063 got_int = FALSE;
22064
22065#ifdef FEAT_BROWSE_CMD
22066 if (cmdmod.browse)
22067 {
22068 quit_more = FALSE;
22069 nr = prompt_for_number(FALSE);
22070 msg_starthere();
22071 if (nr > 0)
22072 {
22073 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
22074 (long)nr);
22075
22076 if (p != NULL)
22077 {
22078 p = expand_env_save(p);
22079 eap->arg = p;
22080 eap->cmdidx = CMD_edit;
22081 cmdmod.browse = FALSE;
22082 do_exedit(eap, NULL);
22083 vim_free(p);
22084 }
22085 }
22086 }
22087#endif
22088 }
22089}
22090
Bram Moolenaar071d4272004-06-13 20:20:40 +000022091#endif /* FEAT_EVAL */
22092
Bram Moolenaar071d4272004-06-13 20:20:40 +000022093
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022094#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022095
22096#ifdef WIN3264
22097/*
22098 * Functions for ":8" filename modifier: get 8.3 version of a filename.
22099 */
22100static int get_short_pathname __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22101static int shortpath_for_invalid_fname __ARGS((char_u **fname, char_u **bufp, int *fnamelen));
22102static int shortpath_for_partial __ARGS((char_u **fnamep, char_u **bufp, int *fnamelen));
22103
22104/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022105 * Get the short path (8.3) for the filename in "fnamep".
22106 * Only works for a valid file name.
22107 * When the path gets longer "fnamep" is changed and the allocated buffer
22108 * is put in "bufp".
22109 * *fnamelen is the length of "fnamep" and set to 0 for a nonexistent path.
22110 * Returns OK on success, FAIL on failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022111 */
22112 static int
22113get_short_pathname(fnamep, bufp, fnamelen)
22114 char_u **fnamep;
22115 char_u **bufp;
22116 int *fnamelen;
22117{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022118 int l, len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022119 char_u *newbuf;
22120
22121 len = *fnamelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022122 l = GetShortPathName(*fnamep, *fnamep, len);
22123 if (l > len - 1)
22124 {
22125 /* If that doesn't work (not enough space), then save the string
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022126 * and try again with a new buffer big enough. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022127 newbuf = vim_strnsave(*fnamep, l);
22128 if (newbuf == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022129 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022130
22131 vim_free(*bufp);
22132 *fnamep = *bufp = newbuf;
22133
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022134 /* Really should always succeed, as the buffer is big enough. */
22135 l = GetShortPathName(*fnamep, *fnamep, l+1);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022136 }
22137
22138 *fnamelen = l;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022139 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022140}
22141
22142/*
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022143 * Get the short path (8.3) for the filename in "fname". The converted
22144 * path is returned in "bufp".
22145 *
22146 * Some of the directories specified in "fname" may not exist. This function
22147 * will shorten the existing directories at the beginning of the path and then
22148 * append the remaining non-existing path.
22149 *
22150 * fname - Pointer to the filename to shorten. On return, contains the
22151 * pointer to the shortened pathname
22152 * bufp - Pointer to an allocated buffer for the filename.
22153 * fnamelen - Length of the filename pointed to by fname
22154 *
22155 * Returns OK on success (or nothing done) and FAIL on failure (out of memory).
Bram Moolenaar071d4272004-06-13 20:20:40 +000022156 */
22157 static int
22158shortpath_for_invalid_fname(fname, bufp, fnamelen)
22159 char_u **fname;
22160 char_u **bufp;
22161 int *fnamelen;
22162{
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022163 char_u *short_fname, *save_fname, *pbuf_unused;
22164 char_u *endp, *save_endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022165 char_u ch;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022166 int old_len, len;
22167 int new_len, sfx_len;
22168 int retval = OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022169
22170 /* Make a copy */
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022171 old_len = *fnamelen;
22172 save_fname = vim_strnsave(*fname, old_len);
22173 pbuf_unused = NULL;
22174 short_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022175
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022176 endp = save_fname + old_len - 1; /* Find the end of the copy */
22177 save_endp = endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022178
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022179 /*
22180 * Try shortening the supplied path till it succeeds by removing one
22181 * directory at a time from the tail of the path.
22182 */
22183 len = 0;
22184 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022185 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022186 /* go back one path-separator */
22187 while (endp > save_fname && !after_pathsep(save_fname, endp + 1))
22188 --endp;
22189 if (endp <= save_fname)
22190 break; /* processed the complete path */
22191
22192 /*
22193 * Replace the path separator with a NUL and try to shorten the
22194 * resulting path.
22195 */
22196 ch = *endp;
22197 *endp = 0;
22198 short_fname = save_fname;
Bram Moolenaarc236c162008-07-13 17:41:49 +000022199 len = (int)STRLEN(short_fname) + 1;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022200 if (get_short_pathname(&short_fname, &pbuf_unused, &len) == FAIL)
22201 {
22202 retval = FAIL;
22203 goto theend;
22204 }
22205 *endp = ch; /* preserve the string */
22206
22207 if (len > 0)
22208 break; /* successfully shortened the path */
22209
22210 /* failed to shorten the path. Skip the path separator */
22211 --endp;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022212 }
22213
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022214 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022215 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022216 /*
22217 * Succeeded in shortening the path. Now concatenate the shortened
22218 * path with the remaining path at the tail.
22219 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022220
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022221 /* Compute the length of the new path. */
22222 sfx_len = (int)(save_endp - endp) + 1;
22223 new_len = len + sfx_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022224
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022225 *fnamelen = new_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022226 vim_free(*bufp);
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022227 if (new_len > old_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022228 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022229 /* There is not enough space in the currently allocated string,
22230 * copy it to a buffer big enough. */
22231 *fname = *bufp = vim_strnsave(short_fname, new_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022232 if (*fname == NULL)
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022233 {
22234 retval = FAIL;
22235 goto theend;
22236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022237 }
22238 else
22239 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022240 /* Transfer short_fname to the main buffer (it's big enough),
22241 * unless get_short_pathname() did its work in-place. */
22242 *fname = *bufp = save_fname;
22243 if (short_fname != save_fname)
22244 vim_strncpy(save_fname, short_fname, len);
22245 save_fname = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022246 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022247
22248 /* concat the not-shortened part of the path */
22249 vim_strncpy(*fname + len, endp, sfx_len);
22250 (*fname)[new_len] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022251 }
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022252
22253theend:
22254 vim_free(pbuf_unused);
22255 vim_free(save_fname);
22256
22257 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022258}
22259
22260/*
22261 * Get a pathname for a partial path.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022262 * Returns OK for success, FAIL for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022263 */
22264 static int
22265shortpath_for_partial(fnamep, bufp, fnamelen)
22266 char_u **fnamep;
22267 char_u **bufp;
22268 int *fnamelen;
22269{
22270 int sepcount, len, tflen;
22271 char_u *p;
22272 char_u *pbuf, *tfname;
22273 int hasTilde;
22274
Bram Moolenaar8c8de832008-06-24 22:58:06 +000022275 /* Count up the path separators from the RHS.. so we know which part
22276 * of the path to return. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000022277 sepcount = 0;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022278 for (p = *fnamep; p < *fnamep + *fnamelen; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022279 if (vim_ispathsep(*p))
22280 ++sepcount;
22281
22282 /* Need full path first (use expand_env() to remove a "~/") */
22283 hasTilde = (**fnamep == '~');
22284 if (hasTilde)
22285 pbuf = tfname = expand_env_save(*fnamep);
22286 else
22287 pbuf = tfname = FullName_save(*fnamep, FALSE);
22288
Bram Moolenaara93fa7e2006-04-17 22:14:47 +000022289 len = tflen = (int)STRLEN(tfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022290
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022291 if (get_short_pathname(&tfname, &pbuf, &len) == FAIL)
22292 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022293
22294 if (len == 0)
22295 {
22296 /* Don't have a valid filename, so shorten the rest of the
22297 * path if we can. This CAN give us invalid 8.3 filenames, but
22298 * there's not a lot of point in guessing what it might be.
22299 */
22300 len = tflen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022301 if (shortpath_for_invalid_fname(&tfname, &pbuf, &len) == FAIL)
22302 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022303 }
22304
22305 /* Count the paths backward to find the beginning of the desired string. */
22306 for (p = tfname + len - 1; p >= tfname; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022307 {
22308#ifdef FEAT_MBYTE
22309 if (has_mbyte)
22310 p -= mb_head_off(tfname, p);
22311#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000022312 if (vim_ispathsep(*p))
22313 {
22314 if (sepcount == 0 || (hasTilde && sepcount == 1))
22315 break;
22316 else
22317 sepcount --;
22318 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022319 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022320 if (hasTilde)
22321 {
22322 --p;
22323 if (p >= tfname)
22324 *p = '~';
22325 else
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022326 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022327 }
22328 else
22329 ++p;
22330
22331 /* Copy in the string - p indexes into tfname - allocated at pbuf */
22332 vim_free(*bufp);
22333 *fnamelen = (int)STRLEN(p);
22334 *bufp = pbuf;
22335 *fnamep = p;
22336
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022337 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022338}
22339#endif /* WIN3264 */
22340
22341/*
22342 * Adjust a filename, according to a string of modifiers.
22343 * *fnamep must be NUL terminated when called. When returning, the length is
22344 * determined by *fnamelen.
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022345 * Returns VALID_ flags or -1 for failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +000022346 * When there is an error, *fnamep is set to NULL.
22347 */
22348 int
22349modify_fname(src, usedlen, fnamep, bufp, fnamelen)
22350 char_u *src; /* string with modifiers */
22351 int *usedlen; /* characters after src that are used */
22352 char_u **fnamep; /* file name so far */
22353 char_u **bufp; /* buffer for allocated file name or NULL */
22354 int *fnamelen; /* length of fnamep */
22355{
22356 int valid = 0;
22357 char_u *tail;
22358 char_u *s, *p, *pbuf;
22359 char_u dirname[MAXPATHL];
22360 int c;
22361 int has_fullname = 0;
22362#ifdef WIN3264
22363 int has_shortname = 0;
22364#endif
22365
22366repeat:
22367 /* ":p" - full path/file_name */
22368 if (src[*usedlen] == ':' && src[*usedlen + 1] == 'p')
22369 {
22370 has_fullname = 1;
22371
22372 valid |= VALID_PATH;
22373 *usedlen += 2;
22374
22375 /* Expand "~/path" for all systems and "~user/path" for Unix and VMS */
22376 if ((*fnamep)[0] == '~'
22377#if !defined(UNIX) && !(defined(VMS) && defined(USER_HOME))
22378 && ((*fnamep)[1] == '/'
22379# ifdef BACKSLASH_IN_FILENAME
22380 || (*fnamep)[1] == '\\'
22381# endif
22382 || (*fnamep)[1] == NUL)
22383
22384#endif
22385 )
22386 {
22387 *fnamep = expand_env_save(*fnamep);
22388 vim_free(*bufp); /* free any allocated file name */
22389 *bufp = *fnamep;
22390 if (*fnamep == NULL)
22391 return -1;
22392 }
22393
22394 /* When "/." or "/.." is used: force expansion to get rid of it. */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022395 for (p = *fnamep; *p != NUL; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +000022396 {
22397 if (vim_ispathsep(*p)
22398 && p[1] == '.'
22399 && (p[2] == NUL
22400 || vim_ispathsep(p[2])
22401 || (p[2] == '.'
22402 && (p[3] == NUL || vim_ispathsep(p[3])))))
22403 break;
22404 }
22405
22406 /* FullName_save() is slow, don't use it when not needed. */
22407 if (*p != NUL || !vim_isAbsName(*fnamep))
22408 {
22409 *fnamep = FullName_save(*fnamep, *p != NUL);
22410 vim_free(*bufp); /* free any allocated file name */
22411 *bufp = *fnamep;
22412 if (*fnamep == NULL)
22413 return -1;
22414 }
22415
22416 /* Append a path separator to a directory. */
22417 if (mch_isdir(*fnamep))
22418 {
22419 /* Make room for one or two extra characters. */
22420 *fnamep = vim_strnsave(*fnamep, (int)STRLEN(*fnamep) + 2);
22421 vim_free(*bufp); /* free any allocated file name */
22422 *bufp = *fnamep;
22423 if (*fnamep == NULL)
22424 return -1;
22425 add_pathsep(*fnamep);
22426 }
22427 }
22428
22429 /* ":." - path relative to the current directory */
22430 /* ":~" - path relative to the home directory */
22431 /* ":8" - shortname path - postponed till after */
22432 while (src[*usedlen] == ':'
22433 && ((c = src[*usedlen + 1]) == '.' || c == '~' || c == '8'))
22434 {
22435 *usedlen += 2;
22436 if (c == '8')
22437 {
22438#ifdef WIN3264
22439 has_shortname = 1; /* Postpone this. */
22440#endif
22441 continue;
22442 }
22443 pbuf = NULL;
22444 /* Need full path first (use expand_env() to remove a "~/") */
22445 if (!has_fullname)
22446 {
22447 if (c == '.' && **fnamep == '~')
22448 p = pbuf = expand_env_save(*fnamep);
22449 else
22450 p = pbuf = FullName_save(*fnamep, FALSE);
22451 }
22452 else
22453 p = *fnamep;
22454
22455 has_fullname = 0;
22456
22457 if (p != NULL)
22458 {
22459 if (c == '.')
22460 {
22461 mch_dirname(dirname, MAXPATHL);
22462 s = shorten_fname(p, dirname);
22463 if (s != NULL)
22464 {
22465 *fnamep = s;
22466 if (pbuf != NULL)
22467 {
22468 vim_free(*bufp); /* free any allocated file name */
22469 *bufp = pbuf;
22470 pbuf = NULL;
22471 }
22472 }
22473 }
22474 else
22475 {
22476 home_replace(NULL, p, dirname, MAXPATHL, TRUE);
22477 /* Only replace it when it starts with '~' */
22478 if (*dirname == '~')
22479 {
22480 s = vim_strsave(dirname);
22481 if (s != NULL)
22482 {
22483 *fnamep = s;
22484 vim_free(*bufp);
22485 *bufp = s;
22486 }
22487 }
22488 }
22489 vim_free(pbuf);
22490 }
22491 }
22492
22493 tail = gettail(*fnamep);
22494 *fnamelen = (int)STRLEN(*fnamep);
22495
22496 /* ":h" - head, remove "/file_name", can be repeated */
22497 /* Don't remove the first "/" or "c:\" */
22498 while (src[*usedlen] == ':' && src[*usedlen + 1] == 'h')
22499 {
22500 valid |= VALID_HEAD;
22501 *usedlen += 2;
22502 s = get_past_head(*fnamep);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000022503 while (tail > s && after_pathsep(s, tail))
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022504 mb_ptr_back(*fnamep, tail);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022505 *fnamelen = (int)(tail - *fnamep);
22506#ifdef VMS
22507 if (*fnamelen > 0)
22508 *fnamelen += 1; /* the path separator is part of the path */
22509#endif
Bram Moolenaar5461cfe2007-09-25 18:40:14 +000022510 if (*fnamelen == 0)
22511 {
22512 /* Result is empty. Turn it into "." to make ":cd %:h" work. */
22513 p = vim_strsave((char_u *)".");
22514 if (p == NULL)
22515 return -1;
22516 vim_free(*bufp);
22517 *bufp = *fnamep = tail = p;
22518 *fnamelen = 1;
22519 }
22520 else
22521 {
22522 while (tail > s && !after_pathsep(s, tail))
22523 mb_ptr_back(*fnamep, tail);
22524 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000022525 }
22526
22527 /* ":8" - shortname */
22528 if (src[*usedlen] == ':' && src[*usedlen + 1] == '8')
22529 {
22530 *usedlen += 2;
22531#ifdef WIN3264
22532 has_shortname = 1;
22533#endif
22534 }
22535
22536#ifdef WIN3264
22537 /* Check shortname after we have done 'heads' and before we do 'tails'
22538 */
22539 if (has_shortname)
22540 {
22541 pbuf = NULL;
22542 /* Copy the string if it is shortened by :h */
22543 if (*fnamelen < (int)STRLEN(*fnamep))
22544 {
22545 p = vim_strnsave(*fnamep, *fnamelen);
22546 if (p == 0)
22547 return -1;
22548 vim_free(*bufp);
22549 *bufp = *fnamep = p;
22550 }
22551
22552 /* Split into two implementations - makes it easier. First is where
22553 * there isn't a full name already, second is where there is.
22554 */
22555 if (!has_fullname && !vim_isAbsName(*fnamep))
22556 {
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022557 if (shortpath_for_partial(fnamep, bufp, fnamelen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022558 return -1;
22559 }
22560 else
22561 {
22562 int l;
22563
22564 /* Simple case, already have the full-name
22565 * Nearly always shorter, so try first time. */
22566 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022567 if (get_short_pathname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022568 return -1;
22569
22570 if (l == 0)
22571 {
22572 /* Couldn't find the filename.. search the paths.
22573 */
22574 l = *fnamelen;
Bram Moolenaarbcebfb62008-05-29 19:47:13 +000022575 if (shortpath_for_invalid_fname(fnamep, bufp, &l) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +000022576 return -1;
22577 }
22578 *fnamelen = l;
22579 }
22580 }
22581#endif /* WIN3264 */
22582
22583 /* ":t" - tail, just the basename */
22584 if (src[*usedlen] == ':' && src[*usedlen + 1] == 't')
22585 {
22586 *usedlen += 2;
22587 *fnamelen -= (int)(tail - *fnamep);
22588 *fnamep = tail;
22589 }
22590
22591 /* ":e" - extension, can be repeated */
22592 /* ":r" - root, without extension, can be repeated */
22593 while (src[*usedlen] == ':'
22594 && (src[*usedlen + 1] == 'e' || src[*usedlen + 1] == 'r'))
22595 {
22596 /* find a '.' in the tail:
22597 * - for second :e: before the current fname
22598 * - otherwise: The last '.'
22599 */
22600 if (src[*usedlen + 1] == 'e' && *fnamep > tail)
22601 s = *fnamep - 2;
22602 else
22603 s = *fnamep + *fnamelen - 1;
22604 for ( ; s > tail; --s)
22605 if (s[0] == '.')
22606 break;
22607 if (src[*usedlen + 1] == 'e') /* :e */
22608 {
22609 if (s > tail)
22610 {
22611 *fnamelen += (int)(*fnamep - (s + 1));
22612 *fnamep = s + 1;
22613#ifdef VMS
22614 /* cut version from the extension */
22615 s = *fnamep + *fnamelen - 1;
22616 for ( ; s > *fnamep; --s)
22617 if (s[0] == ';')
22618 break;
22619 if (s > *fnamep)
22620 *fnamelen = s - *fnamep;
22621#endif
22622 }
22623 else if (*fnamep <= tail)
22624 *fnamelen = 0;
22625 }
22626 else /* :r */
22627 {
22628 if (s > tail) /* remove one extension */
22629 *fnamelen = (int)(s - *fnamep);
22630 }
22631 *usedlen += 2;
22632 }
22633
22634 /* ":s?pat?foo?" - substitute */
22635 /* ":gs?pat?foo?" - global substitute */
22636 if (src[*usedlen] == ':'
22637 && (src[*usedlen + 1] == 's'
22638 || (src[*usedlen + 1] == 'g' && src[*usedlen + 2] == 's')))
22639 {
22640 char_u *str;
22641 char_u *pat;
22642 char_u *sub;
22643 int sep;
22644 char_u *flags;
22645 int didit = FALSE;
22646
22647 flags = (char_u *)"";
22648 s = src + *usedlen + 2;
22649 if (src[*usedlen + 1] == 'g')
22650 {
22651 flags = (char_u *)"g";
22652 ++s;
22653 }
22654
22655 sep = *s++;
22656 if (sep)
22657 {
22658 /* find end of pattern */
22659 p = vim_strchr(s, sep);
22660 if (p != NULL)
22661 {
22662 pat = vim_strnsave(s, (int)(p - s));
22663 if (pat != NULL)
22664 {
22665 s = p + 1;
22666 /* find end of substitution */
22667 p = vim_strchr(s, sep);
22668 if (p != NULL)
22669 {
22670 sub = vim_strnsave(s, (int)(p - s));
22671 str = vim_strnsave(*fnamep, *fnamelen);
22672 if (sub != NULL && str != NULL)
22673 {
22674 *usedlen = (int)(p + 1 - src);
22675 s = do_string_sub(str, pat, sub, flags);
22676 if (s != NULL)
22677 {
22678 *fnamep = s;
22679 *fnamelen = (int)STRLEN(s);
22680 vim_free(*bufp);
22681 *bufp = s;
22682 didit = TRUE;
22683 }
22684 }
22685 vim_free(sub);
22686 vim_free(str);
22687 }
22688 vim_free(pat);
22689 }
22690 }
22691 /* after using ":s", repeat all the modifiers */
22692 if (didit)
22693 goto repeat;
22694 }
22695 }
22696
22697 return valid;
22698}
22699
22700/*
22701 * Perform a substitution on "str" with pattern "pat" and substitute "sub".
22702 * "flags" can be "g" to do a global substitute.
22703 * Returns an allocated string, NULL for error.
22704 */
22705 char_u *
22706do_string_sub(str, pat, sub, flags)
22707 char_u *str;
22708 char_u *pat;
22709 char_u *sub;
22710 char_u *flags;
22711{
22712 int sublen;
22713 regmatch_T regmatch;
22714 int i;
22715 int do_all;
22716 char_u *tail;
22717 garray_T ga;
22718 char_u *ret;
22719 char_u *save_cpo;
22720
22721 /* Make 'cpoptions' empty, so that the 'l' flag doesn't work here */
22722 save_cpo = p_cpo;
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022723 p_cpo = empty_option;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022724
22725 ga_init2(&ga, 1, 200);
22726
22727 do_all = (flags[0] == 'g');
22728
22729 regmatch.rm_ic = p_ic;
22730 regmatch.regprog = vim_regcomp(pat, RE_MAGIC + RE_STRING);
22731 if (regmatch.regprog != NULL)
22732 {
22733 tail = str;
22734 while (vim_regexec_nl(&regmatch, str, (colnr_T)(tail - str)))
22735 {
22736 /*
22737 * Get some space for a temporary buffer to do the substitution
22738 * into. It will contain:
22739 * - The text up to where the match is.
22740 * - The substituted text.
22741 * - The text after the match.
22742 */
22743 sublen = vim_regsub(&regmatch, sub, tail, FALSE, TRUE, FALSE);
22744 if (ga_grow(&ga, (int)(STRLEN(tail) + sublen -
22745 (regmatch.endp[0] - regmatch.startp[0]))) == FAIL)
22746 {
22747 ga_clear(&ga);
22748 break;
22749 }
22750
22751 /* copy the text up to where the match is */
22752 i = (int)(regmatch.startp[0] - tail);
22753 mch_memmove((char_u *)ga.ga_data + ga.ga_len, tail, (size_t)i);
22754 /* add the substituted text */
22755 (void)vim_regsub(&regmatch, sub, (char_u *)ga.ga_data
22756 + ga.ga_len + i, TRUE, TRUE, FALSE);
22757 ga.ga_len += i + sublen - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022758 /* avoid getting stuck on a match with an empty string */
22759 if (tail == regmatch.endp[0])
22760 {
22761 if (*tail == NUL)
22762 break;
22763 *((char_u *)ga.ga_data + ga.ga_len) = *tail++;
22764 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +000022765 }
22766 else
22767 {
22768 tail = regmatch.endp[0];
22769 if (*tail == NUL)
22770 break;
22771 }
22772 if (!do_all)
22773 break;
22774 }
22775
22776 if (ga.ga_data != NULL)
22777 STRCPY((char *)ga.ga_data + ga.ga_len, tail);
22778
22779 vim_free(regmatch.regprog);
22780 }
22781
22782 ret = vim_strsave(ga.ga_data == NULL ? str : (char_u *)ga.ga_data);
22783 ga_clear(&ga);
Bram Moolenaar9c24ccc2008-07-14 21:05:15 +000022784 if (p_cpo == empty_option)
22785 p_cpo = save_cpo;
22786 else
22787 /* Darn, evaluating {sub} expression changed the value. */
22788 free_string_option(save_cpo);
Bram Moolenaar071d4272004-06-13 20:20:40 +000022789
22790 return ret;
22791}
22792
22793#endif /* defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) */