blob: 9ce41d420aca98441e293906516eedc8dac2e98a [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 * fileio.c: read from and write to a file
12 */
13
14#if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
Bram Moolenaar362e1a32006-03-06 23:29:24 +000015# include "vimio.h" /* for lseek(), must be before vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +000016#endif
17
18#if defined __EMX__
Bram Moolenaar362e1a32006-03-06 23:29:24 +000019# include "vimio.h" /* for mktemp(), CJW 1997-12-03 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000020#endif
21
22#include "vim.h"
23
Bram Moolenaar071d4272004-06-13 20:20:40 +000024#ifdef __TANDEM
25# include <limits.h> /* for SSIZE_MAX */
26#endif
27
28#if defined(HAVE_UTIME) && defined(HAVE_UTIME_H)
29# include <utime.h> /* for struct utimbuf */
30#endif
31
32#define BUFSIZE 8192 /* size of normal write buffer */
33#define SMBUFSIZE 256 /* size of emergency write buffer */
34
35#ifdef FEAT_CRYPT
36# define CRYPT_MAGIC "VimCrypt~01!" /* "01" is the version nr */
37# define CRYPT_MAGIC_LEN 12 /* must be multiple of 4! */
38#endif
39
40/* Is there any system that doesn't have access()? */
Bram Moolenaar9372a112005-12-06 19:59:18 +000041#define USE_MCH_ACCESS
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
Bram Moolenaarfe1c56d2007-07-10 15:10:54 +000043#if defined(sun) && defined(S_ISCHR)
44# define OPEN_CHR_FILES
45static int is_dev_fd_file(char_u *fname);
46#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000047#ifdef FEAT_MBYTE
48static char_u *next_fenc __ARGS((char_u **pp));
49# ifdef FEAT_EVAL
50static char_u *readfile_charconvert __ARGS((char_u *fname, char_u *fenc, int *fdp));
51# endif
52#endif
53#ifdef FEAT_VIMINFO
54static void check_marks_read __ARGS((void));
55#endif
56#ifdef FEAT_CRYPT
57static char_u *check_for_cryptkey __ARGS((char_u *cryptkey, char_u *ptr, long *sizep, long *filesizep, int newfile));
58#endif
59#ifdef UNIX
60static void set_file_time __ARGS((char_u *fname, time_t atime, time_t mtime));
61#endif
Bram Moolenaar2d3f4892006-01-20 23:02:51 +000062static int set_rw_fname __ARGS((char_u *fname, char_u *sfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +000063static int msg_add_fileformat __ARGS((int eol_type));
Bram Moolenaar071d4272004-06-13 20:20:40 +000064static void msg_add_eol __ARGS((void));
65static int check_mtime __ARGS((buf_T *buf, struct stat *s));
66static int time_differs __ARGS((long t1, long t2));
67#ifdef FEAT_AUTOCMD
Bram Moolenaar754b5602006-02-09 23:53:20 +000068static int apply_autocmds_exarg __ARGS((event_T event, char_u *fname, char_u *fname_io, int force, buf_T *buf, exarg_T *eap));
Bram Moolenaar70836c82006-02-20 21:28:49 +000069static int au_find_group __ARGS((char_u *name));
70
71# define AUGROUP_DEFAULT -1 /* default autocmd group */
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +000072# define AUGROUP_ERROR -2 /* erroneous autocmd group */
Bram Moolenaar70836c82006-02-20 21:28:49 +000073# define AUGROUP_ALL -3 /* all autocmd groups */
Bram Moolenaar071d4272004-06-13 20:20:40 +000074#endif
75
76#if defined(FEAT_CRYPT) || defined(FEAT_MBYTE)
77# define HAS_BW_FLAGS
78# define FIO_LATIN1 0x01 /* convert Latin1 */
79# define FIO_UTF8 0x02 /* convert UTF-8 */
80# define FIO_UCS2 0x04 /* convert UCS-2 */
81# define FIO_UCS4 0x08 /* convert UCS-4 */
82# define FIO_UTF16 0x10 /* convert UTF-16 */
83# ifdef WIN3264
84# define FIO_CODEPAGE 0x20 /* convert MS-Windows codepage */
85# define FIO_PUT_CP(x) (((x) & 0xffff) << 16) /* put codepage in top word */
86# define FIO_GET_CP(x) (((x)>>16) & 0xffff) /* get codepage from top word */
87# endif
88# ifdef MACOS_X
89# define FIO_MACROMAN 0x20 /* convert MacRoman */
90# endif
91# define FIO_ENDIAN_L 0x80 /* little endian */
92# define FIO_ENCRYPTED 0x1000 /* encrypt written bytes */
93# define FIO_NOCONVERT 0x2000 /* skip encoding conversion */
94# define FIO_UCSBOM 0x4000 /* check for BOM at start of file */
95# define FIO_ALL -1 /* allow all formats */
96#endif
97
98/* When converting, a read() or write() may leave some bytes to be converted
99 * for the next call. The value is guessed... */
100#define CONV_RESTLEN 30
101
102/* We have to guess how much a sequence of bytes may expand when converting
103 * with iconv() to be able to allocate a buffer. */
104#define ICONV_MULT 8
105
106/*
107 * Structure to pass arguments from buf_write() to buf_write_bytes().
108 */
109struct bw_info
110{
111 int bw_fd; /* file descriptor */
112 char_u *bw_buf; /* buffer with data to be written */
Bram Moolenaard089d9b2007-09-30 12:02:55 +0000113 int bw_len; /* length of data */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114#ifdef HAS_BW_FLAGS
115 int bw_flags; /* FIO_ flags */
116#endif
117#ifdef FEAT_MBYTE
118 char_u bw_rest[CONV_RESTLEN]; /* not converted bytes */
119 int bw_restlen; /* nr of bytes in bw_rest[] */
120 int bw_first; /* first write call */
121 char_u *bw_conv_buf; /* buffer for writing converted chars */
122 int bw_conv_buflen; /* size of bw_conv_buf */
123 int bw_conv_error; /* set for conversion error */
124# ifdef USE_ICONV
125 iconv_t bw_iconv_fd; /* descriptor for iconv() or -1 */
126# endif
127#endif
128};
129
130static int buf_write_bytes __ARGS((struct bw_info *ip));
131
132#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000133static linenr_T readfile_linenr __ARGS((linenr_T linecnt, char_u *p, char_u *endp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134static int ucs2bytes __ARGS((unsigned c, char_u **pp, int flags));
135static int same_encoding __ARGS((char_u *a, char_u *b));
136static int get_fio_flags __ARGS((char_u *ptr));
137static char_u *check_for_bom __ARGS((char_u *p, long size, int *lenp, int flags));
138static int make_bom __ARGS((char_u *buf, char_u *name));
139# ifdef WIN3264
140static int get_win_fio_flags __ARGS((char_u *ptr));
141# endif
142# ifdef MACOS_X
143static int get_mac_fio_flags __ARGS((char_u *ptr));
144# endif
145#endif
146static int move_lines __ARGS((buf_T *frombuf, buf_T *tobuf));
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000147#ifdef FEAT_AUTOCMD
148static char *e_auchangedbuf = N_("E812: Autocommands changed buffer or buffer name");
149#endif
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000150
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151 void
152filemess(buf, name, s, attr)
153 buf_T *buf;
154 char_u *name;
155 char_u *s;
156 int attr;
157{
158 int msg_scroll_save;
159
160 if (msg_silent != 0)
161 return;
162 msg_add_fname(buf, name); /* put file name in IObuff with quotes */
163 /* If it's extremely long, truncate it. */
164 if (STRLEN(IObuff) > IOSIZE - 80)
165 IObuff[IOSIZE - 80] = NUL;
166 STRCAT(IObuff, s);
167 /*
168 * For the first message may have to start a new line.
169 * For further ones overwrite the previous one, reset msg_scroll before
170 * calling filemess().
171 */
172 msg_scroll_save = msg_scroll;
173 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
174 msg_scroll = FALSE;
175 if (!msg_scroll) /* wait a bit when overwriting an error msg */
176 check_for_delay(FALSE);
177 msg_start();
178 msg_scroll = msg_scroll_save;
179 msg_scrolled_ign = TRUE;
180 /* may truncate the message to avoid a hit-return prompt */
181 msg_outtrans_attr(msg_may_trunc(FALSE, IObuff), attr);
182 msg_clr_eos();
183 out_flush();
184 msg_scrolled_ign = FALSE;
185}
186
187/*
188 * Read lines from file "fname" into the buffer after line "from".
189 *
190 * 1. We allocate blocks with lalloc, as big as possible.
191 * 2. Each block is filled with characters from the file with a single read().
192 * 3. The lines are inserted in the buffer with ml_append().
193 *
194 * (caller must check that fname != NULL, unless READ_STDIN is used)
195 *
196 * "lines_to_skip" is the number of lines that must be skipped
197 * "lines_to_read" is the number of lines that are appended
198 * When not recovering lines_to_skip is 0 and lines_to_read MAXLNUM.
199 *
200 * flags:
201 * READ_NEW starting to edit a new buffer
202 * READ_FILTER reading filter output
203 * READ_STDIN read from stdin instead of a file
204 * READ_BUFFER read from curbuf instead of a file (converting after reading
205 * stdin)
206 * READ_DUMMY read into a dummy buffer (to check if file contents changed)
207 *
208 * return FAIL for failure, OK otherwise
209 */
210 int
211readfile(fname, sfname, from, lines_to_skip, lines_to_read, eap, flags)
212 char_u *fname;
213 char_u *sfname;
214 linenr_T from;
215 linenr_T lines_to_skip;
216 linenr_T lines_to_read;
217 exarg_T *eap; /* can be NULL! */
218 int flags;
219{
220 int fd = 0;
221 int newfile = (flags & READ_NEW);
222 int check_readonly;
223 int filtering = (flags & READ_FILTER);
224 int read_stdin = (flags & READ_STDIN);
225 int read_buffer = (flags & READ_BUFFER);
Bram Moolenaar690ffc02008-01-04 15:31:21 +0000226 int set_options = newfile || read_buffer
227 || (eap != NULL && eap->read_edit);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228 linenr_T read_buf_lnum = 1; /* next line to read from curbuf */
229 colnr_T read_buf_col = 0; /* next char to read from this line */
230 char_u c;
231 linenr_T lnum = from;
232 char_u *ptr = NULL; /* pointer into read buffer */
233 char_u *buffer = NULL; /* read buffer */
234 char_u *new_buffer = NULL; /* init to shut up gcc */
235 char_u *line_start = NULL; /* init to shut up gcc */
236 int wasempty; /* buffer was empty before reading */
237 colnr_T len;
238 long size = 0;
239 char_u *p;
240 long filesize = 0;
241 int skip_read = FALSE;
242#ifdef FEAT_CRYPT
243 char_u *cryptkey = NULL;
244#endif
245 int split = 0; /* number of split lines */
246#define UNKNOWN 0x0fffffff /* file size is unknown */
247 linenr_T linecnt;
248 int error = FALSE; /* errors encountered */
249 int ff_error = EOL_UNKNOWN; /* file format with errors */
250 long linerest = 0; /* remaining chars in line */
251#ifdef UNIX
252 int perm = 0;
253 int swap_mode = -1; /* protection bits for swap file */
254#else
255 int perm;
256#endif
257 int fileformat = 0; /* end-of-line format */
258 int keep_fileformat = FALSE;
259 struct stat st;
260 int file_readonly;
261 linenr_T skip_count = 0;
262 linenr_T read_count = 0;
263 int msg_save = msg_scroll;
264 linenr_T read_no_eol_lnum = 0; /* non-zero lnum when last line of
265 * last read was missing the eol */
266 int try_mac = (vim_strchr(p_ffs, 'm') != NULL);
267 int try_dos = (vim_strchr(p_ffs, 'd') != NULL);
268 int try_unix = (vim_strchr(p_ffs, 'x') != NULL);
269 int file_rewind = FALSE;
270#ifdef FEAT_MBYTE
271 int can_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000272 linenr_T conv_error = 0; /* line nr with conversion error */
273 linenr_T illegal_byte = 0; /* line nr with illegal byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274 int keep_dest_enc = FALSE; /* don't retry when char doesn't fit
275 in destination encoding */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000276 int bad_char_behavior = BAD_REPLACE;
277 /* BAD_KEEP, BAD_DROP or character to
278 * replace with */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 char_u *tmpname = NULL; /* name of 'charconvert' output file */
280 int fio_flags = 0;
281 char_u *fenc; /* fileencoding to use */
282 int fenc_alloced; /* fenc_next is in allocated memory */
283 char_u *fenc_next = NULL; /* next item in 'fencs' or NULL */
284 int advance_fenc = FALSE;
285 long real_size = 0;
286# ifdef USE_ICONV
287 iconv_t iconv_fd = (iconv_t)-1; /* descriptor for iconv() or -1 */
288# ifdef FEAT_EVAL
289 int did_iconv = FALSE; /* TRUE when iconv() failed and trying
290 'charconvert' next */
291# endif
292# endif
293 int converted = FALSE; /* TRUE if conversion done */
294 int notconverted = FALSE; /* TRUE if conversion wanted but it
295 wasn't possible */
296 char_u conv_rest[CONV_RESTLEN];
297 int conv_restlen = 0; /* nr of bytes in conv_rest[] */
298#endif
299
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000300#ifdef FEAT_AUTOCMD
301 /* Remember the initial values of curbuf, curbuf->b_ffname and
302 * curbuf->b_fname to detect whether they are altered as a result of
303 * executing nasty autocommands. Also check if "fname" and "sfname"
304 * point to one of these values. */
305 buf_T *old_curbuf = curbuf;
306 char_u *old_b_ffname = curbuf->b_ffname;
307 char_u *old_b_fname = curbuf->b_fname;
308 int using_b_ffname = (fname == curbuf->b_ffname)
309 || (sfname == curbuf->b_ffname);
310 int using_b_fname = (fname == curbuf->b_fname)
311 || (sfname == curbuf->b_fname);
312#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 write_no_eol_lnum = 0; /* in case it was set by the previous read */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314
315 /*
316 * If there is no file name yet, use the one for the read file.
317 * BF_NOTEDITED is set to reflect this.
318 * Don't do this for a read from a filter.
319 * Only do this when 'cpoptions' contains the 'f' flag.
320 */
321 if (curbuf->b_ffname == NULL
322 && !filtering
323 && fname != NULL
324 && vim_strchr(p_cpo, CPO_FNAMER) != NULL
325 && !(flags & READ_DUMMY))
326 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000327 if (set_rw_fname(fname, sfname) == FAIL)
328 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 }
330
Bram Moolenaardf177f62005-02-22 08:39:57 +0000331 /* After reading a file the cursor line changes but we don't want to
332 * display the line. */
333 ex_no_reprint = TRUE;
334
Bram Moolenaar55b7cf82006-09-09 12:52:42 +0000335 /* don't display the file info for another buffer now */
336 need_fileinfo = FALSE;
337
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338 /*
339 * For Unix: Use the short file name whenever possible.
340 * Avoids problems with networks and when directory names are changed.
341 * Don't do this for MS-DOS, a "cd" in a sub-shell may have moved us to
342 * another directory, which we don't detect.
343 */
344 if (sfname == NULL)
345 sfname = fname;
346#if defined(UNIX) || defined(__EMX__)
347 fname = sfname;
348#endif
349
350#ifdef FEAT_AUTOCMD
351 /*
352 * The BufReadCmd and FileReadCmd events intercept the reading process by
353 * executing the associated commands instead.
354 */
355 if (!filtering && !read_stdin && !read_buffer)
356 {
357 pos_T pos;
358
359 pos = curbuf->b_op_start;
360
361 /* Set '[ mark to the line above where the lines go (line 1 if zero). */
362 curbuf->b_op_start.lnum = ((from == 0) ? 1 : from);
363 curbuf->b_op_start.col = 0;
364
365 if (newfile)
366 {
367 if (apply_autocmds_exarg(EVENT_BUFREADCMD, NULL, sfname,
368 FALSE, curbuf, eap))
369#ifdef FEAT_EVAL
370 return aborting() ? FAIL : OK;
371#else
372 return OK;
373#endif
374 }
375 else if (apply_autocmds_exarg(EVENT_FILEREADCMD, sfname, sfname,
376 FALSE, NULL, eap))
377#ifdef FEAT_EVAL
378 return aborting() ? FAIL : OK;
379#else
380 return OK;
381#endif
382
383 curbuf->b_op_start = pos;
384 }
385#endif
386
387 if ((shortmess(SHM_OVER) || curbuf->b_help) && p_verbose == 0)
388 msg_scroll = FALSE; /* overwrite previous file message */
389 else
390 msg_scroll = TRUE; /* don't overwrite previous file message */
391
392 /*
393 * If the name ends in a path separator, we can't open it. Check here,
394 * because reading the file may actually work, but then creating the swap
395 * file may destroy it! Reported on MS-DOS and Win 95.
396 * If the name is too long we might crash further on, quit here.
397 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000398 if (fname != NULL && *fname != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000400 p = fname + STRLEN(fname);
401 if (after_pathsep(fname, p) || STRLEN(fname) >= MAXPATHL)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000402 {
403 filemess(curbuf, fname, (char_u *)_("Illegal file name"), 0);
404 msg_end();
405 msg_scroll = msg_save;
406 return FAIL;
407 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408 }
409
410#ifdef UNIX
411 /*
412 * On Unix it is possible to read a directory, so we have to
413 * check for it before the mch_open().
414 */
415 if (!read_stdin && !read_buffer)
416 {
417 perm = mch_getperm(fname);
418 if (perm >= 0 && !S_ISREG(perm) /* not a regular file ... */
419# ifdef S_ISFIFO
420 && !S_ISFIFO(perm) /* ... or fifo */
421# endif
422# ifdef S_ISSOCK
423 && !S_ISSOCK(perm) /* ... or socket */
424# endif
Bram Moolenaarfe1c56d2007-07-10 15:10:54 +0000425# ifdef OPEN_CHR_FILES
426 && !(S_ISCHR(perm) && is_dev_fd_file(fname))
427 /* ... or a character special file named /dev/fd/<n> */
428# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 )
430 {
431 if (S_ISDIR(perm))
432 filemess(curbuf, fname, (char_u *)_("is a directory"), 0);
433 else
434 filemess(curbuf, fname, (char_u *)_("is not a file"), 0);
435 msg_end();
436 msg_scroll = msg_save;
437 return FAIL;
438 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439
Bram Moolenaarc67764a2006-10-12 19:14:26 +0000440# if defined(MSDOS) || defined(MSWIN) || defined(OS2)
441 /*
442 * MS-Windows allows opening a device, but we will probably get stuck
443 * trying to read it.
444 */
445 if (!p_odev && mch_nodetype(fname) == NODE_WRITABLE)
446 {
Bram Moolenaar5386a122007-06-28 20:02:32 +0000447 filemess(curbuf, fname, (char_u *)_("is a device (disabled with 'opendevice' option)"), 0);
Bram Moolenaarc67764a2006-10-12 19:14:26 +0000448 msg_end();
449 msg_scroll = msg_save;
450 return FAIL;
451 }
452# endif
Bram Moolenaar043545e2006-10-10 16:44:07 +0000453 }
454#endif
455
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456 /* set default 'fileformat' */
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000457 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 {
459 if (eap != NULL && eap->force_ff != 0)
460 set_fileformat(get_fileformat_force(curbuf, eap), OPT_LOCAL);
461 else if (*p_ffs != NUL)
462 set_fileformat(default_fileformat(), OPT_LOCAL);
463 }
464
465 /* set or reset 'binary' */
466 if (eap != NULL && eap->force_bin != 0)
467 {
468 int oldval = curbuf->b_p_bin;
469
470 curbuf->b_p_bin = (eap->force_bin == FORCE_BIN);
471 set_options_bin(oldval, curbuf->b_p_bin, OPT_LOCAL);
472 }
473
474 /*
475 * When opening a new file we take the readonly flag from the file.
476 * Default is r/w, can be set to r/o below.
477 * Don't reset it when in readonly mode
478 * Only set/reset b_p_ro when BF_CHECK_RO is set.
479 */
480 check_readonly = (newfile && (curbuf->b_flags & BF_CHECK_RO));
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000481 if (check_readonly && !readonlymode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 curbuf->b_p_ro = FALSE;
483
484 if (newfile && !read_stdin && !read_buffer)
485 {
486 /* Remember time of file.
487 * For RISCOS, also remember the filetype.
488 */
489 if (mch_stat((char *)fname, &st) >= 0)
490 {
491 buf_store_time(curbuf, &st, fname);
492 curbuf->b_mtime_read = curbuf->b_mtime;
493
494#if defined(RISCOS) && defined(FEAT_OSFILETYPE)
495 /* Read the filetype into the buffer local filetype option. */
496 mch_read_filetype(fname);
497#endif
498#ifdef UNIX
499 /*
500 * Use the protection bits of the original file for the swap file.
501 * This makes it possible for others to read the name of the
502 * edited file from the swapfile, but only if they can read the
503 * edited file.
504 * Remove the "write" and "execute" bits for group and others
505 * (they must not write the swapfile).
506 * Add the "read" and "write" bits for the user, otherwise we may
507 * not be able to write to the file ourselves.
508 * Setting the bits is done below, after creating the swap file.
509 */
510 swap_mode = (st.st_mode & 0644) | 0600;
511#endif
512#ifdef FEAT_CW_EDITOR
513 /* Get the FSSpec on MacOS
514 * TODO: Update it properly when the buffer name changes
515 */
516 (void)GetFSSpecFromPath(curbuf->b_ffname, &curbuf->b_FSSpec);
517#endif
518#ifdef VMS
519 curbuf->b_fab_rfm = st.st_fab_rfm;
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000520 curbuf->b_fab_rat = st.st_fab_rat;
521 curbuf->b_fab_mrs = st.st_fab_mrs;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000522#endif
523 }
524 else
525 {
526 curbuf->b_mtime = 0;
527 curbuf->b_mtime_read = 0;
528 curbuf->b_orig_size = 0;
529 curbuf->b_orig_mode = 0;
530 }
531
532 /* Reset the "new file" flag. It will be set again below when the
533 * file doesn't exist. */
534 curbuf->b_flags &= ~(BF_NEW | BF_NEW_W);
535 }
536
537/*
538 * for UNIX: check readonly with perm and mch_access()
539 * for RISCOS: same as Unix, otherwise file gets re-datestamped!
540 * for MSDOS and Amiga: check readonly by trying to open the file for writing
541 */
542 file_readonly = FALSE;
543 if (read_stdin)
544 {
545#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
546 /* Force binary I/O on stdin to avoid CR-LF -> LF conversion. */
547 setmode(0, O_BINARY);
548#endif
549 }
550 else if (!read_buffer)
551 {
552#ifdef USE_MCH_ACCESS
553 if (
554# ifdef UNIX
555 !(perm & 0222) ||
556# endif
557 mch_access((char *)fname, W_OK))
558 file_readonly = TRUE;
559 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
560#else
561 if (!newfile
562 || readonlymode
563 || (fd = mch_open((char *)fname, O_RDWR | O_EXTRA, 0)) < 0)
564 {
565 file_readonly = TRUE;
566 /* try to open ro */
567 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
568 }
569#endif
570 }
571
572 if (fd < 0) /* cannot open at all */
573 {
574#ifndef UNIX
575 int isdir_f;
576#endif
577 msg_scroll = msg_save;
578#ifndef UNIX
579 /*
580 * On MSDOS and Amiga we can't open a directory, check here.
581 */
582 isdir_f = (mch_isdir(fname));
583 perm = mch_getperm(fname); /* check if the file exists */
584 if (isdir_f)
585 {
586 filemess(curbuf, sfname, (char_u *)_("is a directory"), 0);
587 curbuf->b_p_ro = TRUE; /* must use "w!" now */
588 }
589 else
590#endif
591 if (newfile)
592 {
593 if (perm < 0)
594 {
595 /*
596 * Set the 'new-file' flag, so that when the file has
597 * been created by someone else, a ":w" will complain.
598 */
599 curbuf->b_flags |= BF_NEW;
600
601 /* Create a swap file now, so that other Vims are warned
602 * that we are editing this file. Don't do this for a
603 * "nofile" or "nowrite" buffer type. */
604#ifdef FEAT_QUICKFIX
605 if (!bt_dontwrite(curbuf))
606#endif
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000607 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 check_need_swap(newfile);
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000609#ifdef FEAT_AUTOCMD
610 /* SwapExists autocommand may mess things up */
611 if (curbuf != old_curbuf
612 || (using_b_ffname
613 && (old_b_ffname != curbuf->b_ffname))
614 || (using_b_fname
615 && (old_b_fname != curbuf->b_fname)))
616 {
617 EMSG(_(e_auchangedbuf));
618 return FAIL;
619 }
620#endif
621 }
Bram Moolenaar5b962cf2005-12-12 21:58:40 +0000622 if (dir_of_file_exists(fname))
623 filemess(curbuf, sfname, (char_u *)_("[New File]"), 0);
624 else
625 filemess(curbuf, sfname,
626 (char_u *)_("[New DIRECTORY]"), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627#ifdef FEAT_VIMINFO
628 /* Even though this is a new file, it might have been
629 * edited before and deleted. Get the old marks. */
630 check_marks_read();
631#endif
632#ifdef FEAT_MBYTE
633 if (eap != NULL && eap->force_enc != 0)
634 {
635 /* set forced 'fileencoding' */
636 fenc = enc_canonize(eap->cmd + eap->force_enc);
637 if (fenc != NULL)
638 set_string_option_direct((char_u *)"fenc", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000639 fenc, OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 vim_free(fenc);
641 }
642#endif
643#ifdef FEAT_AUTOCMD
644 apply_autocmds_exarg(EVENT_BUFNEWFILE, sfname, sfname,
645 FALSE, curbuf, eap);
646#endif
647 /* remember the current fileformat */
648 save_file_ff(curbuf);
649
650#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
651 if (aborting()) /* autocmds may abort script processing */
652 return FAIL;
653#endif
654 return OK; /* a new file is not an error */
655 }
656 else
657 {
Bram Moolenaar202795b2005-10-11 20:29:39 +0000658 filemess(curbuf, sfname, (char_u *)(
659# ifdef EFBIG
660 (errno == EFBIG) ? _("[File too big]") :
661# endif
662 _("[Permission Denied]")), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663 curbuf->b_p_ro = TRUE; /* must use "w!" now */
664 }
665 }
666
667 return FAIL;
668 }
669
670 /*
671 * Only set the 'ro' flag for readonly files the first time they are
672 * loaded. Help files always get readonly mode
673 */
674 if ((check_readonly && file_readonly) || curbuf->b_help)
675 curbuf->b_p_ro = TRUE;
676
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000677 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678 {
Bram Moolenaar690ffc02008-01-04 15:31:21 +0000679 /* Don't change 'eol' if reading from buffer as it will already be
680 * correctly set when reading stdin. */
681 if (!read_buffer)
682 {
683 curbuf->b_p_eol = TRUE;
684 curbuf->b_start_eol = TRUE;
685 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686#ifdef FEAT_MBYTE
687 curbuf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000688 curbuf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689#endif
690 }
691
692 /* Create a swap file now, so that other Vims are warned that we are
693 * editing this file.
694 * Don't do this for a "nofile" or "nowrite" buffer type. */
695#ifdef FEAT_QUICKFIX
696 if (!bt_dontwrite(curbuf))
697#endif
698 {
699 check_need_swap(newfile);
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000700#ifdef FEAT_AUTOCMD
701 if (!read_stdin && (curbuf != old_curbuf
702 || (using_b_ffname && (old_b_ffname != curbuf->b_ffname))
703 || (using_b_fname && (old_b_fname != curbuf->b_fname))))
704 {
705 EMSG(_(e_auchangedbuf));
706 if (!read_buffer)
707 close(fd);
708 return FAIL;
709 }
710#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711#ifdef UNIX
712 /* Set swap file protection bits after creating it. */
713 if (swap_mode > 0 && curbuf->b_ml.ml_mfp->mf_fname != NULL)
714 (void)mch_setperm(curbuf->b_ml.ml_mfp->mf_fname, (long)swap_mode);
715#endif
716 }
717
Bram Moolenaarb815dac2005-12-07 20:59:24 +0000718#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 /* If "Quit" selected at ATTENTION dialog, don't load the file */
720 if (swap_exists_action == SEA_QUIT)
721 {
722 if (!read_buffer && !read_stdin)
723 close(fd);
724 return FAIL;
725 }
726#endif
727
728 ++no_wait_return; /* don't wait for return yet */
729
730 /*
731 * Set '[ mark to the line above where the lines go (line 1 if zero).
732 */
733 curbuf->b_op_start.lnum = ((from == 0) ? 1 : from);
734 curbuf->b_op_start.col = 0;
735
736#ifdef FEAT_AUTOCMD
737 if (!read_buffer)
738 {
739 int m = msg_scroll;
740 int n = msg_scrolled;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741
742 /*
743 * The file must be closed again, the autocommands may want to change
744 * the file before reading it.
745 */
746 if (!read_stdin)
747 close(fd); /* ignore errors */
748
749 /*
750 * The output from the autocommands should not overwrite anything and
751 * should not be overwritten: Set msg_scroll, restore its value if no
752 * output was done.
753 */
754 msg_scroll = TRUE;
755 if (filtering)
756 apply_autocmds_exarg(EVENT_FILTERREADPRE, NULL, sfname,
757 FALSE, curbuf, eap);
758 else if (read_stdin)
759 apply_autocmds_exarg(EVENT_STDINREADPRE, NULL, sfname,
760 FALSE, curbuf, eap);
761 else if (newfile)
762 apply_autocmds_exarg(EVENT_BUFREADPRE, NULL, sfname,
763 FALSE, curbuf, eap);
764 else
765 apply_autocmds_exarg(EVENT_FILEREADPRE, sfname, sfname,
766 FALSE, NULL, eap);
767 if (msg_scrolled == n)
768 msg_scroll = m;
769
770#ifdef FEAT_EVAL
771 if (aborting()) /* autocmds may abort script processing */
772 {
773 --no_wait_return;
774 msg_scroll = msg_save;
775 curbuf->b_p_ro = TRUE; /* must use "w!" now */
776 return FAIL;
777 }
778#endif
779 /*
780 * Don't allow the autocommands to change the current buffer.
781 * Try to re-open the file.
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000782 *
783 * Don't allow the autocommands to change the buffer name either
784 * (cd for example) if it invalidates fname or sfname.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 */
786 if (!read_stdin && (curbuf != old_curbuf
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000787 || (using_b_ffname && (old_b_ffname != curbuf->b_ffname))
788 || (using_b_fname && (old_b_fname != curbuf->b_fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 || (fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) < 0))
790 {
791 --no_wait_return;
792 msg_scroll = msg_save;
793 if (fd < 0)
794 EMSG(_("E200: *ReadPre autocommands made the file unreadable"));
795 else
796 EMSG(_("E201: *ReadPre autocommands must not change current buffer"));
797 curbuf->b_p_ro = TRUE; /* must use "w!" now */
798 return FAIL;
799 }
800 }
801#endif /* FEAT_AUTOCMD */
802
803 /* Autocommands may add lines to the file, need to check if it is empty */
804 wasempty = (curbuf->b_ml.ml_flags & ML_EMPTY);
805
806 if (!recoverymode && !filtering && !(flags & READ_DUMMY))
807 {
808 /*
809 * Show the user that we are busy reading the input. Sometimes this
810 * may take a while. When reading from stdin another program may
811 * still be running, don't move the cursor to the last line, unless
812 * always using the GUI.
813 */
814 if (read_stdin)
815 {
816#ifndef ALWAYS_USE_GUI
817 mch_msg(_("Vim: Reading from stdin...\n"));
818#endif
819#ifdef FEAT_GUI
820 /* Also write a message in the GUI window, if there is one. */
821 if (gui.in_use && !gui.dying && !gui.starting)
822 {
823 p = (char_u *)_("Reading from stdin...");
824 gui_write(p, (int)STRLEN(p));
825 }
826#endif
827 }
828 else if (!read_buffer)
829 filemess(curbuf, sfname, (char_u *)"", 0);
830 }
831
832 msg_scroll = FALSE; /* overwrite the file message */
833
834 /*
835 * Set linecnt now, before the "retry" caused by a wrong guess for
836 * fileformat, and after the autocommands, which may change them.
837 */
838 linecnt = curbuf->b_ml.ml_line_count;
839
840#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000841 /* "++bad=" argument. */
842 if (eap != NULL && eap->bad_char != 0)
Bram Moolenaar195d6352005-12-19 22:08:24 +0000843 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000844 bad_char_behavior = eap->bad_char;
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000845 if (set_options)
Bram Moolenaar195d6352005-12-19 22:08:24 +0000846 curbuf->b_bad_char = eap->bad_char;
847 }
848 else
849 curbuf->b_bad_char = 0;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000850
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 /*
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000852 * Decide which 'encoding' to use or use first.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000853 */
854 if (eap != NULL && eap->force_enc != 0)
855 {
856 fenc = enc_canonize(eap->cmd + eap->force_enc);
857 fenc_alloced = TRUE;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000858 keep_dest_enc = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 }
860 else if (curbuf->b_p_bin)
861 {
862 fenc = (char_u *)""; /* binary: don't convert */
863 fenc_alloced = FALSE;
864 }
865 else if (curbuf->b_help)
866 {
867 char_u firstline[80];
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000868 int fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869
870 /* Help files are either utf-8 or latin1. Try utf-8 first, if this
871 * fails it must be latin1.
872 * Always do this when 'encoding' is "utf-8". Otherwise only do
873 * this when needed to avoid [converted] remarks all the time.
874 * It is needed when the first line contains non-ASCII characters.
875 * That is only in *.??x files. */
876 fenc = (char_u *)"latin1";
877 c = enc_utf8;
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000878 if (!c && !read_stdin)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000880 fc = fname[STRLEN(fname) - 1];
881 if (TOLOWER_ASC(fc) == 'x')
882 {
883 /* Read the first line (and a bit more). Immediately rewind to
884 * the start of the file. If the read() fails "len" is -1. */
885 len = vim_read(fd, firstline, 80);
886 lseek(fd, (off_t)0L, SEEK_SET);
887 for (p = firstline; p < firstline + len; ++p)
888 if (*p >= 0x80)
889 {
890 c = TRUE;
891 break;
892 }
893 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 }
895
896 if (c)
897 {
898 fenc_next = fenc;
899 fenc = (char_u *)"utf-8";
900
901 /* When the file is utf-8 but a character doesn't fit in
902 * 'encoding' don't retry. In help text editing utf-8 bytes
903 * doesn't make sense. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000904 if (!enc_utf8)
905 keep_dest_enc = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 }
907 fenc_alloced = FALSE;
908 }
909 else if (*p_fencs == NUL)
910 {
911 fenc = curbuf->b_p_fenc; /* use format from buffer */
912 fenc_alloced = FALSE;
913 }
914 else
915 {
916 fenc_next = p_fencs; /* try items in 'fileencodings' */
917 fenc = next_fenc(&fenc_next);
918 fenc_alloced = TRUE;
919 }
920#endif
921
922 /*
923 * Jump back here to retry reading the file in different ways.
924 * Reasons to retry:
925 * - encoding conversion failed: try another one from "fenc_next"
926 * - BOM detected and fenc was set, need to setup conversion
927 * - "fileformat" check failed: try another
928 *
929 * Variables set for special retry actions:
930 * "file_rewind" Rewind the file to start reading it again.
931 * "advance_fenc" Advance "fenc" using "fenc_next".
932 * "skip_read" Re-use already read bytes (BOM detected).
933 * "did_iconv" iconv() conversion failed, try 'charconvert'.
934 * "keep_fileformat" Don't reset "fileformat".
935 *
936 * Other status indicators:
937 * "tmpname" When != NULL did conversion with 'charconvert'.
938 * Output file has to be deleted afterwards.
939 * "iconv_fd" When != -1 did conversion with iconv().
940 */
941retry:
942
943 if (file_rewind)
944 {
945 if (read_buffer)
946 {
947 read_buf_lnum = 1;
948 read_buf_col = 0;
949 }
950 else if (read_stdin || lseek(fd, (off_t)0L, SEEK_SET) != 0)
951 {
952 /* Can't rewind the file, give up. */
953 error = TRUE;
954 goto failed;
955 }
956 /* Delete the previously read lines. */
957 while (lnum > from)
958 ml_delete(lnum--, FALSE);
959 file_rewind = FALSE;
960#ifdef FEAT_MBYTE
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000961 if (set_options)
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000962 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 curbuf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000964 curbuf->b_start_bomb = FALSE;
965 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000966 conv_error = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967#endif
968 }
969
970 /*
971 * When retrying with another "fenc" and the first time "fileformat"
972 * will be reset.
973 */
974 if (keep_fileformat)
975 keep_fileformat = FALSE;
976 else
977 {
978 if (eap != NULL && eap->force_ff != 0)
Bram Moolenaar1c860362008-11-12 15:05:21 +0000979 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 fileformat = get_fileformat_force(curbuf, eap);
Bram Moolenaar1c860362008-11-12 15:05:21 +0000981 try_unix = try_dos = try_mac = FALSE;
982 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 else if (curbuf->b_p_bin)
984 fileformat = EOL_UNIX; /* binary: use Unix format */
985 else if (*p_ffs == NUL)
986 fileformat = get_fileformat(curbuf);/* use format from buffer */
987 else
988 fileformat = EOL_UNKNOWN; /* detect from file */
989 }
990
991#ifdef FEAT_MBYTE
992# ifdef USE_ICONV
993 if (iconv_fd != (iconv_t)-1)
994 {
995 /* aborted conversion with iconv(), close the descriptor */
996 iconv_close(iconv_fd);
997 iconv_fd = (iconv_t)-1;
998 }
999# endif
1000
1001 if (advance_fenc)
1002 {
1003 /*
1004 * Try the next entry in 'fileencodings'.
1005 */
1006 advance_fenc = FALSE;
1007
1008 if (eap != NULL && eap->force_enc != 0)
1009 {
1010 /* Conversion given with "++cc=" wasn't possible, read
1011 * without conversion. */
1012 notconverted = TRUE;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001013 conv_error = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 if (fenc_alloced)
1015 vim_free(fenc);
1016 fenc = (char_u *)"";
1017 fenc_alloced = FALSE;
1018 }
1019 else
1020 {
1021 if (fenc_alloced)
1022 vim_free(fenc);
1023 if (fenc_next != NULL)
1024 {
1025 fenc = next_fenc(&fenc_next);
1026 fenc_alloced = (fenc_next != NULL);
1027 }
1028 else
1029 {
1030 fenc = (char_u *)"";
1031 fenc_alloced = FALSE;
1032 }
1033 }
1034 if (tmpname != NULL)
1035 {
1036 mch_remove(tmpname); /* delete converted file */
1037 vim_free(tmpname);
1038 tmpname = NULL;
1039 }
1040 }
1041
1042 /*
1043 * Conversion is required when the encoding of the file is different
1044 * from 'encoding' or 'encoding' is UTF-16, UCS-2 or UCS-4 (requires
1045 * conversion to UTF-8).
1046 */
1047 fio_flags = 0;
1048 converted = (*fenc != NUL && !same_encoding(p_enc, fenc));
1049 if (converted || enc_unicode != 0)
1050 {
1051
1052 /* "ucs-bom" means we need to check the first bytes of the file
1053 * for a BOM. */
1054 if (STRCMP(fenc, ENC_UCSBOM) == 0)
1055 fio_flags = FIO_UCSBOM;
1056
1057 /*
1058 * Check if UCS-2/4 or Latin1 to UTF-8 conversion needs to be
1059 * done. This is handled below after read(). Prepare the
1060 * fio_flags to avoid having to parse the string each time.
1061 * Also check for Unicode to Latin1 conversion, because iconv()
1062 * appears not to handle this correctly. This works just like
1063 * conversion to UTF-8 except how the resulting character is put in
1064 * the buffer.
1065 */
1066 else if (enc_utf8 || STRCMP(p_enc, "latin1") == 0)
1067 fio_flags = get_fio_flags(fenc);
1068
1069# ifdef WIN3264
1070 /*
1071 * Conversion from an MS-Windows codepage to UTF-8 or another codepage
1072 * is handled with MultiByteToWideChar().
1073 */
1074 if (fio_flags == 0)
1075 fio_flags = get_win_fio_flags(fenc);
1076# endif
1077
1078# ifdef MACOS_X
1079 /* Conversion from Apple MacRoman to latin1 or UTF-8 */
1080 if (fio_flags == 0)
1081 fio_flags = get_mac_fio_flags(fenc);
1082# endif
1083
1084# ifdef USE_ICONV
1085 /*
1086 * Try using iconv() if we can't convert internally.
1087 */
1088 if (fio_flags == 0
1089# ifdef FEAT_EVAL
1090 && !did_iconv
1091# endif
1092 )
1093 iconv_fd = (iconv_t)my_iconv_open(
1094 enc_utf8 ? (char_u *)"utf-8" : p_enc, fenc);
1095# endif
1096
1097# ifdef FEAT_EVAL
1098 /*
1099 * Use the 'charconvert' expression when conversion is required
1100 * and we can't do it internally or with iconv().
1101 */
1102 if (fio_flags == 0 && !read_stdin && !read_buffer && *p_ccv != NUL
1103# ifdef USE_ICONV
1104 && iconv_fd == (iconv_t)-1
1105# endif
1106 )
1107 {
1108# ifdef USE_ICONV
1109 did_iconv = FALSE;
1110# endif
1111 /* Skip conversion when it's already done (retry for wrong
1112 * "fileformat"). */
1113 if (tmpname == NULL)
1114 {
1115 tmpname = readfile_charconvert(fname, fenc, &fd);
1116 if (tmpname == NULL)
1117 {
1118 /* Conversion failed. Try another one. */
1119 advance_fenc = TRUE;
1120 if (fd < 0)
1121 {
1122 /* Re-opening the original file failed! */
1123 EMSG(_("E202: Conversion made file unreadable!"));
1124 error = TRUE;
1125 goto failed;
1126 }
1127 goto retry;
1128 }
1129 }
1130 }
1131 else
1132# endif
1133 {
1134 if (fio_flags == 0
1135# ifdef USE_ICONV
1136 && iconv_fd == (iconv_t)-1
1137# endif
1138 )
1139 {
1140 /* Conversion wanted but we can't.
1141 * Try the next conversion in 'fileencodings' */
1142 advance_fenc = TRUE;
1143 goto retry;
1144 }
1145 }
1146 }
1147
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001148 /* Set "can_retry" when it's possible to rewind the file and try with
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 * another "fenc" value. It's FALSE when no other "fenc" to try, reading
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001150 * stdin or fixed at a specific encoding. */
1151 can_retry = (*fenc != NUL && !read_stdin && !keep_dest_enc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152#endif
1153
1154 if (!skip_read)
1155 {
1156 linerest = 0;
1157 filesize = 0;
1158 skip_count = lines_to_skip;
1159 read_count = lines_to_read;
1160#ifdef FEAT_MBYTE
1161 conv_restlen = 0;
1162#endif
1163 }
1164
1165 while (!error && !got_int)
1166 {
1167 /*
1168 * We allocate as much space for the file as we can get, plus
1169 * space for the old line plus room for one terminating NUL.
1170 * The amount is limited by the fact that read() only can read
1171 * upto max_unsigned characters (and other things).
1172 */
1173#if SIZEOF_INT <= 2
1174 if (linerest >= 0x7ff0)
1175 {
1176 ++split;
1177 *ptr = NL; /* split line by inserting a NL */
1178 size = 1;
1179 }
1180 else
1181#endif
1182 {
1183 if (!skip_read)
1184 {
1185#if SIZEOF_INT > 2
Bram Moolenaar311d9822007-02-27 15:48:28 +00001186# if defined(SSIZE_MAX) && (SSIZE_MAX < 0x10000L)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 size = SSIZE_MAX; /* use max I/O size, 52K */
1188# else
1189 size = 0x10000L; /* use buffer >= 64K */
1190# endif
1191#else
1192 size = 0x7ff0L - linerest; /* limit buffer to 32K */
1193#endif
1194
Bram Moolenaarc1e37902006-04-18 21:55:01 +00001195 for ( ; size >= 10; size = (long)((long_u)size >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 {
1197 if ((new_buffer = lalloc((long_u)(size + linerest + 1),
1198 FALSE)) != NULL)
1199 break;
1200 }
1201 if (new_buffer == NULL)
1202 {
1203 do_outofmem_msg((long_u)(size * 2 + linerest + 1));
1204 error = TRUE;
1205 break;
1206 }
1207 if (linerest) /* copy characters from the previous buffer */
1208 mch_memmove(new_buffer, ptr - linerest, (size_t)linerest);
1209 vim_free(buffer);
1210 buffer = new_buffer;
1211 ptr = buffer + linerest;
1212 line_start = buffer;
1213
1214#ifdef FEAT_MBYTE
1215 /* May need room to translate into.
1216 * For iconv() we don't really know the required space, use a
1217 * factor ICONV_MULT.
1218 * latin1 to utf-8: 1 byte becomes up to 2 bytes
1219 * utf-16 to utf-8: 2 bytes become up to 3 bytes, 4 bytes
1220 * become up to 4 bytes, size must be multiple of 2
1221 * ucs-2 to utf-8: 2 bytes become up to 3 bytes, size must be
1222 * multiple of 2
1223 * ucs-4 to utf-8: 4 bytes become up to 6 bytes, size must be
1224 * multiple of 4 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001225 real_size = (int)size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226# ifdef USE_ICONV
1227 if (iconv_fd != (iconv_t)-1)
1228 size = size / ICONV_MULT;
1229 else
1230# endif
1231 if (fio_flags & FIO_LATIN1)
1232 size = size / 2;
1233 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1234 size = (size * 2 / 3) & ~1;
1235 else if (fio_flags & FIO_UCS4)
1236 size = (size * 2 / 3) & ~3;
1237 else if (fio_flags == FIO_UCSBOM)
1238 size = size / ICONV_MULT; /* worst case */
1239# ifdef WIN3264
1240 else if (fio_flags & FIO_CODEPAGE)
1241 size = size / ICONV_MULT; /* also worst case */
1242# endif
1243# ifdef MACOS_X
1244 else if (fio_flags & FIO_MACROMAN)
1245 size = size / ICONV_MULT; /* also worst case */
1246# endif
1247#endif
1248
1249#ifdef FEAT_MBYTE
1250 if (conv_restlen > 0)
1251 {
1252 /* Insert unconverted bytes from previous line. */
1253 mch_memmove(ptr, conv_rest, conv_restlen);
1254 ptr += conv_restlen;
1255 size -= conv_restlen;
1256 }
1257#endif
1258
1259 if (read_buffer)
1260 {
1261 /*
1262 * Read bytes from curbuf. Used for converting text read
1263 * from stdin.
1264 */
1265 if (read_buf_lnum > from)
1266 size = 0;
1267 else
1268 {
1269 int n, ni;
1270 long tlen;
1271
1272 tlen = 0;
1273 for (;;)
1274 {
1275 p = ml_get(read_buf_lnum) + read_buf_col;
1276 n = (int)STRLEN(p);
1277 if ((int)tlen + n + 1 > size)
1278 {
1279 /* Filled up to "size", append partial line.
1280 * Change NL to NUL to reverse the effect done
1281 * below. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001282 n = (int)(size - tlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 for (ni = 0; ni < n; ++ni)
1284 {
1285 if (p[ni] == NL)
1286 ptr[tlen++] = NUL;
1287 else
1288 ptr[tlen++] = p[ni];
1289 }
1290 read_buf_col += n;
1291 break;
1292 }
1293 else
1294 {
1295 /* Append whole line and new-line. Change NL
1296 * to NUL to reverse the effect done below. */
1297 for (ni = 0; ni < n; ++ni)
1298 {
1299 if (p[ni] == NL)
1300 ptr[tlen++] = NUL;
1301 else
1302 ptr[tlen++] = p[ni];
1303 }
1304 ptr[tlen++] = NL;
1305 read_buf_col = 0;
1306 if (++read_buf_lnum > from)
1307 {
1308 /* When the last line didn't have an
1309 * end-of-line don't add it now either. */
1310 if (!curbuf->b_p_eol)
1311 --tlen;
1312 size = tlen;
1313 break;
1314 }
1315 }
1316 }
1317 }
1318 }
1319 else
1320 {
1321 /*
1322 * Read bytes from the file.
1323 */
1324 size = vim_read(fd, ptr, size);
1325 }
1326
1327 if (size <= 0)
1328 {
1329 if (size < 0) /* read error */
1330 error = TRUE;
1331#ifdef FEAT_MBYTE
1332 else if (conv_restlen > 0)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001333 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00001334 /*
1335 * Reached end-of-file but some trailing bytes could
1336 * not be converted. Truncated file?
1337 */
1338
1339 /* When we did a conversion report an error. */
1340 if (fio_flags != 0
1341# ifdef USE_ICONV
1342 || iconv_fd != (iconv_t)-1
1343# endif
1344 )
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001345 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00001346 if (conv_error == 0)
1347 conv_error = curbuf->b_ml.ml_line_count
1348 - linecnt + 1;
1349 }
1350 /* Remember the first linenr with an illegal byte */
1351 else if (illegal_byte == 0)
1352 illegal_byte = curbuf->b_ml.ml_line_count
1353 - linecnt + 1;
1354 if (bad_char_behavior == BAD_DROP)
1355 {
1356 *(ptr - conv_restlen) = NUL;
1357 conv_restlen = 0;
1358 }
1359 else
1360 {
1361 /* Replace the trailing bytes with the replacement
1362 * character if we were converting; if we weren't,
1363 * leave the UTF8 checking code to do it, as it
1364 * works slightly differently. */
1365 if (bad_char_behavior != BAD_KEEP && (fio_flags != 0
1366# ifdef USE_ICONV
1367 || iconv_fd != (iconv_t)-1
1368# endif
1369 ))
1370 {
1371 while (conv_restlen > 0)
1372 {
1373 *(--ptr) = bad_char_behavior;
1374 --conv_restlen;
1375 }
1376 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001377 fio_flags = 0; /* don't convert this */
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001378# ifdef USE_ICONV
1379 if (iconv_fd != (iconv_t)-1)
1380 {
1381 iconv_close(iconv_fd);
1382 iconv_fd = (iconv_t)-1;
1383 }
1384# endif
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001385 }
1386 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387#endif
1388 }
1389
1390#ifdef FEAT_CRYPT
1391 /*
1392 * At start of file: Check for magic number of encryption.
1393 */
1394 if (filesize == 0)
1395 cryptkey = check_for_cryptkey(cryptkey, ptr, &size,
1396 &filesize, newfile);
1397 /*
1398 * Decrypt the read bytes.
1399 */
1400 if (cryptkey != NULL && size > 0)
1401 for (p = ptr; p < ptr + size; ++p)
1402 ZDECODE(*p);
1403#endif
1404 }
1405 skip_read = FALSE;
1406
1407#ifdef FEAT_MBYTE
1408 /*
1409 * At start of file (or after crypt magic number): Check for BOM.
1410 * Also check for a BOM for other Unicode encodings, but not after
1411 * converting with 'charconvert' or when a BOM has already been
1412 * found.
1413 */
1414 if ((filesize == 0
1415# ifdef FEAT_CRYPT
1416 || (filesize == CRYPT_MAGIC_LEN && cryptkey != NULL)
1417# endif
1418 )
1419 && (fio_flags == FIO_UCSBOM
1420 || (!curbuf->b_p_bomb
1421 && tmpname == NULL
1422 && (*fenc == 'u' || (*fenc == NUL && enc_utf8)))))
1423 {
1424 char_u *ccname;
1425 int blen;
1426
1427 /* no BOM detection in a short file or in binary mode */
1428 if (size < 2 || curbuf->b_p_bin)
1429 ccname = NULL;
1430 else
1431 ccname = check_for_bom(ptr, size, &blen,
1432 fio_flags == FIO_UCSBOM ? FIO_ALL : get_fio_flags(fenc));
1433 if (ccname != NULL)
1434 {
1435 /* Remove BOM from the text */
1436 filesize += blen;
1437 size -= blen;
1438 mch_memmove(ptr, ptr + blen, (size_t)size);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001439 if (set_options)
Bram Moolenaar83eb8852007-08-12 13:51:26 +00001440 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441 curbuf->b_p_bomb = TRUE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +00001442 curbuf->b_start_bomb = TRUE;
1443 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 }
1445
1446 if (fio_flags == FIO_UCSBOM)
1447 {
1448 if (ccname == NULL)
1449 {
1450 /* No BOM detected: retry with next encoding. */
1451 advance_fenc = TRUE;
1452 }
1453 else
1454 {
1455 /* BOM detected: set "fenc" and jump back */
1456 if (fenc_alloced)
1457 vim_free(fenc);
1458 fenc = ccname;
1459 fenc_alloced = FALSE;
1460 }
1461 /* retry reading without getting new bytes or rewinding */
1462 skip_read = TRUE;
1463 goto retry;
1464 }
1465 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00001466
1467 /* Include not converted bytes. */
1468 ptr -= conv_restlen;
1469 size += conv_restlen;
1470 conv_restlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471#endif
1472 /*
1473 * Break here for a read error or end-of-file.
1474 */
1475 if (size <= 0)
1476 break;
1477
1478#ifdef FEAT_MBYTE
1479
Bram Moolenaar071d4272004-06-13 20:20:40 +00001480# ifdef USE_ICONV
1481 if (iconv_fd != (iconv_t)-1)
1482 {
1483 /*
1484 * Attempt conversion of the read bytes to 'encoding' using
1485 * iconv().
1486 */
1487 const char *fromp;
1488 char *top;
1489 size_t from_size;
1490 size_t to_size;
1491
1492 fromp = (char *)ptr;
1493 from_size = size;
1494 ptr += size;
1495 top = (char *)ptr;
1496 to_size = real_size - size;
1497
1498 /*
1499 * If there is conversion error or not enough room try using
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001500 * another conversion. Except for when there is no
1501 * alternative (help files).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502 */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001503 while ((iconv(iconv_fd, (void *)&fromp, &from_size,
1504 &top, &to_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001505 == (size_t)-1 && ICONV_ERRNO != ICONV_EINVAL)
1506 || from_size > CONV_RESTLEN)
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001507 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001508 if (can_retry)
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001509 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001510 if (conv_error == 0)
1511 conv_error = readfile_linenr(linecnt,
1512 ptr, (char_u *)top);
Bram Moolenaar42eeac32005-06-29 22:40:58 +00001513
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001514 /* Deal with a bad byte and continue with the next. */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001515 ++fromp;
1516 --from_size;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001517 if (bad_char_behavior == BAD_KEEP)
1518 {
1519 *top++ = *(fromp - 1);
1520 --to_size;
1521 }
1522 else if (bad_char_behavior != BAD_DROP)
1523 {
1524 *top++ = bad_char_behavior;
1525 --to_size;
1526 }
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001527 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528
1529 if (from_size > 0)
1530 {
1531 /* Some remaining characters, keep them for the next
1532 * round. */
1533 mch_memmove(conv_rest, (char_u *)fromp, from_size);
1534 conv_restlen = (int)from_size;
1535 }
1536
1537 /* move the linerest to before the converted characters */
1538 line_start = ptr - linerest;
1539 mch_memmove(line_start, buffer, (size_t)linerest);
1540 size = (long)((char_u *)top - ptr);
1541 }
1542# endif
1543
1544# ifdef WIN3264
1545 if (fio_flags & FIO_CODEPAGE)
1546 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001547 char_u *src, *dst;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001548 WCHAR ucs2buf[3];
1549 int ucs2len;
1550 int codepage = FIO_GET_CP(fio_flags);
1551 int bytelen;
1552 int found_bad;
1553 char replstr[2];
1554
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555 /*
1556 * Conversion from an MS-Windows codepage or UTF-8 to UTF-8 or
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001557 * a codepage, using standard MS-Windows functions. This
1558 * requires two steps:
1559 * 1. convert from 'fileencoding' to ucs-2
1560 * 2. convert from ucs-2 to 'encoding'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 *
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001562 * Because there may be illegal bytes AND an incomplete byte
1563 * sequence at the end, we may have to do the conversion one
1564 * character at a time to get it right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001566
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001567 /* Replacement string for WideCharToMultiByte(). */
1568 if (bad_char_behavior > 0)
1569 replstr[0] = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570 else
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001571 replstr[0] = '?';
1572 replstr[1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573
1574 /*
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001575 * Move the bytes to the end of the buffer, so that we have
1576 * room to put the result at the start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001577 */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001578 src = ptr + real_size - size;
1579 mch_memmove(src, ptr, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001581 /*
1582 * Do the conversion.
1583 */
1584 dst = ptr;
1585 size = size;
1586 while (size > 0)
1587 {
1588 found_bad = FALSE;
1589
1590# ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
1591 if (codepage == CP_UTF8)
1592 {
1593 /* Handle CP_UTF8 input ourselves to be able to handle
1594 * trailing bytes properly.
1595 * Get one UTF-8 character from src. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001596 bytelen = (int)utf_ptr2len_len(src, size);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001597 if (bytelen > size)
1598 {
1599 /* Only got some bytes of a character. Normally
1600 * it's put in "conv_rest", but if it's too long
1601 * deal with it as if they were illegal bytes. */
1602 if (bytelen <= CONV_RESTLEN)
1603 break;
1604
1605 /* weird overlong byte sequence */
1606 bytelen = size;
1607 found_bad = TRUE;
1608 }
1609 else
1610 {
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001611 int u8c = utf_ptr2char(src);
1612
Bram Moolenaar86e01082005-12-29 22:45:34 +00001613 if (u8c > 0xffff || (*src >= 0x80 && bytelen == 1))
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001614 found_bad = TRUE;
1615 ucs2buf[0] = u8c;
1616 ucs2len = 1;
1617 }
1618 }
1619 else
1620# endif
1621 {
1622 /* We don't know how long the byte sequence is, try
1623 * from one to three bytes. */
1624 for (bytelen = 1; bytelen <= size && bytelen <= 3;
1625 ++bytelen)
1626 {
1627 ucs2len = MultiByteToWideChar(codepage,
1628 MB_ERR_INVALID_CHARS,
1629 (LPCSTR)src, bytelen,
1630 ucs2buf, 3);
1631 if (ucs2len > 0)
1632 break;
1633 }
1634 if (ucs2len == 0)
1635 {
1636 /* If we have only one byte then it's probably an
1637 * incomplete byte sequence. Otherwise discard
1638 * one byte as a bad character. */
1639 if (size == 1)
1640 break;
1641 found_bad = TRUE;
1642 bytelen = 1;
1643 }
1644 }
1645
1646 if (!found_bad)
1647 {
1648 int i;
1649
1650 /* Convert "ucs2buf[ucs2len]" to 'enc' in "dst". */
1651 if (enc_utf8)
1652 {
1653 /* From UCS-2 to UTF-8. Cannot fail. */
1654 for (i = 0; i < ucs2len; ++i)
1655 dst += utf_char2bytes(ucs2buf[i], dst);
1656 }
1657 else
1658 {
1659 BOOL bad = FALSE;
1660 int dstlen;
1661
1662 /* From UCS-2 to "enc_codepage". If the
1663 * conversion uses the default character "?",
1664 * the data doesn't fit in this encoding. */
1665 dstlen = WideCharToMultiByte(enc_codepage, 0,
1666 (LPCWSTR)ucs2buf, ucs2len,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001667 (LPSTR)dst, (int)(src - dst),
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001668 replstr, &bad);
1669 if (bad)
1670 found_bad = TRUE;
1671 else
1672 dst += dstlen;
1673 }
1674 }
1675
1676 if (found_bad)
1677 {
1678 /* Deal with bytes we can't convert. */
1679 if (can_retry)
1680 goto rewind_retry;
1681 if (conv_error == 0)
1682 conv_error = readfile_linenr(linecnt, ptr, dst);
1683 if (bad_char_behavior != BAD_DROP)
1684 {
1685 if (bad_char_behavior == BAD_KEEP)
1686 {
1687 mch_memmove(dst, src, bytelen);
1688 dst += bytelen;
1689 }
1690 else
1691 *dst++ = bad_char_behavior;
1692 }
1693 }
1694
1695 src += bytelen;
1696 size -= bytelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001698
1699 if (size > 0)
1700 {
1701 /* An incomplete byte sequence remaining. */
1702 mch_memmove(conv_rest, src, size);
1703 conv_restlen = size;
1704 }
1705
1706 /* The new size is equal to how much "dst" was advanced. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001707 size = (long)(dst - ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 }
1709 else
1710# endif
Bram Moolenaar56718732006-03-15 22:53:57 +00001711# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 if (fio_flags & FIO_MACROMAN)
1713 {
1714 /*
1715 * Conversion from Apple MacRoman char encoding to UTF-8 or
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00001716 * latin1. This is in os_mac_conv.c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 */
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00001718 if (macroman2enc(ptr, &size, real_size) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 goto rewind_retry;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 }
1721 else
1722# endif
1723 if (fio_flags != 0)
1724 {
1725 int u8c;
1726 char_u *dest;
1727 char_u *tail = NULL;
1728
1729 /*
1730 * "enc_utf8" set: Convert Unicode or Latin1 to UTF-8.
1731 * "enc_utf8" not set: Convert Unicode to Latin1.
1732 * Go from end to start through the buffer, because the number
1733 * of bytes may increase.
1734 * "dest" points to after where the UTF-8 bytes go, "p" points
1735 * to after the next character to convert.
1736 */
1737 dest = ptr + real_size;
1738 if (fio_flags == FIO_LATIN1 || fio_flags == FIO_UTF8)
1739 {
1740 p = ptr + size;
1741 if (fio_flags == FIO_UTF8)
1742 {
1743 /* Check for a trailing incomplete UTF-8 sequence */
1744 tail = ptr + size - 1;
1745 while (tail > ptr && (*tail & 0xc0) == 0x80)
1746 --tail;
1747 if (tail + utf_byte2len(*tail) <= ptr + size)
1748 tail = NULL;
1749 else
1750 p = tail;
1751 }
1752 }
1753 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1754 {
1755 /* Check for a trailing byte */
1756 p = ptr + (size & ~1);
1757 if (size & 1)
1758 tail = p;
1759 if ((fio_flags & FIO_UTF16) && p > ptr)
1760 {
1761 /* Check for a trailing leading word */
1762 if (fio_flags & FIO_ENDIAN_L)
1763 {
1764 u8c = (*--p << 8);
1765 u8c += *--p;
1766 }
1767 else
1768 {
1769 u8c = *--p;
1770 u8c += (*--p << 8);
1771 }
1772 if (u8c >= 0xd800 && u8c <= 0xdbff)
1773 tail = p;
1774 else
1775 p += 2;
1776 }
1777 }
1778 else /* FIO_UCS4 */
1779 {
1780 /* Check for trailing 1, 2 or 3 bytes */
1781 p = ptr + (size & ~3);
1782 if (size & 3)
1783 tail = p;
1784 }
1785
1786 /* If there is a trailing incomplete sequence move it to
1787 * conv_rest[]. */
1788 if (tail != NULL)
1789 {
1790 conv_restlen = (int)((ptr + size) - tail);
1791 mch_memmove(conv_rest, (char_u *)tail, conv_restlen);
1792 size -= conv_restlen;
1793 }
1794
1795
1796 while (p > ptr)
1797 {
1798 if (fio_flags & FIO_LATIN1)
1799 u8c = *--p;
1800 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1801 {
1802 if (fio_flags & FIO_ENDIAN_L)
1803 {
1804 u8c = (*--p << 8);
1805 u8c += *--p;
1806 }
1807 else
1808 {
1809 u8c = *--p;
1810 u8c += (*--p << 8);
1811 }
1812 if ((fio_flags & FIO_UTF16)
1813 && u8c >= 0xdc00 && u8c <= 0xdfff)
1814 {
1815 int u16c;
1816
1817 if (p == ptr)
1818 {
1819 /* Missing leading word. */
1820 if (can_retry)
1821 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001822 if (conv_error == 0)
1823 conv_error = readfile_linenr(linecnt,
1824 ptr, p);
1825 if (bad_char_behavior == BAD_DROP)
1826 continue;
1827 if (bad_char_behavior != BAD_KEEP)
1828 u8c = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 }
1830
1831 /* found second word of double-word, get the first
1832 * word and compute the resulting character */
1833 if (fio_flags & FIO_ENDIAN_L)
1834 {
1835 u16c = (*--p << 8);
1836 u16c += *--p;
1837 }
1838 else
1839 {
1840 u16c = *--p;
1841 u16c += (*--p << 8);
1842 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001843 u8c = 0x10000 + ((u16c & 0x3ff) << 10)
1844 + (u8c & 0x3ff);
1845
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 /* Check if the word is indeed a leading word. */
1847 if (u16c < 0xd800 || u16c > 0xdbff)
1848 {
1849 if (can_retry)
1850 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001851 if (conv_error == 0)
1852 conv_error = readfile_linenr(linecnt,
1853 ptr, p);
1854 if (bad_char_behavior == BAD_DROP)
1855 continue;
1856 if (bad_char_behavior != BAD_KEEP)
1857 u8c = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 }
1860 }
1861 else if (fio_flags & FIO_UCS4)
1862 {
1863 if (fio_flags & FIO_ENDIAN_L)
1864 {
1865 u8c = (*--p << 24);
1866 u8c += (*--p << 16);
1867 u8c += (*--p << 8);
1868 u8c += *--p;
1869 }
1870 else /* big endian */
1871 {
1872 u8c = *--p;
1873 u8c += (*--p << 8);
1874 u8c += (*--p << 16);
1875 u8c += (*--p << 24);
1876 }
1877 }
1878 else /* UTF-8 */
1879 {
1880 if (*--p < 0x80)
1881 u8c = *p;
1882 else
1883 {
1884 len = utf_head_off(ptr, p);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001885 p -= len;
1886 u8c = utf_ptr2char(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 if (len == 0)
1888 {
1889 /* Not a valid UTF-8 character, retry with
1890 * another fenc when possible, otherwise just
1891 * report the error. */
1892 if (can_retry)
1893 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001894 if (conv_error == 0)
1895 conv_error = readfile_linenr(linecnt,
1896 ptr, p);
1897 if (bad_char_behavior == BAD_DROP)
1898 continue;
1899 if (bad_char_behavior != BAD_KEEP)
1900 u8c = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 }
1903 }
1904 if (enc_utf8) /* produce UTF-8 */
1905 {
1906 dest -= utf_char2len(u8c);
1907 (void)utf_char2bytes(u8c, dest);
1908 }
1909 else /* produce Latin1 */
1910 {
1911 --dest;
1912 if (u8c >= 0x100)
1913 {
1914 /* character doesn't fit in latin1, retry with
1915 * another fenc when possible, otherwise just
1916 * report the error. */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001917 if (can_retry)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001919 if (conv_error == 0)
1920 conv_error = readfile_linenr(linecnt, ptr, p);
1921 if (bad_char_behavior == BAD_DROP)
1922 ++dest;
1923 else if (bad_char_behavior == BAD_KEEP)
1924 *dest = u8c;
1925 else if (eap != NULL && eap->bad_char != 0)
1926 *dest = bad_char_behavior;
1927 else
1928 *dest = 0xBF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001929 }
1930 else
1931 *dest = u8c;
1932 }
1933 }
1934
1935 /* move the linerest to before the converted characters */
1936 line_start = dest - linerest;
1937 mch_memmove(line_start, buffer, (size_t)linerest);
1938 size = (long)((ptr + real_size) - dest);
1939 ptr = dest;
1940 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00001941 else if (enc_utf8 && !curbuf->b_p_bin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00001943 int incomplete_tail = FALSE;
1944
1945 /* Reading UTF-8: Check if the bytes are valid UTF-8. */
1946 for (p = ptr; ; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001948 int todo = (int)((ptr + size) - p);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001949 int l;
1950
1951 if (todo <= 0)
1952 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 if (*p >= 0x80)
1954 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 /* A length of 1 means it's an illegal byte. Accept
1956 * an incomplete character at the end though, the next
1957 * read() will get the next bytes, we'll check it
1958 * then. */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001959 l = utf_ptr2len_len(p, todo);
Bram Moolenaarf453d352008-06-04 17:37:34 +00001960 if (l > todo && !incomplete_tail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00001962 /* Avoid retrying with a different encoding when
1963 * a truncated file is more likely, or attempting
1964 * to read the rest of an incomplete sequence when
1965 * we have already done so. */
1966 if (p > ptr || filesize > 0)
1967 incomplete_tail = TRUE;
1968 /* Incomplete byte sequence, move it to conv_rest[]
1969 * and try to read the rest of it, unless we've
1970 * already done so. */
1971 if (p > ptr)
1972 {
1973 conv_restlen = todo;
1974 mch_memmove(conv_rest, p, conv_restlen);
1975 size -= conv_restlen;
1976 break;
1977 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001978 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00001979 if (l == 1 || l > todo)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001980 {
1981 /* Illegal byte. If we can try another encoding
Bram Moolenaarf453d352008-06-04 17:37:34 +00001982 * do that, unless at EOF where a truncated
1983 * file is more likely than a conversion error. */
1984 if (can_retry && !incomplete_tail)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001985 break;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001986# ifdef USE_ICONV
1987 /* When we did a conversion report an error. */
1988 if (iconv_fd != (iconv_t)-1 && conv_error == 0)
1989 conv_error = readfile_linenr(linecnt, ptr, p);
1990# endif
Bram Moolenaarf453d352008-06-04 17:37:34 +00001991 /* Remember the first linenr with an illegal byte */
1992 if (conv_error == 0 && illegal_byte == 0)
1993 illegal_byte = readfile_linenr(linecnt, ptr, p);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001994
1995 /* Drop, keep or replace the bad byte. */
1996 if (bad_char_behavior == BAD_DROP)
1997 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00001998 mch_memmove(p, p + 1, todo - 1);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001999 --p;
2000 --size;
2001 }
2002 else if (bad_char_behavior != BAD_KEEP)
2003 *p = bad_char_behavior;
2004 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00002005 else
2006 p += l - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 }
2008 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00002009 if (p < ptr + size && !incomplete_tail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 {
2011 /* Detected a UTF-8 error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012rewind_retry:
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002013 /* Retry reading with another conversion. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014# if defined(FEAT_EVAL) && defined(USE_ICONV)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002015 if (*p_ccv != NUL && iconv_fd != (iconv_t)-1)
2016 /* iconv() failed, try 'charconvert' */
2017 did_iconv = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 else
2019# endif
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002020 /* use next item from 'fileencodings' */
2021 advance_fenc = TRUE;
2022 file_rewind = TRUE;
2023 goto retry;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 }
2025 }
2026#endif
2027
2028 /* count the number of characters (after conversion!) */
2029 filesize += size;
2030
2031 /*
2032 * when reading the first part of a file: guess EOL type
2033 */
2034 if (fileformat == EOL_UNKNOWN)
2035 {
2036 /* First try finding a NL, for Dos and Unix */
2037 if (try_dos || try_unix)
2038 {
2039 for (p = ptr; p < ptr + size; ++p)
2040 {
2041 if (*p == NL)
2042 {
2043 if (!try_unix
2044 || (try_dos && p > ptr && p[-1] == CAR))
2045 fileformat = EOL_DOS;
2046 else
2047 fileformat = EOL_UNIX;
2048 break;
2049 }
2050 }
2051
2052 /* Don't give in to EOL_UNIX if EOL_MAC is more likely */
2053 if (fileformat == EOL_UNIX && try_mac)
2054 {
2055 /* Need to reset the counters when retrying fenc. */
2056 try_mac = 1;
2057 try_unix = 1;
2058 for (; p >= ptr && *p != CAR; p--)
2059 ;
2060 if (p >= ptr)
2061 {
2062 for (p = ptr; p < ptr + size; ++p)
2063 {
2064 if (*p == NL)
2065 try_unix++;
2066 else if (*p == CAR)
2067 try_mac++;
2068 }
2069 if (try_mac > try_unix)
2070 fileformat = EOL_MAC;
2071 }
2072 }
2073 }
2074
2075 /* No NL found: may use Mac format */
2076 if (fileformat == EOL_UNKNOWN && try_mac)
2077 fileformat = EOL_MAC;
2078
2079 /* Still nothing found? Use first format in 'ffs' */
2080 if (fileformat == EOL_UNKNOWN)
2081 fileformat = default_fileformat();
2082
2083 /* if editing a new file: may set p_tx and p_ff */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002084 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085 set_fileformat(fileformat, OPT_LOCAL);
2086 }
2087 }
2088
2089 /*
2090 * This loop is executed once for every character read.
2091 * Keep it fast!
2092 */
2093 if (fileformat == EOL_MAC)
2094 {
2095 --ptr;
2096 while (++ptr, --size >= 0)
2097 {
2098 /* catch most common case first */
2099 if ((c = *ptr) != NUL && c != CAR && c != NL)
2100 continue;
2101 if (c == NUL)
2102 *ptr = NL; /* NULs are replaced by newlines! */
2103 else if (c == NL)
2104 *ptr = CAR; /* NLs are replaced by CRs! */
2105 else
2106 {
2107 if (skip_count == 0)
2108 {
2109 *ptr = NUL; /* end of line */
2110 len = (colnr_T) (ptr - line_start + 1);
2111 if (ml_append(lnum, line_start, len, newfile) == FAIL)
2112 {
2113 error = TRUE;
2114 break;
2115 }
2116 ++lnum;
2117 if (--read_count == 0)
2118 {
2119 error = TRUE; /* break loop */
2120 line_start = ptr; /* nothing left to write */
2121 break;
2122 }
2123 }
2124 else
2125 --skip_count;
2126 line_start = ptr + 1;
2127 }
2128 }
2129 }
2130 else
2131 {
2132 --ptr;
2133 while (++ptr, --size >= 0)
2134 {
2135 if ((c = *ptr) != NUL && c != NL) /* catch most common case */
2136 continue;
2137 if (c == NUL)
2138 *ptr = NL; /* NULs are replaced by newlines! */
2139 else
2140 {
2141 if (skip_count == 0)
2142 {
2143 *ptr = NUL; /* end of line */
2144 len = (colnr_T)(ptr - line_start + 1);
2145 if (fileformat == EOL_DOS)
2146 {
2147 if (ptr[-1] == CAR) /* remove CR */
2148 {
2149 ptr[-1] = NUL;
2150 --len;
2151 }
2152 /*
2153 * Reading in Dos format, but no CR-LF found!
2154 * When 'fileformats' includes "unix", delete all
2155 * the lines read so far and start all over again.
2156 * Otherwise give an error message later.
2157 */
2158 else if (ff_error != EOL_DOS)
2159 {
2160 if ( try_unix
2161 && !read_stdin
2162 && (read_buffer
2163 || lseek(fd, (off_t)0L, SEEK_SET) == 0))
2164 {
2165 fileformat = EOL_UNIX;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002166 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 set_fileformat(EOL_UNIX, OPT_LOCAL);
2168 file_rewind = TRUE;
2169 keep_fileformat = TRUE;
2170 goto retry;
2171 }
2172 ff_error = EOL_DOS;
2173 }
2174 }
2175 if (ml_append(lnum, line_start, len, newfile) == FAIL)
2176 {
2177 error = TRUE;
2178 break;
2179 }
2180 ++lnum;
2181 if (--read_count == 0)
2182 {
2183 error = TRUE; /* break loop */
2184 line_start = ptr; /* nothing left to write */
2185 break;
2186 }
2187 }
2188 else
2189 --skip_count;
2190 line_start = ptr + 1;
2191 }
2192 }
2193 }
2194 linerest = (long)(ptr - line_start);
2195 ui_breakcheck();
2196 }
2197
2198failed:
2199 /* not an error, max. number of lines reached */
2200 if (error && read_count == 0)
2201 error = FALSE;
2202
2203 /*
2204 * If we get EOF in the middle of a line, note the fact and
2205 * complete the line ourselves.
2206 * In Dos format ignore a trailing CTRL-Z, unless 'binary' set.
2207 */
2208 if (!error
2209 && !got_int
2210 && linerest != 0
2211 && !(!curbuf->b_p_bin
2212 && fileformat == EOL_DOS
2213 && *line_start == Ctrl_Z
2214 && ptr == line_start + 1))
2215 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002216 /* remember for when writing */
2217 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 curbuf->b_p_eol = FALSE;
2219 *ptr = NUL;
2220 if (ml_append(lnum, line_start,
2221 (colnr_T)(ptr - line_start + 1), newfile) == FAIL)
2222 error = TRUE;
2223 else
2224 read_no_eol_lnum = ++lnum;
2225 }
2226
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002227 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 save_file_ff(curbuf); /* remember the current file format */
2229
2230#ifdef FEAT_CRYPT
2231 if (cryptkey != curbuf->b_p_key)
2232 vim_free(cryptkey);
2233#endif
2234
2235#ifdef FEAT_MBYTE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002236 /* If editing a new file: set 'fenc' for the current buffer.
2237 * Also for ":read ++edit file". */
2238 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 set_string_option_direct((char_u *)"fenc", -1, fenc,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002240 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 if (fenc_alloced)
2242 vim_free(fenc);
2243# ifdef USE_ICONV
2244 if (iconv_fd != (iconv_t)-1)
2245 {
2246 iconv_close(iconv_fd);
2247 iconv_fd = (iconv_t)-1;
2248 }
2249# endif
2250#endif
2251
2252 if (!read_buffer && !read_stdin)
2253 close(fd); /* errors are ignored */
2254 vim_free(buffer);
2255
2256#ifdef HAVE_DUP
2257 if (read_stdin)
2258 {
2259 /* Use stderr for stdin, makes shell commands work. */
2260 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002261 ignored = dup(2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 }
2263#endif
2264
2265#ifdef FEAT_MBYTE
2266 if (tmpname != NULL)
2267 {
2268 mch_remove(tmpname); /* delete converted file */
2269 vim_free(tmpname);
2270 }
2271#endif
2272 --no_wait_return; /* may wait for return now */
2273
2274 /*
2275 * In recovery mode everything but autocommands is skipped.
2276 */
2277 if (!recoverymode)
2278 {
2279 /* need to delete the last line, which comes from the empty buffer */
2280 if (newfile && wasempty && !(curbuf->b_ml.ml_flags & ML_EMPTY))
2281 {
2282#ifdef FEAT_NETBEANS_INTG
2283 netbeansFireChanges = 0;
2284#endif
2285 ml_delete(curbuf->b_ml.ml_line_count, FALSE);
2286#ifdef FEAT_NETBEANS_INTG
2287 netbeansFireChanges = 1;
2288#endif
2289 --linecnt;
2290 }
2291 linecnt = curbuf->b_ml.ml_line_count - linecnt;
2292 if (filesize == 0)
2293 linecnt = 0;
2294 if (newfile || read_buffer)
Bram Moolenaar7263a772007-05-10 17:35:54 +00002295 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 redraw_curbuf_later(NOT_VALID);
Bram Moolenaar7263a772007-05-10 17:35:54 +00002297#ifdef FEAT_DIFF
2298 /* After reading the text into the buffer the diff info needs to
2299 * be updated. */
2300 diff_invalidate(curbuf);
2301#endif
2302#ifdef FEAT_FOLDING
2303 /* All folds in the window are invalid now. Mark them for update
2304 * before triggering autocommands. */
2305 foldUpdateAll(curwin);
2306#endif
2307 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 else if (linecnt) /* appended at least one line */
2309 appended_lines_mark(from, linecnt);
2310
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311#ifndef ALWAYS_USE_GUI
2312 /*
2313 * If we were reading from the same terminal as where messages go,
2314 * the screen will have been messed up.
2315 * Switch on raw mode now and clear the screen.
2316 */
2317 if (read_stdin)
2318 {
2319 settmode(TMODE_RAW); /* set to raw mode */
2320 starttermcap();
2321 screenclear();
2322 }
2323#endif
2324
2325 if (got_int)
2326 {
2327 if (!(flags & READ_DUMMY))
2328 {
2329 filemess(curbuf, sfname, (char_u *)_(e_interr), 0);
2330 if (newfile)
2331 curbuf->b_p_ro = TRUE; /* must use "w!" now */
2332 }
2333 msg_scroll = msg_save;
2334#ifdef FEAT_VIMINFO
2335 check_marks_read();
2336#endif
2337 return OK; /* an interrupt isn't really an error */
2338 }
2339
2340 if (!filtering && !(flags & READ_DUMMY))
2341 {
2342 msg_add_fname(curbuf, sfname); /* fname in IObuff with quotes */
2343 c = FALSE;
2344
2345#ifdef UNIX
2346# ifdef S_ISFIFO
2347 if (S_ISFIFO(perm)) /* fifo or socket */
2348 {
2349 STRCAT(IObuff, _("[fifo/socket]"));
2350 c = TRUE;
2351 }
2352# else
2353# ifdef S_IFIFO
2354 if ((perm & S_IFMT) == S_IFIFO) /* fifo */
2355 {
2356 STRCAT(IObuff, _("[fifo]"));
2357 c = TRUE;
2358 }
2359# endif
2360# ifdef S_IFSOCK
2361 if ((perm & S_IFMT) == S_IFSOCK) /* or socket */
2362 {
2363 STRCAT(IObuff, _("[socket]"));
2364 c = TRUE;
2365 }
2366# endif
2367# endif
Bram Moolenaarfe1c56d2007-07-10 15:10:54 +00002368# ifdef OPEN_CHR_FILES
2369 if (S_ISCHR(perm)) /* or character special */
2370 {
2371 STRCAT(IObuff, _("[character special]"));
2372 c = TRUE;
2373 }
2374# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375#endif
2376 if (curbuf->b_p_ro)
2377 {
2378 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
2379 c = TRUE;
2380 }
2381 if (read_no_eol_lnum)
2382 {
2383 msg_add_eol();
2384 c = TRUE;
2385 }
2386 if (ff_error == EOL_DOS)
2387 {
2388 STRCAT(IObuff, _("[CR missing]"));
2389 c = TRUE;
2390 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 if (split)
2392 {
2393 STRCAT(IObuff, _("[long lines split]"));
2394 c = TRUE;
2395 }
2396#ifdef FEAT_MBYTE
2397 if (notconverted)
2398 {
2399 STRCAT(IObuff, _("[NOT converted]"));
2400 c = TRUE;
2401 }
2402 else if (converted)
2403 {
2404 STRCAT(IObuff, _("[converted]"));
2405 c = TRUE;
2406 }
2407#endif
2408#ifdef FEAT_CRYPT
2409 if (cryptkey != NULL)
2410 {
2411 STRCAT(IObuff, _("[crypted]"));
2412 c = TRUE;
2413 }
2414#endif
2415#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002416 if (conv_error != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002418 sprintf((char *)IObuff + STRLEN(IObuff),
2419 _("[CONVERSION ERROR in line %ld]"), (long)conv_error);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 c = TRUE;
2421 }
2422 else if (illegal_byte > 0)
2423 {
2424 sprintf((char *)IObuff + STRLEN(IObuff),
2425 _("[ILLEGAL BYTE in line %ld]"), (long)illegal_byte);
2426 c = TRUE;
2427 }
2428 else
2429#endif
2430 if (error)
2431 {
2432 STRCAT(IObuff, _("[READ ERRORS]"));
2433 c = TRUE;
2434 }
2435 if (msg_add_fileformat(fileformat))
2436 c = TRUE;
2437#ifdef FEAT_CRYPT
2438 if (cryptkey != NULL)
2439 msg_add_lines(c, (long)linecnt, filesize - CRYPT_MAGIC_LEN);
2440 else
2441#endif
2442 msg_add_lines(c, (long)linecnt, filesize);
2443
2444 vim_free(keep_msg);
2445 keep_msg = NULL;
2446 msg_scrolled_ign = TRUE;
2447#ifdef ALWAYS_USE_GUI
2448 /* Don't show the message when reading stdin, it would end up in a
2449 * message box (which might be shown when exiting!) */
2450 if (read_stdin || read_buffer)
2451 p = msg_may_trunc(FALSE, IObuff);
2452 else
2453#endif
2454 p = msg_trunc_attr(IObuff, FALSE, 0);
2455 if (read_stdin || read_buffer || restart_edit != 0
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002456 || (msg_scrolled != 0 && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 /* Need to repeat the message after redrawing when:
2458 * - When reading from stdin (the screen will be cleared next).
2459 * - When restart_edit is set (otherwise there will be a delay
2460 * before redrawing).
2461 * - When the screen was scrolled but there is no wait-return
2462 * prompt. */
Bram Moolenaar8f7fd652006-02-21 22:04:51 +00002463 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 msg_scrolled_ign = FALSE;
2465 }
2466
2467 /* with errors writing the file requires ":w!" */
2468 if (newfile && (error
2469#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002470 || conv_error != 0
Bram Moolenaar8f7fd652006-02-21 22:04:51 +00002471 || (illegal_byte > 0 && bad_char_behavior != BAD_KEEP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472#endif
2473 ))
2474 curbuf->b_p_ro = TRUE;
2475
2476 u_clearline(); /* cannot use "U" command after adding lines */
2477
2478 /*
2479 * In Ex mode: cursor at last new line.
2480 * Otherwise: cursor at first new line.
2481 */
2482 if (exmode_active)
2483 curwin->w_cursor.lnum = from + linecnt;
2484 else
2485 curwin->w_cursor.lnum = from + 1;
2486 check_cursor_lnum();
2487 beginline(BL_WHITE | BL_FIX); /* on first non-blank */
2488
2489 /*
2490 * Set '[ and '] marks to the newly read lines.
2491 */
2492 curbuf->b_op_start.lnum = from + 1;
2493 curbuf->b_op_start.col = 0;
2494 curbuf->b_op_end.lnum = from + linecnt;
2495 curbuf->b_op_end.col = 0;
Bram Moolenaar03f48552006-02-28 23:52:23 +00002496
2497#ifdef WIN32
2498 /*
2499 * Work around a weird problem: When a file has two links (only
2500 * possible on NTFS) and we write through one link, then stat() it
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00002501 * through the other link, the timestamp information may be wrong.
Bram Moolenaar03f48552006-02-28 23:52:23 +00002502 * It's correct again after reading the file, thus reset the timestamp
2503 * here.
2504 */
2505 if (newfile && !read_stdin && !read_buffer
2506 && mch_stat((char *)fname, &st) >= 0)
2507 {
2508 buf_store_time(curbuf, &st, fname);
2509 curbuf->b_mtime_read = curbuf->b_mtime;
2510 }
2511#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 }
2513 msg_scroll = msg_save;
2514
2515#ifdef FEAT_VIMINFO
2516 /*
2517 * Get the marks before executing autocommands, so they can be used there.
2518 */
2519 check_marks_read();
2520#endif
2521
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 /*
2523 * Trick: We remember if the last line of the read didn't have
2524 * an eol for when writing it again. This is required for
2525 * ":autocmd FileReadPost *.gz set bin|'[,']!gunzip" to work.
2526 */
2527 write_no_eol_lnum = read_no_eol_lnum;
2528
Bram Moolenaardf177f62005-02-22 08:39:57 +00002529#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 if (!read_stdin && !read_buffer)
2531 {
2532 int m = msg_scroll;
2533 int n = msg_scrolled;
2534
2535 /* Save the fileformat now, otherwise the buffer will be considered
2536 * modified if the format/encoding was automatically detected. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002537 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538 save_file_ff(curbuf);
2539
2540 /*
2541 * The output from the autocommands should not overwrite anything and
2542 * should not be overwritten: Set msg_scroll, restore its value if no
2543 * output was done.
2544 */
2545 msg_scroll = TRUE;
2546 if (filtering)
2547 apply_autocmds_exarg(EVENT_FILTERREADPOST, NULL, sfname,
2548 FALSE, curbuf, eap);
2549 else if (newfile)
2550 apply_autocmds_exarg(EVENT_BUFREADPOST, NULL, sfname,
2551 FALSE, curbuf, eap);
2552 else
2553 apply_autocmds_exarg(EVENT_FILEREADPOST, sfname, sfname,
2554 FALSE, NULL, eap);
2555 if (msg_scrolled == n)
2556 msg_scroll = m;
2557#ifdef FEAT_EVAL
2558 if (aborting()) /* autocmds may abort script processing */
2559 return FAIL;
2560#endif
2561 }
2562#endif
2563
2564 if (recoverymode && error)
2565 return FAIL;
2566 return OK;
2567}
2568
Bram Moolenaarfe1c56d2007-07-10 15:10:54 +00002569#ifdef OPEN_CHR_FILES
2570/*
2571 * Returns TRUE if the file name argument is of the form "/dev/fd/\d\+",
2572 * which is the name of files used for process substitution output by
2573 * some shells on some operating systems, e.g., bash on SunOS.
2574 * Do not accept "/dev/fd/[012]", opening these may hang Vim.
2575 */
2576 static int
2577is_dev_fd_file(fname)
2578 char_u *fname;
2579{
2580 return (STRNCMP(fname, "/dev/fd/", 8) == 0
2581 && VIM_ISDIGIT(fname[8])
2582 && *skipdigits(fname + 9) == NUL
2583 && (fname[9] != NUL
2584 || (fname[8] != '0' && fname[8] != '1' && fname[8] != '2')));
2585}
2586#endif
2587
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002588#ifdef FEAT_MBYTE
2589
2590/*
2591 * From the current line count and characters read after that, estimate the
2592 * line number where we are now.
2593 * Used for error messages that include a line number.
2594 */
2595 static linenr_T
2596readfile_linenr(linecnt, p, endp)
2597 linenr_T linecnt; /* line count before reading more bytes */
2598 char_u *p; /* start of more bytes read */
2599 char_u *endp; /* end of more bytes read */
2600{
2601 char_u *s;
2602 linenr_T lnum;
2603
2604 lnum = curbuf->b_ml.ml_line_count - linecnt + 1;
2605 for (s = p; s < endp; ++s)
2606 if (*s == '\n')
2607 ++lnum;
2608 return lnum;
2609}
2610#endif
2611
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612/*
Bram Moolenaar195d6352005-12-19 22:08:24 +00002613 * Fill "*eap" to force the 'fileencoding', 'fileformat' and 'binary to be
2614 * equal to the buffer "buf". Used for calling readfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 * Returns OK or FAIL.
2616 */
2617 int
2618prep_exarg(eap, buf)
2619 exarg_T *eap;
2620 buf_T *buf;
2621{
2622 eap->cmd = alloc((unsigned)(STRLEN(buf->b_p_ff)
2623#ifdef FEAT_MBYTE
2624 + STRLEN(buf->b_p_fenc)
2625#endif
2626 + 15));
2627 if (eap->cmd == NULL)
2628 return FAIL;
2629
2630#ifdef FEAT_MBYTE
2631 sprintf((char *)eap->cmd, "e ++ff=%s ++enc=%s", buf->b_p_ff, buf->b_p_fenc);
2632 eap->force_enc = 14 + (int)STRLEN(buf->b_p_ff);
Bram Moolenaar195d6352005-12-19 22:08:24 +00002633 eap->bad_char = buf->b_bad_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634#else
2635 sprintf((char *)eap->cmd, "e ++ff=%s", buf->b_p_ff);
2636#endif
2637 eap->force_ff = 7;
Bram Moolenaar195d6352005-12-19 22:08:24 +00002638
2639 eap->force_bin = buf->b_p_bin ? FORCE_BIN : FORCE_NOBIN;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002640 eap->read_edit = FALSE;
Bram Moolenaar195d6352005-12-19 22:08:24 +00002641 eap->forceit = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 return OK;
2643}
2644
2645#ifdef FEAT_MBYTE
2646/*
2647 * Find next fileencoding to use from 'fileencodings'.
2648 * "pp" points to fenc_next. It's advanced to the next item.
2649 * When there are no more items, an empty string is returned and *pp is set to
2650 * NULL.
2651 * When *pp is not set to NULL, the result is in allocated memory.
2652 */
2653 static char_u *
2654next_fenc(pp)
2655 char_u **pp;
2656{
2657 char_u *p;
2658 char_u *r;
2659
2660 if (**pp == NUL)
2661 {
2662 *pp = NULL;
2663 return (char_u *)"";
2664 }
2665 p = vim_strchr(*pp, ',');
2666 if (p == NULL)
2667 {
2668 r = enc_canonize(*pp);
2669 *pp += STRLEN(*pp);
2670 }
2671 else
2672 {
2673 r = vim_strnsave(*pp, (int)(p - *pp));
2674 *pp = p + 1;
2675 if (r != NULL)
2676 {
2677 p = enc_canonize(r);
2678 vim_free(r);
2679 r = p;
2680 }
2681 }
2682 if (r == NULL) /* out of memory */
2683 {
2684 r = (char_u *)"";
2685 *pp = NULL;
2686 }
2687 return r;
2688}
2689
2690# ifdef FEAT_EVAL
2691/*
2692 * Convert a file with the 'charconvert' expression.
2693 * This closes the file which is to be read, converts it and opens the
2694 * resulting file for reading.
2695 * Returns name of the resulting converted file (the caller should delete it
2696 * after reading it).
2697 * Returns NULL if the conversion failed ("*fdp" is not set) .
2698 */
2699 static char_u *
2700readfile_charconvert(fname, fenc, fdp)
2701 char_u *fname; /* name of input file */
2702 char_u *fenc; /* converted from */
2703 int *fdp; /* in/out: file descriptor of file */
2704{
2705 char_u *tmpname;
2706 char_u *errmsg = NULL;
2707
2708 tmpname = vim_tempname('r');
2709 if (tmpname == NULL)
2710 errmsg = (char_u *)_("Can't find temp file for conversion");
2711 else
2712 {
2713 close(*fdp); /* close the input file, ignore errors */
2714 *fdp = -1;
2715 if (eval_charconvert(fenc, enc_utf8 ? (char_u *)"utf-8" : p_enc,
2716 fname, tmpname) == FAIL)
2717 errmsg = (char_u *)_("Conversion with 'charconvert' failed");
2718 if (errmsg == NULL && (*fdp = mch_open((char *)tmpname,
2719 O_RDONLY | O_EXTRA, 0)) < 0)
2720 errmsg = (char_u *)_("can't read output of 'charconvert'");
2721 }
2722
2723 if (errmsg != NULL)
2724 {
2725 /* Don't use emsg(), it breaks mappings, the retry with
2726 * another type of conversion might still work. */
2727 MSG(errmsg);
2728 if (tmpname != NULL)
2729 {
2730 mch_remove(tmpname); /* delete converted file */
2731 vim_free(tmpname);
2732 tmpname = NULL;
2733 }
2734 }
2735
2736 /* If the input file is closed, open it (caller should check for error). */
2737 if (*fdp < 0)
2738 *fdp = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2739
2740 return tmpname;
2741}
2742# endif
2743
2744#endif
2745
2746#ifdef FEAT_VIMINFO
2747/*
2748 * Read marks for the current buffer from the viminfo file, when we support
2749 * buffer marks and the buffer has a name.
2750 */
2751 static void
2752check_marks_read()
2753{
2754 if (!curbuf->b_marks_read && get_viminfo_parameter('\'') > 0
2755 && curbuf->b_ffname != NULL)
Bram Moolenaard812df62008-11-09 12:46:09 +00002756 read_viminfo(NULL, VIF_WANT_MARKS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002757
2758 /* Always set b_marks_read; needed when 'viminfo' is changed to include
2759 * the ' parameter after opening a buffer. */
2760 curbuf->b_marks_read = TRUE;
2761}
2762#endif
2763
2764#ifdef FEAT_CRYPT
2765/*
2766 * Check for magic number used for encryption.
2767 * If found, the magic number is removed from ptr[*sizep] and *sizep and
2768 * *filesizep are updated.
2769 * Return the (new) encryption key, NULL for no encryption.
2770 */
2771 static char_u *
2772check_for_cryptkey(cryptkey, ptr, sizep, filesizep, newfile)
2773 char_u *cryptkey; /* previous encryption key or NULL */
2774 char_u *ptr; /* pointer to read bytes */
2775 long *sizep; /* length of read bytes */
2776 long *filesizep; /* nr of bytes used from file */
2777 int newfile; /* editing a new buffer */
2778{
2779 if (*sizep >= CRYPT_MAGIC_LEN
2780 && STRNCMP(ptr, CRYPT_MAGIC, CRYPT_MAGIC_LEN) == 0)
2781 {
2782 if (cryptkey == NULL)
2783 {
2784 if (*curbuf->b_p_key)
2785 cryptkey = curbuf->b_p_key;
2786 else
2787 {
2788 /* When newfile is TRUE, store the typed key
2789 * in the 'key' option and don't free it. */
2790 cryptkey = get_crypt_key(newfile, FALSE);
2791 /* check if empty key entered */
2792 if (cryptkey != NULL && *cryptkey == NUL)
2793 {
2794 if (cryptkey != curbuf->b_p_key)
2795 vim_free(cryptkey);
2796 cryptkey = NULL;
2797 }
2798 }
2799 }
2800
2801 if (cryptkey != NULL)
2802 {
2803 crypt_init_keys(cryptkey);
2804
2805 /* Remove magic number from the text */
2806 *filesizep += CRYPT_MAGIC_LEN;
2807 *sizep -= CRYPT_MAGIC_LEN;
2808 mch_memmove(ptr, ptr + CRYPT_MAGIC_LEN, (size_t)*sizep);
2809 }
2810 }
2811 /* When starting to edit a new file which does not have
2812 * encryption, clear the 'key' option, except when
2813 * starting up (called with -x argument) */
2814 else if (newfile && *curbuf->b_p_key && !starting)
2815 set_option_value((char_u *)"key", 0L, (char_u *)"", OPT_LOCAL);
2816
2817 return cryptkey;
2818}
2819#endif
2820
2821#ifdef UNIX
2822 static void
2823set_file_time(fname, atime, mtime)
2824 char_u *fname;
2825 time_t atime; /* access time */
2826 time_t mtime; /* modification time */
2827{
2828# if defined(HAVE_UTIME) && defined(HAVE_UTIME_H)
2829 struct utimbuf buf;
2830
2831 buf.actime = atime;
2832 buf.modtime = mtime;
2833 (void)utime((char *)fname, &buf);
2834# else
2835# if defined(HAVE_UTIMES)
2836 struct timeval tvp[2];
2837
2838 tvp[0].tv_sec = atime;
2839 tvp[0].tv_usec = 0;
2840 tvp[1].tv_sec = mtime;
2841 tvp[1].tv_usec = 0;
2842# ifdef NeXT
2843 (void)utimes((char *)fname, tvp);
2844# else
2845 (void)utimes((char *)fname, (const struct timeval *)&tvp);
2846# endif
2847# endif
2848# endif
2849}
2850#endif /* UNIX */
2851
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002852#if defined(VMS) && !defined(MIN)
2853/* Older DECC compiler for VAX doesn't define MIN() */
2854# define MIN(a, b) ((a) < (b) ? (a) : (b))
2855#endif
2856
Bram Moolenaar071d4272004-06-13 20:20:40 +00002857/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00002858 * Return TRUE if a file appears to be read-only from the file permissions.
2859 */
2860 int
2861check_file_readonly(fname, perm)
2862 char_u *fname; /* full path to file */
2863 int perm; /* known permissions on file */
2864{
2865#ifndef USE_MCH_ACCESS
2866 int fd = 0;
2867#endif
2868
2869 return (
2870#ifdef USE_MCH_ACCESS
2871# ifdef UNIX
2872 (perm & 0222) == 0 ||
2873# endif
2874 mch_access((char *)fname, W_OK)
2875#else
2876 (fd = mch_open((char *)fname, O_RDWR | O_EXTRA, 0)) < 0
2877 ? TRUE : (close(fd), FALSE)
2878#endif
2879 );
2880}
2881
2882
2883/*
Bram Moolenaar292ad192005-12-11 21:29:51 +00002884 * buf_write() - write to file "fname" lines "start" through "end"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 *
2886 * We do our own buffering here because fwrite() is so slow.
2887 *
Bram Moolenaar292ad192005-12-11 21:29:51 +00002888 * If "forceit" is true, we don't care for errors when attempting backups.
2889 * In case of an error everything possible is done to restore the original
Bram Moolenaare37d50a2008-08-06 17:06:04 +00002890 * file. But when "forceit" is TRUE, we risk losing it.
Bram Moolenaar292ad192005-12-11 21:29:51 +00002891 *
2892 * When "reset_changed" is TRUE and "append" == FALSE and "start" == 1 and
2893 * "end" == curbuf->b_ml.ml_line_count, reset curbuf->b_changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 *
2895 * This function must NOT use NameBuff (because it's called by autowrite()).
2896 *
2897 * return FAIL for failure, OK otherwise
2898 */
2899 int
2900buf_write(buf, fname, sfname, start, end, eap, append, forceit,
2901 reset_changed, filtering)
2902 buf_T *buf;
2903 char_u *fname;
2904 char_u *sfname;
2905 linenr_T start, end;
2906 exarg_T *eap; /* for forced 'ff' and 'fenc', can be
2907 NULL! */
Bram Moolenaar292ad192005-12-11 21:29:51 +00002908 int append; /* append to the file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 int forceit;
2910 int reset_changed;
2911 int filtering;
2912{
2913 int fd;
2914 char_u *backup = NULL;
2915 int backup_copy = FALSE; /* copy the original file? */
2916 int dobackup;
2917 char_u *ffname;
2918 char_u *wfname = NULL; /* name of file to write to */
2919 char_u *s;
2920 char_u *ptr;
2921 char_u c;
2922 int len;
2923 linenr_T lnum;
2924 long nchars;
2925 char_u *errmsg = NULL;
2926 char_u *errnum = NULL;
2927 char_u *buffer;
2928 char_u smallbuf[SMBUFSIZE];
2929 char_u *backup_ext;
2930 int bufsize;
2931 long perm; /* file permissions */
2932 int retval = OK;
2933 int newfile = FALSE; /* TRUE if file doesn't exist yet */
2934 int msg_save = msg_scroll;
2935 int overwriting; /* TRUE if writing over original */
2936 int no_eol = FALSE; /* no end-of-line written */
2937 int device = FALSE; /* writing to a device */
2938 struct stat st_old;
2939 int prev_got_int = got_int;
2940 int file_readonly = FALSE; /* overwritten file is read-only */
2941 static char *err_readonly = "is read-only (cannot override: \"W\" in 'cpoptions')";
2942#if defined(UNIX) || defined(__EMX__XX) /*XXX fix me sometime? */
2943 int made_writable = FALSE; /* 'w' bit has been set */
2944#endif
2945 /* writing everything */
2946 int whole = (start == 1 && end == buf->b_ml.ml_line_count);
2947#ifdef FEAT_AUTOCMD
2948 linenr_T old_line_count = buf->b_ml.ml_line_count;
2949#endif
2950 int attr;
2951 int fileformat;
2952 int write_bin;
2953 struct bw_info write_info; /* info for buf_write_bytes() */
2954#ifdef FEAT_MBYTE
2955 int converted = FALSE;
2956 int notconverted = FALSE;
2957 char_u *fenc; /* effective 'fileencoding' */
2958 char_u *fenc_tofree = NULL; /* allocated "fenc" */
2959#endif
2960#ifdef HAS_BW_FLAGS
2961 int wb_flags = 0;
2962#endif
2963#ifdef HAVE_ACL
2964 vim_acl_T acl = NULL; /* ACL copied from original file to
2965 backup or new file */
2966#endif
2967
2968 if (fname == NULL || *fname == NUL) /* safety check */
2969 return FAIL;
2970
2971 /*
2972 * Disallow writing from .exrc and .vimrc in current directory for
2973 * security reasons.
2974 */
2975 if (check_secure())
2976 return FAIL;
2977
2978 /* Avoid a crash for a long name. */
2979 if (STRLEN(fname) >= MAXPATHL)
2980 {
2981 EMSG(_(e_longname));
2982 return FAIL;
2983 }
2984
2985#ifdef FEAT_MBYTE
2986 /* must init bw_conv_buf and bw_iconv_fd before jumping to "fail" */
2987 write_info.bw_conv_buf = NULL;
2988 write_info.bw_conv_error = FALSE;
2989 write_info.bw_restlen = 0;
2990# ifdef USE_ICONV
2991 write_info.bw_iconv_fd = (iconv_t)-1;
2992# endif
2993#endif
2994
Bram Moolenaardf177f62005-02-22 08:39:57 +00002995 /* After writing a file changedtick changes but we don't want to display
2996 * the line. */
2997 ex_no_reprint = TRUE;
2998
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999 /*
3000 * If there is no file name yet, use the one for the written file.
3001 * BF_NOTEDITED is set to reflect this (in case the write fails).
3002 * Don't do this when the write is for a filter command.
Bram Moolenaar292ad192005-12-11 21:29:51 +00003003 * Don't do this when appending.
3004 * Only do this when 'cpoptions' contains the 'F' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005 */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00003006 if (buf->b_ffname == NULL
3007 && reset_changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003008 && whole
3009 && buf == curbuf
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003010#ifdef FEAT_QUICKFIX
3011 && !bt_nofile(buf)
3012#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013 && !filtering
Bram Moolenaar292ad192005-12-11 21:29:51 +00003014 && (!append || vim_strchr(p_cpo, CPO_FNAMEAPP) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 && vim_strchr(p_cpo, CPO_FNAMEW) != NULL)
3016 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00003017 if (set_rw_fname(fname, sfname) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 return FAIL;
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00003019 buf = curbuf; /* just in case autocmds made "buf" invalid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 }
3021
3022 if (sfname == NULL)
3023 sfname = fname;
3024 /*
3025 * For Unix: Use the short file name whenever possible.
3026 * Avoids problems with networks and when directory names are changed.
3027 * Don't do this for MS-DOS, a "cd" in a sub-shell may have moved us to
3028 * another directory, which we don't detect
3029 */
3030 ffname = fname; /* remember full fname */
3031#ifdef UNIX
3032 fname = sfname;
3033#endif
3034
3035 if (buf->b_ffname != NULL && fnamecmp(ffname, buf->b_ffname) == 0)
3036 overwriting = TRUE;
3037 else
3038 overwriting = FALSE;
3039
3040 if (exiting)
3041 settmode(TMODE_COOK); /* when exiting allow typahead now */
3042
3043 ++no_wait_return; /* don't wait for return yet */
3044
3045 /*
3046 * Set '[ and '] marks to the lines to be written.
3047 */
3048 buf->b_op_start.lnum = start;
3049 buf->b_op_start.col = 0;
3050 buf->b_op_end.lnum = end;
3051 buf->b_op_end.col = 0;
3052
3053#ifdef FEAT_AUTOCMD
3054 {
3055 aco_save_T aco;
3056 int buf_ffname = FALSE;
3057 int buf_sfname = FALSE;
3058 int buf_fname_f = FALSE;
3059 int buf_fname_s = FALSE;
3060 int did_cmd = FALSE;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003061 int nofile_err = FALSE;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003062 int empty_memline = (buf->b_ml.ml_mfp == NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063
3064 /*
3065 * Apply PRE aucocommands.
3066 * Set curbuf to the buffer to be written.
3067 * Careful: The autocommands may call buf_write() recursively!
3068 */
3069 if (ffname == buf->b_ffname)
3070 buf_ffname = TRUE;
3071 if (sfname == buf->b_sfname)
3072 buf_sfname = TRUE;
3073 if (fname == buf->b_ffname)
3074 buf_fname_f = TRUE;
3075 if (fname == buf->b_sfname)
3076 buf_fname_s = TRUE;
3077
3078 /* set curwin/curbuf to buf and save a few things */
3079 aucmd_prepbuf(&aco, buf);
3080
3081 if (append)
3082 {
3083 if (!(did_cmd = apply_autocmds_exarg(EVENT_FILEAPPENDCMD,
3084 sfname, sfname, FALSE, curbuf, eap)))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003085 {
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003086#ifdef FEAT_QUICKFIX
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00003087 if (overwriting && bt_nofile(curbuf))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003088 nofile_err = TRUE;
3089 else
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003090#endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003091 apply_autocmds_exarg(EVENT_FILEAPPENDPRE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003092 sfname, sfname, FALSE, curbuf, eap);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003093 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 }
3095 else if (filtering)
3096 {
3097 apply_autocmds_exarg(EVENT_FILTERWRITEPRE,
3098 NULL, sfname, FALSE, curbuf, eap);
3099 }
3100 else if (reset_changed && whole)
3101 {
3102 if (!(did_cmd = apply_autocmds_exarg(EVENT_BUFWRITECMD,
3103 sfname, sfname, FALSE, curbuf, eap)))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003104 {
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003105#ifdef FEAT_QUICKFIX
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003106 if (overwriting && bt_nofile(curbuf))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003107 nofile_err = TRUE;
3108 else
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003109#endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003110 apply_autocmds_exarg(EVENT_BUFWRITEPRE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 sfname, sfname, FALSE, curbuf, eap);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003112 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 }
3114 else
3115 {
3116 if (!(did_cmd = apply_autocmds_exarg(EVENT_FILEWRITECMD,
3117 sfname, sfname, FALSE, curbuf, eap)))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003118 {
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003119#ifdef FEAT_QUICKFIX
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003120 if (overwriting && bt_nofile(curbuf))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003121 nofile_err = TRUE;
3122 else
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003123#endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003124 apply_autocmds_exarg(EVENT_FILEWRITEPRE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003125 sfname, sfname, FALSE, curbuf, eap);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003126 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 }
3128
3129 /* restore curwin/curbuf and a few other things */
3130 aucmd_restbuf(&aco);
3131
3132 /*
3133 * In three situations we return here and don't write the file:
3134 * 1. the autocommands deleted or unloaded the buffer.
3135 * 2. The autocommands abort script processing.
3136 * 3. If one of the "Cmd" autocommands was executed.
3137 */
3138 if (!buf_valid(buf))
3139 buf = NULL;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003140 if (buf == NULL || (buf->b_ml.ml_mfp == NULL && !empty_memline)
Bram Moolenaar1e015462005-09-25 22:16:38 +00003141 || did_cmd || nofile_err
3142#ifdef FEAT_EVAL
3143 || aborting()
3144#endif
3145 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146 {
3147 --no_wait_return;
3148 msg_scroll = msg_save;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003149 if (nofile_err)
3150 EMSG(_("E676: No matching autocommands for acwrite buffer"));
3151
Bram Moolenaar1e015462005-09-25 22:16:38 +00003152 if (nofile_err
3153#ifdef FEAT_EVAL
3154 || aborting()
3155#endif
3156 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 /* An aborting error, interrupt or exception in the
3158 * autocommands. */
3159 return FAIL;
3160 if (did_cmd)
3161 {
3162 if (buf == NULL)
3163 /* The buffer was deleted. We assume it was written
3164 * (can't retry anyway). */
3165 return OK;
3166 if (overwriting)
3167 {
3168 /* Assume the buffer was written, update the timestamp. */
3169 ml_timestamp(buf);
Bram Moolenaar292ad192005-12-11 21:29:51 +00003170 if (append)
3171 buf->b_flags &= ~BF_NEW;
3172 else
3173 buf->b_flags &= ~BF_WRITE_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174 }
Bram Moolenaar292ad192005-12-11 21:29:51 +00003175 if (reset_changed && buf->b_changed && !append
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003176 && (overwriting || vim_strchr(p_cpo, CPO_PLUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177 /* Buffer still changed, the autocommands didn't work
3178 * properly. */
3179 return FAIL;
3180 return OK;
3181 }
3182#ifdef FEAT_EVAL
3183 if (!aborting())
3184#endif
3185 EMSG(_("E203: Autocommands deleted or unloaded buffer to be written"));
3186 return FAIL;
3187 }
3188
3189 /*
3190 * The autocommands may have changed the number of lines in the file.
3191 * When writing the whole file, adjust the end.
3192 * When writing part of the file, assume that the autocommands only
3193 * changed the number of lines that are to be written (tricky!).
3194 */
3195 if (buf->b_ml.ml_line_count != old_line_count)
3196 {
3197 if (whole) /* write all */
3198 end = buf->b_ml.ml_line_count;
3199 else if (buf->b_ml.ml_line_count > old_line_count) /* more lines */
3200 end += buf->b_ml.ml_line_count - old_line_count;
3201 else /* less lines */
3202 {
3203 end -= old_line_count - buf->b_ml.ml_line_count;
3204 if (end < start)
3205 {
3206 --no_wait_return;
3207 msg_scroll = msg_save;
3208 EMSG(_("E204: Autocommand changed number of lines in unexpected way"));
3209 return FAIL;
3210 }
3211 }
3212 }
3213
3214 /*
3215 * The autocommands may have changed the name of the buffer, which may
3216 * be kept in fname, ffname and sfname.
3217 */
3218 if (buf_ffname)
3219 ffname = buf->b_ffname;
3220 if (buf_sfname)
3221 sfname = buf->b_sfname;
3222 if (buf_fname_f)
3223 fname = buf->b_ffname;
3224 if (buf_fname_s)
3225 fname = buf->b_sfname;
3226 }
3227#endif
3228
3229#ifdef FEAT_NETBEANS_INTG
3230 if (usingNetbeans && isNetbeansBuffer(buf))
3231 {
3232 if (whole)
3233 {
3234 /*
3235 * b_changed can be 0 after an undo, but we still need to write
3236 * the buffer to NetBeans.
3237 */
3238 if (buf->b_changed || isNetbeansModified(buf))
3239 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00003240 --no_wait_return; /* may wait for return now */
3241 msg_scroll = msg_save;
3242 netbeans_save_buffer(buf); /* no error checking... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243 return retval;
3244 }
3245 else
3246 {
3247 errnum = (char_u *)"E656: ";
Bram Moolenaared0e7452008-06-27 19:17:34 +00003248 errmsg = (char_u *)_("NetBeans disallows writes of unmodified buffers");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003249 buffer = NULL;
3250 goto fail;
3251 }
3252 }
3253 else
3254 {
3255 errnum = (char_u *)"E657: ";
3256 errmsg = (char_u *)_("Partial writes disallowed for NetBeans buffers");
3257 buffer = NULL;
3258 goto fail;
3259 }
3260 }
3261#endif
3262
3263 if (shortmess(SHM_OVER) && !exiting)
3264 msg_scroll = FALSE; /* overwrite previous file message */
3265 else
3266 msg_scroll = TRUE; /* don't overwrite previous file message */
3267 if (!filtering)
3268 filemess(buf,
3269#ifndef UNIX
3270 sfname,
3271#else
3272 fname,
3273#endif
3274 (char_u *)"", 0); /* show that we are busy */
3275 msg_scroll = FALSE; /* always overwrite the file message now */
3276
3277 buffer = alloc(BUFSIZE);
3278 if (buffer == NULL) /* can't allocate big buffer, use small
3279 * one (to be able to write when out of
3280 * memory) */
3281 {
3282 buffer = smallbuf;
3283 bufsize = SMBUFSIZE;
3284 }
3285 else
3286 bufsize = BUFSIZE;
3287
3288 /*
3289 * Get information about original file (if there is one).
3290 */
3291#if defined(UNIX) && !defined(ARCHIE)
Bram Moolenaar6f192452007-11-08 19:49:02 +00003292 st_old.st_dev = 0;
3293 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003294 perm = -1;
3295 if (mch_stat((char *)fname, &st_old) < 0)
3296 newfile = TRUE;
3297 else
3298 {
3299 perm = st_old.st_mode;
3300 if (!S_ISREG(st_old.st_mode)) /* not a file */
3301 {
3302 if (S_ISDIR(st_old.st_mode))
3303 {
3304 errnum = (char_u *)"E502: ";
3305 errmsg = (char_u *)_("is a directory");
3306 goto fail;
3307 }
3308 if (mch_nodetype(fname) != NODE_WRITABLE)
3309 {
3310 errnum = (char_u *)"E503: ";
3311 errmsg = (char_u *)_("is not a file or writable device");
3312 goto fail;
3313 }
3314 /* It's a device of some kind (or a fifo) which we can write to
3315 * but for which we can't make a backup. */
3316 device = TRUE;
3317 newfile = TRUE;
3318 perm = -1;
3319 }
3320 }
3321#else /* !UNIX */
3322 /*
3323 * Check for a writable device name.
3324 */
3325 c = mch_nodetype(fname);
3326 if (c == NODE_OTHER)
3327 {
3328 errnum = (char_u *)"E503: ";
3329 errmsg = (char_u *)_("is not a file or writable device");
3330 goto fail;
3331 }
3332 if (c == NODE_WRITABLE)
3333 {
Bram Moolenaar043545e2006-10-10 16:44:07 +00003334# if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3335 /* MS-Windows allows opening a device, but we will probably get stuck
3336 * trying to write to it. */
3337 if (!p_odev)
3338 {
3339 errnum = (char_u *)"E796: ";
3340 errmsg = (char_u *)_("writing to device disabled with 'opendevice' option");
3341 goto fail;
3342 }
3343# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 device = TRUE;
3345 newfile = TRUE;
3346 perm = -1;
3347 }
3348 else
3349 {
3350 perm = mch_getperm(fname);
3351 if (perm < 0)
3352 newfile = TRUE;
3353 else if (mch_isdir(fname))
3354 {
3355 errnum = (char_u *)"E502: ";
3356 errmsg = (char_u *)_("is a directory");
3357 goto fail;
3358 }
3359 if (overwriting)
3360 (void)mch_stat((char *)fname, &st_old);
3361 }
3362#endif /* !UNIX */
3363
3364 if (!device && !newfile)
3365 {
3366 /*
3367 * Check if the file is really writable (when renaming the file to
3368 * make a backup we won't discover it later).
3369 */
Bram Moolenaar5386a122007-06-28 20:02:32 +00003370 file_readonly = check_file_readonly(fname, (int)perm);
3371
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 if (!forceit && file_readonly)
3373 {
3374 if (vim_strchr(p_cpo, CPO_FWRITE) != NULL)
3375 {
3376 errnum = (char_u *)"E504: ";
3377 errmsg = (char_u *)_(err_readonly);
3378 }
3379 else
3380 {
3381 errnum = (char_u *)"E505: ";
3382 errmsg = (char_u *)_("is read-only (add ! to override)");
3383 }
3384 goto fail;
3385 }
3386
3387 /*
3388 * Check if the timestamp hasn't changed since reading the file.
3389 */
3390 if (overwriting)
3391 {
3392 retval = check_mtime(buf, &st_old);
3393 if (retval == FAIL)
3394 goto fail;
3395 }
3396 }
3397
3398#ifdef HAVE_ACL
3399 /*
3400 * For systems that support ACL: get the ACL from the original file.
3401 */
3402 if (!newfile)
3403 acl = mch_get_acl(fname);
3404#endif
3405
3406 /*
3407 * If 'backupskip' is not empty, don't make a backup for some files.
3408 */
3409 dobackup = (p_wb || p_bk || *p_pm != NUL);
3410#ifdef FEAT_WILDIGN
3411 if (dobackup && *p_bsk != NUL && match_file_list(p_bsk, sfname, ffname))
3412 dobackup = FALSE;
3413#endif
3414
3415 /*
3416 * Save the value of got_int and reset it. We don't want a previous
3417 * interruption cancel writing, only hitting CTRL-C while writing should
3418 * abort it.
3419 */
3420 prev_got_int = got_int;
3421 got_int = FALSE;
3422
3423 /* Mark the buffer as 'being saved' to prevent changed buffer warnings */
3424 buf->b_saving = TRUE;
3425
3426 /*
3427 * If we are not appending or filtering, the file exists, and the
3428 * 'writebackup', 'backup' or 'patchmode' option is set, need a backup.
3429 * When 'patchmode' is set also make a backup when appending.
3430 *
3431 * Do not make any backup, if 'writebackup' and 'backup' are both switched
3432 * off. This helps when editing large files on almost-full disks.
3433 */
3434 if (!(append && *p_pm == NUL) && !filtering && perm >= 0 && dobackup)
3435 {
3436#if defined(UNIX) || defined(WIN32)
3437 struct stat st;
3438#endif
3439
3440 if ((bkc_flags & BKC_YES) || append) /* "yes" */
3441 backup_copy = TRUE;
3442#if defined(UNIX) || defined(WIN32)
3443 else if ((bkc_flags & BKC_AUTO)) /* "auto" */
3444 {
3445 int i;
3446
3447# ifdef UNIX
3448 /*
3449 * Don't rename the file when:
3450 * - it's a hard link
3451 * - it's a symbolic link
3452 * - we don't have write permission in the directory
3453 * - we can't set the owner/group of the new file
3454 */
3455 if (st_old.st_nlink > 1
3456 || mch_lstat((char *)fname, &st) < 0
3457 || st.st_dev != st_old.st_dev
Bram Moolenaara5792f52005-11-23 21:25:05 +00003458 || st.st_ino != st_old.st_ino
3459# ifndef HAVE_FCHOWN
3460 || st.st_uid != st_old.st_uid
3461 || st.st_gid != st_old.st_gid
3462# endif
3463 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 backup_copy = TRUE;
3465 else
Bram Moolenaar03f48552006-02-28 23:52:23 +00003466# else
3467# ifdef WIN32
3468 /* On NTFS file systems hard links are possible. */
3469 if (mch_is_linked(fname))
3470 backup_copy = TRUE;
3471 else
3472# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473# endif
3474 {
3475 /*
3476 * Check if we can create a file and set the owner/group to
3477 * the ones from the original file.
3478 * First find a file name that doesn't exist yet (use some
3479 * arbitrary numbers).
3480 */
3481 STRCPY(IObuff, fname);
3482 for (i = 4913; ; i += 123)
3483 {
3484 sprintf((char *)gettail(IObuff), "%d", i);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003485 if (mch_lstat((char *)IObuff, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003486 break;
3487 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00003488 fd = mch_open((char *)IObuff,
3489 O_CREAT|O_WRONLY|O_EXCL|O_NOFOLLOW, perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 if (fd < 0) /* can't write in directory */
3491 backup_copy = TRUE;
3492 else
3493 {
3494# ifdef UNIX
Bram Moolenaara5792f52005-11-23 21:25:05 +00003495# ifdef HAVE_FCHOWN
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00003496 ignored = fchown(fd, st_old.st_uid, st_old.st_gid);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003497# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003498 if (mch_stat((char *)IObuff, &st) < 0
3499 || st.st_uid != st_old.st_uid
3500 || st.st_gid != st_old.st_gid
Bram Moolenaar78a15312009-05-15 19:33:18 +00003501 || (long)st.st_mode != perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 backup_copy = TRUE;
3503# endif
Bram Moolenaar98358622005-11-28 22:58:23 +00003504 /* Close the file before removing it, on MS-Windows we
3505 * can't delete an open file. */
Bram Moolenaara5792f52005-11-23 21:25:05 +00003506 close(fd);
Bram Moolenaar98358622005-11-28 22:58:23 +00003507 mch_remove(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003508 }
3509 }
3510 }
3511
3512# ifdef UNIX
3513 /*
3514 * Break symlinks and/or hardlinks if we've been asked to.
3515 */
3516 if ((bkc_flags & BKC_BREAKSYMLINK) || (bkc_flags & BKC_BREAKHARDLINK))
3517 {
3518 int lstat_res;
3519
3520 lstat_res = mch_lstat((char *)fname, &st);
3521
3522 /* Symlinks. */
3523 if ((bkc_flags & BKC_BREAKSYMLINK)
3524 && lstat_res == 0
3525 && st.st_ino != st_old.st_ino)
3526 backup_copy = FALSE;
3527
3528 /* Hardlinks. */
3529 if ((bkc_flags & BKC_BREAKHARDLINK)
3530 && st_old.st_nlink > 1
3531 && (lstat_res != 0 || st.st_ino == st_old.st_ino))
3532 backup_copy = FALSE;
3533 }
3534#endif
3535
3536#endif
3537
3538 /* make sure we have a valid backup extension to use */
3539 if (*p_bex == NUL)
3540 {
3541#ifdef RISCOS
3542 backup_ext = (char_u *)"/bak";
3543#else
3544 backup_ext = (char_u *)".bak";
3545#endif
3546 }
3547 else
3548 backup_ext = p_bex;
3549
3550 if (backup_copy
3551 && (fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
3552 {
3553 int bfd;
3554 char_u *copybuf, *wp;
3555 int some_error = FALSE;
3556 struct stat st_new;
3557 char_u *dirp;
3558 char_u *rootname;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003559#if defined(UNIX) && !defined(SHORT_FNAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560 int did_set_shortname;
3561#endif
3562
3563 copybuf = alloc(BUFSIZE + 1);
3564 if (copybuf == NULL)
3565 {
3566 some_error = TRUE; /* out of memory */
3567 goto nobackup;
3568 }
3569
3570 /*
3571 * Try to make the backup in each directory in the 'bdir' option.
3572 *
3573 * Unix semantics has it, that we may have a writable file,
3574 * that cannot be recreated with a simple open(..., O_CREAT, ) e.g:
3575 * - the directory is not writable,
3576 * - the file may be a symbolic link,
3577 * - the file may belong to another user/group, etc.
3578 *
3579 * For these reasons, the existing writable file must be truncated
3580 * and reused. Creation of a backup COPY will be attempted.
3581 */
3582 dirp = p_bdir;
3583 while (*dirp)
3584 {
3585#ifdef UNIX
3586 st_new.st_ino = 0;
3587 st_new.st_dev = 0;
3588 st_new.st_gid = 0;
3589#endif
3590
3591 /*
3592 * Isolate one directory name, using an entry in 'bdir'.
3593 */
3594 (void)copy_option_part(&dirp, copybuf, BUFSIZE, ",");
3595 rootname = get_file_in_dir(fname, copybuf);
3596 if (rootname == NULL)
3597 {
3598 some_error = TRUE; /* out of memory */
3599 goto nobackup;
3600 }
3601
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003602#if defined(UNIX) && !defined(SHORT_FNAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 did_set_shortname = FALSE;
3604#endif
3605
3606 /*
3607 * May try twice if 'shortname' not set.
3608 */
3609 for (;;)
3610 {
3611 /*
3612 * Make backup file name.
3613 */
3614 backup = buf_modname(
3615#ifdef SHORT_FNAME
3616 TRUE,
3617#else
3618 (buf->b_p_sn || buf->b_shortname),
3619#endif
3620 rootname, backup_ext, FALSE);
3621 if (backup == NULL)
3622 {
3623 vim_free(rootname);
3624 some_error = TRUE; /* out of memory */
3625 goto nobackup;
3626 }
3627
3628 /*
3629 * Check if backup file already exists.
3630 */
3631 if (mch_stat((char *)backup, &st_new) >= 0)
3632 {
3633#ifdef UNIX
3634 /*
3635 * Check if backup file is same as original file.
3636 * May happen when modname() gave the same file back.
3637 * E.g. silly link, or file name-length reached.
3638 * If we don't check here, we either ruin the file
3639 * when copying or erase it after writing. jw.
3640 */
3641 if (st_new.st_dev == st_old.st_dev
3642 && st_new.st_ino == st_old.st_ino)
3643 {
3644 vim_free(backup);
3645 backup = NULL; /* no backup file to delete */
3646# ifndef SHORT_FNAME
3647 /*
3648 * may try again with 'shortname' set
3649 */
3650 if (!(buf->b_shortname || buf->b_p_sn))
3651 {
3652 buf->b_shortname = TRUE;
3653 did_set_shortname = TRUE;
3654 continue;
3655 }
3656 /* setting shortname didn't help */
3657 if (did_set_shortname)
3658 buf->b_shortname = FALSE;
3659# endif
3660 break;
3661 }
3662#endif
3663
3664 /*
3665 * If we are not going to keep the backup file, don't
3666 * delete an existing one, try to use another name.
3667 * Change one character, just before the extension.
3668 */
3669 if (!p_bk)
3670 {
3671 wp = backup + STRLEN(backup) - 1
3672 - STRLEN(backup_ext);
3673 if (wp < backup) /* empty file name ??? */
3674 wp = backup;
3675 *wp = 'z';
3676 while (*wp > 'a'
3677 && mch_stat((char *)backup, &st_new) >= 0)
3678 --*wp;
3679 /* They all exist??? Must be something wrong. */
3680 if (*wp == 'a')
3681 {
3682 vim_free(backup);
3683 backup = NULL;
3684 }
3685 }
3686 }
3687 break;
3688 }
3689 vim_free(rootname);
3690
3691 /*
3692 * Try to create the backup file
3693 */
3694 if (backup != NULL)
3695 {
3696 /* remove old backup, if present */
3697 mch_remove(backup);
3698 /* Open with O_EXCL to avoid the file being created while
3699 * we were sleeping (symlink hacker attack?) */
3700 bfd = mch_open((char *)backup,
Bram Moolenaara5792f52005-11-23 21:25:05 +00003701 O_WRONLY|O_CREAT|O_EXTRA|O_EXCL|O_NOFOLLOW,
3702 perm & 0777);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 if (bfd < 0)
3704 {
3705 vim_free(backup);
3706 backup = NULL;
3707 }
3708 else
3709 {
3710 /* set file protection same as original file, but
3711 * strip s-bit */
3712 (void)mch_setperm(backup, perm & 0777);
3713
3714#ifdef UNIX
3715 /*
3716 * Try to set the group of the backup same as the
3717 * original file. If this fails, set the protection
3718 * bits for the group same as the protection bits for
3719 * others.
3720 */
Bram Moolenaara5792f52005-11-23 21:25:05 +00003721 if (st_new.st_gid != st_old.st_gid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722# ifdef HAVE_FCHOWN /* sequent-ptx lacks fchown() */
Bram Moolenaara5792f52005-11-23 21:25:05 +00003723 && fchown(bfd, (uid_t)-1, st_old.st_gid) != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724# endif
3725 )
3726 mch_setperm(backup,
3727 (perm & 0707) | ((perm & 07) << 3));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00003728# ifdef HAVE_SELINUX
3729 mch_copy_sec(fname, backup);
3730# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731#endif
3732
3733 /*
3734 * copy the file.
3735 */
3736 write_info.bw_fd = bfd;
3737 write_info.bw_buf = copybuf;
3738#ifdef HAS_BW_FLAGS
3739 write_info.bw_flags = FIO_NOCONVERT;
3740#endif
3741 while ((write_info.bw_len = vim_read(fd, copybuf,
3742 BUFSIZE)) > 0)
3743 {
3744 if (buf_write_bytes(&write_info) == FAIL)
3745 {
3746 errmsg = (char_u *)_("E506: Can't write to backup file (add ! to override)");
3747 break;
3748 }
3749 ui_breakcheck();
3750 if (got_int)
3751 {
3752 errmsg = (char_u *)_(e_interr);
3753 break;
3754 }
3755 }
3756
3757 if (close(bfd) < 0 && errmsg == NULL)
3758 errmsg = (char_u *)_("E507: Close error for backup file (add ! to override)");
3759 if (write_info.bw_len < 0)
3760 errmsg = (char_u *)_("E508: Can't read file for backup (add ! to override)");
3761#ifdef UNIX
3762 set_file_time(backup, st_old.st_atime, st_old.st_mtime);
3763#endif
3764#ifdef HAVE_ACL
3765 mch_set_acl(backup, acl);
3766#endif
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00003767#ifdef HAVE_SELINUX
3768 mch_copy_sec(fname, backup);
3769#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 break;
3771 }
3772 }
3773 }
3774 nobackup:
3775 close(fd); /* ignore errors for closing read file */
3776 vim_free(copybuf);
3777
3778 if (backup == NULL && errmsg == NULL)
3779 errmsg = (char_u *)_("E509: Cannot create backup file (add ! to override)");
3780 /* ignore errors when forceit is TRUE */
3781 if ((some_error || errmsg != NULL) && !forceit)
3782 {
3783 retval = FAIL;
3784 goto fail;
3785 }
3786 errmsg = NULL;
3787 }
3788 else
3789 {
3790 char_u *dirp;
3791 char_u *p;
3792 char_u *rootname;
3793
3794 /*
3795 * Make a backup by renaming the original file.
3796 */
3797 /*
3798 * If 'cpoptions' includes the "W" flag, we don't want to
3799 * overwrite a read-only file. But rename may be possible
3800 * anyway, thus we need an extra check here.
3801 */
3802 if (file_readonly && vim_strchr(p_cpo, CPO_FWRITE) != NULL)
3803 {
3804 errnum = (char_u *)"E504: ";
3805 errmsg = (char_u *)_(err_readonly);
3806 goto fail;
3807 }
3808
3809 /*
3810 *
3811 * Form the backup file name - change path/fo.o.h to
3812 * path/fo.o.h.bak Try all directories in 'backupdir', first one
3813 * that works is used.
3814 */
3815 dirp = p_bdir;
3816 while (*dirp)
3817 {
3818 /*
3819 * Isolate one directory name and make the backup file name.
3820 */
3821 (void)copy_option_part(&dirp, IObuff, IOSIZE, ",");
3822 rootname = get_file_in_dir(fname, IObuff);
3823 if (rootname == NULL)
3824 backup = NULL;
3825 else
3826 {
3827 backup = buf_modname(
3828#ifdef SHORT_FNAME
3829 TRUE,
3830#else
3831 (buf->b_p_sn || buf->b_shortname),
3832#endif
3833 rootname, backup_ext, FALSE);
3834 vim_free(rootname);
3835 }
3836
3837 if (backup != NULL)
3838 {
3839 /*
3840 * If we are not going to keep the backup file, don't
3841 * delete an existing one, try to use another name.
3842 * Change one character, just before the extension.
3843 */
3844 if (!p_bk && mch_getperm(backup) >= 0)
3845 {
3846 p = backup + STRLEN(backup) - 1 - STRLEN(backup_ext);
3847 if (p < backup) /* empty file name ??? */
3848 p = backup;
3849 *p = 'z';
3850 while (*p > 'a' && mch_getperm(backup) >= 0)
3851 --*p;
3852 /* They all exist??? Must be something wrong! */
3853 if (*p == 'a')
3854 {
3855 vim_free(backup);
3856 backup = NULL;
3857 }
3858 }
3859 }
3860 if (backup != NULL)
3861 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862 /*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003863 * Delete any existing backup and move the current version
3864 * to the backup. For safety, we don't remove the backup
3865 * until the write has finished successfully. And if the
3866 * 'backup' option is set, leave it around.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867 */
3868 /*
3869 * If the renaming of the original file to the backup file
3870 * works, quit here.
3871 */
3872 if (vim_rename(fname, backup) == 0)
3873 break;
3874
3875 vim_free(backup); /* don't do the rename below */
3876 backup = NULL;
3877 }
3878 }
3879 if (backup == NULL && !forceit)
3880 {
3881 errmsg = (char_u *)_("E510: Can't make backup file (add ! to override)");
3882 goto fail;
3883 }
3884 }
3885 }
3886
3887#if defined(UNIX) && !defined(ARCHIE)
3888 /* When using ":w!" and the file was read-only: make it writable */
3889 if (forceit && perm >= 0 && !(perm & 0200) && st_old.st_uid == getuid()
3890 && vim_strchr(p_cpo, CPO_FWRITE) == NULL)
3891 {
3892 perm |= 0200;
3893 (void)mch_setperm(fname, perm);
3894 made_writable = TRUE;
3895 }
3896#endif
3897
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003898 /* When using ":w!" and writing to the current file, 'readonly' makes no
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003899 * sense, reset it, unless 'Z' appears in 'cpoptions'. */
3900 if (forceit && overwriting && vim_strchr(p_cpo, CPO_KEEPRO) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003901 {
3902 buf->b_p_ro = FALSE;
3903#ifdef FEAT_TITLE
3904 need_maketitle = TRUE; /* set window title later */
3905#endif
3906#ifdef FEAT_WINDOWS
3907 status_redraw_all(); /* redraw status lines later */
3908#endif
3909 }
3910
3911 if (end > buf->b_ml.ml_line_count)
3912 end = buf->b_ml.ml_line_count;
3913 if (buf->b_ml.ml_flags & ML_EMPTY)
3914 start = end + 1;
3915
3916 /*
3917 * If the original file is being overwritten, there is a small chance that
3918 * we crash in the middle of writing. Therefore the file is preserved now.
3919 * This makes all block numbers positive so that recovery does not need
3920 * the original file.
3921 * Don't do this if there is a backup file and we are exiting.
3922 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003923 if (reset_changed && !newfile && overwriting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924 && !(exiting && backup != NULL))
3925 {
3926 ml_preserve(buf, FALSE);
3927 if (got_int)
3928 {
3929 errmsg = (char_u *)_(e_interr);
3930 goto restore_backup;
3931 }
3932 }
3933
3934#ifdef MACOS_CLASSIC /* TODO: Is it need for MACOS_X? (Dany) */
3935 /*
3936 * Before risking to lose the original file verify if there's
3937 * a resource fork to preserve, and if cannot be done warn
3938 * the users. This happens when overwriting without backups.
3939 */
3940 if (backup == NULL && overwriting && !append)
3941 if (mch_has_resource_fork(fname))
3942 {
3943 errmsg = (char_u *)_("E460: The resource fork would be lost (add ! to override)");
3944 goto restore_backup;
3945 }
3946#endif
3947
3948#ifdef VMS
3949 vms_remove_version(fname); /* remove version */
3950#endif
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00003951 /* Default: write the file directly. May write to a temp file for
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 * multi-byte conversion. */
3953 wfname = fname;
3954
3955#ifdef FEAT_MBYTE
3956 /* Check for forced 'fileencoding' from "++opt=val" argument. */
3957 if (eap != NULL && eap->force_enc != 0)
3958 {
3959 fenc = eap->cmd + eap->force_enc;
3960 fenc = enc_canonize(fenc);
3961 fenc_tofree = fenc;
3962 }
3963 else
3964 fenc = buf->b_p_fenc;
3965
3966 /*
3967 * The file needs to be converted when 'fileencoding' is set and
3968 * 'fileencoding' differs from 'encoding'.
3969 */
3970 converted = (*fenc != NUL && !same_encoding(p_enc, fenc));
3971
3972 /*
3973 * Check if UTF-8 to UCS-2/4 or Latin1 conversion needs to be done. Or
3974 * Latin1 to Unicode conversion. This is handled in buf_write_bytes().
3975 * Prepare the flags for it and allocate bw_conv_buf when needed.
3976 */
3977 if (converted && (enc_utf8 || STRCMP(p_enc, "latin1") == 0))
3978 {
3979 wb_flags = get_fio_flags(fenc);
3980 if (wb_flags & (FIO_UCS2 | FIO_UCS4 | FIO_UTF16 | FIO_UTF8))
3981 {
3982 /* Need to allocate a buffer to translate into. */
3983 if (wb_flags & (FIO_UCS2 | FIO_UTF16 | FIO_UTF8))
3984 write_info.bw_conv_buflen = bufsize * 2;
3985 else /* FIO_UCS4 */
3986 write_info.bw_conv_buflen = bufsize * 4;
3987 write_info.bw_conv_buf
3988 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
3989 if (write_info.bw_conv_buf == NULL)
3990 end = 0;
3991 }
3992 }
3993
3994# ifdef WIN3264
3995 if (converted && wb_flags == 0 && (wb_flags = get_win_fio_flags(fenc)) != 0)
3996 {
3997 /* Convert UTF-8 -> UCS-2 and UCS-2 -> DBCS. Worst-case * 4: */
3998 write_info.bw_conv_buflen = bufsize * 4;
3999 write_info.bw_conv_buf
4000 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
4001 if (write_info.bw_conv_buf == NULL)
4002 end = 0;
4003 }
4004# endif
4005
4006# ifdef MACOS_X
4007 if (converted && wb_flags == 0 && (wb_flags = get_mac_fio_flags(fenc)) != 0)
4008 {
4009 write_info.bw_conv_buflen = bufsize * 3;
4010 write_info.bw_conv_buf
4011 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
4012 if (write_info.bw_conv_buf == NULL)
4013 end = 0;
4014 }
4015# endif
4016
4017# if defined(FEAT_EVAL) || defined(USE_ICONV)
4018 if (converted && wb_flags == 0)
4019 {
4020# ifdef USE_ICONV
4021 /*
4022 * Use iconv() conversion when conversion is needed and it's not done
4023 * internally.
4024 */
4025 write_info.bw_iconv_fd = (iconv_t)my_iconv_open(fenc,
4026 enc_utf8 ? (char_u *)"utf-8" : p_enc);
4027 if (write_info.bw_iconv_fd != (iconv_t)-1)
4028 {
4029 /* We're going to use iconv(), allocate a buffer to convert in. */
4030 write_info.bw_conv_buflen = bufsize * ICONV_MULT;
4031 write_info.bw_conv_buf
4032 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
4033 if (write_info.bw_conv_buf == NULL)
4034 end = 0;
4035 write_info.bw_first = TRUE;
4036 }
4037# ifdef FEAT_EVAL
4038 else
4039# endif
4040# endif
4041
4042# ifdef FEAT_EVAL
4043 /*
4044 * When the file needs to be converted with 'charconvert' after
4045 * writing, write to a temp file instead and let the conversion
4046 * overwrite the original file.
4047 */
4048 if (*p_ccv != NUL)
4049 {
4050 wfname = vim_tempname('w');
4051 if (wfname == NULL) /* Can't write without a tempfile! */
4052 {
4053 errmsg = (char_u *)_("E214: Can't find temp file for writing");
4054 goto restore_backup;
4055 }
4056 }
4057# endif
4058 }
4059# endif
4060 if (converted && wb_flags == 0
4061# ifdef USE_ICONV
4062 && write_info.bw_iconv_fd == (iconv_t)-1
4063# endif
4064# ifdef FEAT_EVAL
4065 && wfname == fname
4066# endif
4067 )
4068 {
4069 if (!forceit)
4070 {
4071 errmsg = (char_u *)_("E213: Cannot convert (add ! to write without conversion)");
4072 goto restore_backup;
4073 }
4074 notconverted = TRUE;
4075 }
4076#endif
4077
4078 /*
4079 * Open the file "wfname" for writing.
4080 * We may try to open the file twice: If we can't write to the
4081 * file and forceit is TRUE we delete the existing file and try to create
4082 * a new one. If this still fails we may have lost the original file!
4083 * (this may happen when the user reached his quotum for number of files).
4084 * Appending will fail if the file does not exist and forceit is FALSE.
4085 */
4086 while ((fd = mch_open((char *)wfname, O_WRONLY | O_EXTRA | (append
4087 ? (forceit ? (O_APPEND | O_CREAT) : O_APPEND)
4088 : (O_CREAT | O_TRUNC))
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00004089 , perm < 0 ? 0666 : (perm & 0777))) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 {
4091 /*
4092 * A forced write will try to create a new file if the old one is
4093 * still readonly. This may also happen when the directory is
4094 * read-only. In that case the mch_remove() will fail.
4095 */
4096 if (errmsg == NULL)
4097 {
4098#ifdef UNIX
4099 struct stat st;
4100
4101 /* Don't delete the file when it's a hard or symbolic link. */
4102 if ((!newfile && st_old.st_nlink > 1)
4103 || (mch_lstat((char *)fname, &st) == 0
4104 && (st.st_dev != st_old.st_dev
4105 || st.st_ino != st_old.st_ino)))
4106 errmsg = (char_u *)_("E166: Can't open linked file for writing");
4107 else
4108#endif
4109 {
4110 errmsg = (char_u *)_("E212: Can't open file for writing");
4111 if (forceit && vim_strchr(p_cpo, CPO_FWRITE) == NULL
4112 && perm >= 0)
4113 {
4114#ifdef UNIX
4115 /* we write to the file, thus it should be marked
4116 writable after all */
4117 if (!(perm & 0200))
4118 made_writable = TRUE;
4119 perm |= 0200;
4120 if (st_old.st_uid != getuid() || st_old.st_gid != getgid())
4121 perm &= 0777;
4122#endif
4123 if (!append) /* don't remove when appending */
4124 mch_remove(wfname);
4125 continue;
4126 }
4127 }
4128 }
4129
4130restore_backup:
4131 {
4132 struct stat st;
4133
4134 /*
4135 * If we failed to open the file, we don't need a backup. Throw it
4136 * away. If we moved or removed the original file try to put the
4137 * backup in its place.
4138 */
4139 if (backup != NULL && wfname == fname)
4140 {
4141 if (backup_copy)
4142 {
4143 /*
4144 * There is a small chance that we removed the original,
4145 * try to move the copy in its place.
4146 * This may not work if the vim_rename() fails.
4147 * In that case we leave the copy around.
4148 */
4149 /* If file does not exist, put the copy in its place */
4150 if (mch_stat((char *)fname, &st) < 0)
4151 vim_rename(backup, fname);
4152 /* if original file does exist throw away the copy */
4153 if (mch_stat((char *)fname, &st) >= 0)
4154 mch_remove(backup);
4155 }
4156 else
4157 {
4158 /* try to put the original file back */
4159 vim_rename(backup, fname);
4160 }
4161 }
4162
4163 /* if original file no longer exists give an extra warning */
4164 if (!newfile && mch_stat((char *)fname, &st) < 0)
4165 end = 0;
4166 }
4167
4168#ifdef FEAT_MBYTE
4169 if (wfname != fname)
4170 vim_free(wfname);
4171#endif
4172 goto fail;
4173 }
4174 errmsg = NULL;
4175
4176#if defined(MACOS_CLASSIC) || defined(WIN3264)
4177 /* TODO: Is it need for MACOS_X? (Dany) */
4178 /*
4179 * On macintosh copy the original files attributes (i.e. the backup)
Bram Moolenaar7263a772007-05-10 17:35:54 +00004180 * This is done in order to preserve the resource fork and the
4181 * Finder attribute (label, comments, custom icons, file creator)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 */
4183 if (backup != NULL && overwriting && !append)
4184 {
4185 if (backup_copy)
4186 (void)mch_copy_file_attribute(wfname, backup);
4187 else
4188 (void)mch_copy_file_attribute(backup, wfname);
4189 }
4190
4191 if (!overwriting && !append)
4192 {
4193 if (buf->b_ffname != NULL)
4194 (void)mch_copy_file_attribute(buf->b_ffname, wfname);
Bram Moolenaar7263a772007-05-10 17:35:54 +00004195 /* Should copy resource fork */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 }
4197#endif
4198
4199 write_info.bw_fd = fd;
4200
4201#ifdef FEAT_CRYPT
4202 if (*buf->b_p_key && !filtering)
4203 {
4204 crypt_init_keys(buf->b_p_key);
4205 /* Write magic number, so that Vim knows that this file is encrypted
4206 * when reading it again. This also undergoes utf-8 to ucs-2/4
4207 * conversion when needed. */
4208 write_info.bw_buf = (char_u *)CRYPT_MAGIC;
4209 write_info.bw_len = CRYPT_MAGIC_LEN;
4210 write_info.bw_flags = FIO_NOCONVERT;
4211 if (buf_write_bytes(&write_info) == FAIL)
4212 end = 0;
4213 wb_flags |= FIO_ENCRYPTED;
4214 }
4215#endif
4216
4217 write_info.bw_buf = buffer;
4218 nchars = 0;
4219
4220 /* use "++bin", "++nobin" or 'binary' */
4221 if (eap != NULL && eap->force_bin != 0)
4222 write_bin = (eap->force_bin == FORCE_BIN);
4223 else
4224 write_bin = buf->b_p_bin;
4225
4226#ifdef FEAT_MBYTE
4227 /*
4228 * The BOM is written just after the encryption magic number.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004229 * Skip it when appending and the file already existed, the BOM only makes
4230 * sense at the start of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004232 if (buf->b_p_bomb && !write_bin && (!append || perm < 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 {
4234 write_info.bw_len = make_bom(buffer, fenc);
4235 if (write_info.bw_len > 0)
4236 {
4237 /* don't convert, do encryption */
4238 write_info.bw_flags = FIO_NOCONVERT | wb_flags;
4239 if (buf_write_bytes(&write_info) == FAIL)
4240 end = 0;
4241 else
4242 nchars += write_info.bw_len;
4243 }
4244 }
4245#endif
4246
4247 write_info.bw_len = bufsize;
4248#ifdef HAS_BW_FLAGS
4249 write_info.bw_flags = wb_flags;
4250#endif
4251 fileformat = get_fileformat_force(buf, eap);
4252 s = buffer;
4253 len = 0;
4254 for (lnum = start; lnum <= end; ++lnum)
4255 {
4256 /*
4257 * The next while loop is done once for each character written.
4258 * Keep it fast!
4259 */
4260 ptr = ml_get_buf(buf, lnum, FALSE) - 1;
4261 while ((c = *++ptr) != NUL)
4262 {
4263 if (c == NL)
4264 *s = NUL; /* replace newlines with NULs */
4265 else if (c == CAR && fileformat == EOL_MAC)
4266 *s = NL; /* Mac: replace CRs with NLs */
4267 else
4268 *s = c;
4269 ++s;
4270 if (++len != bufsize)
4271 continue;
4272 if (buf_write_bytes(&write_info) == FAIL)
4273 {
4274 end = 0; /* write error: break loop */
4275 break;
4276 }
4277 nchars += bufsize;
4278 s = buffer;
4279 len = 0;
4280 }
4281 /* write failed or last line has no EOL: stop here */
4282 if (end == 0
4283 || (lnum == end
4284 && write_bin
4285 && (lnum == write_no_eol_lnum
4286 || (lnum == buf->b_ml.ml_line_count && !buf->b_p_eol))))
4287 {
4288 ++lnum; /* written the line, count it */
4289 no_eol = TRUE;
4290 break;
4291 }
4292 if (fileformat == EOL_UNIX)
4293 *s++ = NL;
4294 else
4295 {
4296 *s++ = CAR; /* EOL_MAC or EOL_DOS: write CR */
4297 if (fileformat == EOL_DOS) /* write CR-NL */
4298 {
4299 if (++len == bufsize)
4300 {
4301 if (buf_write_bytes(&write_info) == FAIL)
4302 {
4303 end = 0; /* write error: break loop */
4304 break;
4305 }
4306 nchars += bufsize;
4307 s = buffer;
4308 len = 0;
4309 }
4310 *s++ = NL;
4311 }
4312 }
4313 if (++len == bufsize && end)
4314 {
4315 if (buf_write_bytes(&write_info) == FAIL)
4316 {
4317 end = 0; /* write error: break loop */
4318 break;
4319 }
4320 nchars += bufsize;
4321 s = buffer;
4322 len = 0;
4323
4324 ui_breakcheck();
4325 if (got_int)
4326 {
4327 end = 0; /* Interrupted, break loop */
4328 break;
4329 }
4330 }
4331#ifdef VMS
4332 /*
4333 * On VMS there is a problem: newlines get added when writing blocks
4334 * at a time. Fix it by writing a line at a time.
4335 * This is much slower!
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004336 * Explanation: VAX/DECC RTL insists that records in some RMS
4337 * structures end with a newline (carriage return) character, and if
4338 * they don't it adds one.
4339 * With other RMS structures it works perfect without this fix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 */
Bram Moolenaarb52e2602007-10-29 21:38:54 +00004341 if (buf->b_fab_rfm == FAB$C_VFC
4342 || ((buf->b_fab_rat & (FAB$M_FTN | FAB$M_CR)) != 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004344 int b2write;
4345
4346 buf->b_fab_mrs = (buf->b_fab_mrs == 0
4347 ? MIN(4096, bufsize)
4348 : MIN(buf->b_fab_mrs, bufsize));
4349
4350 b2write = len;
4351 while (b2write > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004353 write_info.bw_len = MIN(b2write, buf->b_fab_mrs);
4354 if (buf_write_bytes(&write_info) == FAIL)
4355 {
4356 end = 0;
4357 break;
4358 }
4359 b2write -= MIN(b2write, buf->b_fab_mrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 }
4361 write_info.bw_len = bufsize;
4362 nchars += len;
4363 s = buffer;
4364 len = 0;
4365 }
4366#endif
4367 }
4368 if (len > 0 && end > 0)
4369 {
4370 write_info.bw_len = len;
4371 if (buf_write_bytes(&write_info) == FAIL)
4372 end = 0; /* write error */
4373 nchars += len;
4374 }
4375
4376#if defined(UNIX) && defined(HAVE_FSYNC)
4377 /* On many journalling file systems there is a bug that causes both the
4378 * original and the backup file to be lost when halting the system right
4379 * after writing the file. That's because only the meta-data is
4380 * journalled. Syncing the file slows down the system, but assures it has
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004381 * been written to disk and we don't lose it.
4382 * For a device do try the fsync() but don't complain if it does not work
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004383 * (could be a pipe).
4384 * If the 'fsync' option is FALSE, don't fsync(). Useful for laptops. */
4385 if (p_fs && fsync(fd) != 0 && !device)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386 {
4387 errmsg = (char_u *)_("E667: Fsync failed");
4388 end = 0;
4389 }
4390#endif
4391
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00004392#ifdef HAVE_SELINUX
4393 /* Probably need to set the security context. */
4394 if (!backup_copy)
4395 mch_copy_sec(backup, wfname);
4396#endif
4397
Bram Moolenaara5792f52005-11-23 21:25:05 +00004398#ifdef UNIX
4399 /* When creating a new file, set its owner/group to that of the original
4400 * file. Get the new device and inode number. */
4401 if (backup != NULL && !backup_copy)
4402 {
4403# ifdef HAVE_FCHOWN
4404 struct stat st;
4405
4406 /* don't change the owner when it's already OK, some systems remove
4407 * permission or ACL stuff */
4408 if (mch_stat((char *)wfname, &st) < 0
4409 || st.st_uid != st_old.st_uid
4410 || st.st_gid != st_old.st_gid)
4411 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004412 ignored = fchown(fd, st_old.st_uid, st_old.st_gid);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004413 if (perm >= 0) /* set permission again, may have changed */
4414 (void)mch_setperm(wfname, perm);
4415 }
4416# endif
4417 buf_setino(buf);
4418 }
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00004419 else if (!buf->b_dev_valid)
Bram Moolenaar8fa04452005-12-23 22:13:51 +00004420 /* Set the inode when creating a new file. */
4421 buf_setino(buf);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004422#endif
4423
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 if (close(fd) != 0)
4425 {
4426 errmsg = (char_u *)_("E512: Close failed");
4427 end = 0;
4428 }
4429
4430#ifdef UNIX
4431 if (made_writable)
4432 perm &= ~0200; /* reset 'w' bit for security reasons */
4433#endif
4434 if (perm >= 0) /* set perm. of new file same as old file */
4435 (void)mch_setperm(wfname, perm);
4436#ifdef RISCOS
4437 if (!append && !filtering)
4438 /* Set the filetype after writing the file. */
4439 mch_set_filetype(wfname, buf->b_p_oft);
4440#endif
4441#ifdef HAVE_ACL
4442 /* Probably need to set the ACL before changing the user (can't set the
4443 * ACL on a file the user doesn't own). */
4444 if (!backup_copy)
4445 mch_set_acl(wfname, acl);
4446#endif
4447
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448
4449#if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
4450 if (wfname != fname)
4451 {
4452 /*
4453 * The file was written to a temp file, now it needs to be converted
4454 * with 'charconvert' to (overwrite) the output file.
4455 */
4456 if (end != 0)
4457 {
4458 if (eval_charconvert(enc_utf8 ? (char_u *)"utf-8" : p_enc, fenc,
4459 wfname, fname) == FAIL)
4460 {
4461 write_info.bw_conv_error = TRUE;
4462 end = 0;
4463 }
4464 }
4465 mch_remove(wfname);
4466 vim_free(wfname);
4467 }
4468#endif
4469
4470 if (end == 0)
4471 {
4472 if (errmsg == NULL)
4473 {
4474#ifdef FEAT_MBYTE
4475 if (write_info.bw_conv_error)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004476 errmsg = (char_u *)_("E513: write error, conversion failed (make 'fenc' empty to override)");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 else
4478#endif
4479 if (got_int)
4480 errmsg = (char_u *)_(e_interr);
4481 else
4482 errmsg = (char_u *)_("E514: write error (file system full?)");
4483 }
4484
4485 /*
4486 * If we have a backup file, try to put it in place of the new file,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004487 * because the new file is probably corrupt. This avoids losing the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004488 * original file when trying to make a backup when writing the file a
4489 * second time.
4490 * When "backup_copy" is set we need to copy the backup over the new
4491 * file. Otherwise rename the backup file.
4492 * If this is OK, don't give the extra warning message.
4493 */
4494 if (backup != NULL)
4495 {
4496 if (backup_copy)
4497 {
4498 /* This may take a while, if we were interrupted let the user
4499 * know we got the message. */
4500 if (got_int)
4501 {
4502 MSG(_(e_interr));
4503 out_flush();
4504 }
4505 if ((fd = mch_open((char *)backup, O_RDONLY | O_EXTRA, 0)) >= 0)
4506 {
4507 if ((write_info.bw_fd = mch_open((char *)fname,
Bram Moolenaar9be038d2005-03-08 22:34:32 +00004508 O_WRONLY | O_CREAT | O_TRUNC | O_EXTRA,
4509 perm & 0777)) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510 {
4511 /* copy the file. */
4512 write_info.bw_buf = smallbuf;
4513#ifdef HAS_BW_FLAGS
4514 write_info.bw_flags = FIO_NOCONVERT;
4515#endif
4516 while ((write_info.bw_len = vim_read(fd, smallbuf,
4517 SMBUFSIZE)) > 0)
4518 if (buf_write_bytes(&write_info) == FAIL)
4519 break;
4520
4521 if (close(write_info.bw_fd) >= 0
4522 && write_info.bw_len == 0)
4523 end = 1; /* success */
4524 }
4525 close(fd); /* ignore errors for closing read file */
4526 }
4527 }
4528 else
4529 {
4530 if (vim_rename(backup, fname) == 0)
4531 end = 1;
4532 }
4533 }
4534 goto fail;
4535 }
4536
4537 lnum -= start; /* compute number of written lines */
4538 --no_wait_return; /* may wait for return now */
4539
4540#if !(defined(UNIX) || defined(VMS))
4541 fname = sfname; /* use shortname now, for the messages */
4542#endif
4543 if (!filtering)
4544 {
4545 msg_add_fname(buf, fname); /* put fname in IObuff with quotes */
4546 c = FALSE;
4547#ifdef FEAT_MBYTE
4548 if (write_info.bw_conv_error)
4549 {
4550 STRCAT(IObuff, _(" CONVERSION ERROR"));
4551 c = TRUE;
4552 }
4553 else if (notconverted)
4554 {
4555 STRCAT(IObuff, _("[NOT converted]"));
4556 c = TRUE;
4557 }
4558 else if (converted)
4559 {
4560 STRCAT(IObuff, _("[converted]"));
4561 c = TRUE;
4562 }
4563#endif
4564 if (device)
4565 {
4566 STRCAT(IObuff, _("[Device]"));
4567 c = TRUE;
4568 }
4569 else if (newfile)
4570 {
4571 STRCAT(IObuff, shortmess(SHM_NEW) ? _("[New]") : _("[New File]"));
4572 c = TRUE;
4573 }
4574 if (no_eol)
4575 {
4576 msg_add_eol();
4577 c = TRUE;
4578 }
4579 /* may add [unix/dos/mac] */
4580 if (msg_add_fileformat(fileformat))
4581 c = TRUE;
4582#ifdef FEAT_CRYPT
4583 if (wb_flags & FIO_ENCRYPTED)
4584 {
4585 STRCAT(IObuff, _("[crypted]"));
4586 c = TRUE;
4587 }
4588#endif
4589 msg_add_lines(c, (long)lnum, nchars); /* add line/char count */
4590 if (!shortmess(SHM_WRITE))
4591 {
4592 if (append)
4593 STRCAT(IObuff, shortmess(SHM_WRI) ? _(" [a]") : _(" appended"));
4594 else
4595 STRCAT(IObuff, shortmess(SHM_WRI) ? _(" [w]") : _(" written"));
4596 }
4597
Bram Moolenaar8f7fd652006-02-21 22:04:51 +00004598 set_keep_msg(msg_trunc_attr(IObuff, FALSE, 0), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 }
4600
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004601 /* When written everything correctly: reset 'modified'. Unless not
4602 * writing to the original file and '+' is not in 'cpoptions'. */
Bram Moolenaar292ad192005-12-11 21:29:51 +00004603 if (reset_changed && whole && !append
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604#ifdef FEAT_MBYTE
4605 && !write_info.bw_conv_error
4606#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004607 && (overwriting || vim_strchr(p_cpo, CPO_PLUS) != NULL)
4608 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609 {
4610 unchanged(buf, TRUE);
4611 u_unchanged(buf);
4612 }
4613
4614 /*
4615 * If written to the current file, update the timestamp of the swap file
4616 * and reset the BF_WRITE_MASK flags. Also sets buf->b_mtime.
4617 */
4618 if (overwriting)
4619 {
4620 ml_timestamp(buf);
Bram Moolenaar292ad192005-12-11 21:29:51 +00004621 if (append)
4622 buf->b_flags &= ~BF_NEW;
4623 else
4624 buf->b_flags &= ~BF_WRITE_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 }
4626
4627 /*
4628 * If we kept a backup until now, and we are in patch mode, then we make
4629 * the backup file our 'original' file.
4630 */
4631 if (*p_pm && dobackup)
4632 {
4633 char *org = (char *)buf_modname(
4634#ifdef SHORT_FNAME
4635 TRUE,
4636#else
4637 (buf->b_p_sn || buf->b_shortname),
4638#endif
4639 fname, p_pm, FALSE);
4640
4641 if (backup != NULL)
4642 {
4643 struct stat st;
4644
4645 /*
4646 * If the original file does not exist yet
4647 * the current backup file becomes the original file
4648 */
4649 if (org == NULL)
4650 EMSG(_("E205: Patchmode: can't save original file"));
4651 else if (mch_stat(org, &st) < 0)
4652 {
4653 vim_rename(backup, (char_u *)org);
4654 vim_free(backup); /* don't delete the file */
4655 backup = NULL;
4656#ifdef UNIX
4657 set_file_time((char_u *)org, st_old.st_atime, st_old.st_mtime);
4658#endif
4659 }
4660 }
4661 /*
4662 * If there is no backup file, remember that a (new) file was
4663 * created.
4664 */
4665 else
4666 {
4667 int empty_fd;
4668
4669 if (org == NULL
Bram Moolenaara5792f52005-11-23 21:25:05 +00004670 || (empty_fd = mch_open(org,
4671 O_CREAT | O_EXTRA | O_EXCL | O_NOFOLLOW,
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00004672 perm < 0 ? 0666 : (perm & 0777))) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004673 EMSG(_("E206: patchmode: can't touch empty original file"));
4674 else
4675 close(empty_fd);
4676 }
4677 if (org != NULL)
4678 {
4679 mch_setperm((char_u *)org, mch_getperm(fname) & 0777);
4680 vim_free(org);
4681 }
4682 }
4683
4684 /*
4685 * Remove the backup unless 'backup' option is set
4686 */
4687 if (!p_bk && backup != NULL && mch_remove(backup) != 0)
4688 EMSG(_("E207: Can't delete backup file"));
4689
4690#ifdef FEAT_SUN_WORKSHOP
4691 if (usingSunWorkShop)
4692 workshop_file_saved((char *) ffname);
4693#endif
4694
4695 goto nofail;
4696
4697 /*
4698 * Finish up. We get here either after failure or success.
4699 */
4700fail:
4701 --no_wait_return; /* may wait for return now */
4702nofail:
4703
4704 /* Done saving, we accept changed buffer warnings again */
4705 buf->b_saving = FALSE;
4706
4707 vim_free(backup);
4708 if (buffer != smallbuf)
4709 vim_free(buffer);
4710#ifdef FEAT_MBYTE
4711 vim_free(fenc_tofree);
4712 vim_free(write_info.bw_conv_buf);
4713# ifdef USE_ICONV
4714 if (write_info.bw_iconv_fd != (iconv_t)-1)
4715 {
4716 iconv_close(write_info.bw_iconv_fd);
4717 write_info.bw_iconv_fd = (iconv_t)-1;
4718 }
4719# endif
4720#endif
4721#ifdef HAVE_ACL
4722 mch_free_acl(acl);
4723#endif
4724
4725 if (errmsg != NULL)
4726 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004727 int numlen = errnum != NULL ? (int)STRLEN(errnum) : 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728
4729 attr = hl_attr(HLF_E); /* set highlight for error messages */
4730 msg_add_fname(buf,
4731#ifndef UNIX
4732 sfname
4733#else
4734 fname
4735#endif
4736 ); /* put file name in IObuff with quotes */
4737 if (STRLEN(IObuff) + STRLEN(errmsg) + numlen >= IOSIZE)
4738 IObuff[IOSIZE - STRLEN(errmsg) - numlen - 1] = NUL;
4739 /* If the error message has the form "is ...", put the error number in
4740 * front of the file name. */
4741 if (errnum != NULL)
4742 {
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004743 STRMOVE(IObuff + numlen, IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 mch_memmove(IObuff, errnum, (size_t)numlen);
4745 }
4746 STRCAT(IObuff, errmsg);
4747 emsg(IObuff);
4748
4749 retval = FAIL;
4750 if (end == 0)
4751 {
4752 MSG_PUTS_ATTR(_("\nWARNING: Original file may be lost or damaged\n"),
4753 attr | MSG_HIST);
4754 MSG_PUTS_ATTR(_("don't quit the editor until the file is successfully written!"),
4755 attr | MSG_HIST);
4756
4757 /* Update the timestamp to avoid an "overwrite changed file"
4758 * prompt when writing again. */
4759 if (mch_stat((char *)fname, &st_old) >= 0)
4760 {
4761 buf_store_time(buf, &st_old, fname);
4762 buf->b_mtime_read = buf->b_mtime;
4763 }
4764 }
4765 }
4766 msg_scroll = msg_save;
4767
4768#ifdef FEAT_AUTOCMD
4769#ifdef FEAT_EVAL
4770 if (!should_abort(retval))
4771#else
4772 if (!got_int)
4773#endif
4774 {
4775 aco_save_T aco;
4776
4777 write_no_eol_lnum = 0; /* in case it was set by the previous read */
4778
4779 /*
4780 * Apply POST autocommands.
4781 * Careful: The autocommands may call buf_write() recursively!
4782 */
4783 aucmd_prepbuf(&aco, buf);
4784
4785 if (append)
4786 apply_autocmds_exarg(EVENT_FILEAPPENDPOST, fname, fname,
4787 FALSE, curbuf, eap);
4788 else if (filtering)
4789 apply_autocmds_exarg(EVENT_FILTERWRITEPOST, NULL, fname,
4790 FALSE, curbuf, eap);
4791 else if (reset_changed && whole)
4792 apply_autocmds_exarg(EVENT_BUFWRITEPOST, fname, fname,
4793 FALSE, curbuf, eap);
4794 else
4795 apply_autocmds_exarg(EVENT_FILEWRITEPOST, fname, fname,
4796 FALSE, curbuf, eap);
4797
4798 /* restore curwin/curbuf and a few other things */
4799 aucmd_restbuf(&aco);
4800
4801#ifdef FEAT_EVAL
4802 if (aborting()) /* autocmds may abort script processing */
4803 retval = FALSE;
4804#endif
4805 }
4806#endif
4807
4808 got_int |= prev_got_int;
4809
4810#ifdef MACOS_CLASSIC /* TODO: Is it need for MACOS_X? (Dany) */
4811 /* Update machine specific information. */
4812 mch_post_buffer_write(buf);
4813#endif
4814 return retval;
4815}
4816
4817/*
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004818 * Set the name of the current buffer. Use when the buffer doesn't have a
4819 * name and a ":r" or ":w" command with a file name is used.
4820 */
4821 static int
4822set_rw_fname(fname, sfname)
4823 char_u *fname;
4824 char_u *sfname;
4825{
4826#ifdef FEAT_AUTOCMD
Bram Moolenaar8b38e242009-06-16 13:35:20 +00004827 buf_T *buf = curbuf;
4828
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004829 /* It's like the unnamed buffer is deleted.... */
4830 if (curbuf->b_p_bl)
4831 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
4832 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
4833# ifdef FEAT_EVAL
4834 if (aborting()) /* autocmds may abort script processing */
4835 return FAIL;
4836# endif
Bram Moolenaar8b38e242009-06-16 13:35:20 +00004837 if (curbuf != buf)
4838 {
4839 /* We are in another buffer now, don't do the renaming. */
4840 EMSG(_(e_auchangedbuf));
4841 return FAIL;
4842 }
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004843#endif
4844
4845 if (setfname(curbuf, fname, sfname, FALSE) == OK)
4846 curbuf->b_flags |= BF_NOTEDITED;
4847
4848#ifdef FEAT_AUTOCMD
4849 /* ....and a new named one is created */
4850 apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, curbuf);
4851 if (curbuf->b_p_bl)
4852 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
4853# ifdef FEAT_EVAL
4854 if (aborting()) /* autocmds may abort script processing */
4855 return FAIL;
4856# endif
4857
4858 /* Do filetype detection now if 'filetype' is empty. */
4859 if (*curbuf->b_p_ft == NUL)
4860 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004861 if (au_has_group((char_u *)"filetypedetect"))
Bram Moolenaar70836c82006-02-20 21:28:49 +00004862 (void)do_doautocmd((char_u *)"filetypedetect BufRead", FALSE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004863 do_modelines(0);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004864 }
4865#endif
4866
4867 return OK;
4868}
4869
4870/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 * Put file name into IObuff with quotes.
4872 */
Bram Moolenaar009b2592004-10-24 19:18:58 +00004873 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874msg_add_fname(buf, fname)
4875 buf_T *buf;
4876 char_u *fname;
4877{
4878 if (fname == NULL)
4879 fname = (char_u *)"-stdin-";
4880 home_replace(buf, fname, IObuff + 1, IOSIZE - 4, TRUE);
4881 IObuff[0] = '"';
4882 STRCAT(IObuff, "\" ");
4883}
4884
4885/*
4886 * Append message for text mode to IObuff.
4887 * Return TRUE if something appended.
4888 */
4889 static int
4890msg_add_fileformat(eol_type)
4891 int eol_type;
4892{
4893#ifndef USE_CRNL
4894 if (eol_type == EOL_DOS)
4895 {
4896 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[dos]") : _("[dos format]"));
4897 return TRUE;
4898 }
4899#endif
4900#ifndef USE_CR
4901 if (eol_type == EOL_MAC)
4902 {
4903 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[mac]") : _("[mac format]"));
4904 return TRUE;
4905 }
4906#endif
4907#if defined(USE_CRNL) || defined(USE_CR)
4908 if (eol_type == EOL_UNIX)
4909 {
4910 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[unix]") : _("[unix format]"));
4911 return TRUE;
4912 }
4913#endif
4914 return FALSE;
4915}
4916
4917/*
4918 * Append line and character count to IObuff.
4919 */
Bram Moolenaar009b2592004-10-24 19:18:58 +00004920 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921msg_add_lines(insert_space, lnum, nchars)
4922 int insert_space;
4923 long lnum;
4924 long nchars;
4925{
4926 char_u *p;
4927
4928 p = IObuff + STRLEN(IObuff);
4929
4930 if (insert_space)
4931 *p++ = ' ';
4932 if (shortmess(SHM_LINES))
4933 sprintf((char *)p, "%ldL, %ldC", lnum, nchars);
4934 else
4935 {
4936 if (lnum == 1)
4937 STRCPY(p, _("1 line, "));
4938 else
4939 sprintf((char *)p, _("%ld lines, "), lnum);
4940 p += STRLEN(p);
4941 if (nchars == 1)
4942 STRCPY(p, _("1 character"));
4943 else
4944 sprintf((char *)p, _("%ld characters"), nchars);
4945 }
4946}
4947
4948/*
4949 * Append message for missing line separator to IObuff.
4950 */
4951 static void
4952msg_add_eol()
4953{
4954 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]") : _("[Incomplete last line]"));
4955}
4956
4957/*
4958 * Check modification time of file, before writing to it.
4959 * The size isn't checked, because using a tool like "gzip" takes care of
4960 * using the same timestamp but can't set the size.
4961 */
4962 static int
4963check_mtime(buf, st)
4964 buf_T *buf;
4965 struct stat *st;
4966{
4967 if (buf->b_mtime_read != 0
4968 && time_differs((long)st->st_mtime, buf->b_mtime_read))
4969 {
4970 msg_scroll = TRUE; /* don't overwrite messages here */
4971 msg_silent = 0; /* must give this prompt */
4972 /* don't use emsg() here, don't want to flush the buffers */
4973 MSG_ATTR(_("WARNING: The file has been changed since reading it!!!"),
4974 hl_attr(HLF_E));
4975 if (ask_yesno((char_u *)_("Do you really want to write to it"),
4976 TRUE) == 'n')
4977 return FAIL;
4978 msg_scroll = FALSE; /* always overwrite the file message now */
4979 }
4980 return OK;
4981}
4982
4983 static int
4984time_differs(t1, t2)
4985 long t1, t2;
4986{
4987#if defined(__linux__) || defined(MSDOS) || defined(MSWIN)
4988 /* On a FAT filesystem, esp. under Linux, there are only 5 bits to store
4989 * the seconds. Since the roundoff is done when flushing the inode, the
4990 * time may change unexpectedly by one second!!! */
4991 return (t1 - t2 > 1 || t2 - t1 > 1);
4992#else
4993 return (t1 != t2);
4994#endif
4995}
4996
4997/*
4998 * Call write() to write a number of bytes to the file.
4999 * Also handles encryption and 'encoding' conversion.
5000 *
5001 * Return FAIL for failure, OK otherwise.
5002 */
5003 static int
5004buf_write_bytes(ip)
5005 struct bw_info *ip;
5006{
5007 int wlen;
5008 char_u *buf = ip->bw_buf; /* data to write */
5009 int len = ip->bw_len; /* length of data */
5010#ifdef HAS_BW_FLAGS
5011 int flags = ip->bw_flags; /* extra flags */
5012#endif
5013
5014#ifdef FEAT_MBYTE
5015 /*
5016 * Skip conversion when writing the crypt magic number or the BOM.
5017 */
5018 if (!(flags & FIO_NOCONVERT))
5019 {
5020 char_u *p;
5021 unsigned c;
5022 int n;
5023
5024 if (flags & FIO_UTF8)
5025 {
5026 /*
5027 * Convert latin1 in the buffer to UTF-8 in the file.
5028 */
5029 p = ip->bw_conv_buf; /* translate to buffer */
5030 for (wlen = 0; wlen < len; ++wlen)
5031 p += utf_char2bytes(buf[wlen], p);
5032 buf = ip->bw_conv_buf;
5033 len = (int)(p - ip->bw_conv_buf);
5034 }
5035 else if (flags & (FIO_UCS4 | FIO_UTF16 | FIO_UCS2 | FIO_LATIN1))
5036 {
5037 /*
5038 * Convert UTF-8 bytes in the buffer to UCS-2, UCS-4, UTF-16 or
5039 * Latin1 chars in the file.
5040 */
5041 if (flags & FIO_LATIN1)
5042 p = buf; /* translate in-place (can only get shorter) */
5043 else
5044 p = ip->bw_conv_buf; /* translate to buffer */
5045 for (wlen = 0; wlen < len; wlen += n)
5046 {
5047 if (wlen == 0 && ip->bw_restlen != 0)
5048 {
5049 int l;
5050
5051 /* Use remainder of previous call. Append the start of
5052 * buf[] to get a full sequence. Might still be too
5053 * short! */
5054 l = CONV_RESTLEN - ip->bw_restlen;
5055 if (l > len)
5056 l = len;
5057 mch_memmove(ip->bw_rest + ip->bw_restlen, buf, (size_t)l);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005058 n = utf_ptr2len_len(ip->bw_rest, ip->bw_restlen + l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059 if (n > ip->bw_restlen + len)
5060 {
5061 /* We have an incomplete byte sequence at the end to
5062 * be written. We can't convert it without the
5063 * remaining bytes. Keep them for the next call. */
5064 if (ip->bw_restlen + len > CONV_RESTLEN)
5065 return FAIL;
5066 ip->bw_restlen += len;
5067 break;
5068 }
5069 if (n > 1)
5070 c = utf_ptr2char(ip->bw_rest);
5071 else
5072 c = ip->bw_rest[0];
5073 if (n >= ip->bw_restlen)
5074 {
5075 n -= ip->bw_restlen;
5076 ip->bw_restlen = 0;
5077 }
5078 else
5079 {
5080 ip->bw_restlen -= n;
5081 mch_memmove(ip->bw_rest, ip->bw_rest + n,
5082 (size_t)ip->bw_restlen);
5083 n = 0;
5084 }
5085 }
5086 else
5087 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005088 n = utf_ptr2len_len(buf + wlen, len - wlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 if (n > len - wlen)
5090 {
5091 /* We have an incomplete byte sequence at the end to
5092 * be written. We can't convert it without the
5093 * remaining bytes. Keep them for the next call. */
5094 if (len - wlen > CONV_RESTLEN)
5095 return FAIL;
5096 ip->bw_restlen = len - wlen;
5097 mch_memmove(ip->bw_rest, buf + wlen,
5098 (size_t)ip->bw_restlen);
5099 break;
5100 }
5101 if (n > 1)
5102 c = utf_ptr2char(buf + wlen);
5103 else
5104 c = buf[wlen];
5105 }
5106
5107 ip->bw_conv_error |= ucs2bytes(c, &p, flags);
5108 }
5109 if (flags & FIO_LATIN1)
5110 len = (int)(p - buf);
5111 else
5112 {
5113 buf = ip->bw_conv_buf;
5114 len = (int)(p - ip->bw_conv_buf);
5115 }
5116 }
5117
5118# ifdef WIN3264
5119 else if (flags & FIO_CODEPAGE)
5120 {
5121 /*
5122 * Convert UTF-8 or codepage to UCS-2 and then to MS-Windows
5123 * codepage.
5124 */
5125 char_u *from;
5126 size_t fromlen;
5127 char_u *to;
5128 int u8c;
5129 BOOL bad = FALSE;
5130 int needed;
5131
5132 if (ip->bw_restlen > 0)
5133 {
5134 /* Need to concatenate the remainder of the previous call and
5135 * the bytes of the current call. Use the end of the
5136 * conversion buffer for this. */
5137 fromlen = len + ip->bw_restlen;
5138 from = ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5139 mch_memmove(from, ip->bw_rest, (size_t)ip->bw_restlen);
5140 mch_memmove(from + ip->bw_restlen, buf, (size_t)len);
5141 }
5142 else
5143 {
5144 from = buf;
5145 fromlen = len;
5146 }
5147
5148 to = ip->bw_conv_buf;
5149 if (enc_utf8)
5150 {
5151 /* Convert from UTF-8 to UCS-2, to the start of the buffer.
5152 * The buffer has been allocated to be big enough. */
5153 while (fromlen > 0)
5154 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005155 n = (int)utf_ptr2len_len(from, (int)fromlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 if (n > (int)fromlen) /* incomplete byte sequence */
5157 break;
5158 u8c = utf_ptr2char(from);
5159 *to++ = (u8c & 0xff);
5160 *to++ = (u8c >> 8);
5161 fromlen -= n;
5162 from += n;
5163 }
5164
5165 /* Copy remainder to ip->bw_rest[] to be used for the next
5166 * call. */
5167 if (fromlen > CONV_RESTLEN)
5168 {
5169 /* weird overlong sequence */
5170 ip->bw_conv_error = TRUE;
5171 return FAIL;
5172 }
5173 mch_memmove(ip->bw_rest, from, fromlen);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005174 ip->bw_restlen = (int)fromlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175 }
5176 else
5177 {
5178 /* Convert from enc_codepage to UCS-2, to the start of the
5179 * buffer. The buffer has been allocated to be big enough. */
5180 ip->bw_restlen = 0;
5181 needed = MultiByteToWideChar(enc_codepage,
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005182 MB_ERR_INVALID_CHARS, (LPCSTR)from, (int)fromlen,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005183 NULL, 0);
5184 if (needed == 0)
5185 {
5186 /* When conversion fails there may be a trailing byte. */
5187 needed = MultiByteToWideChar(enc_codepage,
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005188 MB_ERR_INVALID_CHARS, (LPCSTR)from, (int)fromlen - 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005189 NULL, 0);
5190 if (needed == 0)
5191 {
5192 /* Conversion doesn't work. */
5193 ip->bw_conv_error = TRUE;
5194 return FAIL;
5195 }
5196 /* Save the trailing byte for the next call. */
5197 ip->bw_rest[0] = from[fromlen - 1];
5198 ip->bw_restlen = 1;
5199 }
5200 needed = MultiByteToWideChar(enc_codepage, MB_ERR_INVALID_CHARS,
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005201 (LPCSTR)from, (int)(fromlen - ip->bw_restlen),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 (LPWSTR)to, needed);
5203 if (needed == 0)
5204 {
5205 /* Safety check: Conversion doesn't work. */
5206 ip->bw_conv_error = TRUE;
5207 return FAIL;
5208 }
5209 to += needed * 2;
5210 }
5211
5212 fromlen = to - ip->bw_conv_buf;
5213 buf = to;
5214# ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
5215 if (FIO_GET_CP(flags) == CP_UTF8)
5216 {
5217 /* Convert from UCS-2 to UTF-8, using the remainder of the
5218 * conversion buffer. Fails when out of space. */
5219 for (from = ip->bw_conv_buf; fromlen > 1; fromlen -= 2)
5220 {
5221 u8c = *from++;
5222 u8c += (*from++ << 8);
5223 to += utf_char2bytes(u8c, to);
5224 if (to + 6 >= ip->bw_conv_buf + ip->bw_conv_buflen)
5225 {
5226 ip->bw_conv_error = TRUE;
5227 return FAIL;
5228 }
5229 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005230 len = (int)(to - buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005231 }
5232 else
5233#endif
5234 {
5235 /* Convert from UCS-2 to the codepage, using the remainder of
5236 * the conversion buffer. If the conversion uses the default
5237 * character "0", the data doesn't fit in this encoding, so
5238 * fail. */
5239 len = WideCharToMultiByte(FIO_GET_CP(flags), 0,
5240 (LPCWSTR)ip->bw_conv_buf, (int)fromlen / sizeof(WCHAR),
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005241 (LPSTR)to, (int)(ip->bw_conv_buflen - fromlen), 0,
5242 &bad);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243 if (bad)
5244 {
5245 ip->bw_conv_error = TRUE;
5246 return FAIL;
5247 }
5248 }
5249 }
5250# endif
5251
Bram Moolenaar56718732006-03-15 22:53:57 +00005252# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 else if (flags & FIO_MACROMAN)
5254 {
5255 /*
5256 * Convert UTF-8 or latin1 to Apple MacRoman.
5257 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 char_u *from;
5259 size_t fromlen;
5260
5261 if (ip->bw_restlen > 0)
5262 {
5263 /* Need to concatenate the remainder of the previous call and
5264 * the bytes of the current call. Use the end of the
5265 * conversion buffer for this. */
5266 fromlen = len + ip->bw_restlen;
5267 from = ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5268 mch_memmove(from, ip->bw_rest, (size_t)ip->bw_restlen);
5269 mch_memmove(from + ip->bw_restlen, buf, (size_t)len);
5270 }
5271 else
5272 {
5273 from = buf;
5274 fromlen = len;
5275 }
5276
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005277 if (enc2macroman(from, fromlen,
5278 ip->bw_conv_buf, &len, ip->bw_conv_buflen,
5279 ip->bw_rest, &ip->bw_restlen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005280 {
5281 ip->bw_conv_error = TRUE;
5282 return FAIL;
5283 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 buf = ip->bw_conv_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005285 }
5286# endif
5287
5288# ifdef USE_ICONV
5289 if (ip->bw_iconv_fd != (iconv_t)-1)
5290 {
5291 const char *from;
5292 size_t fromlen;
5293 char *to;
5294 size_t tolen;
5295
5296 /* Convert with iconv(). */
5297 if (ip->bw_restlen > 0)
5298 {
Bram Moolenaar5d294d12009-03-11 12:11:02 +00005299 char *fp;
5300
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 /* Need to concatenate the remainder of the previous call and
5302 * the bytes of the current call. Use the end of the
5303 * conversion buffer for this. */
5304 fromlen = len + ip->bw_restlen;
Bram Moolenaar5d294d12009-03-11 12:11:02 +00005305 fp = (char *)ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5306 mch_memmove(fp, ip->bw_rest, (size_t)ip->bw_restlen);
5307 mch_memmove(fp + ip->bw_restlen, buf, (size_t)len);
5308 from = fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 tolen = ip->bw_conv_buflen - fromlen;
5310 }
5311 else
5312 {
5313 from = (const char *)buf;
5314 fromlen = len;
5315 tolen = ip->bw_conv_buflen;
5316 }
5317 to = (char *)ip->bw_conv_buf;
5318
5319 if (ip->bw_first)
5320 {
5321 size_t save_len = tolen;
5322
5323 /* output the initial shift state sequence */
5324 (void)iconv(ip->bw_iconv_fd, NULL, NULL, &to, &tolen);
5325
5326 /* There is a bug in iconv() on Linux (which appears to be
5327 * wide-spread) which sets "to" to NULL and messes up "tolen".
5328 */
5329 if (to == NULL)
5330 {
5331 to = (char *)ip->bw_conv_buf;
5332 tolen = save_len;
5333 }
5334 ip->bw_first = FALSE;
5335 }
5336
5337 /*
5338 * If iconv() has an error or there is not enough room, fail.
5339 */
5340 if ((iconv(ip->bw_iconv_fd, (void *)&from, &fromlen, &to, &tolen)
5341 == (size_t)-1 && ICONV_ERRNO != ICONV_EINVAL)
5342 || fromlen > CONV_RESTLEN)
5343 {
5344 ip->bw_conv_error = TRUE;
5345 return FAIL;
5346 }
5347
5348 /* copy remainder to ip->bw_rest[] to be used for the next call. */
5349 if (fromlen > 0)
5350 mch_memmove(ip->bw_rest, (void *)from, fromlen);
5351 ip->bw_restlen = (int)fromlen;
5352
5353 buf = ip->bw_conv_buf;
5354 len = (int)((char_u *)to - ip->bw_conv_buf);
5355 }
5356# endif
5357 }
5358#endif /* FEAT_MBYTE */
5359
5360#ifdef FEAT_CRYPT
5361 if (flags & FIO_ENCRYPTED) /* encrypt the data */
5362 {
5363 int ztemp, t, i;
5364
5365 for (i = 0; i < len; i++)
5366 {
5367 ztemp = buf[i];
5368 buf[i] = ZENCODE(ztemp, t);
5369 }
5370 }
5371#endif
5372
5373 /* Repeat the write(), it may be interrupted by a signal. */
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005374 while (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375 {
5376 wlen = vim_write(ip->bw_fd, buf, len);
5377 if (wlen <= 0) /* error! */
5378 return FAIL;
5379 len -= wlen;
5380 buf += wlen;
5381 }
5382 return OK;
5383}
5384
5385#ifdef FEAT_MBYTE
5386/*
5387 * Convert a Unicode character to bytes.
5388 */
5389 static int
5390ucs2bytes(c, pp, flags)
5391 unsigned c; /* in: character */
5392 char_u **pp; /* in/out: pointer to result */
5393 int flags; /* FIO_ flags */
5394{
5395 char_u *p = *pp;
5396 int error = FALSE;
5397 int cc;
5398
5399
5400 if (flags & FIO_UCS4)
5401 {
5402 if (flags & FIO_ENDIAN_L)
5403 {
5404 *p++ = c;
5405 *p++ = (c >> 8);
5406 *p++ = (c >> 16);
5407 *p++ = (c >> 24);
5408 }
5409 else
5410 {
5411 *p++ = (c >> 24);
5412 *p++ = (c >> 16);
5413 *p++ = (c >> 8);
5414 *p++ = c;
5415 }
5416 }
5417 else if (flags & (FIO_UCS2 | FIO_UTF16))
5418 {
5419 if (c >= 0x10000)
5420 {
5421 if (flags & FIO_UTF16)
5422 {
5423 /* Make two words, ten bits of the character in each. First
5424 * word is 0xd800 - 0xdbff, second one 0xdc00 - 0xdfff */
5425 c -= 0x10000;
5426 if (c >= 0x100000)
5427 error = TRUE;
5428 cc = ((c >> 10) & 0x3ff) + 0xd800;
5429 if (flags & FIO_ENDIAN_L)
5430 {
5431 *p++ = cc;
5432 *p++ = ((unsigned)cc >> 8);
5433 }
5434 else
5435 {
5436 *p++ = ((unsigned)cc >> 8);
5437 *p++ = cc;
5438 }
5439 c = (c & 0x3ff) + 0xdc00;
5440 }
5441 else
5442 error = TRUE;
5443 }
5444 if (flags & FIO_ENDIAN_L)
5445 {
5446 *p++ = c;
5447 *p++ = (c >> 8);
5448 }
5449 else
5450 {
5451 *p++ = (c >> 8);
5452 *p++ = c;
5453 }
5454 }
5455 else /* Latin1 */
5456 {
5457 if (c >= 0x100)
5458 {
5459 error = TRUE;
5460 *p++ = 0xBF;
5461 }
5462 else
5463 *p++ = c;
5464 }
5465
5466 *pp = p;
5467 return error;
5468}
5469
5470/*
5471 * Return TRUE if "a" and "b" are the same 'encoding'.
5472 * Ignores difference between "ansi" and "latin1", "ucs-4" and "ucs-4be", etc.
5473 */
5474 static int
5475same_encoding(a, b)
5476 char_u *a;
5477 char_u *b;
5478{
5479 int f;
5480
5481 if (STRCMP(a, b) == 0)
5482 return TRUE;
5483 f = get_fio_flags(a);
5484 return (f != 0 && get_fio_flags(b) == f);
5485}
5486
5487/*
5488 * Check "ptr" for a unicode encoding and return the FIO_ flags needed for the
5489 * internal conversion.
5490 * if "ptr" is an empty string, use 'encoding'.
5491 */
5492 static int
5493get_fio_flags(ptr)
5494 char_u *ptr;
5495{
5496 int prop;
5497
5498 if (*ptr == NUL)
5499 ptr = p_enc;
5500
5501 prop = enc_canon_props(ptr);
5502 if (prop & ENC_UNICODE)
5503 {
5504 if (prop & ENC_2BYTE)
5505 {
5506 if (prop & ENC_ENDIAN_L)
5507 return FIO_UCS2 | FIO_ENDIAN_L;
5508 return FIO_UCS2;
5509 }
5510 if (prop & ENC_4BYTE)
5511 {
5512 if (prop & ENC_ENDIAN_L)
5513 return FIO_UCS4 | FIO_ENDIAN_L;
5514 return FIO_UCS4;
5515 }
5516 if (prop & ENC_2WORD)
5517 {
5518 if (prop & ENC_ENDIAN_L)
5519 return FIO_UTF16 | FIO_ENDIAN_L;
5520 return FIO_UTF16;
5521 }
5522 return FIO_UTF8;
5523 }
5524 if (prop & ENC_LATIN1)
5525 return FIO_LATIN1;
5526 /* must be ENC_DBCS, requires iconv() */
5527 return 0;
5528}
5529
5530#ifdef WIN3264
5531/*
5532 * Check "ptr" for a MS-Windows codepage name and return the FIO_ flags needed
5533 * for the conversion MS-Windows can do for us. Also accept "utf-8".
5534 * Used for conversion between 'encoding' and 'fileencoding'.
5535 */
5536 static int
5537get_win_fio_flags(ptr)
5538 char_u *ptr;
5539{
5540 int cp;
5541
5542 /* Cannot do this when 'encoding' is not utf-8 and not a codepage. */
5543 if (!enc_utf8 && enc_codepage <= 0)
5544 return 0;
5545
5546 cp = encname2codepage(ptr);
5547 if (cp == 0)
5548 {
5549# ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
5550 if (STRCMP(ptr, "utf-8") == 0)
5551 cp = CP_UTF8;
5552 else
5553# endif
5554 return 0;
5555 }
5556 return FIO_PUT_CP(cp) | FIO_CODEPAGE;
5557}
5558#endif
5559
5560#ifdef MACOS_X
5561/*
5562 * Check "ptr" for a Carbon supported encoding and return the FIO_ flags
5563 * needed for the internal conversion to/from utf-8 or latin1.
5564 */
5565 static int
5566get_mac_fio_flags(ptr)
5567 char_u *ptr;
5568{
5569 if ((enc_utf8 || STRCMP(p_enc, "latin1") == 0)
5570 && (enc_canon_props(ptr) & ENC_MACROMAN))
5571 return FIO_MACROMAN;
5572 return 0;
5573}
5574#endif
5575
5576/*
5577 * Check for a Unicode BOM (Byte Order Mark) at the start of p[size].
5578 * "size" must be at least 2.
5579 * Return the name of the encoding and set "*lenp" to the length.
5580 * Returns NULL when no BOM found.
5581 */
5582 static char_u *
5583check_for_bom(p, size, lenp, flags)
5584 char_u *p;
5585 long size;
5586 int *lenp;
5587 int flags;
5588{
5589 char *name = NULL;
5590 int len = 2;
5591
5592 if (p[0] == 0xef && p[1] == 0xbb && size >= 3 && p[2] == 0xbf
Bram Moolenaaree0f5a62008-07-24 20:09:16 +00005593 && (flags == FIO_ALL || flags == FIO_UTF8 || flags == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 {
5595 name = "utf-8"; /* EF BB BF */
5596 len = 3;
5597 }
5598 else if (p[0] == 0xff && p[1] == 0xfe)
5599 {
5600 if (size >= 4 && p[2] == 0 && p[3] == 0
5601 && (flags == FIO_ALL || flags == (FIO_UCS4 | FIO_ENDIAN_L)))
5602 {
5603 name = "ucs-4le"; /* FF FE 00 00 */
5604 len = 4;
5605 }
Bram Moolenaar223a1892008-11-11 20:57:11 +00005606 else if (flags == (FIO_UCS2 | FIO_ENDIAN_L))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 name = "ucs-2le"; /* FF FE */
Bram Moolenaar223a1892008-11-11 20:57:11 +00005608 else if (flags == FIO_ALL || flags == (FIO_UTF16 | FIO_ENDIAN_L))
5609 /* utf-16le is preferred, it also works for ucs-2le text */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 name = "utf-16le"; /* FF FE */
5611 }
5612 else if (p[0] == 0xfe && p[1] == 0xff
5613 && (flags == FIO_ALL || flags == FIO_UCS2 || flags == FIO_UTF16))
5614 {
Bram Moolenaarffd82c52008-02-20 17:15:26 +00005615 /* Default to utf-16, it works also for ucs-2 text. */
5616 if (flags == FIO_UCS2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617 name = "ucs-2"; /* FE FF */
Bram Moolenaarffd82c52008-02-20 17:15:26 +00005618 else
5619 name = "utf-16"; /* FE FF */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 }
5621 else if (size >= 4 && p[0] == 0 && p[1] == 0 && p[2] == 0xfe
5622 && p[3] == 0xff && (flags == FIO_ALL || flags == FIO_UCS4))
5623 {
5624 name = "ucs-4"; /* 00 00 FE FF */
5625 len = 4;
5626 }
5627
5628 *lenp = len;
5629 return (char_u *)name;
5630}
5631
5632/*
5633 * Generate a BOM in "buf[4]" for encoding "name".
5634 * Return the length of the BOM (zero when no BOM).
5635 */
5636 static int
5637make_bom(buf, name)
5638 char_u *buf;
5639 char_u *name;
5640{
5641 int flags;
5642 char_u *p;
5643
5644 flags = get_fio_flags(name);
5645
5646 /* Can't put a BOM in a non-Unicode file. */
5647 if (flags == FIO_LATIN1 || flags == 0)
5648 return 0;
5649
5650 if (flags == FIO_UTF8) /* UTF-8 */
5651 {
5652 buf[0] = 0xef;
5653 buf[1] = 0xbb;
5654 buf[2] = 0xbf;
5655 return 3;
5656 }
5657 p = buf;
5658 (void)ucs2bytes(0xfeff, &p, flags);
5659 return (int)(p - buf);
5660}
5661#endif
5662
Bram Moolenaard4cacdf2007-10-03 10:50:10 +00005663#if defined(FEAT_VIMINFO) || defined(FEAT_BROWSE) || \
Bram Moolenaara0174af2008-01-02 20:08:25 +00005664 defined(FEAT_QUICKFIX) || defined(FEAT_AUTOCMD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665/*
5666 * Try to find a shortname by comparing the fullname with the current
5667 * directory.
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005668 * Returns "full_path" or pointer into "full_path" if shortened.
5669 */
5670 char_u *
5671shorten_fname1(full_path)
5672 char_u *full_path;
5673{
5674 char_u dirname[MAXPATHL];
5675 char_u *p = full_path;
5676
5677 if (mch_dirname(dirname, MAXPATHL) == OK)
5678 {
5679 p = shorten_fname(full_path, dirname);
5680 if (p == NULL || *p == NUL)
5681 p = full_path;
5682 }
5683 return p;
5684}
Bram Moolenaard4cacdf2007-10-03 10:50:10 +00005685#endif
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005686
5687/*
5688 * Try to find a shortname by comparing the fullname with the current
5689 * directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005690 * Returns NULL if not shorter name possible, pointer into "full_path"
5691 * otherwise.
5692 */
5693 char_u *
5694shorten_fname(full_path, dir_name)
5695 char_u *full_path;
5696 char_u *dir_name;
5697{
5698 int len;
5699 char_u *p;
5700
5701 if (full_path == NULL)
5702 return NULL;
5703 len = (int)STRLEN(dir_name);
5704 if (fnamencmp(dir_name, full_path, len) == 0)
5705 {
5706 p = full_path + len;
5707#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
5708 /*
5709 * MSDOS: when a file is in the root directory, dir_name will end in a
5710 * slash, since C: by itself does not define a specific dir. In this
5711 * case p may already be correct. <negri>
5712 */
5713 if (!((len > 2) && (*(p - 2) == ':')))
5714#endif
5715 {
5716 if (vim_ispathsep(*p))
5717 ++p;
5718#ifndef VMS /* the path separator is always part of the path */
5719 else
5720 p = NULL;
5721#endif
5722 }
5723 }
5724#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
5725 /*
5726 * When using a file in the current drive, remove the drive name:
5727 * "A:\dir\file" -> "\dir\file". This helps when moving a session file on
5728 * a floppy from "A:\dir" to "B:\dir".
5729 */
5730 else if (len > 3
5731 && TOUPPER_LOC(full_path[0]) == TOUPPER_LOC(dir_name[0])
5732 && full_path[1] == ':'
5733 && vim_ispathsep(full_path[2]))
5734 p = full_path + 2;
5735#endif
5736 else
5737 p = NULL;
5738 return p;
5739}
5740
5741/*
5742 * Shorten filenames for all buffers.
5743 * When "force" is TRUE: Use full path from now on for files currently being
5744 * edited, both for file name and swap file name. Try to shorten the file
5745 * names a bit, if safe to do so.
5746 * When "force" is FALSE: Only try to shorten absolute file names.
5747 * For buffers that have buftype "nofile" or "scratch": never change the file
5748 * name.
5749 */
5750 void
5751shorten_fnames(force)
5752 int force;
5753{
5754 char_u dirname[MAXPATHL];
5755 buf_T *buf;
5756 char_u *p;
5757
5758 mch_dirname(dirname, MAXPATHL);
5759 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
5760 {
5761 if (buf->b_fname != NULL
5762#ifdef FEAT_QUICKFIX
5763 && !bt_nofile(buf)
5764#endif
5765 && !path_with_url(buf->b_fname)
5766 && (force
5767 || buf->b_sfname == NULL
5768 || mch_isFullName(buf->b_sfname)))
5769 {
5770 vim_free(buf->b_sfname);
5771 buf->b_sfname = NULL;
5772 p = shorten_fname(buf->b_ffname, dirname);
5773 if (p != NULL)
5774 {
5775 buf->b_sfname = vim_strsave(p);
5776 buf->b_fname = buf->b_sfname;
5777 }
5778 if (p == NULL || buf->b_fname == NULL)
5779 buf->b_fname = buf->b_ffname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005781
5782 /* Always make the swap file name a full path, a "nofile" buffer may
5783 * also have a swap file. */
5784 mf_fullname(buf->b_ml.ml_mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 }
5786#ifdef FEAT_WINDOWS
5787 status_redraw_all();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005788 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789#endif
5790}
5791
5792#if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \
5793 || defined(FEAT_GUI_MSWIN) \
5794 || defined(FEAT_GUI_MAC) \
5795 || defined(PROTO)
5796/*
5797 * Shorten all filenames in "fnames[count]" by current directory.
5798 */
5799 void
5800shorten_filenames(fnames, count)
5801 char_u **fnames;
5802 int count;
5803{
5804 int i;
5805 char_u dirname[MAXPATHL];
5806 char_u *p;
5807
5808 if (fnames == NULL || count < 1)
5809 return;
5810 mch_dirname(dirname, sizeof(dirname));
5811 for (i = 0; i < count; ++i)
5812 {
5813 if ((p = shorten_fname(fnames[i], dirname)) != NULL)
5814 {
5815 /* shorten_fname() returns pointer in given "fnames[i]". If free
5816 * "fnames[i]" first, "p" becomes invalid. So we need to copy
5817 * "p" first then free fnames[i]. */
5818 p = vim_strsave(p);
5819 vim_free(fnames[i]);
5820 fnames[i] = p;
5821 }
5822 }
5823}
5824#endif
5825
5826/*
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00005827 * add extension to file name - change path/fo.o.h to path/fo.o.h.ext or
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828 * fo_o_h.ext for MSDOS or when shortname option set.
5829 *
5830 * Assumed that fname is a valid name found in the filesystem we assure that
5831 * the return value is a different name and ends in 'ext'.
5832 * "ext" MUST be at most 4 characters long if it starts with a dot, 3
5833 * characters otherwise.
5834 * Space for the returned name is allocated, must be freed later.
5835 * Returns NULL when out of memory.
5836 */
5837 char_u *
5838modname(fname, ext, prepend_dot)
5839 char_u *fname, *ext;
5840 int prepend_dot; /* may prepend a '.' to file name */
5841{
5842 return buf_modname(
5843#ifdef SHORT_FNAME
5844 TRUE,
5845#else
5846 (curbuf->b_p_sn || curbuf->b_shortname),
5847#endif
5848 fname, ext, prepend_dot);
5849}
5850
5851 char_u *
5852buf_modname(shortname, fname, ext, prepend_dot)
5853 int shortname; /* use 8.3 file name */
5854 char_u *fname, *ext;
5855 int prepend_dot; /* may prepend a '.' to file name */
5856{
5857 char_u *retval;
5858 char_u *s;
5859 char_u *e;
5860 char_u *ptr;
5861 int fnamelen, extlen;
5862
5863 extlen = (int)STRLEN(ext);
5864
5865 /*
5866 * If there is no file name we must get the name of the current directory
5867 * (we need the full path in case :cd is used).
5868 */
5869 if (fname == NULL || *fname == NUL)
5870 {
5871 retval = alloc((unsigned)(MAXPATHL + extlen + 3));
5872 if (retval == NULL)
5873 return NULL;
5874 if (mch_dirname(retval, MAXPATHL) == FAIL ||
5875 (fnamelen = (int)STRLEN(retval)) == 0)
5876 {
5877 vim_free(retval);
5878 return NULL;
5879 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005880 if (!after_pathsep(retval, retval + fnamelen))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881 {
5882 retval[fnamelen++] = PATHSEP;
5883 retval[fnamelen] = NUL;
5884 }
5885#ifndef SHORT_FNAME
5886 prepend_dot = FALSE; /* nothing to prepend a dot to */
5887#endif
5888 }
5889 else
5890 {
5891 fnamelen = (int)STRLEN(fname);
5892 retval = alloc((unsigned)(fnamelen + extlen + 3));
5893 if (retval == NULL)
5894 return NULL;
5895 STRCPY(retval, fname);
5896#ifdef VMS
5897 vms_remove_version(retval); /* we do not need versions here */
5898#endif
5899 }
5900
5901 /*
5902 * search backwards until we hit a '/', '\' or ':' replacing all '.'
5903 * by '_' for MSDOS or when shortname option set and ext starts with a dot.
5904 * Then truncate what is after the '/', '\' or ':' to 8 characters for
5905 * MSDOS and 26 characters for AMIGA, a lot more for UNIX.
5906 */
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005907 for (ptr = retval + fnamelen; ptr > retval; mb_ptr_back(retval, ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 {
5909#ifndef RISCOS
5910 if (*ext == '.'
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005911# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912 && (!USE_LONG_FNAME || shortname)
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005913# else
5914# ifndef SHORT_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915 && shortname
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005916# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918 )
5919 if (*ptr == '.') /* replace '.' by '_' */
5920 *ptr = '_';
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005921#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922 if (vim_ispathsep(*ptr))
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005923 {
5924 ++ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 break;
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005926 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928
5929 /* the file name has at most BASENAMELEN characters. */
5930#ifndef SHORT_FNAME
5931 if (STRLEN(ptr) > (unsigned)BASENAMELEN)
5932 ptr[BASENAMELEN] = '\0';
5933#endif
5934
5935 s = ptr + STRLEN(ptr);
5936
5937 /*
5938 * For 8.3 file names we may have to reduce the length.
5939 */
5940#ifdef USE_LONG_FNAME
5941 if (!USE_LONG_FNAME || shortname)
5942#else
5943# ifndef SHORT_FNAME
5944 if (shortname)
5945# endif
5946#endif
5947 {
5948 /*
5949 * If there is no file name, or the file name ends in '/', and the
5950 * extension starts with '.', put a '_' before the dot, because just
5951 * ".ext" is invalid.
5952 */
5953 if (fname == NULL || *fname == NUL
5954 || vim_ispathsep(fname[STRLEN(fname) - 1]))
5955 {
5956#ifdef RISCOS
5957 if (*ext == '/')
5958#else
5959 if (*ext == '.')
5960#endif
5961 *s++ = '_';
5962 }
5963 /*
5964 * If the extension starts with '.', truncate the base name at 8
5965 * characters
5966 */
5967#ifdef RISCOS
5968 /* We normally use '/', but swap files are '_' */
5969 else if (*ext == '/' || *ext == '_')
5970#else
5971 else if (*ext == '.')
5972#endif
5973 {
Bram Moolenaar78a15312009-05-15 19:33:18 +00005974 if ((size_t)(s - ptr) > (size_t)8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975 {
5976 s = ptr + 8;
5977 *s = '\0';
5978 }
5979 }
5980 /*
5981 * If the extension doesn't start with '.', and the file name
5982 * doesn't have an extension yet, append a '.'
5983 */
5984#ifdef RISCOS
5985 else if ((e = vim_strchr(ptr, '/')) == NULL)
5986 *s++ = '/';
5987#else
5988 else if ((e = vim_strchr(ptr, '.')) == NULL)
5989 *s++ = '.';
5990#endif
5991 /*
5992 * If the extension doesn't start with '.', and there already is an
Bram Moolenaar7263a772007-05-10 17:35:54 +00005993 * extension, it may need to be truncated
Bram Moolenaar071d4272004-06-13 20:20:40 +00005994 */
5995 else if ((int)STRLEN(e) + extlen > 4)
5996 s = e + 4 - extlen;
5997 }
5998#if defined(OS2) || defined(USE_LONG_FNAME) || defined(WIN3264)
5999 /*
6000 * If there is no file name, and the extension starts with '.', put a
6001 * '_' before the dot, because just ".ext" may be invalid if it's on a
6002 * FAT partition, and on HPFS it doesn't matter.
6003 */
6004 else if ((fname == NULL || *fname == NUL) && *ext == '.')
6005 *s++ = '_';
6006#endif
6007
6008 /*
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006009 * Append the extension.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006010 * ext can start with '.' and cannot exceed 3 more characters.
6011 */
6012 STRCPY(s, ext);
6013
6014#ifndef SHORT_FNAME
6015 /*
6016 * Prepend the dot.
6017 */
6018 if (prepend_dot && !shortname && *(e = gettail(retval)) !=
6019#ifdef RISCOS
6020 '/'
6021#else
6022 '.'
6023#endif
6024#ifdef USE_LONG_FNAME
6025 && USE_LONG_FNAME
6026#endif
6027 )
6028 {
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006029 STRMOVE(e + 1, e);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030#ifdef RISCOS
6031 *e = '/';
6032#else
6033 *e = '.';
6034#endif
6035 }
6036#endif
6037
6038 /*
6039 * Check that, after appending the extension, the file name is really
6040 * different.
6041 */
6042 if (fname != NULL && STRCMP(fname, retval) == 0)
6043 {
6044 /* we search for a character that can be replaced by '_' */
6045 while (--s >= ptr)
6046 {
6047 if (*s != '_')
6048 {
6049 *s = '_';
6050 break;
6051 }
6052 }
6053 if (s < ptr) /* fname was "________.<ext>", how tricky! */
6054 *ptr = 'v';
6055 }
6056 return retval;
6057}
6058
6059/*
6060 * Like fgets(), but if the file line is too long, it is truncated and the
6061 * rest of the line is thrown away. Returns TRUE for end-of-file.
6062 */
6063 int
6064vim_fgets(buf, size, fp)
6065 char_u *buf;
6066 int size;
6067 FILE *fp;
6068{
6069 char *eof;
6070#define FGETS_SIZE 200
6071 char tbuf[FGETS_SIZE];
6072
6073 buf[size - 2] = NUL;
6074#ifdef USE_CR
6075 eof = fgets_cr((char *)buf, size, fp);
6076#else
6077 eof = fgets((char *)buf, size, fp);
6078#endif
6079 if (buf[size - 2] != NUL && buf[size - 2] != '\n')
6080 {
6081 buf[size - 1] = NUL; /* Truncate the line */
6082
6083 /* Now throw away the rest of the line: */
6084 do
6085 {
6086 tbuf[FGETS_SIZE - 2] = NUL;
6087#ifdef USE_CR
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00006088 ignoredp = fgets_cr((char *)tbuf, FGETS_SIZE, fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089#else
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00006090 ignoredp = fgets((char *)tbuf, FGETS_SIZE, fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006091#endif
6092 } while (tbuf[FGETS_SIZE - 2] != NUL && tbuf[FGETS_SIZE - 2] != '\n');
6093 }
6094 return (eof == NULL);
6095}
6096
6097#if defined(USE_CR) || defined(PROTO)
6098/*
6099 * Like vim_fgets(), but accept any line terminator: CR, CR-LF or LF.
6100 * Returns TRUE for end-of-file.
6101 * Only used for the Mac, because it's much slower than vim_fgets().
6102 */
6103 int
6104tag_fgets(buf, size, fp)
6105 char_u *buf;
6106 int size;
6107 FILE *fp;
6108{
6109 int i = 0;
6110 int c;
6111 int eof = FALSE;
6112
6113 for (;;)
6114 {
6115 c = fgetc(fp);
6116 if (c == EOF)
6117 {
6118 eof = TRUE;
6119 break;
6120 }
6121 if (c == '\r')
6122 {
6123 /* Always store a NL for end-of-line. */
6124 if (i < size - 1)
6125 buf[i++] = '\n';
6126 c = fgetc(fp);
6127 if (c != '\n') /* Macintosh format: single CR. */
6128 ungetc(c, fp);
6129 break;
6130 }
6131 if (i < size - 1)
6132 buf[i++] = c;
6133 if (c == '\n')
6134 break;
6135 }
6136 buf[i] = NUL;
6137 return eof;
6138}
6139#endif
6140
6141/*
6142 * rename() only works if both files are on the same file system, this
6143 * function will (attempts to?) copy the file across if rename fails -- webb
6144 * Return -1 for failure, 0 for success.
6145 */
6146 int
6147vim_rename(from, to)
6148 char_u *from;
6149 char_u *to;
6150{
6151 int fd_in;
6152 int fd_out;
6153 int n;
6154 char *errmsg = NULL;
6155 char *buffer;
6156#ifdef AMIGA
6157 BPTR flock;
6158#endif
6159 struct stat st;
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006160 long perm;
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006161#ifdef HAVE_ACL
6162 vim_acl_T acl; /* ACL from original file */
6163#endif
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006164#if defined(UNIX) || defined(CASE_INSENSITIVE_FILENAME)
6165 int use_tmp_file = FALSE;
6166#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006167
6168 /*
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006169 * When the names are identical, there is nothing to do. When they refer
6170 * to the same file (ignoring case and slash/backslash differences) but
6171 * the file name differs we need to go through a temp file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006172 */
6173 if (fnamecmp(from, to) == 0)
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006174 {
6175#ifdef CASE_INSENSITIVE_FILENAME
6176 if (STRCMP(gettail(from), gettail(to)) != 0)
6177 use_tmp_file = TRUE;
6178 else
6179#endif
6180 return 0;
6181 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182
6183 /*
6184 * Fail if the "from" file doesn't exist. Avoids that "to" is deleted.
6185 */
6186 if (mch_stat((char *)from, &st) < 0)
6187 return -1;
6188
Bram Moolenaar3576da72008-12-30 15:15:57 +00006189#ifdef UNIX
6190 {
6191 struct stat st_to;
Bram Moolenaar3576da72008-12-30 15:15:57 +00006192
6193 /* It's possible for the source and destination to be the same file.
6194 * This happens when "from" and "to" differ in case and are on a FAT32
6195 * filesystem. In that case go through a temp file name. */
6196 if (mch_stat((char *)to, &st_to) >= 0
6197 && st.st_dev == st_to.st_dev
6198 && st.st_ino == st_to.st_ino)
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006199 use_tmp_file = TRUE;
6200 }
6201#endif
6202
6203#if defined(UNIX) || defined(CASE_INSENSITIVE_FILENAME)
6204 if (use_tmp_file)
6205 {
6206 char tempname[MAXPATHL + 1];
6207
6208 /*
6209 * Find a name that doesn't exist and is in the same directory.
6210 * Rename "from" to "tempname" and then rename "tempname" to "to".
6211 */
6212 if (STRLEN(from) >= MAXPATHL - 5)
6213 return -1;
6214 STRCPY(tempname, from);
6215 for (n = 123; n < 99999; ++n)
Bram Moolenaar3576da72008-12-30 15:15:57 +00006216 {
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006217 sprintf((char *)gettail((char_u *)tempname), "%d", n);
6218 if (mch_stat(tempname, &st) < 0)
Bram Moolenaar3576da72008-12-30 15:15:57 +00006219 {
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006220 if (mch_rename((char *)from, tempname) == 0)
Bram Moolenaar3576da72008-12-30 15:15:57 +00006221 {
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006222 if (mch_rename(tempname, (char *)to) == 0)
6223 return 0;
6224 /* Strange, the second step failed. Try moving the
6225 * file back and return failure. */
6226 mch_rename(tempname, (char *)from);
Bram Moolenaar3576da72008-12-30 15:15:57 +00006227 return -1;
6228 }
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006229 /* If it fails for one temp name it will most likely fail
6230 * for any temp name, give up. */
6231 return -1;
Bram Moolenaar3576da72008-12-30 15:15:57 +00006232 }
Bram Moolenaar3576da72008-12-30 15:15:57 +00006233 }
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006234 return -1;
Bram Moolenaar3576da72008-12-30 15:15:57 +00006235 }
6236#endif
6237
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238 /*
6239 * Delete the "to" file, this is required on some systems to make the
6240 * mch_rename() work, on other systems it makes sure that we don't have
6241 * two files when the mch_rename() fails.
6242 */
6243
6244#ifdef AMIGA
6245 /*
6246 * With MSDOS-compatible filesystems (crossdos, messydos) it is possible
6247 * that the name of the "to" file is the same as the "from" file, even
Bram Moolenaar7263a772007-05-10 17:35:54 +00006248 * though the names are different. To avoid the chance of accidentally
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 * deleting the "from" file (horror!) we lock it during the remove.
6250 *
6251 * When used for making a backup before writing the file: This should not
6252 * happen with ":w", because startscript() should detect this problem and
6253 * set buf->b_shortname, causing modname() to return a correct ".bak" file
6254 * name. This problem does exist with ":w filename", but then the
6255 * original file will be somewhere else so the backup isn't really
6256 * important. If autoscripting is off the rename may fail.
6257 */
6258 flock = Lock((UBYTE *)from, (long)ACCESS_READ);
6259#endif
6260 mch_remove(to);
6261#ifdef AMIGA
6262 if (flock)
6263 UnLock(flock);
6264#endif
6265
6266 /*
6267 * First try a normal rename, return if it works.
6268 */
6269 if (mch_rename((char *)from, (char *)to) == 0)
6270 return 0;
6271
6272 /*
6273 * Rename() failed, try copying the file.
6274 */
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006275 perm = mch_getperm(from);
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006276#ifdef HAVE_ACL
6277 /* For systems that support ACL: get the ACL from the original file. */
6278 acl = mch_get_acl(from);
6279#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 fd_in = mch_open((char *)from, O_RDONLY|O_EXTRA, 0);
6281 if (fd_in == -1)
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006282 {
6283#ifdef HAVE_ACL
6284 mch_free_acl(acl);
6285#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286 return -1;
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006287 }
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006288
6289 /* Create the new file with same permissions as the original. */
Bram Moolenaara5792f52005-11-23 21:25:05 +00006290 fd_out = mch_open((char *)to,
6291 O_CREAT|O_EXCL|O_WRONLY|O_EXTRA|O_NOFOLLOW, (int)perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 if (fd_out == -1)
6293 {
6294 close(fd_in);
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006295#ifdef HAVE_ACL
6296 mch_free_acl(acl);
6297#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006298 return -1;
6299 }
6300
6301 buffer = (char *)alloc(BUFSIZE);
6302 if (buffer == NULL)
6303 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006304 close(fd_out);
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006305 close(fd_in);
6306#ifdef HAVE_ACL
6307 mch_free_acl(acl);
6308#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006309 return -1;
6310 }
6311
6312 while ((n = vim_read(fd_in, buffer, BUFSIZE)) > 0)
6313 if (vim_write(fd_out, buffer, n) != n)
6314 {
6315 errmsg = _("E208: Error writing to \"%s\"");
6316 break;
6317 }
6318
6319 vim_free(buffer);
6320 close(fd_in);
6321 if (close(fd_out) < 0)
6322 errmsg = _("E209: Error closing \"%s\"");
6323 if (n < 0)
6324 {
6325 errmsg = _("E210: Error reading \"%s\"");
6326 to = from;
6327 }
Bram Moolenaar7263a772007-05-10 17:35:54 +00006328#ifndef UNIX /* for Unix mch_open() already set the permission */
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006329 mch_setperm(to, perm);
Bram Moolenaarc6039d82005-12-02 00:44:04 +00006330#endif
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006331#ifdef HAVE_ACL
6332 mch_set_acl(to, acl);
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006333 mch_free_acl(acl);
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 if (errmsg != NULL)
6336 {
6337 EMSG2(errmsg, to);
6338 return -1;
6339 }
6340 mch_remove(from);
6341 return 0;
6342}
6343
6344static int already_warned = FALSE;
6345
6346/*
6347 * Check if any not hidden buffer has been changed.
6348 * Postpone the check if there are characters in the stuff buffer, a global
6349 * command is being executed, a mapping is being executed or an autocommand is
6350 * busy.
6351 * Returns TRUE if some message was written (screen should be redrawn and
6352 * cursor positioned).
6353 */
6354 int
6355check_timestamps(focus)
6356 int focus; /* called for GUI focus event */
6357{
6358 buf_T *buf;
6359 int didit = 0;
6360 int n;
6361
6362 /* Don't check timestamps while system() or another low-level function may
6363 * cause us to lose and gain focus. */
6364 if (no_check_timestamps > 0)
6365 return FALSE;
6366
6367 /* Avoid doing a check twice. The OK/Reload dialog can cause a focus
6368 * event and we would keep on checking if the file is steadily growing.
6369 * Do check again after typing something. */
6370 if (focus && did_check_timestamps)
6371 {
6372 need_check_timestamps = TRUE;
6373 return FALSE;
6374 }
6375
6376 if (!stuff_empty() || global_busy || !typebuf_typed()
6377#ifdef FEAT_AUTOCMD
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00006378 || autocmd_busy || curbuf_lock > 0 || allbuf_lock > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379#endif
6380 )
6381 need_check_timestamps = TRUE; /* check later */
6382 else
6383 {
6384 ++no_wait_return;
6385 did_check_timestamps = TRUE;
6386 already_warned = FALSE;
6387 for (buf = firstbuf; buf != NULL; )
6388 {
6389 /* Only check buffers in a window. */
6390 if (buf->b_nwindows > 0)
6391 {
6392 n = buf_check_timestamp(buf, focus);
6393 if (didit < n)
6394 didit = n;
6395 if (n > 0 && !buf_valid(buf))
6396 {
6397 /* Autocommands have removed the buffer, start at the
6398 * first one again. */
6399 buf = firstbuf;
6400 continue;
6401 }
6402 }
6403 buf = buf->b_next;
6404 }
6405 --no_wait_return;
6406 need_check_timestamps = FALSE;
6407 if (need_wait_return && didit == 2)
6408 {
6409 /* make sure msg isn't overwritten */
6410 msg_puts((char_u *)"\n");
6411 out_flush();
6412 }
6413 }
6414 return didit;
6415}
6416
6417/*
6418 * Move all the lines from buffer "frombuf" to buffer "tobuf".
6419 * Return OK or FAIL. When FAIL "tobuf" is incomplete and/or "frombuf" is not
6420 * empty.
6421 */
6422 static int
6423move_lines(frombuf, tobuf)
6424 buf_T *frombuf;
6425 buf_T *tobuf;
6426{
6427 buf_T *tbuf = curbuf;
6428 int retval = OK;
6429 linenr_T lnum;
6430 char_u *p;
6431
6432 /* Copy the lines in "frombuf" to "tobuf". */
6433 curbuf = tobuf;
6434 for (lnum = 1; lnum <= frombuf->b_ml.ml_line_count; ++lnum)
6435 {
6436 p = vim_strsave(ml_get_buf(frombuf, lnum, FALSE));
6437 if (p == NULL || ml_append(lnum - 1, p, 0, FALSE) == FAIL)
6438 {
6439 vim_free(p);
6440 retval = FAIL;
6441 break;
6442 }
6443 vim_free(p);
6444 }
6445
6446 /* Delete all the lines in "frombuf". */
6447 if (retval != FAIL)
6448 {
6449 curbuf = frombuf;
Bram Moolenaar9460b9d2007-01-09 14:37:01 +00006450 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0; --lnum)
6451 if (ml_delete(lnum, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006452 {
6453 /* Oops! We could try putting back the saved lines, but that
6454 * might fail again... */
6455 retval = FAIL;
6456 break;
6457 }
6458 }
6459
6460 curbuf = tbuf;
6461 return retval;
6462}
6463
6464/*
6465 * Check if buffer "buf" has been changed.
6466 * Also check if the file for a new buffer unexpectedly appeared.
6467 * return 1 if a changed buffer was found.
6468 * return 2 if a message has been displayed.
6469 * return 0 otherwise.
6470 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006471 int
6472buf_check_timestamp(buf, focus)
6473 buf_T *buf;
Bram Moolenaar78a15312009-05-15 19:33:18 +00006474 int focus UNUSED; /* called for GUI focus event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475{
6476 struct stat st;
6477 int stat_res;
6478 int retval = 0;
6479 char_u *path;
6480 char_u *tbuf;
6481 char *mesg = NULL;
Bram Moolenaar44ecf652005-03-07 23:09:59 +00006482 char *mesg2 = "";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006483 int helpmesg = FALSE;
6484 int reload = FALSE;
6485#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6486 int can_reload = FALSE;
6487#endif
6488 size_t orig_size = buf->b_orig_size;
6489 int orig_mode = buf->b_orig_mode;
6490#ifdef FEAT_GUI
6491 int save_mouse_correct = need_mouse_correct;
6492#endif
6493#ifdef FEAT_AUTOCMD
6494 static int busy = FALSE;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006495 int n;
6496 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006498 char *reason;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006499
6500 /* If there is no file name, the buffer is not loaded, 'buftype' is
6501 * set, we are in the middle of a save or being called recursively: ignore
6502 * this buffer. */
6503 if (buf->b_ffname == NULL
6504 || buf->b_ml.ml_mfp == NULL
6505#if defined(FEAT_QUICKFIX)
6506 || *buf->b_p_bt != NUL
6507#endif
6508 || buf->b_saving
6509#ifdef FEAT_AUTOCMD
6510 || busy
6511#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +00006512#ifdef FEAT_NETBEANS_INTG
6513 || isNetbeansBuffer(buf)
6514#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006515 )
6516 return 0;
6517
6518 if ( !(buf->b_flags & BF_NOTEDITED)
6519 && buf->b_mtime != 0
6520 && ((stat_res = mch_stat((char *)buf->b_ffname, &st)) < 0
6521 || time_differs((long)st.st_mtime, buf->b_mtime)
6522#ifdef HAVE_ST_MODE
6523 || (int)st.st_mode != buf->b_orig_mode
6524#else
6525 || mch_getperm(buf->b_ffname) != buf->b_orig_mode
6526#endif
6527 ))
6528 {
6529 retval = 1;
6530
Bram Moolenaar316059c2006-01-14 21:18:42 +00006531 /* set b_mtime to stop further warnings (e.g., when executing
6532 * FileChangedShell autocmd) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006533 if (stat_res < 0)
6534 {
6535 buf->b_mtime = 0;
6536 buf->b_orig_size = 0;
6537 buf->b_orig_mode = 0;
6538 }
6539 else
6540 buf_store_time(buf, &st, buf->b_ffname);
6541
6542 /* Don't do anything for a directory. Might contain the file
6543 * explorer. */
6544 if (mch_isdir(buf->b_fname))
6545 ;
6546
6547 /*
6548 * If 'autoread' is set, the buffer has no changes and the file still
6549 * exists, reload the buffer. Use the buffer-local option value if it
6550 * was set, the global option value otherwise.
6551 */
6552 else if ((buf->b_p_ar >= 0 ? buf->b_p_ar : p_ar)
6553 && !bufIsChanged(buf) && stat_res >= 0)
6554 reload = TRUE;
6555 else
6556 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006557 if (stat_res < 0)
6558 reason = "deleted";
6559 else if (bufIsChanged(buf))
6560 reason = "conflict";
6561 else if (orig_size != buf->b_orig_size || buf_contents_changed(buf))
6562 reason = "changed";
6563 else if (orig_mode != buf->b_orig_mode)
6564 reason = "mode";
6565 else
6566 reason = "time";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006567
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006568#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006569 /*
6570 * Only give the warning if there are no FileChangedShell
6571 * autocommands.
6572 * Avoid being called recursively by setting "busy".
6573 */
6574 busy = TRUE;
Bram Moolenaar1e015462005-09-25 22:16:38 +00006575# ifdef FEAT_EVAL
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006576 set_vim_var_string(VV_FCS_REASON, (char_u *)reason, -1);
6577 set_vim_var_string(VV_FCS_CHOICE, (char_u *)"", -1);
Bram Moolenaar1e015462005-09-25 22:16:38 +00006578# endif
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00006579 ++allbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580 n = apply_autocmds(EVENT_FILECHANGEDSHELL,
6581 buf->b_fname, buf->b_fname, FALSE, buf);
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00006582 --allbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006583 busy = FALSE;
6584 if (n)
6585 {
6586 if (!buf_valid(buf))
6587 EMSG(_("E246: FileChangedShell autocommand deleted buffer"));
Bram Moolenaar1e015462005-09-25 22:16:38 +00006588# ifdef FEAT_EVAL
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006589 s = get_vim_var_str(VV_FCS_CHOICE);
6590 if (STRCMP(s, "reload") == 0 && *reason != 'd')
6591 reload = TRUE;
6592 else if (STRCMP(s, "ask") == 0)
6593 n = FALSE;
6594 else
Bram Moolenaar1e015462005-09-25 22:16:38 +00006595# endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006596 return 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006598 if (!n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599#endif
6600 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006601 if (*reason == 'd')
6602 mesg = _("E211: File \"%s\" no longer available");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006603 else
6604 {
6605 helpmesg = TRUE;
6606#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6607 can_reload = TRUE;
6608#endif
6609 /*
6610 * Check if the file contents really changed to avoid
6611 * giving a warning when only the timestamp was set (e.g.,
6612 * checked out of CVS). Always warn when the buffer was
6613 * changed.
6614 */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006615 if (reason[2] == 'n')
6616 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617 mesg = _("W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as well");
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006618 mesg2 = _("See \":help W12\" for more info.");
6619 }
6620 else if (reason[1] == 'h')
6621 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006622 mesg = _("W11: Warning: File \"%s\" has changed since editing started");
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006623 mesg2 = _("See \":help W11\" for more info.");
6624 }
6625 else if (*reason == 'm')
6626 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627 mesg = _("W16: Warning: Mode of file \"%s\" has changed since editing started");
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006628 mesg2 = _("See \":help W16\" for more info.");
6629 }
Bram Moolenaar85388b52009-06-24 09:58:32 +00006630 else
6631 /* Only timestamp changed, store it to avoid a warning
6632 * in check_mtime() later. */
6633 buf->b_mtime_read = buf->b_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006634 }
6635 }
6636 }
6637
6638 }
6639 else if ((buf->b_flags & BF_NEW) && !(buf->b_flags & BF_NEW_W)
6640 && vim_fexists(buf->b_ffname))
6641 {
6642 retval = 1;
6643 mesg = _("W13: Warning: File \"%s\" has been created after editing started");
6644 buf->b_flags |= BF_NEW_W;
6645#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6646 can_reload = TRUE;
6647#endif
6648 }
6649
6650 if (mesg != NULL)
6651 {
6652 path = home_replace_save(buf, buf->b_fname);
6653 if (path != NULL)
6654 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006655 if (!helpmesg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006656 mesg2 = "";
6657 tbuf = alloc((unsigned)(STRLEN(path) + STRLEN(mesg)
6658 + STRLEN(mesg2) + 2));
6659 sprintf((char *)tbuf, mesg, path);
Bram Moolenaar496c5262009-03-18 14:42:00 +00006660#ifdef FEAT_EVAL
6661 /* Set warningmsg here, before the unimportant and output-specific
6662 * mesg2 has been appended. */
6663 set_vim_var_string(VV_WARNINGMSG, tbuf, -1);
6664#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006665#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6666 if (can_reload)
6667 {
6668 if (*mesg2 != NUL)
6669 {
6670 STRCAT(tbuf, "\n");
6671 STRCAT(tbuf, mesg2);
6672 }
6673 if (do_dialog(VIM_WARNING, (char_u *)_("Warning"), tbuf,
6674 (char_u *)_("&OK\n&Load File"), 1, NULL) == 2)
6675 reload = TRUE;
6676 }
6677 else
6678#endif
6679 if (State > NORMAL_BUSY || (State & CMDLINE) || already_warned)
6680 {
6681 if (*mesg2 != NUL)
6682 {
6683 STRCAT(tbuf, "; ");
6684 STRCAT(tbuf, mesg2);
6685 }
6686 EMSG(tbuf);
6687 retval = 2;
6688 }
6689 else
6690 {
Bram Moolenaared203462004-06-16 11:19:22 +00006691# ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006692 if (!autocmd_busy)
Bram Moolenaared203462004-06-16 11:19:22 +00006693# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006694 {
6695 msg_start();
6696 msg_puts_attr(tbuf, hl_attr(HLF_E) + MSG_HIST);
6697 if (*mesg2 != NUL)
6698 msg_puts_attr((char_u *)mesg2,
6699 hl_attr(HLF_W) + MSG_HIST);
6700 msg_clr_eos();
6701 (void)msg_end();
6702 if (emsg_silent == 0)
6703 {
6704 out_flush();
Bram Moolenaared203462004-06-16 11:19:22 +00006705# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706 if (!focus)
Bram Moolenaared203462004-06-16 11:19:22 +00006707# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006708 /* give the user some time to think about it */
6709 ui_delay(1000L, TRUE);
6710
6711 /* don't redraw and erase the message */
6712 redraw_cmdline = FALSE;
6713 }
6714 }
6715 already_warned = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716 }
6717
6718 vim_free(path);
6719 vim_free(tbuf);
6720 }
6721 }
6722
6723 if (reload)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006724 /* Reload the buffer. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006725 buf_reload(buf, orig_mode);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006726
Bram Moolenaar56718732006-03-15 22:53:57 +00006727#ifdef FEAT_AUTOCMD
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006728 /* Trigger FileChangedShell when the file was changed in any way. */
6729 if (buf_valid(buf) && retval != 0)
Bram Moolenaar56718732006-03-15 22:53:57 +00006730 (void)apply_autocmds(EVENT_FILECHANGEDSHELLPOST,
6731 buf->b_fname, buf->b_fname, FALSE, buf);
6732#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733#ifdef FEAT_GUI
6734 /* restore this in case an autocommand has set it; it would break
6735 * 'mousefocus' */
6736 need_mouse_correct = save_mouse_correct;
6737#endif
6738
6739 return retval;
6740}
6741
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006742/*
6743 * Reload a buffer that is already loaded.
6744 * Used when the file was changed outside of Vim.
Bram Moolenaar316059c2006-01-14 21:18:42 +00006745 * "orig_mode" is buf->b_orig_mode before the need for reloading was detected.
6746 * buf->b_orig_mode may have been reset already.
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006747 */
6748 void
Bram Moolenaar316059c2006-01-14 21:18:42 +00006749buf_reload(buf, orig_mode)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006750 buf_T *buf;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006751 int orig_mode;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006752{
6753 exarg_T ea;
6754 pos_T old_cursor;
6755 linenr_T old_topline;
6756 int old_ro = buf->b_p_ro;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006757 buf_T *savebuf;
6758 int saved = OK;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006759 aco_save_T aco;
6760
6761 /* set curwin/curbuf for "buf" and save some things */
6762 aucmd_prepbuf(&aco, buf);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006763
6764 /* We only want to read the text from the file, not reset the syntax
6765 * highlighting, clear marks, diff status, etc. Force the fileformat
6766 * and encoding to be the same. */
6767 if (prep_exarg(&ea, buf) == OK)
6768 {
6769 old_cursor = curwin->w_cursor;
6770 old_topline = curwin->w_topline;
6771
6772 /*
6773 * To behave like when a new file is edited (matters for
6774 * BufReadPost autocommands) we first need to delete the current
6775 * buffer contents. But if reading the file fails we should keep
6776 * the old contents. Can't use memory only, the file might be
6777 * too big. Use a hidden buffer to move the buffer contents to.
6778 */
6779 if (bufempty())
6780 savebuf = NULL;
6781 else
6782 {
6783 /* Allocate a buffer without putting it in the buffer list. */
6784 savebuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
Bram Moolenaar8424a622006-04-19 21:23:36 +00006785 if (savebuf != NULL && buf == curbuf)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006786 {
6787 /* Open the memline. */
6788 curbuf = savebuf;
6789 curwin->w_buffer = savebuf;
Bram Moolenaar4770d092006-01-12 23:22:24 +00006790 saved = ml_open(curbuf);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006791 curbuf = buf;
6792 curwin->w_buffer = buf;
6793 }
Bram Moolenaar8424a622006-04-19 21:23:36 +00006794 if (savebuf == NULL || saved == FAIL || buf != curbuf
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006795 || move_lines(buf, savebuf) == FAIL)
6796 {
6797 EMSG2(_("E462: Could not prepare for reloading \"%s\""),
6798 buf->b_fname);
6799 saved = FAIL;
6800 }
6801 }
6802
6803 if (saved == OK)
6804 {
6805 curbuf->b_flags |= BF_CHECK_RO; /* check for RO again */
6806#ifdef FEAT_AUTOCMD
6807 keep_filetype = TRUE; /* don't detect 'filetype' */
6808#endif
6809 if (readfile(buf->b_ffname, buf->b_fname, (linenr_T)0,
6810 (linenr_T)0,
6811 (linenr_T)MAXLNUM, &ea, READ_NEW) == FAIL)
6812 {
6813#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6814 if (!aborting())
6815#endif
6816 EMSG2(_("E321: Could not reload \"%s\""), buf->b_fname);
Bram Moolenaar8424a622006-04-19 21:23:36 +00006817 if (savebuf != NULL && buf_valid(savebuf) && buf == curbuf)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006818 {
6819 /* Put the text back from the save buffer. First
6820 * delete any lines that readfile() added. */
6821 while (!bufempty())
Bram Moolenaar8424a622006-04-19 21:23:36 +00006822 if (ml_delete(buf->b_ml.ml_line_count, FALSE) == FAIL)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006823 break;
6824 (void)move_lines(savebuf, buf);
6825 }
6826 }
Bram Moolenaar8424a622006-04-19 21:23:36 +00006827 else if (buf == curbuf)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006828 {
6829 /* Mark the buffer as unmodified and free undo info. */
6830 unchanged(buf, TRUE);
6831 u_blockfree(buf);
6832 u_clearall(buf);
6833 }
6834 }
6835 vim_free(ea.cmd);
6836
Bram Moolenaar8424a622006-04-19 21:23:36 +00006837 if (savebuf != NULL && buf_valid(savebuf))
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006838 wipe_buffer(savebuf, FALSE);
6839
6840#ifdef FEAT_DIFF
6841 /* Invalidate diff info if necessary. */
Bram Moolenaar8424a622006-04-19 21:23:36 +00006842 diff_invalidate(curbuf);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006843#endif
6844
6845 /* Restore the topline and cursor position and check it (lines may
6846 * have been removed). */
6847 if (old_topline > curbuf->b_ml.ml_line_count)
6848 curwin->w_topline = curbuf->b_ml.ml_line_count;
6849 else
6850 curwin->w_topline = old_topline;
6851 curwin->w_cursor = old_cursor;
6852 check_cursor();
6853 update_topline();
6854#ifdef FEAT_AUTOCMD
6855 keep_filetype = FALSE;
6856#endif
6857#ifdef FEAT_FOLDING
6858 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00006859 win_T *wp;
6860 tabpage_T *tp;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006861
6862 /* Update folds unless they are defined manually. */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00006863 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006864 if (wp->w_buffer == curwin->w_buffer
6865 && !foldmethodIsManual(wp))
6866 foldUpdateAll(wp);
6867 }
6868#endif
6869 /* If the mode didn't change and 'readonly' was set, keep the old
6870 * value; the user probably used the ":view" command. But don't
6871 * reset it, might have had a read error. */
6872 if (orig_mode == curbuf->b_orig_mode)
6873 curbuf->b_p_ro |= old_ro;
6874 }
6875
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006876 /* restore curwin/curbuf and a few other things */
6877 aucmd_restbuf(&aco);
6878 /* Careful: autocommands may have made "buf" invalid! */
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006879}
6880
Bram Moolenaar071d4272004-06-13 20:20:40 +00006881 void
6882buf_store_time(buf, st, fname)
6883 buf_T *buf;
6884 struct stat *st;
Bram Moolenaar78a15312009-05-15 19:33:18 +00006885 char_u *fname UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006886{
6887 buf->b_mtime = (long)st->st_mtime;
6888 buf->b_orig_size = (size_t)st->st_size;
6889#ifdef HAVE_ST_MODE
6890 buf->b_orig_mode = (int)st->st_mode;
6891#else
6892 buf->b_orig_mode = mch_getperm(fname);
6893#endif
6894}
6895
6896/*
6897 * Adjust the line with missing eol, used for the next write.
6898 * Used for do_filter(), when the input lines for the filter are deleted.
6899 */
6900 void
6901write_lnum_adjust(offset)
6902 linenr_T offset;
6903{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006904 if (write_no_eol_lnum != 0) /* only if there is a missing eol */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 write_no_eol_lnum += offset;
6906}
6907
6908#if defined(TEMPDIRNAMES) || defined(PROTO)
6909static long temp_count = 0; /* Temp filename counter. */
6910
6911/*
6912 * Delete the temp directory and all files it contains.
6913 */
6914 void
6915vim_deltempdir()
6916{
6917 char_u **files;
6918 int file_count;
6919 int i;
6920
6921 if (vim_tempdir != NULL)
6922 {
6923 sprintf((char *)NameBuff, "%s*", vim_tempdir);
6924 if (gen_expand_wildcards(1, &NameBuff, &file_count, &files,
6925 EW_DIR|EW_FILE|EW_SILENT) == OK)
6926 {
6927 for (i = 0; i < file_count; ++i)
6928 mch_remove(files[i]);
6929 FreeWild(file_count, files);
6930 }
6931 gettail(NameBuff)[-1] = NUL;
6932 (void)mch_rmdir(NameBuff);
6933
6934 vim_free(vim_tempdir);
6935 vim_tempdir = NULL;
6936 }
6937}
6938#endif
6939
6940/*
6941 * vim_tempname(): Return a unique name that can be used for a temp file.
6942 *
6943 * The temp file is NOT created.
6944 *
6945 * The returned pointer is to allocated memory.
6946 * The returned pointer is NULL if no valid name was found.
6947 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006948 char_u *
6949vim_tempname(extra_char)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006950 int extra_char UNUSED; /* char to use in the name instead of '?' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006951{
6952#ifdef USE_TMPNAM
6953 char_u itmp[L_tmpnam]; /* use tmpnam() */
6954#else
6955 char_u itmp[TEMPNAMELEN];
6956#endif
6957
6958#ifdef TEMPDIRNAMES
6959 static char *(tempdirs[]) = {TEMPDIRNAMES};
6960 int i;
6961 long nr;
6962 long off;
6963# ifndef EEXIST
6964 struct stat st;
6965# endif
6966
6967 /*
6968 * This will create a directory for private use by this instance of Vim.
6969 * This is done once, and the same directory is used for all temp files.
6970 * This method avoids security problems because of symlink attacks et al.
6971 * It's also a bit faster, because we only need to check for an existing
6972 * file when creating the directory and not for each temp file.
6973 */
6974 if (vim_tempdir == NULL)
6975 {
6976 /*
6977 * Try the entries in TEMPDIRNAMES to create the temp directory.
6978 */
Bram Moolenaar78a15312009-05-15 19:33:18 +00006979 for (i = 0; i < (int)(sizeof(tempdirs) / sizeof(char *)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980 {
6981 /* expand $TMP, leave room for "/v1100000/999999999" */
6982 expand_env((char_u *)tempdirs[i], itmp, TEMPNAMELEN - 20);
6983 if (mch_isdir(itmp)) /* directory exists */
6984 {
6985# ifdef __EMX__
6986 /* If $TMP contains a forward slash (perhaps using bash or
6987 * tcsh), don't add a backslash, use a forward slash!
6988 * Adding 2 backslashes didn't work. */
6989 if (vim_strchr(itmp, '/') != NULL)
6990 STRCAT(itmp, "/");
6991 else
6992# endif
6993 add_pathsep(itmp);
6994
6995 /* Get an arbitrary number of up to 6 digits. When it's
6996 * unlikely that it already exists it will be faster,
6997 * otherwise it doesn't matter. The use of mkdir() avoids any
6998 * security problems because of the predictable number. */
6999 nr = (mch_get_pid() + (long)time(NULL)) % 1000000L;
7000
7001 /* Try up to 10000 different values until we find a name that
7002 * doesn't exist. */
7003 for (off = 0; off < 10000L; ++off)
7004 {
7005 int r;
7006#if defined(UNIX) || defined(VMS)
7007 mode_t umask_save;
7008#endif
7009
7010 sprintf((char *)itmp + STRLEN(itmp), "v%ld", nr + off);
7011# ifndef EEXIST
7012 /* If mkdir() does not set errno to EEXIST, check for
7013 * existing file here. There is a race condition then,
7014 * although it's fail-safe. */
7015 if (mch_stat((char *)itmp, &st) >= 0)
7016 continue;
7017# endif
7018#if defined(UNIX) || defined(VMS)
7019 /* Make sure the umask doesn't remove the executable bit.
7020 * "repl" has been reported to use "177". */
7021 umask_save = umask(077);
7022#endif
7023 r = vim_mkdir(itmp, 0700);
7024#if defined(UNIX) || defined(VMS)
7025 (void)umask(umask_save);
7026#endif
7027 if (r == 0)
7028 {
7029 char_u *buf;
7030
7031 /* Directory was created, use this name.
7032 * Expand to full path; When using the current
7033 * directory a ":cd" would confuse us. */
7034 buf = alloc((unsigned)MAXPATHL + 1);
7035 if (buf != NULL)
7036 {
7037 if (vim_FullName(itmp, buf, MAXPATHL, FALSE)
7038 == FAIL)
7039 STRCPY(buf, itmp);
7040# ifdef __EMX__
7041 if (vim_strchr(buf, '/') != NULL)
7042 STRCAT(buf, "/");
7043 else
7044# endif
7045 add_pathsep(buf);
7046 vim_tempdir = vim_strsave(buf);
7047 vim_free(buf);
7048 }
7049 break;
7050 }
7051# ifdef EEXIST
7052 /* If the mkdir() didn't fail because the file/dir exists,
7053 * we probably can't create any dir here, try another
7054 * place. */
7055 if (errno != EEXIST)
7056# endif
7057 break;
7058 }
7059 if (vim_tempdir != NULL)
7060 break;
7061 }
7062 }
7063 }
7064
7065 if (vim_tempdir != NULL)
7066 {
7067 /* There is no need to check if the file exists, because we own the
7068 * directory and nobody else creates a file in it. */
7069 sprintf((char *)itmp, "%s%ld", vim_tempdir, temp_count++);
7070 return vim_strsave(itmp);
7071 }
7072
7073 return NULL;
7074
7075#else /* TEMPDIRNAMES */
7076
7077# ifdef WIN3264
7078 char szTempFile[_MAX_PATH + 1];
7079 char buf4[4];
7080 char_u *retval;
7081 char_u *p;
7082
7083 STRCPY(itmp, "");
7084 if (GetTempPath(_MAX_PATH, szTempFile) == 0)
7085 szTempFile[0] = NUL; /* GetTempPath() failed, use current dir */
7086 strcpy(buf4, "VIM");
7087 buf4[2] = extra_char; /* make it "VIa", "VIb", etc. */
7088 if (GetTempFileName(szTempFile, buf4, 0, itmp) == 0)
7089 return NULL;
7090 /* GetTempFileName() will create the file, we don't want that */
7091 (void)DeleteFile(itmp);
7092
7093 /* Backslashes in a temp file name cause problems when filtering with
7094 * "sh". NOTE: This also checks 'shellcmdflag' to help those people who
7095 * didn't set 'shellslash'. */
7096 retval = vim_strsave(itmp);
7097 if (*p_shcf == '-' || p_ssl)
7098 for (p = retval; *p; ++p)
7099 if (*p == '\\')
7100 *p = '/';
7101 return retval;
7102
7103# else /* WIN3264 */
7104
7105# ifdef USE_TMPNAM
7106 /* tmpnam() will make its own name */
7107 if (*tmpnam((char *)itmp) == NUL)
7108 return NULL;
7109# else
7110 char_u *p;
7111
7112# ifdef VMS_TEMPNAM
7113 /* mktemp() is not working on VMS. It seems to be
7114 * a do-nothing function. Therefore we use tempnam().
7115 */
7116 sprintf((char *)itmp, "VIM%c", extra_char);
7117 p = (char_u *)tempnam("tmp:", (char *)itmp);
7118 if (p != NULL)
7119 {
7120 /* VMS will use '.LOG' if we don't explicitly specify an extension,
7121 * and VIM will then be unable to find the file later */
7122 STRCPY(itmp, p);
7123 STRCAT(itmp, ".txt");
7124 free(p);
7125 }
7126 else
7127 return NULL;
7128# else
7129 STRCPY(itmp, TEMPNAME);
7130 if ((p = vim_strchr(itmp, '?')) != NULL)
7131 *p = extra_char;
7132 if (mktemp((char *)itmp) == NULL)
7133 return NULL;
7134# endif
7135# endif
7136
7137 return vim_strsave(itmp);
7138# endif /* WIN3264 */
7139#endif /* TEMPDIRNAMES */
7140}
7141
7142#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
7143/*
7144 * Convert all backslashes in fname to forward slashes in-place.
7145 */
7146 void
7147forward_slash(fname)
7148 char_u *fname;
7149{
7150 char_u *p;
7151
7152 for (p = fname; *p != NUL; ++p)
7153# ifdef FEAT_MBYTE
7154 /* The Big5 encoding can have '\' in the trail byte. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007155 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007156 ++p;
7157 else
7158# endif
7159 if (*p == '\\')
7160 *p = '/';
7161}
7162#endif
7163
7164
7165/*
7166 * Code for automatic commands.
7167 *
7168 * Only included when "FEAT_AUTOCMD" has been defined.
7169 */
7170
7171#if defined(FEAT_AUTOCMD) || defined(PROTO)
7172
7173/*
7174 * The autocommands are stored in a list for each event.
7175 * Autocommands for the same pattern, that are consecutive, are joined
7176 * together, to avoid having to match the pattern too often.
7177 * The result is an array of Autopat lists, which point to AutoCmd lists:
7178 *
7179 * first_autopat[0] --> Autopat.next --> Autopat.next --> NULL
7180 * Autopat.cmds Autopat.cmds
7181 * | |
7182 * V V
7183 * AutoCmd.next AutoCmd.next
7184 * | |
7185 * V V
7186 * AutoCmd.next NULL
7187 * |
7188 * V
7189 * NULL
7190 *
7191 * first_autopat[1] --> Autopat.next --> NULL
7192 * Autopat.cmds
7193 * |
7194 * V
7195 * AutoCmd.next
7196 * |
7197 * V
7198 * NULL
7199 * etc.
7200 *
7201 * The order of AutoCmds is important, this is the order in which they were
7202 * defined and will have to be executed.
7203 */
7204typedef struct AutoCmd
7205{
7206 char_u *cmd; /* The command to be executed (NULL
7207 when command has been removed) */
7208 char nested; /* If autocommands nest here */
7209 char last; /* last command in list */
7210#ifdef FEAT_EVAL
7211 scid_T scriptID; /* script ID where defined */
7212#endif
7213 struct AutoCmd *next; /* Next AutoCmd in list */
7214} AutoCmd;
7215
7216typedef struct AutoPat
7217{
7218 int group; /* group ID */
7219 char_u *pat; /* pattern as typed (NULL when pattern
7220 has been removed) */
7221 int patlen; /* strlen() of pat */
Bram Moolenaar748bf032005-02-02 23:04:36 +00007222 regprog_T *reg_prog; /* compiled regprog for pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007223 char allow_dirs; /* Pattern may match whole path */
7224 char last; /* last pattern for apply_autocmds() */
7225 AutoCmd *cmds; /* list of commands to do */
7226 struct AutoPat *next; /* next AutoPat in AutoPat list */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007227 int buflocal_nr; /* !=0 for buffer-local AutoPat */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007228} AutoPat;
7229
7230static struct event_name
7231{
7232 char *name; /* event name */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007233 event_T event; /* event number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007234} event_names[] =
7235{
7236 {"BufAdd", EVENT_BUFADD},
7237 {"BufCreate", EVENT_BUFADD},
7238 {"BufDelete", EVENT_BUFDELETE},
7239 {"BufEnter", EVENT_BUFENTER},
7240 {"BufFilePost", EVENT_BUFFILEPOST},
7241 {"BufFilePre", EVENT_BUFFILEPRE},
7242 {"BufHidden", EVENT_BUFHIDDEN},
7243 {"BufLeave", EVENT_BUFLEAVE},
7244 {"BufNew", EVENT_BUFNEW},
7245 {"BufNewFile", EVENT_BUFNEWFILE},
7246 {"BufRead", EVENT_BUFREADPOST},
7247 {"BufReadCmd", EVENT_BUFREADCMD},
7248 {"BufReadPost", EVENT_BUFREADPOST},
7249 {"BufReadPre", EVENT_BUFREADPRE},
7250 {"BufUnload", EVENT_BUFUNLOAD},
7251 {"BufWinEnter", EVENT_BUFWINENTER},
7252 {"BufWinLeave", EVENT_BUFWINLEAVE},
7253 {"BufWipeout", EVENT_BUFWIPEOUT},
7254 {"BufWrite", EVENT_BUFWRITEPRE},
7255 {"BufWritePost", EVENT_BUFWRITEPOST},
7256 {"BufWritePre", EVENT_BUFWRITEPRE},
7257 {"BufWriteCmd", EVENT_BUFWRITECMD},
7258 {"CmdwinEnter", EVENT_CMDWINENTER},
7259 {"CmdwinLeave", EVENT_CMDWINLEAVE},
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007260 {"ColorScheme", EVENT_COLORSCHEME},
Bram Moolenaar754b5602006-02-09 23:53:20 +00007261 {"CursorHold", EVENT_CURSORHOLD},
7262 {"CursorHoldI", EVENT_CURSORHOLDI},
7263 {"CursorMoved", EVENT_CURSORMOVED},
7264 {"CursorMovedI", EVENT_CURSORMOVEDI},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007265 {"EncodingChanged", EVENT_ENCODINGCHANGED},
7266 {"FileEncoding", EVENT_ENCODINGCHANGED},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267 {"FileAppendPost", EVENT_FILEAPPENDPOST},
7268 {"FileAppendPre", EVENT_FILEAPPENDPRE},
7269 {"FileAppendCmd", EVENT_FILEAPPENDCMD},
7270 {"FileChangedShell",EVENT_FILECHANGEDSHELL},
Bram Moolenaar56718732006-03-15 22:53:57 +00007271 {"FileChangedShellPost",EVENT_FILECHANGEDSHELLPOST},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007272 {"FileChangedRO", EVENT_FILECHANGEDRO},
7273 {"FileReadPost", EVENT_FILEREADPOST},
7274 {"FileReadPre", EVENT_FILEREADPRE},
7275 {"FileReadCmd", EVENT_FILEREADCMD},
7276 {"FileType", EVENT_FILETYPE},
7277 {"FileWritePost", EVENT_FILEWRITEPOST},
7278 {"FileWritePre", EVENT_FILEWRITEPRE},
7279 {"FileWriteCmd", EVENT_FILEWRITECMD},
7280 {"FilterReadPost", EVENT_FILTERREADPOST},
7281 {"FilterReadPre", EVENT_FILTERREADPRE},
7282 {"FilterWritePost", EVENT_FILTERWRITEPOST},
7283 {"FilterWritePre", EVENT_FILTERWRITEPRE},
7284 {"FocusGained", EVENT_FOCUSGAINED},
7285 {"FocusLost", EVENT_FOCUSLOST},
7286 {"FuncUndefined", EVENT_FUNCUNDEFINED},
7287 {"GUIEnter", EVENT_GUIENTER},
Bram Moolenaar265e5072006-08-29 16:13:22 +00007288 {"GUIFailed", EVENT_GUIFAILED},
Bram Moolenaar843ee412004-06-30 16:16:41 +00007289 {"InsertChange", EVENT_INSERTCHANGE},
7290 {"InsertEnter", EVENT_INSERTENTER},
7291 {"InsertLeave", EVENT_INSERTLEAVE},
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00007292 {"MenuPopup", EVENT_MENUPOPUP},
Bram Moolenaar7c626922005-02-07 22:01:03 +00007293 {"QuickFixCmdPost", EVENT_QUICKFIXCMDPOST},
7294 {"QuickFixCmdPre", EVENT_QUICKFIXCMDPRE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007295 {"RemoteReply", EVENT_REMOTEREPLY},
Bram Moolenaar9372a112005-12-06 19:59:18 +00007296 {"SessionLoadPost", EVENT_SESSIONLOADPOST},
Bram Moolenaar5c4bab02006-03-10 21:37:46 +00007297 {"ShellCmdPost", EVENT_SHELLCMDPOST},
7298 {"ShellFilterPost", EVENT_SHELLFILTERPOST},
Bram Moolenaara2031822006-03-07 22:29:51 +00007299 {"SourcePre", EVENT_SOURCEPRE},
Bram Moolenaar8dd1aa52007-01-16 20:33:19 +00007300 {"SourceCmd", EVENT_SOURCECMD},
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00007301 {"SpellFileMissing",EVENT_SPELLFILEMISSING},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007302 {"StdinReadPost", EVENT_STDINREADPOST},
7303 {"StdinReadPre", EVENT_STDINREADPRE},
Bram Moolenaarb815dac2005-12-07 20:59:24 +00007304 {"SwapExists", EVENT_SWAPEXISTS},
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007305 {"Syntax", EVENT_SYNTAX},
Bram Moolenaar70836c82006-02-20 21:28:49 +00007306 {"TabEnter", EVENT_TABENTER},
7307 {"TabLeave", EVENT_TABLEAVE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007308 {"TermChanged", EVENT_TERMCHANGED},
7309 {"TermResponse", EVENT_TERMRESPONSE},
7310 {"User", EVENT_USER},
7311 {"VimEnter", EVENT_VIMENTER},
7312 {"VimLeave", EVENT_VIMLEAVE},
7313 {"VimLeavePre", EVENT_VIMLEAVEPRE},
7314 {"WinEnter", EVENT_WINENTER},
7315 {"WinLeave", EVENT_WINLEAVE},
Bram Moolenaar56718732006-03-15 22:53:57 +00007316 {"VimResized", EVENT_VIMRESIZED},
Bram Moolenaar754b5602006-02-09 23:53:20 +00007317 {NULL, (event_T)0}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007318};
7319
7320static AutoPat *first_autopat[NUM_EVENTS] =
7321{
7322 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7323 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7324 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7325 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007326 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7327 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007328};
7329
7330/*
7331 * struct used to keep status while executing autocommands for an event.
7332 */
7333typedef struct AutoPatCmd
7334{
7335 AutoPat *curpat; /* next AutoPat to examine */
7336 AutoCmd *nextcmd; /* next AutoCmd to execute */
7337 int group; /* group being used */
7338 char_u *fname; /* fname to match with */
7339 char_u *sfname; /* sfname to match with */
7340 char_u *tail; /* tail of fname */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007341 event_T event; /* current event */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007342 int arg_bufnr; /* initially equal to <abuf>, set to zero when
7343 buf is deleted */
7344 struct AutoPatCmd *next; /* chain of active apc-s for auto-invalidation*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00007345} AutoPatCmd;
7346
Bram Moolenaard6f676d2005-06-01 21:51:55 +00007347static AutoPatCmd *active_apc_list = NULL; /* stack of active autocommands */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007348
Bram Moolenaar071d4272004-06-13 20:20:40 +00007349/*
7350 * augroups stores a list of autocmd group names.
7351 */
Bram Moolenaard6f676d2005-06-01 21:51:55 +00007352static garray_T augroups = {0, 0, sizeof(char_u *), 10, NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +00007353#define AUGROUP_NAME(i) (((char_u **)augroups.ga_data)[i])
7354
7355/*
7356 * The ID of the current group. Group 0 is the default one.
7357 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007358static int current_augroup = AUGROUP_DEFAULT;
7359
7360static int au_need_clean = FALSE; /* need to delete marked patterns */
7361
Bram Moolenaar754b5602006-02-09 23:53:20 +00007362static void show_autocmd __ARGS((AutoPat *ap, event_T event));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007363static void au_remove_pat __ARGS((AutoPat *ap));
7364static void au_remove_cmds __ARGS((AutoPat *ap));
7365static void au_cleanup __ARGS((void));
7366static int au_new_group __ARGS((char_u *name));
7367static void au_del_group __ARGS((char_u *name));
Bram Moolenaar754b5602006-02-09 23:53:20 +00007368static event_T event_name2nr __ARGS((char_u *start, char_u **end));
7369static char_u *event_nr2name __ARGS((event_T event));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007370static char_u *find_end_event __ARGS((char_u *arg, int have_group));
Bram Moolenaar754b5602006-02-09 23:53:20 +00007371static int event_ignored __ARGS((event_T event));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007372static int au_get_grouparg __ARGS((char_u **argp));
Bram Moolenaar754b5602006-02-09 23:53:20 +00007373static int do_autocmd_event __ARGS((event_T event, char_u *pat, int nested, char_u *cmd, int forceit, int group));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007374static char_u *getnextac __ARGS((int c, void *cookie, int indent));
Bram Moolenaar754b5602006-02-09 23:53:20 +00007375static int apply_autocmds_group __ARGS((event_T event, char_u *fname, char_u *fname_io, int force, int group, buf_T *buf, exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007376static void auto_next_pat __ARGS((AutoPatCmd *apc, int stop_at_last));
7377
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007378
Bram Moolenaar754b5602006-02-09 23:53:20 +00007379static event_T last_event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007380static int last_group;
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007381static int autocmd_blocked = 0; /* block all autocmds */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007382
7383/*
7384 * Show the autocommands for one AutoPat.
7385 */
7386 static void
7387show_autocmd(ap, event)
7388 AutoPat *ap;
Bram Moolenaar754b5602006-02-09 23:53:20 +00007389 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007390{
7391 AutoCmd *ac;
7392
7393 /* Check for "got_int" (here and at various places below), which is set
7394 * when "q" has been hit for the "--more--" prompt */
7395 if (got_int)
7396 return;
7397 if (ap->pat == NULL) /* pattern has been removed */
7398 return;
7399
7400 msg_putchar('\n');
7401 if (got_int)
7402 return;
7403 if (event != last_event || ap->group != last_group)
7404 {
7405 if (ap->group != AUGROUP_DEFAULT)
7406 {
7407 if (AUGROUP_NAME(ap->group) == NULL)
7408 msg_puts_attr((char_u *)_("--Deleted--"), hl_attr(HLF_E));
7409 else
7410 msg_puts_attr(AUGROUP_NAME(ap->group), hl_attr(HLF_T));
7411 msg_puts((char_u *)" ");
7412 }
7413 msg_puts_attr(event_nr2name(event), hl_attr(HLF_T));
7414 last_event = event;
7415 last_group = ap->group;
7416 msg_putchar('\n');
7417 if (got_int)
7418 return;
7419 }
7420 msg_col = 4;
7421 msg_outtrans(ap->pat);
7422
7423 for (ac = ap->cmds; ac != NULL; ac = ac->next)
7424 {
7425 if (ac->cmd != NULL) /* skip removed commands */
7426 {
7427 if (msg_col >= 14)
7428 msg_putchar('\n');
7429 msg_col = 14;
7430 if (got_int)
7431 return;
7432 msg_outtrans(ac->cmd);
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00007433#ifdef FEAT_EVAL
7434 if (p_verbose > 0)
7435 last_set_msg(ac->scriptID);
7436#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007437 if (got_int)
7438 return;
7439 if (ac->next != NULL)
7440 {
7441 msg_putchar('\n');
7442 if (got_int)
7443 return;
7444 }
7445 }
7446 }
7447}
7448
7449/*
7450 * Mark an autocommand pattern for deletion.
7451 */
7452 static void
7453au_remove_pat(ap)
7454 AutoPat *ap;
7455{
7456 vim_free(ap->pat);
7457 ap->pat = NULL;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007458 ap->buflocal_nr = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007459 au_need_clean = TRUE;
7460}
7461
7462/*
7463 * Mark all commands for a pattern for deletion.
7464 */
7465 static void
7466au_remove_cmds(ap)
7467 AutoPat *ap;
7468{
7469 AutoCmd *ac;
7470
7471 for (ac = ap->cmds; ac != NULL; ac = ac->next)
7472 {
7473 vim_free(ac->cmd);
7474 ac->cmd = NULL;
7475 }
7476 au_need_clean = TRUE;
7477}
7478
7479/*
7480 * Cleanup autocommands and patterns that have been deleted.
7481 * This is only done when not executing autocommands.
7482 */
7483 static void
7484au_cleanup()
7485{
7486 AutoPat *ap, **prev_ap;
7487 AutoCmd *ac, **prev_ac;
Bram Moolenaar754b5602006-02-09 23:53:20 +00007488 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007489
7490 if (autocmd_busy || !au_need_clean)
7491 return;
7492
7493 /* loop over all events */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007494 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
7495 event = (event_T)((int)event + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007496 {
7497 /* loop over all autocommand patterns */
7498 prev_ap = &(first_autopat[(int)event]);
7499 for (ap = *prev_ap; ap != NULL; ap = *prev_ap)
7500 {
7501 /* loop over all commands for this pattern */
7502 prev_ac = &(ap->cmds);
7503 for (ac = *prev_ac; ac != NULL; ac = *prev_ac)
7504 {
7505 /* remove the command if the pattern is to be deleted or when
7506 * the command has been marked for deletion */
7507 if (ap->pat == NULL || ac->cmd == NULL)
7508 {
7509 *prev_ac = ac->next;
7510 vim_free(ac->cmd);
7511 vim_free(ac);
7512 }
7513 else
7514 prev_ac = &(ac->next);
7515 }
7516
7517 /* remove the pattern if it has been marked for deletion */
7518 if (ap->pat == NULL)
7519 {
7520 *prev_ap = ap->next;
Bram Moolenaar748bf032005-02-02 23:04:36 +00007521 vim_free(ap->reg_prog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007522 vim_free(ap);
7523 }
7524 else
7525 prev_ap = &(ap->next);
7526 }
7527 }
7528
7529 au_need_clean = FALSE;
7530}
7531
7532/*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007533 * Called when buffer is freed, to remove/invalidate related buffer-local
7534 * autocmds.
7535 */
7536 void
7537aubuflocal_remove(buf)
7538 buf_T *buf;
7539{
7540 AutoPat *ap;
Bram Moolenaar754b5602006-02-09 23:53:20 +00007541 event_T event;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007542 AutoPatCmd *apc;
7543
7544 /* invalidate currently executing autocommands */
7545 for (apc = active_apc_list; apc; apc = apc->next)
7546 if (buf->b_fnum == apc->arg_bufnr)
7547 apc->arg_bufnr = 0;
7548
7549 /* invalidate buflocals looping through events */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007550 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
7551 event = (event_T)((int)event + 1))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007552 /* loop over all autocommand patterns */
7553 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
7554 if (ap->buflocal_nr == buf->b_fnum)
7555 {
7556 au_remove_pat(ap);
7557 if (p_verbose >= 6)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007558 {
7559 verbose_enter();
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007560 smsg((char_u *)
7561 _("auto-removing autocommand: %s <buffer=%d>"),
7562 event_nr2name(event), buf->b_fnum);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007563 verbose_leave();
7564 }
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007565 }
7566 au_cleanup();
7567}
7568
7569/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007570 * Add an autocmd group name.
7571 * Return it's ID. Returns AUGROUP_ERROR (< 0) for error.
7572 */
7573 static int
7574au_new_group(name)
7575 char_u *name;
7576{
7577 int i;
7578
7579 i = au_find_group(name);
7580 if (i == AUGROUP_ERROR) /* the group doesn't exist yet, add it */
7581 {
7582 /* First try using a free entry. */
7583 for (i = 0; i < augroups.ga_len; ++i)
7584 if (AUGROUP_NAME(i) == NULL)
7585 break;
7586 if (i == augroups.ga_len && ga_grow(&augroups, 1) == FAIL)
7587 return AUGROUP_ERROR;
7588
7589 AUGROUP_NAME(i) = vim_strsave(name);
7590 if (AUGROUP_NAME(i) == NULL)
7591 return AUGROUP_ERROR;
7592 if (i == augroups.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007593 ++augroups.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007594 }
7595
7596 return i;
7597}
7598
7599 static void
7600au_del_group(name)
7601 char_u *name;
7602{
7603 int i;
7604
7605 i = au_find_group(name);
7606 if (i == AUGROUP_ERROR) /* the group doesn't exist */
7607 EMSG2(_("E367: No such group: \"%s\""), name);
7608 else
7609 {
7610 vim_free(AUGROUP_NAME(i));
7611 AUGROUP_NAME(i) = NULL;
7612 }
7613}
7614
7615/*
7616 * Find the ID of an autocmd group name.
7617 * Return it's ID. Returns AUGROUP_ERROR (< 0) for error.
7618 */
7619 static int
7620au_find_group(name)
7621 char_u *name;
7622{
7623 int i;
7624
7625 for (i = 0; i < augroups.ga_len; ++i)
7626 if (AUGROUP_NAME(i) != NULL && STRCMP(AUGROUP_NAME(i), name) == 0)
7627 return i;
7628 return AUGROUP_ERROR;
7629}
7630
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007631/*
7632 * Return TRUE if augroup "name" exists.
7633 */
7634 int
7635au_has_group(name)
7636 char_u *name;
7637{
7638 return au_find_group(name) != AUGROUP_ERROR;
7639}
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007640
Bram Moolenaar071d4272004-06-13 20:20:40 +00007641/*
7642 * ":augroup {name}".
7643 */
7644 void
7645do_augroup(arg, del_group)
7646 char_u *arg;
7647 int del_group;
7648{
7649 int i;
7650
7651 if (del_group)
7652 {
7653 if (*arg == NUL)
7654 EMSG(_(e_argreq));
7655 else
7656 au_del_group(arg);
7657 }
7658 else if (STRICMP(arg, "end") == 0) /* ":aug end": back to group 0 */
7659 current_augroup = AUGROUP_DEFAULT;
7660 else if (*arg) /* ":aug xxx": switch to group xxx */
7661 {
7662 i = au_new_group(arg);
7663 if (i != AUGROUP_ERROR)
7664 current_augroup = i;
7665 }
7666 else /* ":aug": list the group names */
7667 {
7668 msg_start();
7669 for (i = 0; i < augroups.ga_len; ++i)
7670 {
7671 if (AUGROUP_NAME(i) != NULL)
7672 {
7673 msg_puts(AUGROUP_NAME(i));
7674 msg_puts((char_u *)" ");
7675 }
7676 }
7677 msg_clr_eos();
7678 msg_end();
7679 }
7680}
7681
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00007682#if defined(EXITFREE) || defined(PROTO)
7683 void
7684free_all_autocmds()
7685{
7686 for (current_augroup = -1; current_augroup < augroups.ga_len;
7687 ++current_augroup)
7688 do_autocmd((char_u *)"", TRUE);
7689 ga_clear_strings(&augroups);
7690}
7691#endif
7692
Bram Moolenaar071d4272004-06-13 20:20:40 +00007693/*
7694 * Return the event number for event name "start".
7695 * Return NUM_EVENTS if the event name was not found.
7696 * Return a pointer to the next event name in "end".
7697 */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007698 static event_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00007699event_name2nr(start, end)
7700 char_u *start;
7701 char_u **end;
7702{
7703 char_u *p;
7704 int i;
7705 int len;
7706
7707 /* the event name ends with end of line, a blank or a comma */
7708 for (p = start; *p && !vim_iswhite(*p) && *p != ','; ++p)
7709 ;
7710 for (i = 0; event_names[i].name != NULL; ++i)
7711 {
7712 len = (int)STRLEN(event_names[i].name);
7713 if (len == p - start && STRNICMP(event_names[i].name, start, len) == 0)
7714 break;
7715 }
7716 if (*p == ',')
7717 ++p;
7718 *end = p;
7719 if (event_names[i].name == NULL)
7720 return NUM_EVENTS;
7721 return event_names[i].event;
7722}
7723
7724/*
7725 * Return the name for event "event".
7726 */
7727 static char_u *
7728event_nr2name(event)
Bram Moolenaar754b5602006-02-09 23:53:20 +00007729 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007730{
7731 int i;
7732
7733 for (i = 0; event_names[i].name != NULL; ++i)
7734 if (event_names[i].event == event)
7735 return (char_u *)event_names[i].name;
7736 return (char_u *)"Unknown";
7737}
7738
7739/*
7740 * Scan over the events. "*" stands for all events.
7741 */
7742 static char_u *
7743find_end_event(arg, have_group)
7744 char_u *arg;
7745 int have_group; /* TRUE when group name was found */
7746{
7747 char_u *pat;
7748 char_u *p;
7749
7750 if (*arg == '*')
7751 {
7752 if (arg[1] && !vim_iswhite(arg[1]))
7753 {
7754 EMSG2(_("E215: Illegal character after *: %s"), arg);
7755 return NULL;
7756 }
7757 pat = arg + 1;
7758 }
7759 else
7760 {
7761 for (pat = arg; *pat && !vim_iswhite(*pat); pat = p)
7762 {
7763 if ((int)event_name2nr(pat, &p) >= (int)NUM_EVENTS)
7764 {
7765 if (have_group)
7766 EMSG2(_("E216: No such event: %s"), pat);
7767 else
7768 EMSG2(_("E216: No such group or event: %s"), pat);
7769 return NULL;
7770 }
7771 }
7772 }
7773 return pat;
7774}
7775
7776/*
7777 * Return TRUE if "event" is included in 'eventignore'.
7778 */
7779 static int
7780event_ignored(event)
Bram Moolenaar754b5602006-02-09 23:53:20 +00007781 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007782{
7783 char_u *p = p_ei;
7784
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007785 while (*p != NUL)
7786 {
7787 if (STRNICMP(p, "all", 3) == 0 && (p[3] == NUL || p[3] == ','))
7788 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007789 if (event_name2nr(p, &p) == event)
7790 return TRUE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007791 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007792
7793 return FALSE;
7794}
7795
7796/*
7797 * Return OK when the contents of p_ei is valid, FAIL otherwise.
7798 */
7799 int
7800check_ei()
7801{
7802 char_u *p = p_ei;
7803
Bram Moolenaar071d4272004-06-13 20:20:40 +00007804 while (*p)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007805 {
7806 if (STRNICMP(p, "all", 3) == 0 && (p[3] == NUL || p[3] == ','))
7807 {
7808 p += 3;
7809 if (*p == ',')
7810 ++p;
7811 }
7812 else if (event_name2nr(p, &p) == NUM_EVENTS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007813 return FAIL;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007814 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007815
7816 return OK;
7817}
7818
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00007819# if defined(FEAT_SYN_HL) || defined(PROTO)
7820
7821/*
7822 * Add "what" to 'eventignore' to skip loading syntax highlighting for every
7823 * buffer loaded into the window. "what" must start with a comma.
7824 * Returns the old value of 'eventignore' in allocated memory.
7825 */
7826 char_u *
7827au_event_disable(what)
7828 char *what;
7829{
7830 char_u *new_ei;
7831 char_u *save_ei;
7832
7833 save_ei = vim_strsave(p_ei);
7834 if (save_ei != NULL)
7835 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00007836 new_ei = vim_strnsave(p_ei, (int)(STRLEN(p_ei) + STRLEN(what)));
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00007837 if (new_ei != NULL)
7838 {
7839 STRCAT(new_ei, what);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007840 set_string_option_direct((char_u *)"ei", -1, new_ei,
7841 OPT_FREE, SID_NONE);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00007842 vim_free(new_ei);
7843 }
7844 }
7845 return save_ei;
7846}
7847
7848 void
7849au_event_restore(old_ei)
7850 char_u *old_ei;
7851{
7852 if (old_ei != NULL)
7853 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007854 set_string_option_direct((char_u *)"ei", -1, old_ei,
7855 OPT_FREE, SID_NONE);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00007856 vim_free(old_ei);
7857 }
7858}
7859# endif /* FEAT_SYN_HL */
7860
Bram Moolenaar071d4272004-06-13 20:20:40 +00007861/*
7862 * do_autocmd() -- implements the :autocmd command. Can be used in the
7863 * following ways:
7864 *
7865 * :autocmd <event> <pat> <cmd> Add <cmd> to the list of commands that
7866 * will be automatically executed for <event>
7867 * when editing a file matching <pat>, in
7868 * the current group.
7869 * :autocmd <event> <pat> Show the auto-commands associated with
7870 * <event> and <pat>.
7871 * :autocmd <event> Show the auto-commands associated with
7872 * <event>.
7873 * :autocmd Show all auto-commands.
7874 * :autocmd! <event> <pat> <cmd> Remove all auto-commands associated with
7875 * <event> and <pat>, and add the command
7876 * <cmd>, for the current group.
7877 * :autocmd! <event> <pat> Remove all auto-commands associated with
7878 * <event> and <pat> for the current group.
7879 * :autocmd! <event> Remove all auto-commands associated with
7880 * <event> for the current group.
7881 * :autocmd! Remove ALL auto-commands for the current
7882 * group.
7883 *
7884 * Multiple events and patterns may be given separated by commas. Here are
7885 * some examples:
7886 * :autocmd bufread,bufenter *.c,*.h set tw=0 smartindent noic
7887 * :autocmd bufleave * set tw=79 nosmartindent ic infercase
7888 *
7889 * :autocmd * *.c show all autocommands for *.c files.
Bram Moolenaard35f9712005-12-18 22:02:33 +00007890 *
7891 * Mostly a {group} argument can optionally appear before <event>.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007892 */
7893 void
7894do_autocmd(arg, forceit)
7895 char_u *arg;
7896 int forceit;
7897{
7898 char_u *pat;
7899 char_u *envpat = NULL;
7900 char_u *cmd;
Bram Moolenaar754b5602006-02-09 23:53:20 +00007901 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007902 int need_free = FALSE;
7903 int nested = FALSE;
7904 int group;
7905
7906 /*
7907 * Check for a legal group name. If not, use AUGROUP_ALL.
7908 */
7909 group = au_get_grouparg(&arg);
7910 if (arg == NULL) /* out of memory */
7911 return;
7912
7913 /*
7914 * Scan over the events.
7915 * If we find an illegal name, return here, don't do anything.
7916 */
7917 pat = find_end_event(arg, group != AUGROUP_ALL);
7918 if (pat == NULL)
7919 return;
7920
7921 /*
7922 * Scan over the pattern. Put a NUL at the end.
7923 */
7924 pat = skipwhite(pat);
7925 cmd = pat;
7926 while (*cmd && (!vim_iswhite(*cmd) || cmd[-1] == '\\'))
7927 cmd++;
7928 if (*cmd)
7929 *cmd++ = NUL;
7930
7931 /* Expand environment variables in the pattern. Set 'shellslash', we want
7932 * forward slashes here. */
7933 if (vim_strchr(pat, '$') != NULL || vim_strchr(pat, '~') != NULL)
7934 {
7935#ifdef BACKSLASH_IN_FILENAME
7936 int p_ssl_save = p_ssl;
7937
7938 p_ssl = TRUE;
7939#endif
7940 envpat = expand_env_save(pat);
7941#ifdef BACKSLASH_IN_FILENAME
7942 p_ssl = p_ssl_save;
7943#endif
7944 if (envpat != NULL)
7945 pat = envpat;
7946 }
7947
7948 /*
7949 * Check for "nested" flag.
7950 */
7951 cmd = skipwhite(cmd);
7952 if (*cmd != NUL && STRNCMP(cmd, "nested", 6) == 0 && vim_iswhite(cmd[6]))
7953 {
7954 nested = TRUE;
7955 cmd = skipwhite(cmd + 6);
7956 }
7957
7958 /*
7959 * Find the start of the commands.
7960 * Expand <sfile> in it.
7961 */
7962 if (*cmd != NUL)
7963 {
7964 cmd = expand_sfile(cmd);
7965 if (cmd == NULL) /* some error */
7966 return;
7967 need_free = TRUE;
7968 }
7969
7970 /*
7971 * Print header when showing autocommands.
7972 */
7973 if (!forceit && *cmd == NUL)
7974 {
7975 /* Highlight title */
7976 MSG_PUTS_TITLE(_("\n--- Auto-Commands ---"));
7977 }
7978
7979 /*
7980 * Loop over the events.
7981 */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007982 last_event = (event_T)-1; /* for listing the event name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007983 last_group = AUGROUP_ERROR; /* for listing the group name */
7984 if (*arg == '*' || *arg == NUL)
7985 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00007986 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
7987 event = (event_T)((int)event + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007988 if (do_autocmd_event(event, pat,
7989 nested, cmd, forceit, group) == FAIL)
7990 break;
7991 }
7992 else
7993 {
7994 while (*arg && !vim_iswhite(*arg))
7995 if (do_autocmd_event(event_name2nr(arg, &arg), pat,
7996 nested, cmd, forceit, group) == FAIL)
7997 break;
7998 }
7999
8000 if (need_free)
8001 vim_free(cmd);
8002 vim_free(envpat);
8003}
8004
8005/*
8006 * Find the group ID in a ":autocmd" or ":doautocmd" argument.
8007 * The "argp" argument is advanced to the following argument.
8008 *
8009 * Returns the group ID, AUGROUP_ERROR for error (out of memory).
8010 */
8011 static int
8012au_get_grouparg(argp)
8013 char_u **argp;
8014{
8015 char_u *group_name;
8016 char_u *p;
8017 char_u *arg = *argp;
8018 int group = AUGROUP_ALL;
8019
8020 p = skiptowhite(arg);
8021 if (p > arg)
8022 {
8023 group_name = vim_strnsave(arg, (int)(p - arg));
8024 if (group_name == NULL) /* out of memory */
8025 return AUGROUP_ERROR;
8026 group = au_find_group(group_name);
8027 if (group == AUGROUP_ERROR)
8028 group = AUGROUP_ALL; /* no match, use all groups */
8029 else
8030 *argp = skipwhite(p); /* match, skip over group name */
8031 vim_free(group_name);
8032 }
8033 return group;
8034}
8035
8036/*
8037 * do_autocmd() for one event.
8038 * If *pat == NUL do for all patterns.
8039 * If *cmd == NUL show entries.
8040 * If forceit == TRUE delete entries.
8041 * If group is not AUGROUP_ALL, only use this group.
8042 */
8043 static int
8044do_autocmd_event(event, pat, nested, cmd, forceit, group)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008045 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008046 char_u *pat;
8047 int nested;
8048 char_u *cmd;
8049 int forceit;
8050 int group;
8051{
8052 AutoPat *ap;
8053 AutoPat **prev_ap;
8054 AutoCmd *ac;
8055 AutoCmd **prev_ac;
8056 int brace_level;
8057 char_u *endpat;
8058 int findgroup;
8059 int allgroups;
8060 int patlen;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008061 int is_buflocal;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008062 int buflocal_nr;
8063 char_u buflocal_pat[25]; /* for "<buffer=X>" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008064
8065 if (group == AUGROUP_ALL)
8066 findgroup = current_augroup;
8067 else
8068 findgroup = group;
8069 allgroups = (group == AUGROUP_ALL && !forceit && *cmd == NUL);
8070
8071 /*
8072 * Show or delete all patterns for an event.
8073 */
8074 if (*pat == NUL)
8075 {
8076 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
8077 {
8078 if (forceit) /* delete the AutoPat, if it's in the current group */
8079 {
8080 if (ap->group == findgroup)
8081 au_remove_pat(ap);
8082 }
8083 else if (group == AUGROUP_ALL || ap->group == group)
8084 show_autocmd(ap, event);
8085 }
8086 }
8087
8088 /*
8089 * Loop through all the specified patterns.
8090 */
8091 for ( ; *pat; pat = (*endpat == ',' ? endpat + 1 : endpat))
8092 {
8093 /*
8094 * Find end of the pattern.
8095 * Watch out for a comma in braces, like "*.\{obj,o\}".
8096 */
8097 brace_level = 0;
8098 for (endpat = pat; *endpat && (*endpat != ',' || brace_level
8099 || endpat[-1] == '\\'); ++endpat)
8100 {
8101 if (*endpat == '{')
8102 brace_level++;
8103 else if (*endpat == '}')
8104 brace_level--;
8105 }
8106 if (pat == endpat) /* ignore single comma */
8107 continue;
8108 patlen = (int)(endpat - pat);
8109
8110 /*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008111 * detect special <buflocal[=X]> buffer-local patterns
8112 */
8113 is_buflocal = FALSE;
8114 buflocal_nr = 0;
8115
8116 if (patlen >= 7 && STRNCMP(pat, "<buffer", 7) == 0
8117 && pat[patlen - 1] == '>')
8118 {
8119 /* Error will be printed only for addition. printing and removing
8120 * will proceed silently. */
8121 is_buflocal = TRUE;
8122 if (patlen == 8)
8123 buflocal_nr = curbuf->b_fnum;
8124 else if (patlen > 9 && pat[7] == '=')
8125 {
8126 /* <buffer=abuf> */
8127 if (patlen == 13 && STRNICMP(pat, "<buffer=abuf>", 13))
8128 buflocal_nr = autocmd_bufnr;
8129 /* <buffer=123> */
8130 else if (skipdigits(pat + 8) == pat + patlen - 1)
8131 buflocal_nr = atoi((char *)pat + 8);
8132 }
8133 }
8134
8135 if (is_buflocal)
8136 {
8137 /* normalize pat into standard "<buffer>#N" form */
8138 sprintf((char *)buflocal_pat, "<buffer=%d>", buflocal_nr);
8139 pat = buflocal_pat; /* can modify pat and patlen */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008140 patlen = (int)STRLEN(buflocal_pat); /* but not endpat */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008141 }
8142
8143 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008144 * Find AutoPat entries with this pattern.
8145 */
8146 prev_ap = &first_autopat[(int)event];
8147 while ((ap = *prev_ap) != NULL)
8148 {
8149 if (ap->pat != NULL)
8150 {
8151 /* Accept a pattern when:
8152 * - a group was specified and it's that group, or a group was
8153 * not specified and it's the current group, or a group was
8154 * not specified and we are listing
8155 * - the length of the pattern matches
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008156 * - the pattern matches.
8157 * For <buffer[=X]>, this condition works because we normalize
8158 * all buffer-local patterns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008159 */
8160 if ((allgroups || ap->group == findgroup)
8161 && ap->patlen == patlen
8162 && STRNCMP(pat, ap->pat, patlen) == 0)
8163 {
8164 /*
8165 * Remove existing autocommands.
8166 * If adding any new autocmd's for this AutoPat, don't
8167 * delete the pattern from the autopat list, append to
8168 * this list.
8169 */
8170 if (forceit)
8171 {
8172 if (*cmd != NUL && ap->next == NULL)
8173 {
8174 au_remove_cmds(ap);
8175 break;
8176 }
8177 au_remove_pat(ap);
8178 }
8179
8180 /*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008181 * Show autocmd's for this autopat, or buflocals <buffer=X>
Bram Moolenaar071d4272004-06-13 20:20:40 +00008182 */
8183 else if (*cmd == NUL)
8184 show_autocmd(ap, event);
8185
8186 /*
8187 * Add autocmd to this autopat, if it's the last one.
8188 */
8189 else if (ap->next == NULL)
8190 break;
8191 }
8192 }
8193 prev_ap = &ap->next;
8194 }
8195
8196 /*
8197 * Add a new command.
8198 */
8199 if (*cmd != NUL)
8200 {
8201 /*
8202 * If the pattern we want to add a command to does appear at the
8203 * end of the list (or not is not in the list at all), add the
8204 * pattern at the end of the list.
8205 */
8206 if (ap == NULL)
8207 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008208 /* refuse to add buffer-local ap if buffer number is invalid */
8209 if (is_buflocal && (buflocal_nr == 0
8210 || buflist_findnr(buflocal_nr) == NULL))
8211 {
8212 EMSGN(_("E680: <buffer=%d>: invalid buffer number "),
8213 buflocal_nr);
8214 return FAIL;
8215 }
8216
Bram Moolenaar071d4272004-06-13 20:20:40 +00008217 ap = (AutoPat *)alloc((unsigned)sizeof(AutoPat));
8218 if (ap == NULL)
8219 return FAIL;
8220 ap->pat = vim_strnsave(pat, patlen);
8221 ap->patlen = patlen;
8222 if (ap->pat == NULL)
8223 {
8224 vim_free(ap);
8225 return FAIL;
8226 }
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008227
8228 if (is_buflocal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008229 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008230 ap->buflocal_nr = buflocal_nr;
Bram Moolenaar748bf032005-02-02 23:04:36 +00008231 ap->reg_prog = NULL;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008232 }
8233 else
8234 {
Bram Moolenaar748bf032005-02-02 23:04:36 +00008235 char_u *reg_pat;
8236
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008237 ap->buflocal_nr = 0;
Bram Moolenaar748bf032005-02-02 23:04:36 +00008238 reg_pat = file_pat_to_reg_pat(pat, endpat,
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008239 &ap->allow_dirs, TRUE);
Bram Moolenaar748bf032005-02-02 23:04:36 +00008240 if (reg_pat != NULL)
8241 ap->reg_prog = vim_regcomp(reg_pat, RE_MAGIC);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00008242 vim_free(reg_pat);
Bram Moolenaar748bf032005-02-02 23:04:36 +00008243 if (reg_pat == NULL || ap->reg_prog == NULL)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008244 {
8245 vim_free(ap->pat);
8246 vim_free(ap);
8247 return FAIL;
8248 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008249 }
8250 ap->cmds = NULL;
8251 *prev_ap = ap;
8252 ap->next = NULL;
8253 if (group == AUGROUP_ALL)
8254 ap->group = current_augroup;
8255 else
8256 ap->group = group;
8257 }
8258
8259 /*
8260 * Add the autocmd at the end of the AutoCmd list.
8261 */
8262 prev_ac = &(ap->cmds);
8263 while ((ac = *prev_ac) != NULL)
8264 prev_ac = &ac->next;
8265 ac = (AutoCmd *)alloc((unsigned)sizeof(AutoCmd));
8266 if (ac == NULL)
8267 return FAIL;
8268 ac->cmd = vim_strsave(cmd);
8269#ifdef FEAT_EVAL
8270 ac->scriptID = current_SID;
8271#endif
8272 if (ac->cmd == NULL)
8273 {
8274 vim_free(ac);
8275 return FAIL;
8276 }
8277 ac->next = NULL;
8278 *prev_ac = ac;
8279 ac->nested = nested;
8280 }
8281 }
8282
8283 au_cleanup(); /* may really delete removed patterns/commands now */
8284 return OK;
8285}
8286
8287/*
8288 * Implementation of ":doautocmd [group] event [fname]".
8289 * Return OK for success, FAIL for failure;
8290 */
8291 int
8292do_doautocmd(arg, do_msg)
8293 char_u *arg;
8294 int do_msg; /* give message for no matching autocmds? */
8295{
8296 char_u *fname;
8297 int nothing_done = TRUE;
8298 int group;
8299
8300 /*
8301 * Check for a legal group name. If not, use AUGROUP_ALL.
8302 */
8303 group = au_get_grouparg(&arg);
8304 if (arg == NULL) /* out of memory */
8305 return FAIL;
8306
8307 if (*arg == '*')
8308 {
8309 EMSG(_("E217: Can't execute autocommands for ALL events"));
8310 return FAIL;
8311 }
8312
8313 /*
8314 * Scan over the events.
8315 * If we find an illegal name, return here, don't do anything.
8316 */
8317 fname = find_end_event(arg, group != AUGROUP_ALL);
8318 if (fname == NULL)
8319 return FAIL;
8320
8321 fname = skipwhite(fname);
8322
8323 /*
8324 * Loop over the events.
8325 */
8326 while (*arg && !vim_iswhite(*arg))
8327 if (apply_autocmds_group(event_name2nr(arg, &arg),
8328 fname, NULL, TRUE, group, curbuf, NULL))
8329 nothing_done = FALSE;
8330
8331 if (nothing_done && do_msg)
8332 MSG(_("No matching autocommands"));
8333
8334#ifdef FEAT_EVAL
8335 return aborting() ? FAIL : OK;
8336#else
8337 return OK;
8338#endif
8339}
8340
8341/*
8342 * ":doautoall": execute autocommands for each loaded buffer.
8343 */
8344 void
8345ex_doautoall(eap)
8346 exarg_T *eap;
8347{
8348 int retval;
8349 aco_save_T aco;
8350 buf_T *buf;
8351
8352 /*
8353 * This is a bit tricky: For some commands curwin->w_buffer needs to be
8354 * equal to curbuf, but for some buffers there may not be a window.
8355 * So we change the buffer for the current window for a moment. This
8356 * gives problems when the autocommands make changes to the list of
8357 * buffers or windows...
8358 */
8359 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8360 {
Bram Moolenaar3a847972008-07-08 09:36:58 +00008361 if (buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008362 {
8363 /* find a window for this buffer and save some values */
8364 aucmd_prepbuf(&aco, buf);
8365
8366 /* execute the autocommands for this buffer */
8367 retval = do_doautocmd(eap->arg, FALSE);
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008368
8369 /* Execute the modeline settings, but don't set window-local
8370 * options if we are using the current window for another buffer. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008371 do_modelines(curwin == aucmd_win ? OPT_NOWIN : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008372
8373 /* restore the current window */
8374 aucmd_restbuf(&aco);
8375
8376 /* stop if there is some error or buffer was deleted */
8377 if (retval == FAIL || !buf_valid(buf))
8378 break;
8379 }
8380 }
8381
8382 check_cursor(); /* just in case lines got deleted */
8383}
8384
8385/*
8386 * Prepare for executing autocommands for (hidden) buffer "buf".
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008387 * Search for a visible window containing the current buffer. If there isn't
8388 * one then use "aucmd_win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00008389 * Set "curbuf" and "curwin" to match "buf".
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00008390 * When FEAT_AUTOCMD is not defined another version is used, see below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008391 */
8392 void
8393aucmd_prepbuf(aco, buf)
8394 aco_save_T *aco; /* structure to save values in */
8395 buf_T *buf; /* new curbuf */
8396{
8397 win_T *win;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008398#ifdef FEAT_WINDOWS
8399 int save_ea;
8400#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008401
8402 /* Find a window that is for the new buffer */
8403 if (buf == curbuf) /* be quick when buf is curbuf */
8404 win = curwin;
8405 else
8406#ifdef FEAT_WINDOWS
8407 for (win = firstwin; win != NULL; win = win->w_next)
8408 if (win->w_buffer == buf)
8409 break;
8410#else
8411 win = NULL;
8412#endif
8413
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008414 /* Allocate "aucmd_win" when needed. If this fails (out of memory) fall
8415 * back to using the current window. */
8416 if (win == NULL && aucmd_win == NULL)
8417 {
8418 win_alloc_aucmd_win();
8419 if (aucmd_win == NULL)
8420 win = curwin;
8421 }
8422
8423 aco->save_curwin = curwin;
8424 aco->save_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008425 if (win != NULL)
8426 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008427 /* There is a window for "buf" in the current tab page, make it the
8428 * curwin. This is preferred, it has the least side effects (esp. if
8429 * "buf" is curbuf). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008430 curwin = win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008431 }
8432 else
8433 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008434 /* There is no window for "buf", use "aucmd_win". To minimize the side
8435 * effects, insert it in a the current tab page.
8436 * Anything related to a window (e.g., setting folds) may have
8437 * unexpected results. */
8438 curwin = aucmd_win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008439 curwin->w_buffer = buf;
8440 ++buf->b_nwindows;
8441
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008442#ifdef FEAT_WINDOWS
8443 /* Split the current window, put the aucmd_win in the upper half. */
8444 make_snapshot(SNAP_AUCMD_IDX);
8445 save_ea = p_ea;
8446 p_ea = FALSE;
8447 (void)win_split_ins(0, WSP_TOP, aucmd_win, 0);
8448 (void)win_comp_pos(); /* recompute window positions */
8449 p_ea = save_ea;
8450#endif
8451 /* set cursor and topline to safe values */
8452 curwin_init();
8453#ifdef FEAT_VERTSPLIT
8454 curwin->w_wincol = 0;
8455 curwin->w_width = Columns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008456#endif
8457 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008458 curbuf = buf;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008459 aco->new_curwin = curwin;
8460 aco->new_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008461}
8462
8463/*
8464 * Cleanup after executing autocommands for a (hidden) buffer.
8465 * Restore the window as it was (if possible).
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00008466 * When FEAT_AUTOCMD is not defined another version is used, see below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008467 */
8468 void
8469aucmd_restbuf(aco)
8470 aco_save_T *aco; /* structure holding saved values */
8471{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008472#ifdef FEAT_WINDOWS
8473 int dummy;
8474#endif
8475
8476 if (aco->new_curwin == aucmd_win)
8477 {
8478 --curbuf->b_nwindows;
8479#ifdef FEAT_WINDOWS
8480 /* Find "aucmd_win", it can't be closed, but it may be in another tab
8481 * page. */
8482 if (curwin != aucmd_win)
8483 {
8484 tabpage_T *tp;
8485 win_T *wp;
8486
8487 FOR_ALL_TAB_WINDOWS(tp, wp)
8488 {
8489 if (wp == aucmd_win)
8490 {
8491 if (tp != curtab)
8492 goto_tabpage_tp(tp);
8493 win_goto(aucmd_win);
8494 break;
8495 }
8496 }
8497 }
8498
8499 /* Remove the window and frame from the tree of frames. */
8500 (void)winframe_remove(curwin, &dummy, NULL);
8501 win_remove(curwin, NULL);
8502 last_status(FALSE); /* may need to remove last status line */
8503 restore_snapshot(SNAP_AUCMD_IDX, FALSE);
8504 (void)win_comp_pos(); /* recompute window positions */
8505
8506 if (win_valid(aco->save_curwin))
8507 curwin = aco->save_curwin;
8508 else
8509 /* Hmm, original window disappeared. Just use the first one. */
8510 curwin = firstwin;
8511# ifdef FEAT_EVAL
8512 vars_clear(&aucmd_win->w_vars.dv_hashtab); /* free all w: variables */
8513# endif
8514#else
8515 curwin = aco->save_curwin;
8516#endif
8517 curbuf = curwin->w_buffer;
8518
8519 /* the buffer contents may have changed */
8520 check_cursor();
8521 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
8522 {
8523 curwin->w_topline = curbuf->b_ml.ml_line_count;
8524#ifdef FEAT_DIFF
8525 curwin->w_topfill = 0;
8526#endif
8527 }
8528#if defined(FEAT_GUI)
8529 /* Hide the scrollbars from the aucmd_win and update. */
8530 gui_mch_enable_scrollbar(&aucmd_win->w_scrollbars[SBAR_LEFT], FALSE);
8531 gui_mch_enable_scrollbar(&aucmd_win->w_scrollbars[SBAR_RIGHT], FALSE);
8532 gui_may_update_scrollbars();
8533#endif
8534 }
8535 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008536 {
8537 /* restore curwin */
8538#ifdef FEAT_WINDOWS
8539 if (win_valid(aco->save_curwin))
8540#endif
8541 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008542 /* Restore the buffer which was previously edited by curwin, if
8543 * it was chagned, we are still the same window and the buffer is
8544 * valid. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008545 if (curwin == aco->new_curwin
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008546 && curbuf != aco->new_curbuf
8547 && buf_valid(aco->new_curbuf)
8548 && aco->new_curbuf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008549 {
8550 --curbuf->b_nwindows;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008551 curbuf = aco->new_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008552 curwin->w_buffer = curbuf;
8553 ++curbuf->b_nwindows;
8554 }
8555
8556 curwin = aco->save_curwin;
8557 curbuf = curwin->w_buffer;
8558 }
8559 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008560}
8561
8562static int autocmd_nested = FALSE;
8563
8564/*
8565 * Execute autocommands for "event" and file name "fname".
8566 * Return TRUE if some commands were executed.
8567 */
8568 int
8569apply_autocmds(event, fname, fname_io, force, buf)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008570 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008571 char_u *fname; /* NULL or empty means use actual file name */
8572 char_u *fname_io; /* fname to use for <afile> on cmdline */
8573 int force; /* when TRUE, ignore autocmd_busy */
8574 buf_T *buf; /* buffer for <abuf> */
8575{
8576 return apply_autocmds_group(event, fname, fname_io, force,
8577 AUGROUP_ALL, buf, NULL);
8578}
8579
8580/*
8581 * Like apply_autocmds(), but with extra "eap" argument. This takes care of
8582 * setting v:filearg.
8583 */
8584 static int
8585apply_autocmds_exarg(event, fname, fname_io, force, buf, eap)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008586 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008587 char_u *fname;
8588 char_u *fname_io;
8589 int force;
8590 buf_T *buf;
8591 exarg_T *eap;
8592{
8593 return apply_autocmds_group(event, fname, fname_io, force,
8594 AUGROUP_ALL, buf, eap);
8595}
8596
8597/*
8598 * Like apply_autocmds(), but handles the caller's retval. If the script
8599 * processing is being aborted or if retval is FAIL when inside a try
8600 * conditional, no autocommands are executed. If otherwise the autocommands
8601 * cause the script to be aborted, retval is set to FAIL.
8602 */
8603 int
8604apply_autocmds_retval(event, fname, fname_io, force, buf, retval)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008605 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008606 char_u *fname; /* NULL or empty means use actual file name */
8607 char_u *fname_io; /* fname to use for <afile> on cmdline */
8608 int force; /* when TRUE, ignore autocmd_busy */
8609 buf_T *buf; /* buffer for <abuf> */
8610 int *retval; /* pointer to caller's retval */
8611{
8612 int did_cmd;
8613
Bram Moolenaar1e015462005-09-25 22:16:38 +00008614#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008615 if (should_abort(*retval))
8616 return FALSE;
Bram Moolenaar1e015462005-09-25 22:16:38 +00008617#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008618
8619 did_cmd = apply_autocmds_group(event, fname, fname_io, force,
8620 AUGROUP_ALL, buf, NULL);
Bram Moolenaar1e015462005-09-25 22:16:38 +00008621 if (did_cmd
8622#ifdef FEAT_EVAL
8623 && aborting()
8624#endif
8625 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00008626 *retval = FAIL;
8627 return did_cmd;
8628}
8629
Bram Moolenaard35f9712005-12-18 22:02:33 +00008630/*
8631 * Return TRUE when there is a CursorHold autocommand defined.
8632 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008633 int
8634has_cursorhold()
8635{
Bram Moolenaar754b5602006-02-09 23:53:20 +00008636 return (first_autopat[(int)(get_real_state() == NORMAL_BUSY
8637 ? EVENT_CURSORHOLD : EVENT_CURSORHOLDI)] != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008638}
Bram Moolenaard35f9712005-12-18 22:02:33 +00008639
8640/*
8641 * Return TRUE if the CursorHold event can be triggered.
8642 */
8643 int
8644trigger_cursorhold()
8645{
Bram Moolenaar754b5602006-02-09 23:53:20 +00008646 int state;
8647
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00008648 if (!did_cursorhold && has_cursorhold() && !Recording
8649#ifdef FEAT_INS_EXPAND
8650 && !ins_compl_active()
8651#endif
8652 )
Bram Moolenaar754b5602006-02-09 23:53:20 +00008653 {
8654 state = get_real_state();
8655 if (state == NORMAL_BUSY || (state & INSERT) != 0)
8656 return TRUE;
8657 }
8658 return FALSE;
Bram Moolenaard35f9712005-12-18 22:02:33 +00008659}
Bram Moolenaar754b5602006-02-09 23:53:20 +00008660
8661/*
8662 * Return TRUE when there is a CursorMoved autocommand defined.
8663 */
8664 int
8665has_cursormoved()
8666{
8667 return (first_autopat[(int)EVENT_CURSORMOVED] != NULL);
8668}
8669
8670/*
8671 * Return TRUE when there is a CursorMovedI autocommand defined.
8672 */
8673 int
8674has_cursormovedI()
8675{
8676 return (first_autopat[(int)EVENT_CURSORMOVEDI] != NULL);
8677}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008678
8679 static int
8680apply_autocmds_group(event, fname, fname_io, force, group, buf, eap)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008681 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008682 char_u *fname; /* NULL or empty means use actual file name */
8683 char_u *fname_io; /* fname to use for <afile> on cmdline, NULL means
8684 use fname */
8685 int force; /* when TRUE, ignore autocmd_busy */
8686 int group; /* group ID, or AUGROUP_ALL */
8687 buf_T *buf; /* buffer for <abuf> */
8688 exarg_T *eap; /* command arguments */
8689{
8690 char_u *sfname = NULL; /* short file name */
8691 char_u *tail;
8692 int save_changed;
8693 buf_T *old_curbuf;
8694 int retval = FALSE;
8695 char_u *save_sourcing_name;
8696 linenr_T save_sourcing_lnum;
8697 char_u *save_autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00008698 int save_autocmd_fname_full;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008699 int save_autocmd_bufnr;
8700 char_u *save_autocmd_match;
8701 int save_autocmd_busy;
8702 int save_autocmd_nested;
8703 static int nesting = 0;
8704 AutoPatCmd patcmd;
8705 AutoPat *ap;
8706#ifdef FEAT_EVAL
8707 scid_T save_current_SID;
8708 void *save_funccalp;
8709 char_u *save_cmdarg;
8710 long save_cmdbang;
8711#endif
8712 static int filechangeshell_busy = FALSE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00008713#ifdef FEAT_PROFILE
8714 proftime_T wait_time;
8715#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008716
8717 /*
8718 * Quickly return if there are no autocommands for this event or
8719 * autocommands are blocked.
8720 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00008721 if (first_autopat[(int)event] == NULL || autocmd_blocked > 0)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008722 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008723
8724 /*
8725 * When autocommands are busy, new autocommands are only executed when
8726 * explicitly enabled with the "nested" flag.
8727 */
8728 if (autocmd_busy && !(force || autocmd_nested))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008729 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008730
8731#ifdef FEAT_EVAL
8732 /*
Bram Moolenaar7263a772007-05-10 17:35:54 +00008733 * Quickly return when immediately aborting on error, or when an interrupt
Bram Moolenaar071d4272004-06-13 20:20:40 +00008734 * occurred or an exception was thrown but not caught.
8735 */
8736 if (aborting())
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008737 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008738#endif
8739
8740 /*
8741 * FileChangedShell never nests, because it can create an endless loop.
8742 */
Bram Moolenaar56718732006-03-15 22:53:57 +00008743 if (filechangeshell_busy && (event == EVENT_FILECHANGEDSHELL
8744 || event == EVENT_FILECHANGEDSHELLPOST))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008745 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008746
8747 /*
8748 * Ignore events in 'eventignore'.
8749 */
8750 if (event_ignored(event))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008751 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008752
8753 /*
8754 * Allow nesting of autocommands, but restrict the depth, because it's
8755 * possible to create an endless loop.
8756 */
8757 if (nesting == 10)
8758 {
8759 EMSG(_("E218: autocommand nesting too deep"));
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008760 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008761 }
8762
8763 /*
8764 * Check if these autocommands are disabled. Used when doing ":all" or
8765 * ":ball".
8766 */
8767 if ( (autocmd_no_enter
8768 && (event == EVENT_WINENTER || event == EVENT_BUFENTER))
8769 || (autocmd_no_leave
8770 && (event == EVENT_WINLEAVE || event == EVENT_BUFLEAVE)))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008771 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008772
8773 /*
8774 * Save the autocmd_* variables and info about the current buffer.
8775 */
8776 save_autocmd_fname = autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00008777 save_autocmd_fname_full = autocmd_fname_full;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008778 save_autocmd_bufnr = autocmd_bufnr;
8779 save_autocmd_match = autocmd_match;
8780 save_autocmd_busy = autocmd_busy;
8781 save_autocmd_nested = autocmd_nested;
8782 save_changed = curbuf->b_changed;
8783 old_curbuf = curbuf;
8784
8785 /*
8786 * Set the file name to be used for <afile>.
Bram Moolenaara0174af2008-01-02 20:08:25 +00008787 * Make a copy to avoid that changing a buffer name or directory makes it
8788 * invalid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008789 */
8790 if (fname_io == NULL)
8791 {
8792 if (fname != NULL && *fname != NUL)
8793 autocmd_fname = fname;
8794 else if (buf != NULL)
Bram Moolenaarf6dad432008-09-18 19:29:58 +00008795 autocmd_fname = buf->b_ffname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008796 else
8797 autocmd_fname = NULL;
8798 }
8799 else
8800 autocmd_fname = fname_io;
Bram Moolenaara0174af2008-01-02 20:08:25 +00008801 if (autocmd_fname != NULL)
Bram Moolenaarf6dad432008-09-18 19:29:58 +00008802 autocmd_fname = vim_strsave(autocmd_fname);
8803 autocmd_fname_full = FALSE; /* call FullName_save() later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008804
8805 /*
8806 * Set the buffer number to be used for <abuf>.
8807 */
8808 if (buf == NULL)
8809 autocmd_bufnr = 0;
8810 else
8811 autocmd_bufnr = buf->b_fnum;
8812
8813 /*
8814 * When the file name is NULL or empty, use the file name of buffer "buf".
8815 * Always use the full path of the file name to match with, in case
8816 * "allow_dirs" is set.
8817 */
8818 if (fname == NULL || *fname == NUL)
8819 {
8820 if (buf == NULL)
8821 fname = NULL;
8822 else
8823 {
8824#ifdef FEAT_SYN_HL
8825 if (event == EVENT_SYNTAX)
8826 fname = buf->b_p_syn;
8827 else
8828#endif
8829 if (event == EVENT_FILETYPE)
8830 fname = buf->b_p_ft;
8831 else
8832 {
8833 if (buf->b_sfname != NULL)
8834 sfname = vim_strsave(buf->b_sfname);
8835 fname = buf->b_ffname;
8836 }
8837 }
8838 if (fname == NULL)
8839 fname = (char_u *)"";
8840 fname = vim_strsave(fname); /* make a copy, so we can change it */
8841 }
8842 else
8843 {
8844 sfname = vim_strsave(fname);
Bram Moolenaar5135d462009-04-29 16:03:38 +00008845 /* Don't try expanding FileType, Syntax, FuncUndefined, WindowID or
8846 * QuickFixCmd* */
Bram Moolenaar7c626922005-02-07 22:01:03 +00008847 if (event == EVENT_FILETYPE
8848 || event == EVENT_SYNTAX
Bram Moolenaar5135d462009-04-29 16:03:38 +00008849 || event == EVENT_FUNCUNDEFINED
Bram Moolenaar7c626922005-02-07 22:01:03 +00008850 || event == EVENT_REMOTEREPLY
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00008851 || event == EVENT_SPELLFILEMISSING
Bram Moolenaar7c626922005-02-07 22:01:03 +00008852 || event == EVENT_QUICKFIXCMDPRE
8853 || event == EVENT_QUICKFIXCMDPOST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008854 fname = vim_strsave(fname);
8855 else
8856 fname = FullName_save(fname, FALSE);
8857 }
8858 if (fname == NULL) /* out of memory */
8859 {
8860 vim_free(sfname);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008861 retval = FALSE;
8862 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008863 }
8864
8865#ifdef BACKSLASH_IN_FILENAME
8866 /*
8867 * Replace all backslashes with forward slashes. This makes the
8868 * autocommand patterns portable between Unix and MS-DOS.
8869 */
8870 if (sfname != NULL)
8871 forward_slash(sfname);
8872 forward_slash(fname);
8873#endif
8874
8875#ifdef VMS
8876 /* remove version for correct match */
8877 if (sfname != NULL)
8878 vms_remove_version(sfname);
8879 vms_remove_version(fname);
8880#endif
8881
8882 /*
8883 * Set the name to be used for <amatch>.
8884 */
8885 autocmd_match = fname;
8886
8887
8888 /* Don't redraw while doing auto commands. */
8889 ++RedrawingDisabled;
8890 save_sourcing_name = sourcing_name;
8891 sourcing_name = NULL; /* don't free this one */
8892 save_sourcing_lnum = sourcing_lnum;
8893 sourcing_lnum = 0; /* no line number here */
8894
8895#ifdef FEAT_EVAL
8896 save_current_SID = current_SID;
8897
Bram Moolenaar05159a02005-02-26 23:04:13 +00008898# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +00008899 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00008900 prof_child_enter(&wait_time); /* doesn't count for the caller itself */
8901# endif
8902
Bram Moolenaar071d4272004-06-13 20:20:40 +00008903 /* Don't use local function variables, if called from a function */
8904 save_funccalp = save_funccal();
8905#endif
8906
8907 /*
8908 * When starting to execute autocommands, save the search patterns.
8909 */
8910 if (!autocmd_busy)
8911 {
8912 save_search_patterns();
8913 saveRedobuff();
8914 did_filetype = keep_filetype;
8915 }
8916
8917 /*
8918 * Note that we are applying autocmds. Some commands need to know.
8919 */
8920 autocmd_busy = TRUE;
8921 filechangeshell_busy = (event == EVENT_FILECHANGEDSHELL);
8922 ++nesting; /* see matching decrement below */
8923
8924 /* Remember that FileType was triggered. Used for did_filetype(). */
8925 if (event == EVENT_FILETYPE)
8926 did_filetype = TRUE;
8927
8928 tail = gettail(fname);
8929
8930 /* Find first autocommand that matches */
8931 patcmd.curpat = first_autopat[(int)event];
8932 patcmd.nextcmd = NULL;
8933 patcmd.group = group;
8934 patcmd.fname = fname;
8935 patcmd.sfname = sfname;
8936 patcmd.tail = tail;
8937 patcmd.event = event;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008938 patcmd.arg_bufnr = autocmd_bufnr;
8939 patcmd.next = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008940 auto_next_pat(&patcmd, FALSE);
8941
8942 /* found one, start executing the autocommands */
8943 if (patcmd.curpat != NULL)
8944 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008945 /* add to active_apc_list */
8946 patcmd.next = active_apc_list;
8947 active_apc_list = &patcmd;
8948
Bram Moolenaar071d4272004-06-13 20:20:40 +00008949#ifdef FEAT_EVAL
8950 /* set v:cmdarg (only when there is a matching pattern) */
8951 save_cmdbang = get_vim_var_nr(VV_CMDBANG);
8952 if (eap != NULL)
8953 {
8954 save_cmdarg = set_cmdarg(eap, NULL);
8955 set_vim_var_nr(VV_CMDBANG, (long)eap->forceit);
8956 }
8957 else
8958 save_cmdarg = NULL; /* avoid gcc warning */
8959#endif
8960 retval = TRUE;
8961 /* mark the last pattern, to avoid an endless loop when more patterns
8962 * are added when executing autocommands */
8963 for (ap = patcmd.curpat; ap->next != NULL; ap = ap->next)
8964 ap->last = FALSE;
8965 ap->last = TRUE;
8966 check_lnums(TRUE); /* make sure cursor and topline are valid */
8967 do_cmdline(NULL, getnextac, (void *)&patcmd,
8968 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
8969#ifdef FEAT_EVAL
8970 if (eap != NULL)
8971 {
8972 (void)set_cmdarg(NULL, save_cmdarg);
8973 set_vim_var_nr(VV_CMDBANG, save_cmdbang);
8974 }
8975#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008976 /* delete from active_apc_list */
8977 if (active_apc_list == &patcmd) /* just in case */
8978 active_apc_list = patcmd.next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008979 }
8980
8981 --RedrawingDisabled;
8982 autocmd_busy = save_autocmd_busy;
8983 filechangeshell_busy = FALSE;
8984 autocmd_nested = save_autocmd_nested;
8985 vim_free(sourcing_name);
8986 sourcing_name = save_sourcing_name;
8987 sourcing_lnum = save_sourcing_lnum;
Bram Moolenaara0174af2008-01-02 20:08:25 +00008988 vim_free(autocmd_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008989 autocmd_fname = save_autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00008990 autocmd_fname_full = save_autocmd_fname_full;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008991 autocmd_bufnr = save_autocmd_bufnr;
8992 autocmd_match = save_autocmd_match;
8993#ifdef FEAT_EVAL
8994 current_SID = save_current_SID;
8995 restore_funccal(save_funccalp);
Bram Moolenaar05159a02005-02-26 23:04:13 +00008996# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +00008997 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00008998 prof_child_exit(&wait_time);
8999# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009000#endif
9001 vim_free(fname);
9002 vim_free(sfname);
9003 --nesting; /* see matching increment above */
9004
9005 /*
9006 * When stopping to execute autocommands, restore the search patterns and
9007 * the redo buffer.
9008 */
9009 if (!autocmd_busy)
9010 {
9011 restore_search_patterns();
9012 restoreRedobuff();
9013 did_filetype = FALSE;
9014 }
9015
9016 /*
9017 * Some events don't set or reset the Changed flag.
9018 * Check if still in the same buffer!
9019 */
9020 if (curbuf == old_curbuf
9021 && (event == EVENT_BUFREADPOST
9022 || event == EVENT_BUFWRITEPOST
9023 || event == EVENT_FILEAPPENDPOST
9024 || event == EVENT_VIMLEAVE
9025 || event == EVENT_VIMLEAVEPRE))
9026 {
9027#ifdef FEAT_TITLE
9028 if (curbuf->b_changed != save_changed)
9029 need_maketitle = TRUE;
9030#endif
9031 curbuf->b_changed = save_changed;
9032 }
9033
9034 au_cleanup(); /* may really delete removed patterns/commands now */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009035
9036BYPASS_AU:
9037 /* When wiping out a buffer make sure all its buffer-local autocommands
9038 * are deleted. */
9039 if (event == EVENT_BUFWIPEOUT && buf != NULL)
9040 aubuflocal_remove(buf);
9041
Bram Moolenaar071d4272004-06-13 20:20:40 +00009042 return retval;
9043}
9044
Bram Moolenaar78ab3312007-09-29 12:16:41 +00009045# ifdef FEAT_EVAL
9046static char_u *old_termresponse = NULL;
9047# endif
9048
9049/*
9050 * Block triggering autocommands until unblock_autocmd() is called.
9051 * Can be used recursively, so long as it's symmetric.
9052 */
9053 void
9054block_autocmds()
9055{
9056# ifdef FEAT_EVAL
9057 /* Remember the value of v:termresponse. */
9058 if (autocmd_blocked == 0)
9059 old_termresponse = get_vim_var_str(VV_TERMRESPONSE);
9060# endif
9061 ++autocmd_blocked;
9062}
9063
9064 void
9065unblock_autocmds()
9066{
9067 --autocmd_blocked;
9068
9069# ifdef FEAT_EVAL
9070 /* When v:termresponse was set while autocommands were blocked, trigger
9071 * the autocommands now. Esp. useful when executing a shell command
9072 * during startup (vimdiff). */
9073 if (autocmd_blocked == 0
9074 && get_vim_var_str(VV_TERMRESPONSE) != old_termresponse)
9075 apply_autocmds(EVENT_TERMRESPONSE, NULL, NULL, FALSE, curbuf);
9076# endif
9077}
9078
Bram Moolenaar071d4272004-06-13 20:20:40 +00009079/*
9080 * Find next autocommand pattern that matches.
9081 */
9082 static void
9083auto_next_pat(apc, stop_at_last)
9084 AutoPatCmd *apc;
9085 int stop_at_last; /* stop when 'last' flag is set */
9086{
9087 AutoPat *ap;
9088 AutoCmd *cp;
9089 char_u *name;
9090 char *s;
9091
9092 vim_free(sourcing_name);
9093 sourcing_name = NULL;
9094
9095 for (ap = apc->curpat; ap != NULL && !got_int; ap = ap->next)
9096 {
9097 apc->curpat = NULL;
9098
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009099 /* Only use a pattern when it has not been removed, has commands and
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009100 * the group matches. For buffer-local autocommands only check the
9101 * buffer number. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009102 if (ap->pat != NULL && ap->cmds != NULL
9103 && (apc->group == AUGROUP_ALL || apc->group == ap->group))
9104 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009105 /* execution-condition */
9106 if (ap->buflocal_nr == 0
Bram Moolenaar748bf032005-02-02 23:04:36 +00009107 ? (match_file_pat(NULL, ap->reg_prog, apc->fname,
9108 apc->sfname, apc->tail, ap->allow_dirs))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009109 : ap->buflocal_nr == apc->arg_bufnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009110 {
9111 name = event_nr2name(apc->event);
9112 s = _("%s Auto commands for \"%s\"");
9113 sourcing_name = alloc((unsigned)(STRLEN(s)
9114 + STRLEN(name) + ap->patlen + 1));
9115 if (sourcing_name != NULL)
9116 {
9117 sprintf((char *)sourcing_name, s,
9118 (char *)name, (char *)ap->pat);
9119 if (p_verbose >= 8)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00009120 {
9121 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00009122 smsg((char_u *)_("Executing %s"), sourcing_name);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00009123 verbose_leave();
9124 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009125 }
9126
9127 apc->curpat = ap;
9128 apc->nextcmd = ap->cmds;
9129 /* mark last command */
9130 for (cp = ap->cmds; cp->next != NULL; cp = cp->next)
9131 cp->last = FALSE;
9132 cp->last = TRUE;
9133 }
9134 line_breakcheck();
9135 if (apc->curpat != NULL) /* found a match */
9136 break;
9137 }
9138 if (stop_at_last && ap->last)
9139 break;
9140 }
9141}
9142
9143/*
9144 * Get next autocommand command.
9145 * Called by do_cmdline() to get the next line for ":if".
9146 * Returns allocated string, or NULL for end of autocommands.
9147 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009148 static char_u *
9149getnextac(c, cookie, indent)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009150 int c UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009151 void *cookie;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009152 int indent UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009153{
9154 AutoPatCmd *acp = (AutoPatCmd *)cookie;
9155 char_u *retval;
9156 AutoCmd *ac;
9157
9158 /* Can be called again after returning the last line. */
9159 if (acp->curpat == NULL)
9160 return NULL;
9161
9162 /* repeat until we find an autocommand to execute */
9163 for (;;)
9164 {
9165 /* skip removed commands */
9166 while (acp->nextcmd != NULL && acp->nextcmd->cmd == NULL)
9167 if (acp->nextcmd->last)
9168 acp->nextcmd = NULL;
9169 else
9170 acp->nextcmd = acp->nextcmd->next;
9171
9172 if (acp->nextcmd != NULL)
9173 break;
9174
9175 /* at end of commands, find next pattern that matches */
9176 if (acp->curpat->last)
9177 acp->curpat = NULL;
9178 else
9179 acp->curpat = acp->curpat->next;
9180 if (acp->curpat != NULL)
9181 auto_next_pat(acp, TRUE);
9182 if (acp->curpat == NULL)
9183 return NULL;
9184 }
9185
9186 ac = acp->nextcmd;
9187
9188 if (p_verbose >= 9)
9189 {
Bram Moolenaara04f10b2005-05-31 22:09:46 +00009190 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00009191 smsg((char_u *)_("autocommand %s"), ac->cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009192 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaara04f10b2005-05-31 22:09:46 +00009193 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009194 }
9195 retval = vim_strsave(ac->cmd);
9196 autocmd_nested = ac->nested;
9197#ifdef FEAT_EVAL
9198 current_SID = ac->scriptID;
9199#endif
9200 if (ac->last)
9201 acp->nextcmd = NULL;
9202 else
9203 acp->nextcmd = ac->next;
9204 return retval;
9205}
9206
9207/*
9208 * Return TRUE if there is a matching autocommand for "fname".
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009209 * To account for buffer-local autocommands, function needs to know
9210 * in which buffer the file will be opened.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009211 */
9212 int
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009213has_autocmd(event, sfname, buf)
Bram Moolenaar754b5602006-02-09 23:53:20 +00009214 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009215 char_u *sfname;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009216 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009217{
9218 AutoPat *ap;
9219 char_u *fname;
9220 char_u *tail = gettail(sfname);
9221 int retval = FALSE;
9222
9223 fname = FullName_save(sfname, FALSE);
9224 if (fname == NULL)
9225 return FALSE;
9226
9227#ifdef BACKSLASH_IN_FILENAME
9228 /*
9229 * Replace all backslashes with forward slashes. This makes the
9230 * autocommand patterns portable between Unix and MS-DOS.
9231 */
9232 sfname = vim_strsave(sfname);
9233 if (sfname != NULL)
9234 forward_slash(sfname);
9235 forward_slash(fname);
9236#endif
9237
9238 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
9239 if (ap->pat != NULL && ap->cmds != NULL
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00009240 && (ap->buflocal_nr == 0
Bram Moolenaar748bf032005-02-02 23:04:36 +00009241 ? match_file_pat(NULL, ap->reg_prog,
9242 fname, sfname, tail, ap->allow_dirs)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00009243 : buf != NULL && ap->buflocal_nr == buf->b_fnum
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009244 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009245 {
9246 retval = TRUE;
9247 break;
9248 }
9249
9250 vim_free(fname);
9251#ifdef BACKSLASH_IN_FILENAME
9252 vim_free(sfname);
9253#endif
9254
9255 return retval;
9256}
9257
9258#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9259/*
9260 * Function given to ExpandGeneric() to obtain the list of autocommand group
9261 * names.
9262 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009263 char_u *
9264get_augroup_name(xp, idx)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009265 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009266 int idx;
9267{
9268 if (idx == augroups.ga_len) /* add "END" add the end */
9269 return (char_u *)"END";
9270 if (idx >= augroups.ga_len) /* end of list */
9271 return NULL;
9272 if (AUGROUP_NAME(idx) == NULL) /* skip deleted entries */
9273 return (char_u *)"";
9274 return AUGROUP_NAME(idx); /* return a name */
9275}
9276
9277static int include_groups = FALSE;
9278
9279 char_u *
9280set_context_in_autocmd(xp, arg, doautocmd)
9281 expand_T *xp;
9282 char_u *arg;
Bram Moolenaard812df62008-11-09 12:46:09 +00009283 int doautocmd; /* TRUE for :doauto*, FALSE for :autocmd */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009284{
9285 char_u *p;
9286 int group;
9287
9288 /* check for a group name, skip it if present */
9289 include_groups = FALSE;
9290 p = arg;
9291 group = au_get_grouparg(&arg);
9292 if (group == AUGROUP_ERROR)
9293 return NULL;
9294 /* If there only is a group name that's what we expand. */
9295 if (*arg == NUL && group != AUGROUP_ALL && !vim_iswhite(arg[-1]))
9296 {
9297 arg = p;
9298 group = AUGROUP_ALL;
9299 }
9300
9301 /* skip over event name */
9302 for (p = arg; *p != NUL && !vim_iswhite(*p); ++p)
9303 if (*p == ',')
9304 arg = p + 1;
9305 if (*p == NUL)
9306 {
9307 if (group == AUGROUP_ALL)
9308 include_groups = TRUE;
9309 xp->xp_context = EXPAND_EVENTS; /* expand event name */
9310 xp->xp_pattern = arg;
9311 return NULL;
9312 }
9313
9314 /* skip over pattern */
9315 arg = skipwhite(p);
9316 while (*arg && (!vim_iswhite(*arg) || arg[-1] == '\\'))
9317 arg++;
9318 if (*arg)
9319 return arg; /* expand (next) command */
9320
9321 if (doautocmd)
9322 xp->xp_context = EXPAND_FILES; /* expand file names */
9323 else
9324 xp->xp_context = EXPAND_NOTHING; /* pattern is not expanded */
9325 return NULL;
9326}
9327
9328/*
9329 * Function given to ExpandGeneric() to obtain the list of event names.
9330 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009331 char_u *
9332get_event_name(xp, idx)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009333 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009334 int idx;
9335{
9336 if (idx < augroups.ga_len) /* First list group names, if wanted */
9337 {
9338 if (!include_groups || AUGROUP_NAME(idx) == NULL)
9339 return (char_u *)""; /* skip deleted entries */
9340 return AUGROUP_NAME(idx); /* return a name */
9341 }
9342 return (char_u *)event_names[idx - augroups.ga_len].name;
9343}
9344
9345#endif /* FEAT_CMDL_COMPL */
9346
9347/*
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009348 * Return TRUE if autocmd is supported.
9349 */
9350 int
9351autocmd_supported(name)
9352 char_u *name;
9353{
9354 char_u *p;
9355
9356 return (event_name2nr(name, &p) != NUM_EVENTS);
9357}
9358
9359/*
Bram Moolenaar195d6352005-12-19 22:08:24 +00009360 * Return TRUE if an autocommand is defined for a group, event and
9361 * pattern: The group can be omitted to accept any group. "event" and "pattern"
9362 * can be NULL to accept any event and pattern. "pattern" can be NULL to accept
9363 * any pattern. Buffer-local patterns <buffer> or <buffer=N> are accepted.
9364 * Used for:
9365 * exists("#Group") or
9366 * exists("#Group#Event") or
9367 * exists("#Group#Event#pat") or
9368 * exists("#Event") or
9369 * exists("#Event#pat")
Bram Moolenaar071d4272004-06-13 20:20:40 +00009370 */
9371 int
Bram Moolenaar195d6352005-12-19 22:08:24 +00009372au_exists(arg)
9373 char_u *arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009374{
Bram Moolenaar195d6352005-12-19 22:08:24 +00009375 char_u *arg_save;
9376 char_u *pattern = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009377 char_u *event_name;
9378 char_u *p;
Bram Moolenaar754b5602006-02-09 23:53:20 +00009379 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009380 AutoPat *ap;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009381 buf_T *buflocal_buf = NULL;
Bram Moolenaar195d6352005-12-19 22:08:24 +00009382 int group;
9383 int retval = FALSE;
9384
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009385 /* Make a copy so that we can change the '#' chars to a NUL. */
Bram Moolenaar195d6352005-12-19 22:08:24 +00009386 arg_save = vim_strsave(arg);
9387 if (arg_save == NULL)
9388 return FALSE;
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009389 p = vim_strchr(arg_save, '#');
Bram Moolenaar195d6352005-12-19 22:08:24 +00009390 if (p != NULL)
9391 *p++ = NUL;
9392
9393 /* First, look for an autocmd group name */
9394 group = au_find_group(arg_save);
9395 if (group == AUGROUP_ERROR)
9396 {
9397 /* Didn't match a group name, assume the first argument is an event. */
9398 group = AUGROUP_ALL;
9399 event_name = arg_save;
9400 }
9401 else
9402 {
9403 if (p == NULL)
9404 {
9405 /* "Group": group name is present and it's recognized */
9406 retval = TRUE;
9407 goto theend;
9408 }
9409
9410 /* Must be "Group#Event" or "Group#Event#pat". */
9411 event_name = p;
9412 p = vim_strchr(event_name, '#');
9413 if (p != NULL)
9414 *p++ = NUL; /* "Group#Event#pat" */
9415 }
9416
9417 pattern = p; /* "pattern" is NULL when there is no pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009418
9419 /* find the index (enum) for the event name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009420 event = event_name2nr(event_name, &p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009421
9422 /* return FALSE if the event name is not recognized */
Bram Moolenaar195d6352005-12-19 22:08:24 +00009423 if (event == NUM_EVENTS)
9424 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009425
9426 /* Find the first autocommand for this event.
9427 * If there isn't any, return FALSE;
9428 * If there is one and no pattern given, return TRUE; */
9429 ap = first_autopat[(int)event];
9430 if (ap == NULL)
Bram Moolenaar195d6352005-12-19 22:08:24 +00009431 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009432 if (pattern == NULL)
Bram Moolenaar195d6352005-12-19 22:08:24 +00009433 {
9434 retval = TRUE;
9435 goto theend;
9436 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009437
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009438 /* if pattern is "<buffer>", special handling is needed which uses curbuf */
9439 /* for pattern "<buffer=N>, fnamecmp() will work fine */
9440 if (STRICMP(pattern, "<buffer>") == 0)
9441 buflocal_buf = curbuf;
9442
Bram Moolenaar071d4272004-06-13 20:20:40 +00009443 /* Check if there is an autocommand with the given pattern. */
9444 for ( ; ap != NULL; ap = ap->next)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009445 /* only use a pattern when it has not been removed and has commands. */
9446 /* For buffer-local autocommands, fnamecmp() works fine. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009447 if (ap->pat != NULL && ap->cmds != NULL
Bram Moolenaar195d6352005-12-19 22:08:24 +00009448 && (group == AUGROUP_ALL || ap->group == group)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009449 && (buflocal_buf == NULL
9450 ? fnamecmp(ap->pat, pattern) == 0
9451 : ap->buflocal_nr == buflocal_buf->b_fnum))
Bram Moolenaar195d6352005-12-19 22:08:24 +00009452 {
9453 retval = TRUE;
9454 break;
9455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009456
Bram Moolenaar195d6352005-12-19 22:08:24 +00009457theend:
9458 vim_free(arg_save);
9459 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009460}
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009461
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009462#else /* FEAT_AUTOCMD */
9463
9464/*
9465 * Prepare for executing commands for (hidden) buffer "buf".
9466 * This is the non-autocommand version, it simply saves "curbuf" and sets
9467 * "curbuf" and "curwin" to match "buf".
9468 */
9469 void
9470aucmd_prepbuf(aco, buf)
9471 aco_save_T *aco; /* structure to save values in */
9472 buf_T *buf; /* new curbuf */
9473{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009474 aco->save_curbuf = curbuf;
9475 --curbuf->b_nwindows;
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009476 curbuf = buf;
9477 curwin->w_buffer = buf;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009478 ++curbuf->b_nwindows;
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009479}
9480
9481/*
9482 * Restore after executing commands for a (hidden) buffer.
9483 * This is the non-autocommand version.
9484 */
9485 void
9486aucmd_restbuf(aco)
9487 aco_save_T *aco; /* structure holding saved values */
9488{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009489 --curbuf->b_nwindows;
9490 curbuf = aco->save_curbuf;
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009491 curwin->w_buffer = curbuf;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009492 ++curbuf->b_nwindows;
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009493}
9494
Bram Moolenaar071d4272004-06-13 20:20:40 +00009495#endif /* FEAT_AUTOCMD */
9496
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009497
Bram Moolenaar071d4272004-06-13 20:20:40 +00009498#if defined(FEAT_AUTOCMD) || defined(FEAT_WILDIGN) || defined(PROTO)
9499/*
Bram Moolenaar748bf032005-02-02 23:04:36 +00009500 * Try matching a filename with a "pattern" ("prog" is NULL), or use the
9501 * precompiled regprog "prog" ("pattern" is NULL). That avoids calling
9502 * vim_regcomp() often.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009503 * Used for autocommands and 'wildignore'.
9504 * Returns TRUE if there is a match, FALSE otherwise.
9505 */
9506 int
Bram Moolenaar748bf032005-02-02 23:04:36 +00009507match_file_pat(pattern, prog, fname, sfname, tail, allow_dirs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009508 char_u *pattern; /* pattern to match with */
Bram Moolenaar748bf032005-02-02 23:04:36 +00009509 regprog_T *prog; /* pre-compiled regprog or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009510 char_u *fname; /* full path of file name */
9511 char_u *sfname; /* short file name or NULL */
9512 char_u *tail; /* tail of path */
9513 int allow_dirs; /* allow matching with dir */
9514{
9515 regmatch_T regmatch;
9516 int result = FALSE;
9517#ifdef FEAT_OSFILETYPE
9518 int no_pattern = FALSE; /* TRUE if check is filetype only */
9519 char_u *type_start;
9520 char_u c;
9521 int match = FALSE;
9522#endif
9523
9524#ifdef CASE_INSENSITIVE_FILENAME
9525 regmatch.rm_ic = TRUE; /* Always ignore case */
9526#else
9527 regmatch.rm_ic = FALSE; /* Don't ever ignore case */
9528#endif
9529#ifdef FEAT_OSFILETYPE
9530 if (*pattern == '<')
9531 {
9532 /* There is a filetype condition specified with this pattern.
9533 * Check the filetype matches first. If not, don't bother with the
9534 * pattern (set regprog to NULL).
9535 * Always use magic for the regexp.
9536 */
9537
9538 for (type_start = pattern + 1; (c = *pattern); pattern++)
9539 {
9540 if ((c == ';' || c == '>') && match == FALSE)
9541 {
9542 *pattern = NUL; /* Terminate the string */
9543 match = mch_check_filetype(fname, type_start);
9544 *pattern = c; /* Restore the terminator */
9545 type_start = pattern + 1;
9546 }
9547 if (c == '>')
9548 break;
9549 }
9550
9551 /* (c should never be NUL, but check anyway) */
9552 if (match == FALSE || c == NUL)
9553 regmatch.regprog = NULL; /* Doesn't match - don't check pat. */
9554 else if (*pattern == NUL)
9555 {
9556 regmatch.regprog = NULL; /* Vim will try to free regprog later */
9557 no_pattern = TRUE; /* Always matches - don't check pat. */
9558 }
9559 else
9560 regmatch.regprog = vim_regcomp(pattern + 1, RE_MAGIC);
9561 }
9562 else
9563#endif
Bram Moolenaar748bf032005-02-02 23:04:36 +00009564 {
9565 if (prog != NULL)
9566 regmatch.regprog = prog;
9567 else
9568 regmatch.regprog = vim_regcomp(pattern, RE_MAGIC);
9569 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009570
9571 /*
9572 * Try for a match with the pattern with:
9573 * 1. the full file name, when the pattern has a '/'.
9574 * 2. the short file name, when the pattern has a '/'.
9575 * 3. the tail of the file name, when the pattern has no '/'.
9576 */
9577 if (
9578#ifdef FEAT_OSFILETYPE
9579 /* If the check is for a filetype only and we don't care
9580 * about the path then skip all the regexp stuff.
9581 */
9582 no_pattern ||
9583#endif
9584 (regmatch.regprog != NULL
9585 && ((allow_dirs
9586 && (vim_regexec(&regmatch, fname, (colnr_T)0)
9587 || (sfname != NULL
9588 && vim_regexec(&regmatch, sfname, (colnr_T)0))))
9589 || (!allow_dirs && vim_regexec(&regmatch, tail, (colnr_T)0)))))
9590 result = TRUE;
9591
Bram Moolenaar748bf032005-02-02 23:04:36 +00009592 if (prog == NULL)
9593 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009594 return result;
9595}
9596#endif
9597
9598#if defined(FEAT_WILDIGN) || defined(PROTO)
9599/*
9600 * Return TRUE if a file matches with a pattern in "list".
9601 * "list" is a comma-separated list of patterns, like 'wildignore'.
9602 * "sfname" is the short file name or NULL, "ffname" the long file name.
9603 */
9604 int
9605match_file_list(list, sfname, ffname)
9606 char_u *list;
9607 char_u *sfname;
9608 char_u *ffname;
9609{
9610 char_u buf[100];
9611 char_u *tail;
9612 char_u *regpat;
9613 char allow_dirs;
9614 int match;
9615 char_u *p;
9616
9617 tail = gettail(sfname);
9618
9619 /* try all patterns in 'wildignore' */
9620 p = list;
9621 while (*p)
9622 {
9623 copy_option_part(&p, buf, 100, ",");
9624 regpat = file_pat_to_reg_pat(buf, NULL, &allow_dirs, FALSE);
9625 if (regpat == NULL)
9626 break;
Bram Moolenaar748bf032005-02-02 23:04:36 +00009627 match = match_file_pat(regpat, NULL, ffname, sfname,
9628 tail, (int)allow_dirs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009629 vim_free(regpat);
9630 if (match)
9631 return TRUE;
9632 }
9633 return FALSE;
9634}
9635#endif
9636
9637/*
9638 * Convert the given pattern "pat" which has shell style wildcards in it, into
9639 * a regular expression, and return the result in allocated memory. If there
9640 * is a directory path separator to be matched, then TRUE is put in
9641 * allow_dirs, otherwise FALSE is put there -- webb.
9642 * Handle backslashes before special characters, like "\*" and "\ ".
9643 *
9644 * If FEAT_OSFILETYPE defined then pass initial <type> through unchanged. Eg:
9645 * '<html>myfile' becomes '<html>^myfile$' -- leonard.
9646 *
9647 * Returns NULL when out of memory.
9648 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009649 char_u *
9650file_pat_to_reg_pat(pat, pat_end, allow_dirs, no_bslash)
9651 char_u *pat;
9652 char_u *pat_end; /* first char after pattern or NULL */
9653 char *allow_dirs; /* Result passed back out in here */
Bram Moolenaar78a15312009-05-15 19:33:18 +00009654 int no_bslash UNUSED; /* Don't use a backward slash as pathsep */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009655{
9656 int size;
9657 char_u *endp;
9658 char_u *reg_pat;
9659 char_u *p;
9660 int i;
9661 int nested = 0;
9662 int add_dollar = TRUE;
9663#ifdef FEAT_OSFILETYPE
9664 int check_length = 0;
9665#endif
9666
9667 if (allow_dirs != NULL)
9668 *allow_dirs = FALSE;
9669 if (pat_end == NULL)
9670 pat_end = pat + STRLEN(pat);
9671
9672#ifdef FEAT_OSFILETYPE
9673 /* Find out how much of the string is the filetype check */
9674 if (*pat == '<')
9675 {
9676 /* Count chars until the next '>' */
9677 for (p = pat + 1; p < pat_end && *p != '>'; p++)
9678 ;
9679 if (p < pat_end)
9680 {
9681 /* Pattern is of the form <.*>.* */
9682 check_length = p - pat + 1;
9683 if (p + 1 >= pat_end)
9684 {
9685 /* The 'pattern' is a filetype check ONLY */
9686 reg_pat = (char_u *)alloc(check_length + 1);
9687 if (reg_pat != NULL)
9688 {
9689 mch_memmove(reg_pat, pat, (size_t)check_length);
9690 reg_pat[check_length] = NUL;
9691 }
9692 return reg_pat;
9693 }
9694 }
9695 /* else: there was no closing '>' - assume it was a normal pattern */
9696
9697 }
9698 pat += check_length;
9699 size = 2 + check_length;
9700#else
9701 size = 2; /* '^' at start, '$' at end */
9702#endif
9703
9704 for (p = pat; p < pat_end; p++)
9705 {
9706 switch (*p)
9707 {
9708 case '*':
9709 case '.':
9710 case ',':
9711 case '{':
9712 case '}':
9713 case '~':
9714 size += 2; /* extra backslash */
9715 break;
9716#ifdef BACKSLASH_IN_FILENAME
9717 case '\\':
9718 case '/':
9719 size += 4; /* could become "[\/]" */
9720 break;
9721#endif
9722 default:
9723 size++;
9724# ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009725 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009726 {
9727 ++p;
9728 ++size;
9729 }
9730# endif
9731 break;
9732 }
9733 }
9734 reg_pat = alloc(size + 1);
9735 if (reg_pat == NULL)
9736 return NULL;
9737
9738#ifdef FEAT_OSFILETYPE
9739 /* Copy the type check in to the start. */
9740 if (check_length)
9741 mch_memmove(reg_pat, pat - check_length, (size_t)check_length);
9742 i = check_length;
9743#else
9744 i = 0;
9745#endif
9746
9747 if (pat[0] == '*')
9748 while (pat[0] == '*' && pat < pat_end - 1)
9749 pat++;
9750 else
9751 reg_pat[i++] = '^';
9752 endp = pat_end - 1;
9753 if (*endp == '*')
9754 {
9755 while (endp - pat > 0 && *endp == '*')
9756 endp--;
9757 add_dollar = FALSE;
9758 }
9759 for (p = pat; *p && nested >= 0 && p <= endp; p++)
9760 {
9761 switch (*p)
9762 {
9763 case '*':
9764 reg_pat[i++] = '.';
9765 reg_pat[i++] = '*';
Bram Moolenaar02743632005-07-25 20:42:36 +00009766 while (p[1] == '*') /* "**" matches like "*" */
9767 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009768 break;
9769 case '.':
9770#ifdef RISCOS
9771 if (allow_dirs != NULL)
9772 *allow_dirs = TRUE;
9773 /* FALLTHROUGH */
9774#endif
9775 case '~':
9776 reg_pat[i++] = '\\';
9777 reg_pat[i++] = *p;
9778 break;
9779 case '?':
9780#ifdef RISCOS
9781 case '#':
9782#endif
9783 reg_pat[i++] = '.';
9784 break;
9785 case '\\':
9786 if (p[1] == NUL)
9787 break;
9788#ifdef BACKSLASH_IN_FILENAME
9789 if (!no_bslash)
9790 {
9791 /* translate:
9792 * "\x" to "\\x" e.g., "dir\file"
9793 * "\*" to "\\.*" e.g., "dir\*.c"
9794 * "\?" to "\\." e.g., "dir\??.c"
9795 * "\+" to "\+" e.g., "fileX\+.c"
9796 */
9797 if ((vim_isfilec(p[1]) || p[1] == '*' || p[1] == '?')
9798 && p[1] != '+')
9799 {
9800 reg_pat[i++] = '[';
9801 reg_pat[i++] = '\\';
9802 reg_pat[i++] = '/';
9803 reg_pat[i++] = ']';
9804 if (allow_dirs != NULL)
9805 *allow_dirs = TRUE;
9806 break;
9807 }
9808 }
9809#endif
9810 if (*++p == '?'
9811#ifdef BACKSLASH_IN_FILENAME
9812 && no_bslash
9813#endif
9814 )
9815 reg_pat[i++] = '?';
9816 else
9817 if (*p == ',')
9818 reg_pat[i++] = ',';
9819 else
9820 {
9821 if (allow_dirs != NULL && vim_ispathsep(*p)
9822#ifdef BACKSLASH_IN_FILENAME
9823 && (!no_bslash || *p != '\\')
9824#endif
9825 )
9826 *allow_dirs = TRUE;
9827 reg_pat[i++] = '\\';
9828 reg_pat[i++] = *p;
9829 }
9830 break;
9831#ifdef BACKSLASH_IN_FILENAME
9832 case '/':
9833 reg_pat[i++] = '[';
9834 reg_pat[i++] = '\\';
9835 reg_pat[i++] = '/';
9836 reg_pat[i++] = ']';
9837 if (allow_dirs != NULL)
9838 *allow_dirs = TRUE;
9839 break;
9840#endif
9841 case '{':
9842 reg_pat[i++] = '\\';
9843 reg_pat[i++] = '(';
9844 nested++;
9845 break;
9846 case '}':
9847 reg_pat[i++] = '\\';
9848 reg_pat[i++] = ')';
9849 --nested;
9850 break;
9851 case ',':
9852 if (nested)
9853 {
9854 reg_pat[i++] = '\\';
9855 reg_pat[i++] = '|';
9856 }
9857 else
9858 reg_pat[i++] = ',';
9859 break;
9860 default:
9861# ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009862 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009863 reg_pat[i++] = *p++;
9864 else
9865# endif
9866 if (allow_dirs != NULL && vim_ispathsep(*p))
9867 *allow_dirs = TRUE;
9868 reg_pat[i++] = *p;
9869 break;
9870 }
9871 }
9872 if (add_dollar)
9873 reg_pat[i++] = '$';
9874 reg_pat[i] = NUL;
9875 if (nested != 0)
9876 {
9877 if (nested < 0)
9878 EMSG(_("E219: Missing {."));
9879 else
9880 EMSG(_("E220: Missing }."));
9881 vim_free(reg_pat);
9882 reg_pat = NULL;
9883 }
9884 return reg_pat;
9885}