blob: 46d364a67e816e566c89e009fece6e91723a2d3d [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 */
Bram Moolenaar32b485f2009-07-29 16:06:27 +0000124 linenr_T bw_conv_error_lnum; /* first line with error or zero */
125 linenr_T bw_start_lnum; /* line number at start of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126# ifdef USE_ICONV
127 iconv_t bw_iconv_fd; /* descriptor for iconv() or -1 */
128# endif
129#endif
130};
131
132static int buf_write_bytes __ARGS((struct bw_info *ip));
133
134#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000135static linenr_T readfile_linenr __ARGS((linenr_T linecnt, char_u *p, char_u *endp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136static int ucs2bytes __ARGS((unsigned c, char_u **pp, int flags));
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +0000137static int need_conversion __ARGS((char_u *fenc));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138static int get_fio_flags __ARGS((char_u *ptr));
139static char_u *check_for_bom __ARGS((char_u *p, long size, int *lenp, int flags));
140static int make_bom __ARGS((char_u *buf, char_u *name));
141# ifdef WIN3264
142static int get_win_fio_flags __ARGS((char_u *ptr));
143# endif
144# ifdef MACOS_X
145static int get_mac_fio_flags __ARGS((char_u *ptr));
146# endif
147#endif
148static int move_lines __ARGS((buf_T *frombuf, buf_T *tobuf));
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000149#ifdef FEAT_AUTOCMD
150static char *e_auchangedbuf = N_("E812: Autocommands changed buffer or buffer name");
151#endif
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000152
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153 void
154filemess(buf, name, s, attr)
155 buf_T *buf;
156 char_u *name;
157 char_u *s;
158 int attr;
159{
160 int msg_scroll_save;
161
162 if (msg_silent != 0)
163 return;
164 msg_add_fname(buf, name); /* put file name in IObuff with quotes */
165 /* If it's extremely long, truncate it. */
166 if (STRLEN(IObuff) > IOSIZE - 80)
167 IObuff[IOSIZE - 80] = NUL;
168 STRCAT(IObuff, s);
169 /*
170 * For the first message may have to start a new line.
171 * For further ones overwrite the previous one, reset msg_scroll before
172 * calling filemess().
173 */
174 msg_scroll_save = msg_scroll;
175 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
176 msg_scroll = FALSE;
177 if (!msg_scroll) /* wait a bit when overwriting an error msg */
178 check_for_delay(FALSE);
179 msg_start();
180 msg_scroll = msg_scroll_save;
181 msg_scrolled_ign = TRUE;
182 /* may truncate the message to avoid a hit-return prompt */
183 msg_outtrans_attr(msg_may_trunc(FALSE, IObuff), attr);
184 msg_clr_eos();
185 out_flush();
186 msg_scrolled_ign = FALSE;
187}
188
189/*
190 * Read lines from file "fname" into the buffer after line "from".
191 *
192 * 1. We allocate blocks with lalloc, as big as possible.
193 * 2. Each block is filled with characters from the file with a single read().
194 * 3. The lines are inserted in the buffer with ml_append().
195 *
196 * (caller must check that fname != NULL, unless READ_STDIN is used)
197 *
198 * "lines_to_skip" is the number of lines that must be skipped
199 * "lines_to_read" is the number of lines that are appended
200 * When not recovering lines_to_skip is 0 and lines_to_read MAXLNUM.
201 *
202 * flags:
203 * READ_NEW starting to edit a new buffer
204 * READ_FILTER reading filter output
205 * READ_STDIN read from stdin instead of a file
206 * READ_BUFFER read from curbuf instead of a file (converting after reading
207 * stdin)
208 * READ_DUMMY read into a dummy buffer (to check if file contents changed)
209 *
210 * return FAIL for failure, OK otherwise
211 */
212 int
213readfile(fname, sfname, from, lines_to_skip, lines_to_read, eap, flags)
214 char_u *fname;
215 char_u *sfname;
216 linenr_T from;
217 linenr_T lines_to_skip;
218 linenr_T lines_to_read;
219 exarg_T *eap; /* can be NULL! */
220 int flags;
221{
222 int fd = 0;
223 int newfile = (flags & READ_NEW);
224 int check_readonly;
225 int filtering = (flags & READ_FILTER);
226 int read_stdin = (flags & READ_STDIN);
227 int read_buffer = (flags & READ_BUFFER);
Bram Moolenaar690ffc02008-01-04 15:31:21 +0000228 int set_options = newfile || read_buffer
229 || (eap != NULL && eap->read_edit);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230 linenr_T read_buf_lnum = 1; /* next line to read from curbuf */
231 colnr_T read_buf_col = 0; /* next char to read from this line */
232 char_u c;
233 linenr_T lnum = from;
234 char_u *ptr = NULL; /* pointer into read buffer */
235 char_u *buffer = NULL; /* read buffer */
236 char_u *new_buffer = NULL; /* init to shut up gcc */
237 char_u *line_start = NULL; /* init to shut up gcc */
238 int wasempty; /* buffer was empty before reading */
239 colnr_T len;
240 long size = 0;
241 char_u *p;
242 long filesize = 0;
243 int skip_read = FALSE;
244#ifdef FEAT_CRYPT
245 char_u *cryptkey = NULL;
246#endif
247 int split = 0; /* number of split lines */
248#define UNKNOWN 0x0fffffff /* file size is unknown */
249 linenr_T linecnt;
250 int error = FALSE; /* errors encountered */
251 int ff_error = EOL_UNKNOWN; /* file format with errors */
252 long linerest = 0; /* remaining chars in line */
253#ifdef UNIX
254 int perm = 0;
255 int swap_mode = -1; /* protection bits for swap file */
256#else
257 int perm;
258#endif
259 int fileformat = 0; /* end-of-line format */
260 int keep_fileformat = FALSE;
261 struct stat st;
262 int file_readonly;
263 linenr_T skip_count = 0;
264 linenr_T read_count = 0;
265 int msg_save = msg_scroll;
266 linenr_T read_no_eol_lnum = 0; /* non-zero lnum when last line of
267 * last read was missing the eol */
268 int try_mac = (vim_strchr(p_ffs, 'm') != NULL);
269 int try_dos = (vim_strchr(p_ffs, 'd') != NULL);
270 int try_unix = (vim_strchr(p_ffs, 'x') != NULL);
271 int file_rewind = FALSE;
272#ifdef FEAT_MBYTE
273 int can_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000274 linenr_T conv_error = 0; /* line nr with conversion error */
275 linenr_T illegal_byte = 0; /* line nr with illegal byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 int keep_dest_enc = FALSE; /* don't retry when char doesn't fit
277 in destination encoding */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000278 int bad_char_behavior = BAD_REPLACE;
279 /* BAD_KEEP, BAD_DROP or character to
280 * replace with */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281 char_u *tmpname = NULL; /* name of 'charconvert' output file */
282 int fio_flags = 0;
283 char_u *fenc; /* fileencoding to use */
284 int fenc_alloced; /* fenc_next is in allocated memory */
285 char_u *fenc_next = NULL; /* next item in 'fencs' or NULL */
286 int advance_fenc = FALSE;
287 long real_size = 0;
288# ifdef USE_ICONV
289 iconv_t iconv_fd = (iconv_t)-1; /* descriptor for iconv() or -1 */
290# ifdef FEAT_EVAL
291 int did_iconv = FALSE; /* TRUE when iconv() failed and trying
292 'charconvert' next */
293# endif
294# endif
295 int converted = FALSE; /* TRUE if conversion done */
296 int notconverted = FALSE; /* TRUE if conversion wanted but it
297 wasn't possible */
298 char_u conv_rest[CONV_RESTLEN];
299 int conv_restlen = 0; /* nr of bytes in conv_rest[] */
300#endif
301
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000302#ifdef FEAT_AUTOCMD
303 /* Remember the initial values of curbuf, curbuf->b_ffname and
304 * curbuf->b_fname to detect whether they are altered as a result of
305 * executing nasty autocommands. Also check if "fname" and "sfname"
306 * point to one of these values. */
307 buf_T *old_curbuf = curbuf;
308 char_u *old_b_ffname = curbuf->b_ffname;
309 char_u *old_b_fname = curbuf->b_fname;
310 int using_b_ffname = (fname == curbuf->b_ffname)
311 || (sfname == curbuf->b_ffname);
312 int using_b_fname = (fname == curbuf->b_fname)
313 || (sfname == curbuf->b_fname);
314#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315 write_no_eol_lnum = 0; /* in case it was set by the previous read */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000316
317 /*
318 * If there is no file name yet, use the one for the read file.
319 * BF_NOTEDITED is set to reflect this.
320 * Don't do this for a read from a filter.
321 * Only do this when 'cpoptions' contains the 'f' flag.
322 */
323 if (curbuf->b_ffname == NULL
324 && !filtering
325 && fname != NULL
326 && vim_strchr(p_cpo, CPO_FNAMER) != NULL
327 && !(flags & READ_DUMMY))
328 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000329 if (set_rw_fname(fname, sfname) == FAIL)
330 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 }
332
Bram Moolenaardf177f62005-02-22 08:39:57 +0000333 /* After reading a file the cursor line changes but we don't want to
334 * display the line. */
335 ex_no_reprint = TRUE;
336
Bram Moolenaar55b7cf82006-09-09 12:52:42 +0000337 /* don't display the file info for another buffer now */
338 need_fileinfo = FALSE;
339
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 /*
341 * For Unix: Use the short file name whenever possible.
342 * Avoids problems with networks and when directory names are changed.
343 * Don't do this for MS-DOS, a "cd" in a sub-shell may have moved us to
344 * another directory, which we don't detect.
345 */
346 if (sfname == NULL)
347 sfname = fname;
348#if defined(UNIX) || defined(__EMX__)
349 fname = sfname;
350#endif
351
352#ifdef FEAT_AUTOCMD
353 /*
354 * The BufReadCmd and FileReadCmd events intercept the reading process by
355 * executing the associated commands instead.
356 */
357 if (!filtering && !read_stdin && !read_buffer)
358 {
359 pos_T pos;
360
361 pos = curbuf->b_op_start;
362
363 /* Set '[ mark to the line above where the lines go (line 1 if zero). */
364 curbuf->b_op_start.lnum = ((from == 0) ? 1 : from);
365 curbuf->b_op_start.col = 0;
366
367 if (newfile)
368 {
369 if (apply_autocmds_exarg(EVENT_BUFREADCMD, NULL, sfname,
370 FALSE, curbuf, eap))
371#ifdef FEAT_EVAL
372 return aborting() ? FAIL : OK;
373#else
374 return OK;
375#endif
376 }
377 else if (apply_autocmds_exarg(EVENT_FILEREADCMD, sfname, sfname,
378 FALSE, NULL, eap))
379#ifdef FEAT_EVAL
380 return aborting() ? FAIL : OK;
381#else
382 return OK;
383#endif
384
385 curbuf->b_op_start = pos;
386 }
387#endif
388
389 if ((shortmess(SHM_OVER) || curbuf->b_help) && p_verbose == 0)
390 msg_scroll = FALSE; /* overwrite previous file message */
391 else
392 msg_scroll = TRUE; /* don't overwrite previous file message */
393
394 /*
395 * If the name ends in a path separator, we can't open it. Check here,
396 * because reading the file may actually work, but then creating the swap
397 * file may destroy it! Reported on MS-DOS and Win 95.
398 * If the name is too long we might crash further on, quit here.
399 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000400 if (fname != NULL && *fname != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000402 p = fname + STRLEN(fname);
403 if (after_pathsep(fname, p) || STRLEN(fname) >= MAXPATHL)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000404 {
405 filemess(curbuf, fname, (char_u *)_("Illegal file name"), 0);
406 msg_end();
407 msg_scroll = msg_save;
408 return FAIL;
409 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 }
411
412#ifdef UNIX
413 /*
414 * On Unix it is possible to read a directory, so we have to
415 * check for it before the mch_open().
416 */
417 if (!read_stdin && !read_buffer)
418 {
419 perm = mch_getperm(fname);
420 if (perm >= 0 && !S_ISREG(perm) /* not a regular file ... */
421# ifdef S_ISFIFO
422 && !S_ISFIFO(perm) /* ... or fifo */
423# endif
424# ifdef S_ISSOCK
425 && !S_ISSOCK(perm) /* ... or socket */
426# endif
Bram Moolenaarfe1c56d2007-07-10 15:10:54 +0000427# ifdef OPEN_CHR_FILES
428 && !(S_ISCHR(perm) && is_dev_fd_file(fname))
429 /* ... or a character special file named /dev/fd/<n> */
430# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 )
432 {
433 if (S_ISDIR(perm))
434 filemess(curbuf, fname, (char_u *)_("is a directory"), 0);
435 else
436 filemess(curbuf, fname, (char_u *)_("is not a file"), 0);
437 msg_end();
438 msg_scroll = msg_save;
439 return FAIL;
440 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441
Bram Moolenaarc67764a2006-10-12 19:14:26 +0000442# if defined(MSDOS) || defined(MSWIN) || defined(OS2)
443 /*
444 * MS-Windows allows opening a device, but we will probably get stuck
445 * trying to read it.
446 */
447 if (!p_odev && mch_nodetype(fname) == NODE_WRITABLE)
448 {
Bram Moolenaar5386a122007-06-28 20:02:32 +0000449 filemess(curbuf, fname, (char_u *)_("is a device (disabled with 'opendevice' option)"), 0);
Bram Moolenaarc67764a2006-10-12 19:14:26 +0000450 msg_end();
451 msg_scroll = msg_save;
452 return FAIL;
453 }
454# endif
Bram Moolenaar043545e2006-10-10 16:44:07 +0000455 }
456#endif
457
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 /* set default 'fileformat' */
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000459 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 {
461 if (eap != NULL && eap->force_ff != 0)
462 set_fileformat(get_fileformat_force(curbuf, eap), OPT_LOCAL);
463 else if (*p_ffs != NUL)
464 set_fileformat(default_fileformat(), OPT_LOCAL);
465 }
466
467 /* set or reset 'binary' */
468 if (eap != NULL && eap->force_bin != 0)
469 {
470 int oldval = curbuf->b_p_bin;
471
472 curbuf->b_p_bin = (eap->force_bin == FORCE_BIN);
473 set_options_bin(oldval, curbuf->b_p_bin, OPT_LOCAL);
474 }
475
476 /*
477 * When opening a new file we take the readonly flag from the file.
478 * Default is r/w, can be set to r/o below.
479 * Don't reset it when in readonly mode
480 * Only set/reset b_p_ro when BF_CHECK_RO is set.
481 */
482 check_readonly = (newfile && (curbuf->b_flags & BF_CHECK_RO));
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000483 if (check_readonly && !readonlymode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 curbuf->b_p_ro = FALSE;
485
486 if (newfile && !read_stdin && !read_buffer)
487 {
488 /* Remember time of file.
489 * For RISCOS, also remember the filetype.
490 */
491 if (mch_stat((char *)fname, &st) >= 0)
492 {
493 buf_store_time(curbuf, &st, fname);
494 curbuf->b_mtime_read = curbuf->b_mtime;
495
496#if defined(RISCOS) && defined(FEAT_OSFILETYPE)
497 /* Read the filetype into the buffer local filetype option. */
498 mch_read_filetype(fname);
499#endif
500#ifdef UNIX
501 /*
502 * Use the protection bits of the original file for the swap file.
503 * This makes it possible for others to read the name of the
504 * edited file from the swapfile, but only if they can read the
505 * edited file.
506 * Remove the "write" and "execute" bits for group and others
507 * (they must not write the swapfile).
508 * Add the "read" and "write" bits for the user, otherwise we may
509 * not be able to write to the file ourselves.
510 * Setting the bits is done below, after creating the swap file.
511 */
512 swap_mode = (st.st_mode & 0644) | 0600;
513#endif
514#ifdef FEAT_CW_EDITOR
515 /* Get the FSSpec on MacOS
516 * TODO: Update it properly when the buffer name changes
517 */
518 (void)GetFSSpecFromPath(curbuf->b_ffname, &curbuf->b_FSSpec);
519#endif
520#ifdef VMS
521 curbuf->b_fab_rfm = st.st_fab_rfm;
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000522 curbuf->b_fab_rat = st.st_fab_rat;
523 curbuf->b_fab_mrs = st.st_fab_mrs;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524#endif
525 }
526 else
527 {
528 curbuf->b_mtime = 0;
529 curbuf->b_mtime_read = 0;
530 curbuf->b_orig_size = 0;
531 curbuf->b_orig_mode = 0;
532 }
533
534 /* Reset the "new file" flag. It will be set again below when the
535 * file doesn't exist. */
536 curbuf->b_flags &= ~(BF_NEW | BF_NEW_W);
537 }
538
539/*
540 * for UNIX: check readonly with perm and mch_access()
541 * for RISCOS: same as Unix, otherwise file gets re-datestamped!
542 * for MSDOS and Amiga: check readonly by trying to open the file for writing
543 */
544 file_readonly = FALSE;
545 if (read_stdin)
546 {
547#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
548 /* Force binary I/O on stdin to avoid CR-LF -> LF conversion. */
549 setmode(0, O_BINARY);
550#endif
551 }
552 else if (!read_buffer)
553 {
554#ifdef USE_MCH_ACCESS
555 if (
556# ifdef UNIX
557 !(perm & 0222) ||
558# endif
559 mch_access((char *)fname, W_OK))
560 file_readonly = TRUE;
561 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
562#else
563 if (!newfile
564 || readonlymode
565 || (fd = mch_open((char *)fname, O_RDWR | O_EXTRA, 0)) < 0)
566 {
567 file_readonly = TRUE;
568 /* try to open ro */
569 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
570 }
571#endif
572 }
573
574 if (fd < 0) /* cannot open at all */
575 {
576#ifndef UNIX
577 int isdir_f;
578#endif
579 msg_scroll = msg_save;
580#ifndef UNIX
581 /*
582 * On MSDOS and Amiga we can't open a directory, check here.
583 */
584 isdir_f = (mch_isdir(fname));
585 perm = mch_getperm(fname); /* check if the file exists */
586 if (isdir_f)
587 {
588 filemess(curbuf, sfname, (char_u *)_("is a directory"), 0);
589 curbuf->b_p_ro = TRUE; /* must use "w!" now */
590 }
591 else
592#endif
593 if (newfile)
594 {
595 if (perm < 0)
596 {
597 /*
598 * Set the 'new-file' flag, so that when the file has
599 * been created by someone else, a ":w" will complain.
600 */
601 curbuf->b_flags |= BF_NEW;
602
603 /* Create a swap file now, so that other Vims are warned
604 * that we are editing this file. Don't do this for a
605 * "nofile" or "nowrite" buffer type. */
606#ifdef FEAT_QUICKFIX
607 if (!bt_dontwrite(curbuf))
608#endif
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000609 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610 check_need_swap(newfile);
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000611#ifdef FEAT_AUTOCMD
612 /* SwapExists autocommand may mess things up */
613 if (curbuf != old_curbuf
614 || (using_b_ffname
615 && (old_b_ffname != curbuf->b_ffname))
616 || (using_b_fname
617 && (old_b_fname != curbuf->b_fname)))
618 {
619 EMSG(_(e_auchangedbuf));
620 return FAIL;
621 }
622#endif
623 }
Bram Moolenaar5b962cf2005-12-12 21:58:40 +0000624 if (dir_of_file_exists(fname))
625 filemess(curbuf, sfname, (char_u *)_("[New File]"), 0);
626 else
627 filemess(curbuf, sfname,
628 (char_u *)_("[New DIRECTORY]"), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629#ifdef FEAT_VIMINFO
630 /* Even though this is a new file, it might have been
631 * edited before and deleted. Get the old marks. */
632 check_marks_read();
633#endif
634#ifdef FEAT_MBYTE
635 if (eap != NULL && eap->force_enc != 0)
636 {
637 /* set forced 'fileencoding' */
638 fenc = enc_canonize(eap->cmd + eap->force_enc);
639 if (fenc != NULL)
640 set_string_option_direct((char_u *)"fenc", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000641 fenc, OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642 vim_free(fenc);
643 }
644#endif
645#ifdef FEAT_AUTOCMD
646 apply_autocmds_exarg(EVENT_BUFNEWFILE, sfname, sfname,
647 FALSE, curbuf, eap);
648#endif
649 /* remember the current fileformat */
650 save_file_ff(curbuf);
651
652#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
653 if (aborting()) /* autocmds may abort script processing */
654 return FAIL;
655#endif
656 return OK; /* a new file is not an error */
657 }
658 else
659 {
Bram Moolenaar202795b2005-10-11 20:29:39 +0000660 filemess(curbuf, sfname, (char_u *)(
661# ifdef EFBIG
662 (errno == EFBIG) ? _("[File too big]") :
663# endif
664 _("[Permission Denied]")), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 curbuf->b_p_ro = TRUE; /* must use "w!" now */
666 }
667 }
668
669 return FAIL;
670 }
671
672 /*
673 * Only set the 'ro' flag for readonly files the first time they are
674 * loaded. Help files always get readonly mode
675 */
676 if ((check_readonly && file_readonly) || curbuf->b_help)
677 curbuf->b_p_ro = TRUE;
678
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000679 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 {
Bram Moolenaar690ffc02008-01-04 15:31:21 +0000681 /* Don't change 'eol' if reading from buffer as it will already be
682 * correctly set when reading stdin. */
683 if (!read_buffer)
684 {
685 curbuf->b_p_eol = TRUE;
686 curbuf->b_start_eol = TRUE;
687 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688#ifdef FEAT_MBYTE
689 curbuf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000690 curbuf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691#endif
692 }
693
694 /* Create a swap file now, so that other Vims are warned that we are
695 * editing this file.
696 * Don't do this for a "nofile" or "nowrite" buffer type. */
697#ifdef FEAT_QUICKFIX
698 if (!bt_dontwrite(curbuf))
699#endif
700 {
701 check_need_swap(newfile);
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000702#ifdef FEAT_AUTOCMD
703 if (!read_stdin && (curbuf != old_curbuf
704 || (using_b_ffname && (old_b_ffname != curbuf->b_ffname))
705 || (using_b_fname && (old_b_fname != curbuf->b_fname))))
706 {
707 EMSG(_(e_auchangedbuf));
708 if (!read_buffer)
709 close(fd);
710 return FAIL;
711 }
712#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713#ifdef UNIX
714 /* Set swap file protection bits after creating it. */
Bram Moolenaarf061e0b2009-06-24 15:32:01 +0000715 if (swap_mode > 0 && curbuf->b_ml.ml_mfp != NULL
716 && curbuf->b_ml.ml_mfp->mf_fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 (void)mch_setperm(curbuf->b_ml.ml_mfp->mf_fname, (long)swap_mode);
718#endif
719 }
720
Bram Moolenaarb815dac2005-12-07 20:59:24 +0000721#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 /* If "Quit" selected at ATTENTION dialog, don't load the file */
723 if (swap_exists_action == SEA_QUIT)
724 {
725 if (!read_buffer && !read_stdin)
726 close(fd);
727 return FAIL;
728 }
729#endif
730
731 ++no_wait_return; /* don't wait for return yet */
732
733 /*
734 * Set '[ mark to the line above where the lines go (line 1 if zero).
735 */
736 curbuf->b_op_start.lnum = ((from == 0) ? 1 : from);
737 curbuf->b_op_start.col = 0;
738
739#ifdef FEAT_AUTOCMD
740 if (!read_buffer)
741 {
742 int m = msg_scroll;
743 int n = msg_scrolled;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744
745 /*
746 * The file must be closed again, the autocommands may want to change
747 * the file before reading it.
748 */
749 if (!read_stdin)
750 close(fd); /* ignore errors */
751
752 /*
753 * The output from the autocommands should not overwrite anything and
754 * should not be overwritten: Set msg_scroll, restore its value if no
755 * output was done.
756 */
757 msg_scroll = TRUE;
758 if (filtering)
759 apply_autocmds_exarg(EVENT_FILTERREADPRE, NULL, sfname,
760 FALSE, curbuf, eap);
761 else if (read_stdin)
762 apply_autocmds_exarg(EVENT_STDINREADPRE, NULL, sfname,
763 FALSE, curbuf, eap);
764 else if (newfile)
765 apply_autocmds_exarg(EVENT_BUFREADPRE, NULL, sfname,
766 FALSE, curbuf, eap);
767 else
768 apply_autocmds_exarg(EVENT_FILEREADPRE, sfname, sfname,
769 FALSE, NULL, eap);
770 if (msg_scrolled == n)
771 msg_scroll = m;
772
773#ifdef FEAT_EVAL
774 if (aborting()) /* autocmds may abort script processing */
775 {
776 --no_wait_return;
777 msg_scroll = msg_save;
778 curbuf->b_p_ro = TRUE; /* must use "w!" now */
779 return FAIL;
780 }
781#endif
782 /*
783 * Don't allow the autocommands to change the current buffer.
784 * Try to re-open the file.
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000785 *
786 * Don't allow the autocommands to change the buffer name either
787 * (cd for example) if it invalidates fname or sfname.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 */
789 if (!read_stdin && (curbuf != old_curbuf
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000790 || (using_b_ffname && (old_b_ffname != curbuf->b_ffname))
791 || (using_b_fname && (old_b_fname != curbuf->b_fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 || (fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) < 0))
793 {
794 --no_wait_return;
795 msg_scroll = msg_save;
796 if (fd < 0)
797 EMSG(_("E200: *ReadPre autocommands made the file unreadable"));
798 else
799 EMSG(_("E201: *ReadPre autocommands must not change current buffer"));
800 curbuf->b_p_ro = TRUE; /* must use "w!" now */
801 return FAIL;
802 }
803 }
804#endif /* FEAT_AUTOCMD */
805
806 /* Autocommands may add lines to the file, need to check if it is empty */
807 wasempty = (curbuf->b_ml.ml_flags & ML_EMPTY);
808
809 if (!recoverymode && !filtering && !(flags & READ_DUMMY))
810 {
811 /*
812 * Show the user that we are busy reading the input. Sometimes this
813 * may take a while. When reading from stdin another program may
814 * still be running, don't move the cursor to the last line, unless
815 * always using the GUI.
816 */
817 if (read_stdin)
818 {
819#ifndef ALWAYS_USE_GUI
820 mch_msg(_("Vim: Reading from stdin...\n"));
821#endif
822#ifdef FEAT_GUI
823 /* Also write a message in the GUI window, if there is one. */
824 if (gui.in_use && !gui.dying && !gui.starting)
825 {
826 p = (char_u *)_("Reading from stdin...");
827 gui_write(p, (int)STRLEN(p));
828 }
829#endif
830 }
831 else if (!read_buffer)
832 filemess(curbuf, sfname, (char_u *)"", 0);
833 }
834
835 msg_scroll = FALSE; /* overwrite the file message */
836
837 /*
838 * Set linecnt now, before the "retry" caused by a wrong guess for
839 * fileformat, and after the autocommands, which may change them.
840 */
841 linecnt = curbuf->b_ml.ml_line_count;
842
843#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000844 /* "++bad=" argument. */
845 if (eap != NULL && eap->bad_char != 0)
Bram Moolenaar195d6352005-12-19 22:08:24 +0000846 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000847 bad_char_behavior = eap->bad_char;
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000848 if (set_options)
Bram Moolenaar195d6352005-12-19 22:08:24 +0000849 curbuf->b_bad_char = eap->bad_char;
850 }
851 else
852 curbuf->b_bad_char = 0;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000853
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 /*
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000855 * Decide which 'encoding' to use or use first.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 */
857 if (eap != NULL && eap->force_enc != 0)
858 {
859 fenc = enc_canonize(eap->cmd + eap->force_enc);
860 fenc_alloced = TRUE;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000861 keep_dest_enc = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 }
863 else if (curbuf->b_p_bin)
864 {
865 fenc = (char_u *)""; /* binary: don't convert */
866 fenc_alloced = FALSE;
867 }
868 else if (curbuf->b_help)
869 {
870 char_u firstline[80];
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000871 int fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872
873 /* Help files are either utf-8 or latin1. Try utf-8 first, if this
874 * fails it must be latin1.
875 * Always do this when 'encoding' is "utf-8". Otherwise only do
876 * this when needed to avoid [converted] remarks all the time.
877 * It is needed when the first line contains non-ASCII characters.
878 * That is only in *.??x files. */
879 fenc = (char_u *)"latin1";
880 c = enc_utf8;
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000881 if (!c && !read_stdin)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000883 fc = fname[STRLEN(fname) - 1];
884 if (TOLOWER_ASC(fc) == 'x')
885 {
886 /* Read the first line (and a bit more). Immediately rewind to
887 * the start of the file. If the read() fails "len" is -1. */
888 len = vim_read(fd, firstline, 80);
889 lseek(fd, (off_t)0L, SEEK_SET);
890 for (p = firstline; p < firstline + len; ++p)
891 if (*p >= 0x80)
892 {
893 c = TRUE;
894 break;
895 }
896 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897 }
898
899 if (c)
900 {
901 fenc_next = fenc;
902 fenc = (char_u *)"utf-8";
903
904 /* When the file is utf-8 but a character doesn't fit in
905 * 'encoding' don't retry. In help text editing utf-8 bytes
906 * doesn't make sense. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000907 if (!enc_utf8)
908 keep_dest_enc = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909 }
910 fenc_alloced = FALSE;
911 }
912 else if (*p_fencs == NUL)
913 {
914 fenc = curbuf->b_p_fenc; /* use format from buffer */
915 fenc_alloced = FALSE;
916 }
917 else
918 {
919 fenc_next = p_fencs; /* try items in 'fileencodings' */
920 fenc = next_fenc(&fenc_next);
921 fenc_alloced = TRUE;
922 }
923#endif
924
925 /*
926 * Jump back here to retry reading the file in different ways.
927 * Reasons to retry:
928 * - encoding conversion failed: try another one from "fenc_next"
929 * - BOM detected and fenc was set, need to setup conversion
930 * - "fileformat" check failed: try another
931 *
932 * Variables set for special retry actions:
933 * "file_rewind" Rewind the file to start reading it again.
934 * "advance_fenc" Advance "fenc" using "fenc_next".
935 * "skip_read" Re-use already read bytes (BOM detected).
936 * "did_iconv" iconv() conversion failed, try 'charconvert'.
937 * "keep_fileformat" Don't reset "fileformat".
938 *
939 * Other status indicators:
940 * "tmpname" When != NULL did conversion with 'charconvert'.
941 * Output file has to be deleted afterwards.
942 * "iconv_fd" When != -1 did conversion with iconv().
943 */
944retry:
945
946 if (file_rewind)
947 {
948 if (read_buffer)
949 {
950 read_buf_lnum = 1;
951 read_buf_col = 0;
952 }
953 else if (read_stdin || lseek(fd, (off_t)0L, SEEK_SET) != 0)
954 {
955 /* Can't rewind the file, give up. */
956 error = TRUE;
957 goto failed;
958 }
959 /* Delete the previously read lines. */
960 while (lnum > from)
961 ml_delete(lnum--, FALSE);
962 file_rewind = FALSE;
963#ifdef FEAT_MBYTE
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000964 if (set_options)
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000965 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 curbuf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000967 curbuf->b_start_bomb = FALSE;
968 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000969 conv_error = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970#endif
971 }
972
973 /*
974 * When retrying with another "fenc" and the first time "fileformat"
975 * will be reset.
976 */
977 if (keep_fileformat)
978 keep_fileformat = FALSE;
979 else
980 {
981 if (eap != NULL && eap->force_ff != 0)
Bram Moolenaar1c860362008-11-12 15:05:21 +0000982 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 fileformat = get_fileformat_force(curbuf, eap);
Bram Moolenaar1c860362008-11-12 15:05:21 +0000984 try_unix = try_dos = try_mac = FALSE;
985 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 else if (curbuf->b_p_bin)
987 fileformat = EOL_UNIX; /* binary: use Unix format */
988 else if (*p_ffs == NUL)
989 fileformat = get_fileformat(curbuf);/* use format from buffer */
990 else
991 fileformat = EOL_UNKNOWN; /* detect from file */
992 }
993
994#ifdef FEAT_MBYTE
995# ifdef USE_ICONV
996 if (iconv_fd != (iconv_t)-1)
997 {
998 /* aborted conversion with iconv(), close the descriptor */
999 iconv_close(iconv_fd);
1000 iconv_fd = (iconv_t)-1;
1001 }
1002# endif
1003
1004 if (advance_fenc)
1005 {
1006 /*
1007 * Try the next entry in 'fileencodings'.
1008 */
1009 advance_fenc = FALSE;
1010
1011 if (eap != NULL && eap->force_enc != 0)
1012 {
1013 /* Conversion given with "++cc=" wasn't possible, read
1014 * without conversion. */
1015 notconverted = TRUE;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001016 conv_error = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017 if (fenc_alloced)
1018 vim_free(fenc);
1019 fenc = (char_u *)"";
1020 fenc_alloced = FALSE;
1021 }
1022 else
1023 {
1024 if (fenc_alloced)
1025 vim_free(fenc);
1026 if (fenc_next != NULL)
1027 {
1028 fenc = next_fenc(&fenc_next);
1029 fenc_alloced = (fenc_next != NULL);
1030 }
1031 else
1032 {
1033 fenc = (char_u *)"";
1034 fenc_alloced = FALSE;
1035 }
1036 }
1037 if (tmpname != NULL)
1038 {
1039 mch_remove(tmpname); /* delete converted file */
1040 vim_free(tmpname);
1041 tmpname = NULL;
1042 }
1043 }
1044
1045 /*
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00001046 * Conversion may be required when the encoding of the file is different
1047 * from 'encoding' or 'encoding' is UTF-16, UCS-2 or UCS-4.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 */
1049 fio_flags = 0;
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00001050 converted = need_conversion(fenc);
1051 if (converted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001052 {
1053
1054 /* "ucs-bom" means we need to check the first bytes of the file
1055 * for a BOM. */
1056 if (STRCMP(fenc, ENC_UCSBOM) == 0)
1057 fio_flags = FIO_UCSBOM;
1058
1059 /*
1060 * Check if UCS-2/4 or Latin1 to UTF-8 conversion needs to be
1061 * done. This is handled below after read(). Prepare the
1062 * fio_flags to avoid having to parse the string each time.
1063 * Also check for Unicode to Latin1 conversion, because iconv()
1064 * appears not to handle this correctly. This works just like
1065 * conversion to UTF-8 except how the resulting character is put in
1066 * the buffer.
1067 */
1068 else if (enc_utf8 || STRCMP(p_enc, "latin1") == 0)
1069 fio_flags = get_fio_flags(fenc);
1070
1071# ifdef WIN3264
1072 /*
1073 * Conversion from an MS-Windows codepage to UTF-8 or another codepage
1074 * is handled with MultiByteToWideChar().
1075 */
1076 if (fio_flags == 0)
1077 fio_flags = get_win_fio_flags(fenc);
1078# endif
1079
1080# ifdef MACOS_X
1081 /* Conversion from Apple MacRoman to latin1 or UTF-8 */
1082 if (fio_flags == 0)
1083 fio_flags = get_mac_fio_flags(fenc);
1084# endif
1085
1086# ifdef USE_ICONV
1087 /*
1088 * Try using iconv() if we can't convert internally.
1089 */
1090 if (fio_flags == 0
1091# ifdef FEAT_EVAL
1092 && !did_iconv
1093# endif
1094 )
1095 iconv_fd = (iconv_t)my_iconv_open(
1096 enc_utf8 ? (char_u *)"utf-8" : p_enc, fenc);
1097# endif
1098
1099# ifdef FEAT_EVAL
1100 /*
1101 * Use the 'charconvert' expression when conversion is required
1102 * and we can't do it internally or with iconv().
1103 */
1104 if (fio_flags == 0 && !read_stdin && !read_buffer && *p_ccv != NUL
1105# ifdef USE_ICONV
1106 && iconv_fd == (iconv_t)-1
1107# endif
1108 )
1109 {
1110# ifdef USE_ICONV
1111 did_iconv = FALSE;
1112# endif
1113 /* Skip conversion when it's already done (retry for wrong
1114 * "fileformat"). */
1115 if (tmpname == NULL)
1116 {
1117 tmpname = readfile_charconvert(fname, fenc, &fd);
1118 if (tmpname == NULL)
1119 {
1120 /* Conversion failed. Try another one. */
1121 advance_fenc = TRUE;
1122 if (fd < 0)
1123 {
1124 /* Re-opening the original file failed! */
1125 EMSG(_("E202: Conversion made file unreadable!"));
1126 error = TRUE;
1127 goto failed;
1128 }
1129 goto retry;
1130 }
1131 }
1132 }
1133 else
1134# endif
1135 {
1136 if (fio_flags == 0
1137# ifdef USE_ICONV
1138 && iconv_fd == (iconv_t)-1
1139# endif
1140 )
1141 {
1142 /* Conversion wanted but we can't.
1143 * Try the next conversion in 'fileencodings' */
1144 advance_fenc = TRUE;
1145 goto retry;
1146 }
1147 }
1148 }
1149
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001150 /* Set "can_retry" when it's possible to rewind the file and try with
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 * another "fenc" value. It's FALSE when no other "fenc" to try, reading
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001152 * stdin or fixed at a specific encoding. */
1153 can_retry = (*fenc != NUL && !read_stdin && !keep_dest_enc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154#endif
1155
1156 if (!skip_read)
1157 {
1158 linerest = 0;
1159 filesize = 0;
1160 skip_count = lines_to_skip;
1161 read_count = lines_to_read;
1162#ifdef FEAT_MBYTE
1163 conv_restlen = 0;
1164#endif
1165 }
1166
1167 while (!error && !got_int)
1168 {
1169 /*
1170 * We allocate as much space for the file as we can get, plus
1171 * space for the old line plus room for one terminating NUL.
1172 * The amount is limited by the fact that read() only can read
1173 * upto max_unsigned characters (and other things).
1174 */
1175#if SIZEOF_INT <= 2
1176 if (linerest >= 0x7ff0)
1177 {
1178 ++split;
1179 *ptr = NL; /* split line by inserting a NL */
1180 size = 1;
1181 }
1182 else
1183#endif
1184 {
1185 if (!skip_read)
1186 {
1187#if SIZEOF_INT > 2
Bram Moolenaar311d9822007-02-27 15:48:28 +00001188# if defined(SSIZE_MAX) && (SSIZE_MAX < 0x10000L)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 size = SSIZE_MAX; /* use max I/O size, 52K */
1190# else
1191 size = 0x10000L; /* use buffer >= 64K */
1192# endif
1193#else
1194 size = 0x7ff0L - linerest; /* limit buffer to 32K */
1195#endif
1196
Bram Moolenaarc1e37902006-04-18 21:55:01 +00001197 for ( ; size >= 10; size = (long)((long_u)size >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 {
1199 if ((new_buffer = lalloc((long_u)(size + linerest + 1),
1200 FALSE)) != NULL)
1201 break;
1202 }
1203 if (new_buffer == NULL)
1204 {
1205 do_outofmem_msg((long_u)(size * 2 + linerest + 1));
1206 error = TRUE;
1207 break;
1208 }
1209 if (linerest) /* copy characters from the previous buffer */
1210 mch_memmove(new_buffer, ptr - linerest, (size_t)linerest);
1211 vim_free(buffer);
1212 buffer = new_buffer;
1213 ptr = buffer + linerest;
1214 line_start = buffer;
1215
1216#ifdef FEAT_MBYTE
1217 /* May need room to translate into.
1218 * For iconv() we don't really know the required space, use a
1219 * factor ICONV_MULT.
1220 * latin1 to utf-8: 1 byte becomes up to 2 bytes
1221 * utf-16 to utf-8: 2 bytes become up to 3 bytes, 4 bytes
1222 * become up to 4 bytes, size must be multiple of 2
1223 * ucs-2 to utf-8: 2 bytes become up to 3 bytes, size must be
1224 * multiple of 2
1225 * ucs-4 to utf-8: 4 bytes become up to 6 bytes, size must be
1226 * multiple of 4 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001227 real_size = (int)size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228# ifdef USE_ICONV
1229 if (iconv_fd != (iconv_t)-1)
1230 size = size / ICONV_MULT;
1231 else
1232# endif
1233 if (fio_flags & FIO_LATIN1)
1234 size = size / 2;
1235 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1236 size = (size * 2 / 3) & ~1;
1237 else if (fio_flags & FIO_UCS4)
1238 size = (size * 2 / 3) & ~3;
1239 else if (fio_flags == FIO_UCSBOM)
1240 size = size / ICONV_MULT; /* worst case */
1241# ifdef WIN3264
1242 else if (fio_flags & FIO_CODEPAGE)
1243 size = size / ICONV_MULT; /* also worst case */
1244# endif
1245# ifdef MACOS_X
1246 else if (fio_flags & FIO_MACROMAN)
1247 size = size / ICONV_MULT; /* also worst case */
1248# endif
1249#endif
1250
1251#ifdef FEAT_MBYTE
1252 if (conv_restlen > 0)
1253 {
1254 /* Insert unconverted bytes from previous line. */
1255 mch_memmove(ptr, conv_rest, conv_restlen);
1256 ptr += conv_restlen;
1257 size -= conv_restlen;
1258 }
1259#endif
1260
1261 if (read_buffer)
1262 {
1263 /*
1264 * Read bytes from curbuf. Used for converting text read
1265 * from stdin.
1266 */
1267 if (read_buf_lnum > from)
1268 size = 0;
1269 else
1270 {
1271 int n, ni;
1272 long tlen;
1273
1274 tlen = 0;
1275 for (;;)
1276 {
1277 p = ml_get(read_buf_lnum) + read_buf_col;
1278 n = (int)STRLEN(p);
1279 if ((int)tlen + n + 1 > size)
1280 {
1281 /* Filled up to "size", append partial line.
1282 * Change NL to NUL to reverse the effect done
1283 * below. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001284 n = (int)(size - tlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 for (ni = 0; ni < n; ++ni)
1286 {
1287 if (p[ni] == NL)
1288 ptr[tlen++] = NUL;
1289 else
1290 ptr[tlen++] = p[ni];
1291 }
1292 read_buf_col += n;
1293 break;
1294 }
1295 else
1296 {
1297 /* Append whole line and new-line. Change NL
1298 * to NUL to reverse the effect done below. */
1299 for (ni = 0; ni < n; ++ni)
1300 {
1301 if (p[ni] == NL)
1302 ptr[tlen++] = NUL;
1303 else
1304 ptr[tlen++] = p[ni];
1305 }
1306 ptr[tlen++] = NL;
1307 read_buf_col = 0;
1308 if (++read_buf_lnum > from)
1309 {
1310 /* When the last line didn't have an
1311 * end-of-line don't add it now either. */
1312 if (!curbuf->b_p_eol)
1313 --tlen;
1314 size = tlen;
1315 break;
1316 }
1317 }
1318 }
1319 }
1320 }
1321 else
1322 {
1323 /*
1324 * Read bytes from the file.
1325 */
1326 size = vim_read(fd, ptr, size);
1327 }
1328
1329 if (size <= 0)
1330 {
1331 if (size < 0) /* read error */
1332 error = TRUE;
1333#ifdef FEAT_MBYTE
1334 else if (conv_restlen > 0)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001335 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00001336 /*
1337 * Reached end-of-file but some trailing bytes could
1338 * not be converted. Truncated file?
1339 */
1340
1341 /* When we did a conversion report an error. */
1342 if (fio_flags != 0
1343# ifdef USE_ICONV
1344 || iconv_fd != (iconv_t)-1
1345# endif
1346 )
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001347 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00001348 if (conv_error == 0)
1349 conv_error = curbuf->b_ml.ml_line_count
1350 - linecnt + 1;
1351 }
1352 /* Remember the first linenr with an illegal byte */
1353 else if (illegal_byte == 0)
1354 illegal_byte = curbuf->b_ml.ml_line_count
1355 - linecnt + 1;
1356 if (bad_char_behavior == BAD_DROP)
1357 {
1358 *(ptr - conv_restlen) = NUL;
1359 conv_restlen = 0;
1360 }
1361 else
1362 {
1363 /* Replace the trailing bytes with the replacement
1364 * character if we were converting; if we weren't,
1365 * leave the UTF8 checking code to do it, as it
1366 * works slightly differently. */
1367 if (bad_char_behavior != BAD_KEEP && (fio_flags != 0
1368# ifdef USE_ICONV
1369 || iconv_fd != (iconv_t)-1
1370# endif
1371 ))
1372 {
1373 while (conv_restlen > 0)
1374 {
1375 *(--ptr) = bad_char_behavior;
1376 --conv_restlen;
1377 }
1378 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001379 fio_flags = 0; /* don't convert this */
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001380# ifdef USE_ICONV
1381 if (iconv_fd != (iconv_t)-1)
1382 {
1383 iconv_close(iconv_fd);
1384 iconv_fd = (iconv_t)-1;
1385 }
1386# endif
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001387 }
1388 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389#endif
1390 }
1391
1392#ifdef FEAT_CRYPT
1393 /*
1394 * At start of file: Check for magic number of encryption.
1395 */
1396 if (filesize == 0)
1397 cryptkey = check_for_cryptkey(cryptkey, ptr, &size,
1398 &filesize, newfile);
1399 /*
1400 * Decrypt the read bytes.
1401 */
1402 if (cryptkey != NULL && size > 0)
1403 for (p = ptr; p < ptr + size; ++p)
1404 ZDECODE(*p);
1405#endif
1406 }
1407 skip_read = FALSE;
1408
1409#ifdef FEAT_MBYTE
1410 /*
1411 * At start of file (or after crypt magic number): Check for BOM.
1412 * Also check for a BOM for other Unicode encodings, but not after
1413 * converting with 'charconvert' or when a BOM has already been
1414 * found.
1415 */
1416 if ((filesize == 0
1417# ifdef FEAT_CRYPT
1418 || (filesize == CRYPT_MAGIC_LEN && cryptkey != NULL)
1419# endif
1420 )
1421 && (fio_flags == FIO_UCSBOM
1422 || (!curbuf->b_p_bomb
1423 && tmpname == NULL
1424 && (*fenc == 'u' || (*fenc == NUL && enc_utf8)))))
1425 {
1426 char_u *ccname;
1427 int blen;
1428
1429 /* no BOM detection in a short file or in binary mode */
1430 if (size < 2 || curbuf->b_p_bin)
1431 ccname = NULL;
1432 else
1433 ccname = check_for_bom(ptr, size, &blen,
1434 fio_flags == FIO_UCSBOM ? FIO_ALL : get_fio_flags(fenc));
1435 if (ccname != NULL)
1436 {
1437 /* Remove BOM from the text */
1438 filesize += blen;
1439 size -= blen;
1440 mch_memmove(ptr, ptr + blen, (size_t)size);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001441 if (set_options)
Bram Moolenaar83eb8852007-08-12 13:51:26 +00001442 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443 curbuf->b_p_bomb = TRUE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +00001444 curbuf->b_start_bomb = TRUE;
1445 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 }
1447
1448 if (fio_flags == FIO_UCSBOM)
1449 {
1450 if (ccname == NULL)
1451 {
1452 /* No BOM detected: retry with next encoding. */
1453 advance_fenc = TRUE;
1454 }
1455 else
1456 {
1457 /* BOM detected: set "fenc" and jump back */
1458 if (fenc_alloced)
1459 vim_free(fenc);
1460 fenc = ccname;
1461 fenc_alloced = FALSE;
1462 }
1463 /* retry reading without getting new bytes or rewinding */
1464 skip_read = TRUE;
1465 goto retry;
1466 }
1467 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00001468
1469 /* Include not converted bytes. */
1470 ptr -= conv_restlen;
1471 size += conv_restlen;
1472 conv_restlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473#endif
1474 /*
1475 * Break here for a read error or end-of-file.
1476 */
1477 if (size <= 0)
1478 break;
1479
1480#ifdef FEAT_MBYTE
1481
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482# ifdef USE_ICONV
1483 if (iconv_fd != (iconv_t)-1)
1484 {
1485 /*
1486 * Attempt conversion of the read bytes to 'encoding' using
1487 * iconv().
1488 */
1489 const char *fromp;
1490 char *top;
1491 size_t from_size;
1492 size_t to_size;
1493
1494 fromp = (char *)ptr;
1495 from_size = size;
1496 ptr += size;
1497 top = (char *)ptr;
1498 to_size = real_size - size;
1499
1500 /*
1501 * If there is conversion error or not enough room try using
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001502 * another conversion. Except for when there is no
1503 * alternative (help files).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001505 while ((iconv(iconv_fd, (void *)&fromp, &from_size,
1506 &top, &to_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 == (size_t)-1 && ICONV_ERRNO != ICONV_EINVAL)
1508 || from_size > CONV_RESTLEN)
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001509 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001510 if (can_retry)
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001511 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001512 if (conv_error == 0)
1513 conv_error = readfile_linenr(linecnt,
1514 ptr, (char_u *)top);
Bram Moolenaar42eeac32005-06-29 22:40:58 +00001515
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001516 /* Deal with a bad byte and continue with the next. */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001517 ++fromp;
1518 --from_size;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001519 if (bad_char_behavior == BAD_KEEP)
1520 {
1521 *top++ = *(fromp - 1);
1522 --to_size;
1523 }
1524 else if (bad_char_behavior != BAD_DROP)
1525 {
1526 *top++ = bad_char_behavior;
1527 --to_size;
1528 }
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001529 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530
1531 if (from_size > 0)
1532 {
1533 /* Some remaining characters, keep them for the next
1534 * round. */
1535 mch_memmove(conv_rest, (char_u *)fromp, from_size);
1536 conv_restlen = (int)from_size;
1537 }
1538
1539 /* move the linerest to before the converted characters */
1540 line_start = ptr - linerest;
1541 mch_memmove(line_start, buffer, (size_t)linerest);
1542 size = (long)((char_u *)top - ptr);
1543 }
1544# endif
1545
1546# ifdef WIN3264
1547 if (fio_flags & FIO_CODEPAGE)
1548 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001549 char_u *src, *dst;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001550 WCHAR ucs2buf[3];
1551 int ucs2len;
1552 int codepage = FIO_GET_CP(fio_flags);
1553 int bytelen;
1554 int found_bad;
1555 char replstr[2];
1556
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 /*
1558 * Conversion from an MS-Windows codepage or UTF-8 to UTF-8 or
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001559 * a codepage, using standard MS-Windows functions. This
1560 * requires two steps:
1561 * 1. convert from 'fileencoding' to ucs-2
1562 * 2. convert from ucs-2 to 'encoding'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 *
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001564 * Because there may be illegal bytes AND an incomplete byte
1565 * sequence at the end, we may have to do the conversion one
1566 * character at a time to get it right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001569 /* Replacement string for WideCharToMultiByte(). */
1570 if (bad_char_behavior > 0)
1571 replstr[0] = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 else
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001573 replstr[0] = '?';
1574 replstr[1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575
1576 /*
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001577 * Move the bytes to the end of the buffer, so that we have
1578 * room to put the result at the start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001580 src = ptr + real_size - size;
1581 mch_memmove(src, ptr, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001583 /*
1584 * Do the conversion.
1585 */
1586 dst = ptr;
1587 size = size;
1588 while (size > 0)
1589 {
1590 found_bad = FALSE;
1591
1592# ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
1593 if (codepage == CP_UTF8)
1594 {
1595 /* Handle CP_UTF8 input ourselves to be able to handle
1596 * trailing bytes properly.
1597 * Get one UTF-8 character from src. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001598 bytelen = (int)utf_ptr2len_len(src, size);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001599 if (bytelen > size)
1600 {
1601 /* Only got some bytes of a character. Normally
1602 * it's put in "conv_rest", but if it's too long
1603 * deal with it as if they were illegal bytes. */
1604 if (bytelen <= CONV_RESTLEN)
1605 break;
1606
1607 /* weird overlong byte sequence */
1608 bytelen = size;
1609 found_bad = TRUE;
1610 }
1611 else
1612 {
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001613 int u8c = utf_ptr2char(src);
1614
Bram Moolenaar86e01082005-12-29 22:45:34 +00001615 if (u8c > 0xffff || (*src >= 0x80 && bytelen == 1))
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001616 found_bad = TRUE;
1617 ucs2buf[0] = u8c;
1618 ucs2len = 1;
1619 }
1620 }
1621 else
1622# endif
1623 {
1624 /* We don't know how long the byte sequence is, try
1625 * from one to three bytes. */
1626 for (bytelen = 1; bytelen <= size && bytelen <= 3;
1627 ++bytelen)
1628 {
1629 ucs2len = MultiByteToWideChar(codepage,
1630 MB_ERR_INVALID_CHARS,
1631 (LPCSTR)src, bytelen,
1632 ucs2buf, 3);
1633 if (ucs2len > 0)
1634 break;
1635 }
1636 if (ucs2len == 0)
1637 {
1638 /* If we have only one byte then it's probably an
1639 * incomplete byte sequence. Otherwise discard
1640 * one byte as a bad character. */
1641 if (size == 1)
1642 break;
1643 found_bad = TRUE;
1644 bytelen = 1;
1645 }
1646 }
1647
1648 if (!found_bad)
1649 {
1650 int i;
1651
1652 /* Convert "ucs2buf[ucs2len]" to 'enc' in "dst". */
1653 if (enc_utf8)
1654 {
1655 /* From UCS-2 to UTF-8. Cannot fail. */
1656 for (i = 0; i < ucs2len; ++i)
1657 dst += utf_char2bytes(ucs2buf[i], dst);
1658 }
1659 else
1660 {
1661 BOOL bad = FALSE;
1662 int dstlen;
1663
1664 /* From UCS-2 to "enc_codepage". If the
1665 * conversion uses the default character "?",
1666 * the data doesn't fit in this encoding. */
1667 dstlen = WideCharToMultiByte(enc_codepage, 0,
1668 (LPCWSTR)ucs2buf, ucs2len,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001669 (LPSTR)dst, (int)(src - dst),
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001670 replstr, &bad);
1671 if (bad)
1672 found_bad = TRUE;
1673 else
1674 dst += dstlen;
1675 }
1676 }
1677
1678 if (found_bad)
1679 {
1680 /* Deal with bytes we can't convert. */
1681 if (can_retry)
1682 goto rewind_retry;
1683 if (conv_error == 0)
1684 conv_error = readfile_linenr(linecnt, ptr, dst);
1685 if (bad_char_behavior != BAD_DROP)
1686 {
1687 if (bad_char_behavior == BAD_KEEP)
1688 {
1689 mch_memmove(dst, src, bytelen);
1690 dst += bytelen;
1691 }
1692 else
1693 *dst++ = bad_char_behavior;
1694 }
1695 }
1696
1697 src += bytelen;
1698 size -= bytelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001699 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001700
1701 if (size > 0)
1702 {
1703 /* An incomplete byte sequence remaining. */
1704 mch_memmove(conv_rest, src, size);
1705 conv_restlen = size;
1706 }
1707
1708 /* The new size is equal to how much "dst" was advanced. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001709 size = (long)(dst - ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001710 }
1711 else
1712# endif
Bram Moolenaar56718732006-03-15 22:53:57 +00001713# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714 if (fio_flags & FIO_MACROMAN)
1715 {
1716 /*
1717 * Conversion from Apple MacRoman char encoding to UTF-8 or
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00001718 * latin1. This is in os_mac_conv.c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 */
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00001720 if (macroman2enc(ptr, &size, real_size) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 goto rewind_retry;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 }
1723 else
1724# endif
1725 if (fio_flags != 0)
1726 {
1727 int u8c;
1728 char_u *dest;
1729 char_u *tail = NULL;
1730
1731 /*
1732 * "enc_utf8" set: Convert Unicode or Latin1 to UTF-8.
1733 * "enc_utf8" not set: Convert Unicode to Latin1.
1734 * Go from end to start through the buffer, because the number
1735 * of bytes may increase.
1736 * "dest" points to after where the UTF-8 bytes go, "p" points
1737 * to after the next character to convert.
1738 */
1739 dest = ptr + real_size;
1740 if (fio_flags == FIO_LATIN1 || fio_flags == FIO_UTF8)
1741 {
1742 p = ptr + size;
1743 if (fio_flags == FIO_UTF8)
1744 {
1745 /* Check for a trailing incomplete UTF-8 sequence */
1746 tail = ptr + size - 1;
1747 while (tail > ptr && (*tail & 0xc0) == 0x80)
1748 --tail;
1749 if (tail + utf_byte2len(*tail) <= ptr + size)
1750 tail = NULL;
1751 else
1752 p = tail;
1753 }
1754 }
1755 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1756 {
1757 /* Check for a trailing byte */
1758 p = ptr + (size & ~1);
1759 if (size & 1)
1760 tail = p;
1761 if ((fio_flags & FIO_UTF16) && p > ptr)
1762 {
1763 /* Check for a trailing leading word */
1764 if (fio_flags & FIO_ENDIAN_L)
1765 {
1766 u8c = (*--p << 8);
1767 u8c += *--p;
1768 }
1769 else
1770 {
1771 u8c = *--p;
1772 u8c += (*--p << 8);
1773 }
1774 if (u8c >= 0xd800 && u8c <= 0xdbff)
1775 tail = p;
1776 else
1777 p += 2;
1778 }
1779 }
1780 else /* FIO_UCS4 */
1781 {
1782 /* Check for trailing 1, 2 or 3 bytes */
1783 p = ptr + (size & ~3);
1784 if (size & 3)
1785 tail = p;
1786 }
1787
1788 /* If there is a trailing incomplete sequence move it to
1789 * conv_rest[]. */
1790 if (tail != NULL)
1791 {
1792 conv_restlen = (int)((ptr + size) - tail);
1793 mch_memmove(conv_rest, (char_u *)tail, conv_restlen);
1794 size -= conv_restlen;
1795 }
1796
1797
1798 while (p > ptr)
1799 {
1800 if (fio_flags & FIO_LATIN1)
1801 u8c = *--p;
1802 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1803 {
1804 if (fio_flags & FIO_ENDIAN_L)
1805 {
1806 u8c = (*--p << 8);
1807 u8c += *--p;
1808 }
1809 else
1810 {
1811 u8c = *--p;
1812 u8c += (*--p << 8);
1813 }
1814 if ((fio_flags & FIO_UTF16)
1815 && u8c >= 0xdc00 && u8c <= 0xdfff)
1816 {
1817 int u16c;
1818
1819 if (p == ptr)
1820 {
1821 /* Missing leading word. */
1822 if (can_retry)
1823 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001824 if (conv_error == 0)
1825 conv_error = readfile_linenr(linecnt,
1826 ptr, p);
1827 if (bad_char_behavior == BAD_DROP)
1828 continue;
1829 if (bad_char_behavior != BAD_KEEP)
1830 u8c = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 }
1832
1833 /* found second word of double-word, get the first
1834 * word and compute the resulting character */
1835 if (fio_flags & FIO_ENDIAN_L)
1836 {
1837 u16c = (*--p << 8);
1838 u16c += *--p;
1839 }
1840 else
1841 {
1842 u16c = *--p;
1843 u16c += (*--p << 8);
1844 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001845 u8c = 0x10000 + ((u16c & 0x3ff) << 10)
1846 + (u8c & 0x3ff);
1847
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848 /* Check if the word is indeed a leading word. */
1849 if (u16c < 0xd800 || u16c > 0xdbff)
1850 {
1851 if (can_retry)
1852 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001853 if (conv_error == 0)
1854 conv_error = readfile_linenr(linecnt,
1855 ptr, p);
1856 if (bad_char_behavior == BAD_DROP)
1857 continue;
1858 if (bad_char_behavior != BAD_KEEP)
1859 u8c = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 }
1862 }
1863 else if (fio_flags & FIO_UCS4)
1864 {
1865 if (fio_flags & FIO_ENDIAN_L)
1866 {
1867 u8c = (*--p << 24);
1868 u8c += (*--p << 16);
1869 u8c += (*--p << 8);
1870 u8c += *--p;
1871 }
1872 else /* big endian */
1873 {
1874 u8c = *--p;
1875 u8c += (*--p << 8);
1876 u8c += (*--p << 16);
1877 u8c += (*--p << 24);
1878 }
1879 }
1880 else /* UTF-8 */
1881 {
1882 if (*--p < 0x80)
1883 u8c = *p;
1884 else
1885 {
1886 len = utf_head_off(ptr, p);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001887 p -= len;
1888 u8c = utf_ptr2char(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 if (len == 0)
1890 {
1891 /* Not a valid UTF-8 character, retry with
1892 * another fenc when possible, otherwise just
1893 * report the error. */
1894 if (can_retry)
1895 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001896 if (conv_error == 0)
1897 conv_error = readfile_linenr(linecnt,
1898 ptr, p);
1899 if (bad_char_behavior == BAD_DROP)
1900 continue;
1901 if (bad_char_behavior != BAD_KEEP)
1902 u8c = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 }
1905 }
1906 if (enc_utf8) /* produce UTF-8 */
1907 {
1908 dest -= utf_char2len(u8c);
1909 (void)utf_char2bytes(u8c, dest);
1910 }
1911 else /* produce Latin1 */
1912 {
1913 --dest;
1914 if (u8c >= 0x100)
1915 {
1916 /* character doesn't fit in latin1, retry with
1917 * another fenc when possible, otherwise just
1918 * report the error. */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001919 if (can_retry)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001921 if (conv_error == 0)
1922 conv_error = readfile_linenr(linecnt, ptr, p);
1923 if (bad_char_behavior == BAD_DROP)
1924 ++dest;
1925 else if (bad_char_behavior == BAD_KEEP)
1926 *dest = u8c;
1927 else if (eap != NULL && eap->bad_char != 0)
1928 *dest = bad_char_behavior;
1929 else
1930 *dest = 0xBF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 }
1932 else
1933 *dest = u8c;
1934 }
1935 }
1936
1937 /* move the linerest to before the converted characters */
1938 line_start = dest - linerest;
1939 mch_memmove(line_start, buffer, (size_t)linerest);
1940 size = (long)((ptr + real_size) - dest);
1941 ptr = dest;
1942 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00001943 else if (enc_utf8 && !curbuf->b_p_bin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001944 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00001945 int incomplete_tail = FALSE;
1946
1947 /* Reading UTF-8: Check if the bytes are valid UTF-8. */
1948 for (p = ptr; ; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001949 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001950 int todo = (int)((ptr + size) - p);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001951 int l;
1952
1953 if (todo <= 0)
1954 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 if (*p >= 0x80)
1956 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 /* A length of 1 means it's an illegal byte. Accept
1958 * an incomplete character at the end though, the next
1959 * read() will get the next bytes, we'll check it
1960 * then. */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001961 l = utf_ptr2len_len(p, todo);
Bram Moolenaarf453d352008-06-04 17:37:34 +00001962 if (l > todo && !incomplete_tail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00001964 /* Avoid retrying with a different encoding when
1965 * a truncated file is more likely, or attempting
1966 * to read the rest of an incomplete sequence when
1967 * we have already done so. */
1968 if (p > ptr || filesize > 0)
1969 incomplete_tail = TRUE;
1970 /* Incomplete byte sequence, move it to conv_rest[]
1971 * and try to read the rest of it, unless we've
1972 * already done so. */
1973 if (p > ptr)
1974 {
1975 conv_restlen = todo;
1976 mch_memmove(conv_rest, p, conv_restlen);
1977 size -= conv_restlen;
1978 break;
1979 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00001981 if (l == 1 || l > todo)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001982 {
1983 /* Illegal byte. If we can try another encoding
Bram Moolenaarf453d352008-06-04 17:37:34 +00001984 * do that, unless at EOF where a truncated
1985 * file is more likely than a conversion error. */
1986 if (can_retry && !incomplete_tail)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001987 break;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001988# ifdef USE_ICONV
1989 /* When we did a conversion report an error. */
1990 if (iconv_fd != (iconv_t)-1 && conv_error == 0)
1991 conv_error = readfile_linenr(linecnt, ptr, p);
1992# endif
Bram Moolenaarf453d352008-06-04 17:37:34 +00001993 /* Remember the first linenr with an illegal byte */
1994 if (conv_error == 0 && illegal_byte == 0)
1995 illegal_byte = readfile_linenr(linecnt, ptr, p);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001996
1997 /* Drop, keep or replace the bad byte. */
1998 if (bad_char_behavior == BAD_DROP)
1999 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00002000 mch_memmove(p, p + 1, todo - 1);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002001 --p;
2002 --size;
2003 }
2004 else if (bad_char_behavior != BAD_KEEP)
2005 *p = bad_char_behavior;
2006 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00002007 else
2008 p += l - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 }
2010 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00002011 if (p < ptr + size && !incomplete_tail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 {
2013 /* Detected a UTF-8 error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014rewind_retry:
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002015 /* Retry reading with another conversion. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016# if defined(FEAT_EVAL) && defined(USE_ICONV)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002017 if (*p_ccv != NUL && iconv_fd != (iconv_t)-1)
2018 /* iconv() failed, try 'charconvert' */
2019 did_iconv = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 else
2021# endif
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002022 /* use next item from 'fileencodings' */
2023 advance_fenc = TRUE;
2024 file_rewind = TRUE;
2025 goto retry;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 }
2027 }
2028#endif
2029
2030 /* count the number of characters (after conversion!) */
2031 filesize += size;
2032
2033 /*
2034 * when reading the first part of a file: guess EOL type
2035 */
2036 if (fileformat == EOL_UNKNOWN)
2037 {
2038 /* First try finding a NL, for Dos and Unix */
2039 if (try_dos || try_unix)
2040 {
2041 for (p = ptr; p < ptr + size; ++p)
2042 {
2043 if (*p == NL)
2044 {
2045 if (!try_unix
2046 || (try_dos && p > ptr && p[-1] == CAR))
2047 fileformat = EOL_DOS;
2048 else
2049 fileformat = EOL_UNIX;
2050 break;
2051 }
2052 }
2053
2054 /* Don't give in to EOL_UNIX if EOL_MAC is more likely */
2055 if (fileformat == EOL_UNIX && try_mac)
2056 {
2057 /* Need to reset the counters when retrying fenc. */
2058 try_mac = 1;
2059 try_unix = 1;
2060 for (; p >= ptr && *p != CAR; p--)
2061 ;
2062 if (p >= ptr)
2063 {
2064 for (p = ptr; p < ptr + size; ++p)
2065 {
2066 if (*p == NL)
2067 try_unix++;
2068 else if (*p == CAR)
2069 try_mac++;
2070 }
2071 if (try_mac > try_unix)
2072 fileformat = EOL_MAC;
2073 }
2074 }
2075 }
2076
2077 /* No NL found: may use Mac format */
2078 if (fileformat == EOL_UNKNOWN && try_mac)
2079 fileformat = EOL_MAC;
2080
2081 /* Still nothing found? Use first format in 'ffs' */
2082 if (fileformat == EOL_UNKNOWN)
2083 fileformat = default_fileformat();
2084
2085 /* if editing a new file: may set p_tx and p_ff */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002086 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 set_fileformat(fileformat, OPT_LOCAL);
2088 }
2089 }
2090
2091 /*
2092 * This loop is executed once for every character read.
2093 * Keep it fast!
2094 */
2095 if (fileformat == EOL_MAC)
2096 {
2097 --ptr;
2098 while (++ptr, --size >= 0)
2099 {
2100 /* catch most common case first */
2101 if ((c = *ptr) != NUL && c != CAR && c != NL)
2102 continue;
2103 if (c == NUL)
2104 *ptr = NL; /* NULs are replaced by newlines! */
2105 else if (c == NL)
2106 *ptr = CAR; /* NLs are replaced by CRs! */
2107 else
2108 {
2109 if (skip_count == 0)
2110 {
2111 *ptr = NUL; /* end of line */
2112 len = (colnr_T) (ptr - line_start + 1);
2113 if (ml_append(lnum, line_start, len, newfile) == FAIL)
2114 {
2115 error = TRUE;
2116 break;
2117 }
2118 ++lnum;
2119 if (--read_count == 0)
2120 {
2121 error = TRUE; /* break loop */
2122 line_start = ptr; /* nothing left to write */
2123 break;
2124 }
2125 }
2126 else
2127 --skip_count;
2128 line_start = ptr + 1;
2129 }
2130 }
2131 }
2132 else
2133 {
2134 --ptr;
2135 while (++ptr, --size >= 0)
2136 {
2137 if ((c = *ptr) != NUL && c != NL) /* catch most common case */
2138 continue;
2139 if (c == NUL)
2140 *ptr = NL; /* NULs are replaced by newlines! */
2141 else
2142 {
2143 if (skip_count == 0)
2144 {
2145 *ptr = NUL; /* end of line */
2146 len = (colnr_T)(ptr - line_start + 1);
2147 if (fileformat == EOL_DOS)
2148 {
2149 if (ptr[-1] == CAR) /* remove CR */
2150 {
2151 ptr[-1] = NUL;
2152 --len;
2153 }
2154 /*
2155 * Reading in Dos format, but no CR-LF found!
2156 * When 'fileformats' includes "unix", delete all
2157 * the lines read so far and start all over again.
2158 * Otherwise give an error message later.
2159 */
2160 else if (ff_error != EOL_DOS)
2161 {
2162 if ( try_unix
2163 && !read_stdin
2164 && (read_buffer
2165 || lseek(fd, (off_t)0L, SEEK_SET) == 0))
2166 {
2167 fileformat = EOL_UNIX;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002168 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 set_fileformat(EOL_UNIX, OPT_LOCAL);
2170 file_rewind = TRUE;
2171 keep_fileformat = TRUE;
2172 goto retry;
2173 }
2174 ff_error = EOL_DOS;
2175 }
2176 }
2177 if (ml_append(lnum, line_start, len, newfile) == FAIL)
2178 {
2179 error = TRUE;
2180 break;
2181 }
2182 ++lnum;
2183 if (--read_count == 0)
2184 {
2185 error = TRUE; /* break loop */
2186 line_start = ptr; /* nothing left to write */
2187 break;
2188 }
2189 }
2190 else
2191 --skip_count;
2192 line_start = ptr + 1;
2193 }
2194 }
2195 }
2196 linerest = (long)(ptr - line_start);
2197 ui_breakcheck();
2198 }
2199
2200failed:
2201 /* not an error, max. number of lines reached */
2202 if (error && read_count == 0)
2203 error = FALSE;
2204
2205 /*
2206 * If we get EOF in the middle of a line, note the fact and
2207 * complete the line ourselves.
2208 * In Dos format ignore a trailing CTRL-Z, unless 'binary' set.
2209 */
2210 if (!error
2211 && !got_int
2212 && linerest != 0
2213 && !(!curbuf->b_p_bin
2214 && fileformat == EOL_DOS
2215 && *line_start == Ctrl_Z
2216 && ptr == line_start + 1))
2217 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002218 /* remember for when writing */
2219 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 curbuf->b_p_eol = FALSE;
2221 *ptr = NUL;
2222 if (ml_append(lnum, line_start,
2223 (colnr_T)(ptr - line_start + 1), newfile) == FAIL)
2224 error = TRUE;
2225 else
2226 read_no_eol_lnum = ++lnum;
2227 }
2228
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002229 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 save_file_ff(curbuf); /* remember the current file format */
2231
2232#ifdef FEAT_CRYPT
2233 if (cryptkey != curbuf->b_p_key)
2234 vim_free(cryptkey);
2235#endif
2236
2237#ifdef FEAT_MBYTE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002238 /* If editing a new file: set 'fenc' for the current buffer.
2239 * Also for ":read ++edit file". */
2240 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 set_string_option_direct((char_u *)"fenc", -1, fenc,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002242 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 if (fenc_alloced)
2244 vim_free(fenc);
2245# ifdef USE_ICONV
2246 if (iconv_fd != (iconv_t)-1)
2247 {
2248 iconv_close(iconv_fd);
2249 iconv_fd = (iconv_t)-1;
2250 }
2251# endif
2252#endif
2253
2254 if (!read_buffer && !read_stdin)
2255 close(fd); /* errors are ignored */
2256 vim_free(buffer);
2257
2258#ifdef HAVE_DUP
2259 if (read_stdin)
2260 {
2261 /* Use stderr for stdin, makes shell commands work. */
2262 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002263 ignored = dup(2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 }
2265#endif
2266
2267#ifdef FEAT_MBYTE
2268 if (tmpname != NULL)
2269 {
2270 mch_remove(tmpname); /* delete converted file */
2271 vim_free(tmpname);
2272 }
2273#endif
2274 --no_wait_return; /* may wait for return now */
2275
2276 /*
2277 * In recovery mode everything but autocommands is skipped.
2278 */
2279 if (!recoverymode)
2280 {
2281 /* need to delete the last line, which comes from the empty buffer */
2282 if (newfile && wasempty && !(curbuf->b_ml.ml_flags & ML_EMPTY))
2283 {
2284#ifdef FEAT_NETBEANS_INTG
2285 netbeansFireChanges = 0;
2286#endif
2287 ml_delete(curbuf->b_ml.ml_line_count, FALSE);
2288#ifdef FEAT_NETBEANS_INTG
2289 netbeansFireChanges = 1;
2290#endif
2291 --linecnt;
2292 }
2293 linecnt = curbuf->b_ml.ml_line_count - linecnt;
2294 if (filesize == 0)
2295 linecnt = 0;
2296 if (newfile || read_buffer)
Bram Moolenaar7263a772007-05-10 17:35:54 +00002297 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 redraw_curbuf_later(NOT_VALID);
Bram Moolenaar7263a772007-05-10 17:35:54 +00002299#ifdef FEAT_DIFF
2300 /* After reading the text into the buffer the diff info needs to
2301 * be updated. */
2302 diff_invalidate(curbuf);
2303#endif
2304#ifdef FEAT_FOLDING
2305 /* All folds in the window are invalid now. Mark them for update
2306 * before triggering autocommands. */
2307 foldUpdateAll(curwin);
2308#endif
2309 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 else if (linecnt) /* appended at least one line */
2311 appended_lines_mark(from, linecnt);
2312
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313#ifndef ALWAYS_USE_GUI
2314 /*
2315 * If we were reading from the same terminal as where messages go,
2316 * the screen will have been messed up.
2317 * Switch on raw mode now and clear the screen.
2318 */
2319 if (read_stdin)
2320 {
2321 settmode(TMODE_RAW); /* set to raw mode */
2322 starttermcap();
2323 screenclear();
2324 }
2325#endif
2326
2327 if (got_int)
2328 {
2329 if (!(flags & READ_DUMMY))
2330 {
2331 filemess(curbuf, sfname, (char_u *)_(e_interr), 0);
2332 if (newfile)
2333 curbuf->b_p_ro = TRUE; /* must use "w!" now */
2334 }
2335 msg_scroll = msg_save;
2336#ifdef FEAT_VIMINFO
2337 check_marks_read();
2338#endif
2339 return OK; /* an interrupt isn't really an error */
2340 }
2341
2342 if (!filtering && !(flags & READ_DUMMY))
2343 {
2344 msg_add_fname(curbuf, sfname); /* fname in IObuff with quotes */
2345 c = FALSE;
2346
2347#ifdef UNIX
2348# ifdef S_ISFIFO
2349 if (S_ISFIFO(perm)) /* fifo or socket */
2350 {
2351 STRCAT(IObuff, _("[fifo/socket]"));
2352 c = TRUE;
2353 }
2354# else
2355# ifdef S_IFIFO
2356 if ((perm & S_IFMT) == S_IFIFO) /* fifo */
2357 {
2358 STRCAT(IObuff, _("[fifo]"));
2359 c = TRUE;
2360 }
2361# endif
2362# ifdef S_IFSOCK
2363 if ((perm & S_IFMT) == S_IFSOCK) /* or socket */
2364 {
2365 STRCAT(IObuff, _("[socket]"));
2366 c = TRUE;
2367 }
2368# endif
2369# endif
Bram Moolenaarfe1c56d2007-07-10 15:10:54 +00002370# ifdef OPEN_CHR_FILES
2371 if (S_ISCHR(perm)) /* or character special */
2372 {
2373 STRCAT(IObuff, _("[character special]"));
2374 c = TRUE;
2375 }
2376# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377#endif
2378 if (curbuf->b_p_ro)
2379 {
2380 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
2381 c = TRUE;
2382 }
2383 if (read_no_eol_lnum)
2384 {
2385 msg_add_eol();
2386 c = TRUE;
2387 }
2388 if (ff_error == EOL_DOS)
2389 {
2390 STRCAT(IObuff, _("[CR missing]"));
2391 c = TRUE;
2392 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002393 if (split)
2394 {
2395 STRCAT(IObuff, _("[long lines split]"));
2396 c = TRUE;
2397 }
2398#ifdef FEAT_MBYTE
2399 if (notconverted)
2400 {
2401 STRCAT(IObuff, _("[NOT converted]"));
2402 c = TRUE;
2403 }
2404 else if (converted)
2405 {
2406 STRCAT(IObuff, _("[converted]"));
2407 c = TRUE;
2408 }
2409#endif
2410#ifdef FEAT_CRYPT
2411 if (cryptkey != NULL)
2412 {
2413 STRCAT(IObuff, _("[crypted]"));
2414 c = TRUE;
2415 }
2416#endif
2417#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002418 if (conv_error != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002420 sprintf((char *)IObuff + STRLEN(IObuff),
2421 _("[CONVERSION ERROR in line %ld]"), (long)conv_error);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 c = TRUE;
2423 }
2424 else if (illegal_byte > 0)
2425 {
2426 sprintf((char *)IObuff + STRLEN(IObuff),
2427 _("[ILLEGAL BYTE in line %ld]"), (long)illegal_byte);
2428 c = TRUE;
2429 }
2430 else
2431#endif
2432 if (error)
2433 {
2434 STRCAT(IObuff, _("[READ ERRORS]"));
2435 c = TRUE;
2436 }
2437 if (msg_add_fileformat(fileformat))
2438 c = TRUE;
2439#ifdef FEAT_CRYPT
2440 if (cryptkey != NULL)
2441 msg_add_lines(c, (long)linecnt, filesize - CRYPT_MAGIC_LEN);
2442 else
2443#endif
2444 msg_add_lines(c, (long)linecnt, filesize);
2445
2446 vim_free(keep_msg);
2447 keep_msg = NULL;
2448 msg_scrolled_ign = TRUE;
2449#ifdef ALWAYS_USE_GUI
2450 /* Don't show the message when reading stdin, it would end up in a
2451 * message box (which might be shown when exiting!) */
2452 if (read_stdin || read_buffer)
2453 p = msg_may_trunc(FALSE, IObuff);
2454 else
2455#endif
2456 p = msg_trunc_attr(IObuff, FALSE, 0);
2457 if (read_stdin || read_buffer || restart_edit != 0
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002458 || (msg_scrolled != 0 && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 /* Need to repeat the message after redrawing when:
2460 * - When reading from stdin (the screen will be cleared next).
2461 * - When restart_edit is set (otherwise there will be a delay
2462 * before redrawing).
2463 * - When the screen was scrolled but there is no wait-return
2464 * prompt. */
Bram Moolenaar8f7fd652006-02-21 22:04:51 +00002465 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466 msg_scrolled_ign = FALSE;
2467 }
2468
2469 /* with errors writing the file requires ":w!" */
2470 if (newfile && (error
2471#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002472 || conv_error != 0
Bram Moolenaar8f7fd652006-02-21 22:04:51 +00002473 || (illegal_byte > 0 && bad_char_behavior != BAD_KEEP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474#endif
2475 ))
2476 curbuf->b_p_ro = TRUE;
2477
2478 u_clearline(); /* cannot use "U" command after adding lines */
2479
2480 /*
2481 * In Ex mode: cursor at last new line.
2482 * Otherwise: cursor at first new line.
2483 */
2484 if (exmode_active)
2485 curwin->w_cursor.lnum = from + linecnt;
2486 else
2487 curwin->w_cursor.lnum = from + 1;
2488 check_cursor_lnum();
2489 beginline(BL_WHITE | BL_FIX); /* on first non-blank */
2490
2491 /*
2492 * Set '[ and '] marks to the newly read lines.
2493 */
2494 curbuf->b_op_start.lnum = from + 1;
2495 curbuf->b_op_start.col = 0;
2496 curbuf->b_op_end.lnum = from + linecnt;
2497 curbuf->b_op_end.col = 0;
Bram Moolenaar03f48552006-02-28 23:52:23 +00002498
2499#ifdef WIN32
2500 /*
2501 * Work around a weird problem: When a file has two links (only
2502 * possible on NTFS) and we write through one link, then stat() it
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00002503 * through the other link, the timestamp information may be wrong.
Bram Moolenaar03f48552006-02-28 23:52:23 +00002504 * It's correct again after reading the file, thus reset the timestamp
2505 * here.
2506 */
2507 if (newfile && !read_stdin && !read_buffer
2508 && mch_stat((char *)fname, &st) >= 0)
2509 {
2510 buf_store_time(curbuf, &st, fname);
2511 curbuf->b_mtime_read = curbuf->b_mtime;
2512 }
2513#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 }
2515 msg_scroll = msg_save;
2516
2517#ifdef FEAT_VIMINFO
2518 /*
2519 * Get the marks before executing autocommands, so they can be used there.
2520 */
2521 check_marks_read();
2522#endif
2523
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 /*
2525 * Trick: We remember if the last line of the read didn't have
2526 * an eol for when writing it again. This is required for
2527 * ":autocmd FileReadPost *.gz set bin|'[,']!gunzip" to work.
2528 */
2529 write_no_eol_lnum = read_no_eol_lnum;
2530
Bram Moolenaardf177f62005-02-22 08:39:57 +00002531#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 if (!read_stdin && !read_buffer)
2533 {
2534 int m = msg_scroll;
2535 int n = msg_scrolled;
2536
2537 /* Save the fileformat now, otherwise the buffer will be considered
2538 * modified if the format/encoding was automatically detected. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002539 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 save_file_ff(curbuf);
2541
2542 /*
2543 * The output from the autocommands should not overwrite anything and
2544 * should not be overwritten: Set msg_scroll, restore its value if no
2545 * output was done.
2546 */
2547 msg_scroll = TRUE;
2548 if (filtering)
2549 apply_autocmds_exarg(EVENT_FILTERREADPOST, NULL, sfname,
2550 FALSE, curbuf, eap);
2551 else if (newfile)
2552 apply_autocmds_exarg(EVENT_BUFREADPOST, NULL, sfname,
2553 FALSE, curbuf, eap);
2554 else
2555 apply_autocmds_exarg(EVENT_FILEREADPOST, sfname, sfname,
2556 FALSE, NULL, eap);
2557 if (msg_scrolled == n)
2558 msg_scroll = m;
2559#ifdef FEAT_EVAL
2560 if (aborting()) /* autocmds may abort script processing */
2561 return FAIL;
2562#endif
2563 }
2564#endif
2565
2566 if (recoverymode && error)
2567 return FAIL;
2568 return OK;
2569}
2570
Bram Moolenaarfe1c56d2007-07-10 15:10:54 +00002571#ifdef OPEN_CHR_FILES
2572/*
2573 * Returns TRUE if the file name argument is of the form "/dev/fd/\d\+",
2574 * which is the name of files used for process substitution output by
2575 * some shells on some operating systems, e.g., bash on SunOS.
2576 * Do not accept "/dev/fd/[012]", opening these may hang Vim.
2577 */
2578 static int
2579is_dev_fd_file(fname)
2580 char_u *fname;
2581{
2582 return (STRNCMP(fname, "/dev/fd/", 8) == 0
2583 && VIM_ISDIGIT(fname[8])
2584 && *skipdigits(fname + 9) == NUL
2585 && (fname[9] != NUL
2586 || (fname[8] != '0' && fname[8] != '1' && fname[8] != '2')));
2587}
2588#endif
2589
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002590#ifdef FEAT_MBYTE
2591
2592/*
2593 * From the current line count and characters read after that, estimate the
2594 * line number where we are now.
2595 * Used for error messages that include a line number.
2596 */
2597 static linenr_T
2598readfile_linenr(linecnt, p, endp)
2599 linenr_T linecnt; /* line count before reading more bytes */
2600 char_u *p; /* start of more bytes read */
2601 char_u *endp; /* end of more bytes read */
2602{
2603 char_u *s;
2604 linenr_T lnum;
2605
2606 lnum = curbuf->b_ml.ml_line_count - linecnt + 1;
2607 for (s = p; s < endp; ++s)
2608 if (*s == '\n')
2609 ++lnum;
2610 return lnum;
2611}
2612#endif
2613
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614/*
Bram Moolenaar195d6352005-12-19 22:08:24 +00002615 * Fill "*eap" to force the 'fileencoding', 'fileformat' and 'binary to be
2616 * equal to the buffer "buf". Used for calling readfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002617 * Returns OK or FAIL.
2618 */
2619 int
2620prep_exarg(eap, buf)
2621 exarg_T *eap;
2622 buf_T *buf;
2623{
2624 eap->cmd = alloc((unsigned)(STRLEN(buf->b_p_ff)
2625#ifdef FEAT_MBYTE
2626 + STRLEN(buf->b_p_fenc)
2627#endif
2628 + 15));
2629 if (eap->cmd == NULL)
2630 return FAIL;
2631
2632#ifdef FEAT_MBYTE
2633 sprintf((char *)eap->cmd, "e ++ff=%s ++enc=%s", buf->b_p_ff, buf->b_p_fenc);
2634 eap->force_enc = 14 + (int)STRLEN(buf->b_p_ff);
Bram Moolenaar195d6352005-12-19 22:08:24 +00002635 eap->bad_char = buf->b_bad_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636#else
2637 sprintf((char *)eap->cmd, "e ++ff=%s", buf->b_p_ff);
2638#endif
2639 eap->force_ff = 7;
Bram Moolenaar195d6352005-12-19 22:08:24 +00002640
2641 eap->force_bin = buf->b_p_bin ? FORCE_BIN : FORCE_NOBIN;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002642 eap->read_edit = FALSE;
Bram Moolenaar195d6352005-12-19 22:08:24 +00002643 eap->forceit = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 return OK;
2645}
2646
2647#ifdef FEAT_MBYTE
2648/*
2649 * Find next fileencoding to use from 'fileencodings'.
2650 * "pp" points to fenc_next. It's advanced to the next item.
2651 * When there are no more items, an empty string is returned and *pp is set to
2652 * NULL.
2653 * When *pp is not set to NULL, the result is in allocated memory.
2654 */
2655 static char_u *
2656next_fenc(pp)
2657 char_u **pp;
2658{
2659 char_u *p;
2660 char_u *r;
2661
2662 if (**pp == NUL)
2663 {
2664 *pp = NULL;
2665 return (char_u *)"";
2666 }
2667 p = vim_strchr(*pp, ',');
2668 if (p == NULL)
2669 {
2670 r = enc_canonize(*pp);
2671 *pp += STRLEN(*pp);
2672 }
2673 else
2674 {
2675 r = vim_strnsave(*pp, (int)(p - *pp));
2676 *pp = p + 1;
2677 if (r != NULL)
2678 {
2679 p = enc_canonize(r);
2680 vim_free(r);
2681 r = p;
2682 }
2683 }
2684 if (r == NULL) /* out of memory */
2685 {
2686 r = (char_u *)"";
2687 *pp = NULL;
2688 }
2689 return r;
2690}
2691
2692# ifdef FEAT_EVAL
2693/*
2694 * Convert a file with the 'charconvert' expression.
2695 * This closes the file which is to be read, converts it and opens the
2696 * resulting file for reading.
2697 * Returns name of the resulting converted file (the caller should delete it
2698 * after reading it).
2699 * Returns NULL if the conversion failed ("*fdp" is not set) .
2700 */
2701 static char_u *
2702readfile_charconvert(fname, fenc, fdp)
2703 char_u *fname; /* name of input file */
2704 char_u *fenc; /* converted from */
2705 int *fdp; /* in/out: file descriptor of file */
2706{
2707 char_u *tmpname;
2708 char_u *errmsg = NULL;
2709
2710 tmpname = vim_tempname('r');
2711 if (tmpname == NULL)
2712 errmsg = (char_u *)_("Can't find temp file for conversion");
2713 else
2714 {
2715 close(*fdp); /* close the input file, ignore errors */
2716 *fdp = -1;
2717 if (eval_charconvert(fenc, enc_utf8 ? (char_u *)"utf-8" : p_enc,
2718 fname, tmpname) == FAIL)
2719 errmsg = (char_u *)_("Conversion with 'charconvert' failed");
2720 if (errmsg == NULL && (*fdp = mch_open((char *)tmpname,
2721 O_RDONLY | O_EXTRA, 0)) < 0)
2722 errmsg = (char_u *)_("can't read output of 'charconvert'");
2723 }
2724
2725 if (errmsg != NULL)
2726 {
2727 /* Don't use emsg(), it breaks mappings, the retry with
2728 * another type of conversion might still work. */
2729 MSG(errmsg);
2730 if (tmpname != NULL)
2731 {
2732 mch_remove(tmpname); /* delete converted file */
2733 vim_free(tmpname);
2734 tmpname = NULL;
2735 }
2736 }
2737
2738 /* If the input file is closed, open it (caller should check for error). */
2739 if (*fdp < 0)
2740 *fdp = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2741
2742 return tmpname;
2743}
2744# endif
2745
2746#endif
2747
2748#ifdef FEAT_VIMINFO
2749/*
2750 * Read marks for the current buffer from the viminfo file, when we support
2751 * buffer marks and the buffer has a name.
2752 */
2753 static void
2754check_marks_read()
2755{
2756 if (!curbuf->b_marks_read && get_viminfo_parameter('\'') > 0
2757 && curbuf->b_ffname != NULL)
Bram Moolenaard812df62008-11-09 12:46:09 +00002758 read_viminfo(NULL, VIF_WANT_MARKS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759
2760 /* Always set b_marks_read; needed when 'viminfo' is changed to include
2761 * the ' parameter after opening a buffer. */
2762 curbuf->b_marks_read = TRUE;
2763}
2764#endif
2765
2766#ifdef FEAT_CRYPT
2767/*
2768 * Check for magic number used for encryption.
2769 * If found, the magic number is removed from ptr[*sizep] and *sizep and
2770 * *filesizep are updated.
2771 * Return the (new) encryption key, NULL for no encryption.
2772 */
2773 static char_u *
2774check_for_cryptkey(cryptkey, ptr, sizep, filesizep, newfile)
2775 char_u *cryptkey; /* previous encryption key or NULL */
2776 char_u *ptr; /* pointer to read bytes */
2777 long *sizep; /* length of read bytes */
2778 long *filesizep; /* nr of bytes used from file */
2779 int newfile; /* editing a new buffer */
2780{
2781 if (*sizep >= CRYPT_MAGIC_LEN
2782 && STRNCMP(ptr, CRYPT_MAGIC, CRYPT_MAGIC_LEN) == 0)
2783 {
2784 if (cryptkey == NULL)
2785 {
2786 if (*curbuf->b_p_key)
2787 cryptkey = curbuf->b_p_key;
2788 else
2789 {
2790 /* When newfile is TRUE, store the typed key
2791 * in the 'key' option and don't free it. */
2792 cryptkey = get_crypt_key(newfile, FALSE);
2793 /* check if empty key entered */
2794 if (cryptkey != NULL && *cryptkey == NUL)
2795 {
2796 if (cryptkey != curbuf->b_p_key)
2797 vim_free(cryptkey);
2798 cryptkey = NULL;
2799 }
2800 }
2801 }
2802
2803 if (cryptkey != NULL)
2804 {
2805 crypt_init_keys(cryptkey);
2806
2807 /* Remove magic number from the text */
2808 *filesizep += CRYPT_MAGIC_LEN;
2809 *sizep -= CRYPT_MAGIC_LEN;
2810 mch_memmove(ptr, ptr + CRYPT_MAGIC_LEN, (size_t)*sizep);
2811 }
2812 }
2813 /* When starting to edit a new file which does not have
2814 * encryption, clear the 'key' option, except when
2815 * starting up (called with -x argument) */
2816 else if (newfile && *curbuf->b_p_key && !starting)
2817 set_option_value((char_u *)"key", 0L, (char_u *)"", OPT_LOCAL);
2818
2819 return cryptkey;
2820}
2821#endif
2822
2823#ifdef UNIX
2824 static void
2825set_file_time(fname, atime, mtime)
2826 char_u *fname;
2827 time_t atime; /* access time */
2828 time_t mtime; /* modification time */
2829{
2830# if defined(HAVE_UTIME) && defined(HAVE_UTIME_H)
2831 struct utimbuf buf;
2832
2833 buf.actime = atime;
2834 buf.modtime = mtime;
2835 (void)utime((char *)fname, &buf);
2836# else
2837# if defined(HAVE_UTIMES)
2838 struct timeval tvp[2];
2839
2840 tvp[0].tv_sec = atime;
2841 tvp[0].tv_usec = 0;
2842 tvp[1].tv_sec = mtime;
2843 tvp[1].tv_usec = 0;
2844# ifdef NeXT
2845 (void)utimes((char *)fname, tvp);
2846# else
2847 (void)utimes((char *)fname, (const struct timeval *)&tvp);
2848# endif
2849# endif
2850# endif
2851}
2852#endif /* UNIX */
2853
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002854#if defined(VMS) && !defined(MIN)
2855/* Older DECC compiler for VAX doesn't define MIN() */
2856# define MIN(a, b) ((a) < (b) ? (a) : (b))
2857#endif
2858
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00002860 * Return TRUE if a file appears to be read-only from the file permissions.
2861 */
2862 int
2863check_file_readonly(fname, perm)
2864 char_u *fname; /* full path to file */
2865 int perm; /* known permissions on file */
2866{
2867#ifndef USE_MCH_ACCESS
2868 int fd = 0;
2869#endif
2870
2871 return (
2872#ifdef USE_MCH_ACCESS
2873# ifdef UNIX
2874 (perm & 0222) == 0 ||
2875# endif
2876 mch_access((char *)fname, W_OK)
2877#else
2878 (fd = mch_open((char *)fname, O_RDWR | O_EXTRA, 0)) < 0
2879 ? TRUE : (close(fd), FALSE)
2880#endif
2881 );
2882}
2883
2884
2885/*
Bram Moolenaar292ad192005-12-11 21:29:51 +00002886 * buf_write() - write to file "fname" lines "start" through "end"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002887 *
2888 * We do our own buffering here because fwrite() is so slow.
2889 *
Bram Moolenaar292ad192005-12-11 21:29:51 +00002890 * If "forceit" is true, we don't care for errors when attempting backups.
2891 * In case of an error everything possible is done to restore the original
Bram Moolenaare37d50a2008-08-06 17:06:04 +00002892 * file. But when "forceit" is TRUE, we risk losing it.
Bram Moolenaar292ad192005-12-11 21:29:51 +00002893 *
2894 * When "reset_changed" is TRUE and "append" == FALSE and "start" == 1 and
2895 * "end" == curbuf->b_ml.ml_line_count, reset curbuf->b_changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002896 *
2897 * This function must NOT use NameBuff (because it's called by autowrite()).
2898 *
2899 * return FAIL for failure, OK otherwise
2900 */
2901 int
2902buf_write(buf, fname, sfname, start, end, eap, append, forceit,
2903 reset_changed, filtering)
2904 buf_T *buf;
2905 char_u *fname;
2906 char_u *sfname;
2907 linenr_T start, end;
2908 exarg_T *eap; /* for forced 'ff' and 'fenc', can be
2909 NULL! */
Bram Moolenaar292ad192005-12-11 21:29:51 +00002910 int append; /* append to the file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 int forceit;
2912 int reset_changed;
2913 int filtering;
2914{
2915 int fd;
2916 char_u *backup = NULL;
2917 int backup_copy = FALSE; /* copy the original file? */
2918 int dobackup;
2919 char_u *ffname;
2920 char_u *wfname = NULL; /* name of file to write to */
2921 char_u *s;
2922 char_u *ptr;
2923 char_u c;
2924 int len;
2925 linenr_T lnum;
2926 long nchars;
2927 char_u *errmsg = NULL;
Bram Moolenaar32b485f2009-07-29 16:06:27 +00002928 int errmsg_allocated = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002929 char_u *errnum = NULL;
2930 char_u *buffer;
2931 char_u smallbuf[SMBUFSIZE];
2932 char_u *backup_ext;
2933 int bufsize;
2934 long perm; /* file permissions */
2935 int retval = OK;
2936 int newfile = FALSE; /* TRUE if file doesn't exist yet */
2937 int msg_save = msg_scroll;
2938 int overwriting; /* TRUE if writing over original */
2939 int no_eol = FALSE; /* no end-of-line written */
2940 int device = FALSE; /* writing to a device */
2941 struct stat st_old;
2942 int prev_got_int = got_int;
2943 int file_readonly = FALSE; /* overwritten file is read-only */
2944 static char *err_readonly = "is read-only (cannot override: \"W\" in 'cpoptions')";
2945#if defined(UNIX) || defined(__EMX__XX) /*XXX fix me sometime? */
2946 int made_writable = FALSE; /* 'w' bit has been set */
2947#endif
2948 /* writing everything */
2949 int whole = (start == 1 && end == buf->b_ml.ml_line_count);
2950#ifdef FEAT_AUTOCMD
2951 linenr_T old_line_count = buf->b_ml.ml_line_count;
2952#endif
2953 int attr;
2954 int fileformat;
2955 int write_bin;
2956 struct bw_info write_info; /* info for buf_write_bytes() */
2957#ifdef FEAT_MBYTE
2958 int converted = FALSE;
2959 int notconverted = FALSE;
2960 char_u *fenc; /* effective 'fileencoding' */
2961 char_u *fenc_tofree = NULL; /* allocated "fenc" */
2962#endif
2963#ifdef HAS_BW_FLAGS
2964 int wb_flags = 0;
2965#endif
2966#ifdef HAVE_ACL
2967 vim_acl_T acl = NULL; /* ACL copied from original file to
2968 backup or new file */
2969#endif
2970
2971 if (fname == NULL || *fname == NUL) /* safety check */
2972 return FAIL;
2973
2974 /*
2975 * Disallow writing from .exrc and .vimrc in current directory for
2976 * security reasons.
2977 */
2978 if (check_secure())
2979 return FAIL;
2980
2981 /* Avoid a crash for a long name. */
2982 if (STRLEN(fname) >= MAXPATHL)
2983 {
2984 EMSG(_(e_longname));
2985 return FAIL;
2986 }
2987
2988#ifdef FEAT_MBYTE
2989 /* must init bw_conv_buf and bw_iconv_fd before jumping to "fail" */
2990 write_info.bw_conv_buf = NULL;
2991 write_info.bw_conv_error = FALSE;
Bram Moolenaar32b485f2009-07-29 16:06:27 +00002992 write_info.bw_conv_error_lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 write_info.bw_restlen = 0;
2994# ifdef USE_ICONV
2995 write_info.bw_iconv_fd = (iconv_t)-1;
2996# endif
2997#endif
2998
Bram Moolenaardf177f62005-02-22 08:39:57 +00002999 /* After writing a file changedtick changes but we don't want to display
3000 * the line. */
3001 ex_no_reprint = TRUE;
3002
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 /*
3004 * If there is no file name yet, use the one for the written file.
3005 * BF_NOTEDITED is set to reflect this (in case the write fails).
3006 * Don't do this when the write is for a filter command.
Bram Moolenaar292ad192005-12-11 21:29:51 +00003007 * Don't do this when appending.
3008 * Only do this when 'cpoptions' contains the 'F' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00003010 if (buf->b_ffname == NULL
3011 && reset_changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003012 && whole
3013 && buf == curbuf
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003014#ifdef FEAT_QUICKFIX
3015 && !bt_nofile(buf)
3016#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 && !filtering
Bram Moolenaar292ad192005-12-11 21:29:51 +00003018 && (!append || vim_strchr(p_cpo, CPO_FNAMEAPP) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003019 && vim_strchr(p_cpo, CPO_FNAMEW) != NULL)
3020 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00003021 if (set_rw_fname(fname, sfname) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 return FAIL;
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00003023 buf = curbuf; /* just in case autocmds made "buf" invalid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 }
3025
3026 if (sfname == NULL)
3027 sfname = fname;
3028 /*
3029 * For Unix: Use the short file name whenever possible.
3030 * Avoids problems with networks and when directory names are changed.
3031 * Don't do this for MS-DOS, a "cd" in a sub-shell may have moved us to
3032 * another directory, which we don't detect
3033 */
3034 ffname = fname; /* remember full fname */
3035#ifdef UNIX
3036 fname = sfname;
3037#endif
3038
3039 if (buf->b_ffname != NULL && fnamecmp(ffname, buf->b_ffname) == 0)
3040 overwriting = TRUE;
3041 else
3042 overwriting = FALSE;
3043
3044 if (exiting)
3045 settmode(TMODE_COOK); /* when exiting allow typahead now */
3046
3047 ++no_wait_return; /* don't wait for return yet */
3048
3049 /*
3050 * Set '[ and '] marks to the lines to be written.
3051 */
3052 buf->b_op_start.lnum = start;
3053 buf->b_op_start.col = 0;
3054 buf->b_op_end.lnum = end;
3055 buf->b_op_end.col = 0;
3056
3057#ifdef FEAT_AUTOCMD
3058 {
3059 aco_save_T aco;
3060 int buf_ffname = FALSE;
3061 int buf_sfname = FALSE;
3062 int buf_fname_f = FALSE;
3063 int buf_fname_s = FALSE;
3064 int did_cmd = FALSE;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003065 int nofile_err = FALSE;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003066 int empty_memline = (buf->b_ml.ml_mfp == NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003067
3068 /*
3069 * Apply PRE aucocommands.
3070 * Set curbuf to the buffer to be written.
3071 * Careful: The autocommands may call buf_write() recursively!
3072 */
3073 if (ffname == buf->b_ffname)
3074 buf_ffname = TRUE;
3075 if (sfname == buf->b_sfname)
3076 buf_sfname = TRUE;
3077 if (fname == buf->b_ffname)
3078 buf_fname_f = TRUE;
3079 if (fname == buf->b_sfname)
3080 buf_fname_s = TRUE;
3081
3082 /* set curwin/curbuf to buf and save a few things */
3083 aucmd_prepbuf(&aco, buf);
3084
3085 if (append)
3086 {
3087 if (!(did_cmd = apply_autocmds_exarg(EVENT_FILEAPPENDCMD,
3088 sfname, sfname, FALSE, curbuf, eap)))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003089 {
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003090#ifdef FEAT_QUICKFIX
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00003091 if (overwriting && bt_nofile(curbuf))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003092 nofile_err = TRUE;
3093 else
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003094#endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003095 apply_autocmds_exarg(EVENT_FILEAPPENDPRE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096 sfname, sfname, FALSE, curbuf, eap);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003097 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098 }
3099 else if (filtering)
3100 {
3101 apply_autocmds_exarg(EVENT_FILTERWRITEPRE,
3102 NULL, sfname, FALSE, curbuf, eap);
3103 }
3104 else if (reset_changed && whole)
3105 {
3106 if (!(did_cmd = apply_autocmds_exarg(EVENT_BUFWRITECMD,
3107 sfname, sfname, FALSE, curbuf, eap)))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003108 {
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003109#ifdef FEAT_QUICKFIX
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003110 if (overwriting && bt_nofile(curbuf))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003111 nofile_err = TRUE;
3112 else
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003113#endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003114 apply_autocmds_exarg(EVENT_BUFWRITEPRE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 sfname, sfname, FALSE, curbuf, eap);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003116 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 }
3118 else
3119 {
3120 if (!(did_cmd = apply_autocmds_exarg(EVENT_FILEWRITECMD,
3121 sfname, sfname, FALSE, curbuf, eap)))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003122 {
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003123#ifdef FEAT_QUICKFIX
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003124 if (overwriting && bt_nofile(curbuf))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003125 nofile_err = TRUE;
3126 else
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003127#endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003128 apply_autocmds_exarg(EVENT_FILEWRITEPRE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 sfname, sfname, FALSE, curbuf, eap);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003130 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 }
3132
3133 /* restore curwin/curbuf and a few other things */
3134 aucmd_restbuf(&aco);
3135
3136 /*
3137 * In three situations we return here and don't write the file:
3138 * 1. the autocommands deleted or unloaded the buffer.
3139 * 2. The autocommands abort script processing.
3140 * 3. If one of the "Cmd" autocommands was executed.
3141 */
3142 if (!buf_valid(buf))
3143 buf = NULL;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003144 if (buf == NULL || (buf->b_ml.ml_mfp == NULL && !empty_memline)
Bram Moolenaar1e015462005-09-25 22:16:38 +00003145 || did_cmd || nofile_err
3146#ifdef FEAT_EVAL
3147 || aborting()
3148#endif
3149 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 {
3151 --no_wait_return;
3152 msg_scroll = msg_save;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003153 if (nofile_err)
3154 EMSG(_("E676: No matching autocommands for acwrite buffer"));
3155
Bram Moolenaar1e015462005-09-25 22:16:38 +00003156 if (nofile_err
3157#ifdef FEAT_EVAL
3158 || aborting()
3159#endif
3160 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003161 /* An aborting error, interrupt or exception in the
3162 * autocommands. */
3163 return FAIL;
3164 if (did_cmd)
3165 {
3166 if (buf == NULL)
3167 /* The buffer was deleted. We assume it was written
3168 * (can't retry anyway). */
3169 return OK;
3170 if (overwriting)
3171 {
3172 /* Assume the buffer was written, update the timestamp. */
3173 ml_timestamp(buf);
Bram Moolenaar292ad192005-12-11 21:29:51 +00003174 if (append)
3175 buf->b_flags &= ~BF_NEW;
3176 else
3177 buf->b_flags &= ~BF_WRITE_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178 }
Bram Moolenaar292ad192005-12-11 21:29:51 +00003179 if (reset_changed && buf->b_changed && !append
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003180 && (overwriting || vim_strchr(p_cpo, CPO_PLUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 /* Buffer still changed, the autocommands didn't work
3182 * properly. */
3183 return FAIL;
3184 return OK;
3185 }
3186#ifdef FEAT_EVAL
3187 if (!aborting())
3188#endif
3189 EMSG(_("E203: Autocommands deleted or unloaded buffer to be written"));
3190 return FAIL;
3191 }
3192
3193 /*
3194 * The autocommands may have changed the number of lines in the file.
3195 * When writing the whole file, adjust the end.
3196 * When writing part of the file, assume that the autocommands only
3197 * changed the number of lines that are to be written (tricky!).
3198 */
3199 if (buf->b_ml.ml_line_count != old_line_count)
3200 {
3201 if (whole) /* write all */
3202 end = buf->b_ml.ml_line_count;
3203 else if (buf->b_ml.ml_line_count > old_line_count) /* more lines */
3204 end += buf->b_ml.ml_line_count - old_line_count;
3205 else /* less lines */
3206 {
3207 end -= old_line_count - buf->b_ml.ml_line_count;
3208 if (end < start)
3209 {
3210 --no_wait_return;
3211 msg_scroll = msg_save;
3212 EMSG(_("E204: Autocommand changed number of lines in unexpected way"));
3213 return FAIL;
3214 }
3215 }
3216 }
3217
3218 /*
3219 * The autocommands may have changed the name of the buffer, which may
3220 * be kept in fname, ffname and sfname.
3221 */
3222 if (buf_ffname)
3223 ffname = buf->b_ffname;
3224 if (buf_sfname)
3225 sfname = buf->b_sfname;
3226 if (buf_fname_f)
3227 fname = buf->b_ffname;
3228 if (buf_fname_s)
3229 fname = buf->b_sfname;
3230 }
3231#endif
3232
3233#ifdef FEAT_NETBEANS_INTG
3234 if (usingNetbeans && isNetbeansBuffer(buf))
3235 {
3236 if (whole)
3237 {
3238 /*
3239 * b_changed can be 0 after an undo, but we still need to write
3240 * the buffer to NetBeans.
3241 */
3242 if (buf->b_changed || isNetbeansModified(buf))
3243 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00003244 --no_wait_return; /* may wait for return now */
3245 msg_scroll = msg_save;
3246 netbeans_save_buffer(buf); /* no error checking... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 return retval;
3248 }
3249 else
3250 {
3251 errnum = (char_u *)"E656: ";
Bram Moolenaared0e7452008-06-27 19:17:34 +00003252 errmsg = (char_u *)_("NetBeans disallows writes of unmodified buffers");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 buffer = NULL;
3254 goto fail;
3255 }
3256 }
3257 else
3258 {
3259 errnum = (char_u *)"E657: ";
3260 errmsg = (char_u *)_("Partial writes disallowed for NetBeans buffers");
3261 buffer = NULL;
3262 goto fail;
3263 }
3264 }
3265#endif
3266
3267 if (shortmess(SHM_OVER) && !exiting)
3268 msg_scroll = FALSE; /* overwrite previous file message */
3269 else
3270 msg_scroll = TRUE; /* don't overwrite previous file message */
3271 if (!filtering)
3272 filemess(buf,
3273#ifndef UNIX
3274 sfname,
3275#else
3276 fname,
3277#endif
3278 (char_u *)"", 0); /* show that we are busy */
3279 msg_scroll = FALSE; /* always overwrite the file message now */
3280
3281 buffer = alloc(BUFSIZE);
3282 if (buffer == NULL) /* can't allocate big buffer, use small
3283 * one (to be able to write when out of
3284 * memory) */
3285 {
3286 buffer = smallbuf;
3287 bufsize = SMBUFSIZE;
3288 }
3289 else
3290 bufsize = BUFSIZE;
3291
3292 /*
3293 * Get information about original file (if there is one).
3294 */
3295#if defined(UNIX) && !defined(ARCHIE)
Bram Moolenaar6f192452007-11-08 19:49:02 +00003296 st_old.st_dev = 0;
3297 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298 perm = -1;
3299 if (mch_stat((char *)fname, &st_old) < 0)
3300 newfile = TRUE;
3301 else
3302 {
3303 perm = st_old.st_mode;
3304 if (!S_ISREG(st_old.st_mode)) /* not a file */
3305 {
3306 if (S_ISDIR(st_old.st_mode))
3307 {
3308 errnum = (char_u *)"E502: ";
3309 errmsg = (char_u *)_("is a directory");
3310 goto fail;
3311 }
3312 if (mch_nodetype(fname) != NODE_WRITABLE)
3313 {
3314 errnum = (char_u *)"E503: ";
3315 errmsg = (char_u *)_("is not a file or writable device");
3316 goto fail;
3317 }
3318 /* It's a device of some kind (or a fifo) which we can write to
3319 * but for which we can't make a backup. */
3320 device = TRUE;
3321 newfile = TRUE;
3322 perm = -1;
3323 }
3324 }
3325#else /* !UNIX */
3326 /*
3327 * Check for a writable device name.
3328 */
3329 c = mch_nodetype(fname);
3330 if (c == NODE_OTHER)
3331 {
3332 errnum = (char_u *)"E503: ";
3333 errmsg = (char_u *)_("is not a file or writable device");
3334 goto fail;
3335 }
3336 if (c == NODE_WRITABLE)
3337 {
Bram Moolenaar043545e2006-10-10 16:44:07 +00003338# if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3339 /* MS-Windows allows opening a device, but we will probably get stuck
3340 * trying to write to it. */
3341 if (!p_odev)
3342 {
3343 errnum = (char_u *)"E796: ";
3344 errmsg = (char_u *)_("writing to device disabled with 'opendevice' option");
3345 goto fail;
3346 }
3347# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003348 device = TRUE;
3349 newfile = TRUE;
3350 perm = -1;
3351 }
3352 else
3353 {
3354 perm = mch_getperm(fname);
3355 if (perm < 0)
3356 newfile = TRUE;
3357 else if (mch_isdir(fname))
3358 {
3359 errnum = (char_u *)"E502: ";
3360 errmsg = (char_u *)_("is a directory");
3361 goto fail;
3362 }
3363 if (overwriting)
3364 (void)mch_stat((char *)fname, &st_old);
3365 }
3366#endif /* !UNIX */
3367
3368 if (!device && !newfile)
3369 {
3370 /*
3371 * Check if the file is really writable (when renaming the file to
3372 * make a backup we won't discover it later).
3373 */
Bram Moolenaar5386a122007-06-28 20:02:32 +00003374 file_readonly = check_file_readonly(fname, (int)perm);
3375
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376 if (!forceit && file_readonly)
3377 {
3378 if (vim_strchr(p_cpo, CPO_FWRITE) != NULL)
3379 {
3380 errnum = (char_u *)"E504: ";
3381 errmsg = (char_u *)_(err_readonly);
3382 }
3383 else
3384 {
3385 errnum = (char_u *)"E505: ";
3386 errmsg = (char_u *)_("is read-only (add ! to override)");
3387 }
3388 goto fail;
3389 }
3390
3391 /*
3392 * Check if the timestamp hasn't changed since reading the file.
3393 */
3394 if (overwriting)
3395 {
3396 retval = check_mtime(buf, &st_old);
3397 if (retval == FAIL)
3398 goto fail;
3399 }
3400 }
3401
3402#ifdef HAVE_ACL
3403 /*
3404 * For systems that support ACL: get the ACL from the original file.
3405 */
3406 if (!newfile)
3407 acl = mch_get_acl(fname);
3408#endif
3409
3410 /*
3411 * If 'backupskip' is not empty, don't make a backup for some files.
3412 */
3413 dobackup = (p_wb || p_bk || *p_pm != NUL);
3414#ifdef FEAT_WILDIGN
3415 if (dobackup && *p_bsk != NUL && match_file_list(p_bsk, sfname, ffname))
3416 dobackup = FALSE;
3417#endif
3418
3419 /*
3420 * Save the value of got_int and reset it. We don't want a previous
3421 * interruption cancel writing, only hitting CTRL-C while writing should
3422 * abort it.
3423 */
3424 prev_got_int = got_int;
3425 got_int = FALSE;
3426
3427 /* Mark the buffer as 'being saved' to prevent changed buffer warnings */
3428 buf->b_saving = TRUE;
3429
3430 /*
3431 * If we are not appending or filtering, the file exists, and the
3432 * 'writebackup', 'backup' or 'patchmode' option is set, need a backup.
3433 * When 'patchmode' is set also make a backup when appending.
3434 *
3435 * Do not make any backup, if 'writebackup' and 'backup' are both switched
3436 * off. This helps when editing large files on almost-full disks.
3437 */
3438 if (!(append && *p_pm == NUL) && !filtering && perm >= 0 && dobackup)
3439 {
3440#if defined(UNIX) || defined(WIN32)
3441 struct stat st;
3442#endif
3443
3444 if ((bkc_flags & BKC_YES) || append) /* "yes" */
3445 backup_copy = TRUE;
3446#if defined(UNIX) || defined(WIN32)
3447 else if ((bkc_flags & BKC_AUTO)) /* "auto" */
3448 {
3449 int i;
3450
3451# ifdef UNIX
3452 /*
3453 * Don't rename the file when:
3454 * - it's a hard link
3455 * - it's a symbolic link
3456 * - we don't have write permission in the directory
3457 * - we can't set the owner/group of the new file
3458 */
3459 if (st_old.st_nlink > 1
3460 || mch_lstat((char *)fname, &st) < 0
3461 || st.st_dev != st_old.st_dev
Bram Moolenaara5792f52005-11-23 21:25:05 +00003462 || st.st_ino != st_old.st_ino
3463# ifndef HAVE_FCHOWN
3464 || st.st_uid != st_old.st_uid
3465 || st.st_gid != st_old.st_gid
3466# endif
3467 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 backup_copy = TRUE;
3469 else
Bram Moolenaar03f48552006-02-28 23:52:23 +00003470# else
3471# ifdef WIN32
3472 /* On NTFS file systems hard links are possible. */
3473 if (mch_is_linked(fname))
3474 backup_copy = TRUE;
3475 else
3476# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477# endif
3478 {
3479 /*
3480 * Check if we can create a file and set the owner/group to
3481 * the ones from the original file.
3482 * First find a file name that doesn't exist yet (use some
3483 * arbitrary numbers).
3484 */
3485 STRCPY(IObuff, fname);
3486 for (i = 4913; ; i += 123)
3487 {
3488 sprintf((char *)gettail(IObuff), "%d", i);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003489 if (mch_lstat((char *)IObuff, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 break;
3491 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00003492 fd = mch_open((char *)IObuff,
3493 O_CREAT|O_WRONLY|O_EXCL|O_NOFOLLOW, perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494 if (fd < 0) /* can't write in directory */
3495 backup_copy = TRUE;
3496 else
3497 {
3498# ifdef UNIX
Bram Moolenaara5792f52005-11-23 21:25:05 +00003499# ifdef HAVE_FCHOWN
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00003500 ignored = fchown(fd, st_old.st_uid, st_old.st_gid);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003501# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502 if (mch_stat((char *)IObuff, &st) < 0
3503 || st.st_uid != st_old.st_uid
3504 || st.st_gid != st_old.st_gid
Bram Moolenaar78a15312009-05-15 19:33:18 +00003505 || (long)st.st_mode != perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506 backup_copy = TRUE;
3507# endif
Bram Moolenaar98358622005-11-28 22:58:23 +00003508 /* Close the file before removing it, on MS-Windows we
3509 * can't delete an open file. */
Bram Moolenaara5792f52005-11-23 21:25:05 +00003510 close(fd);
Bram Moolenaar98358622005-11-28 22:58:23 +00003511 mch_remove(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 }
3513 }
3514 }
3515
3516# ifdef UNIX
3517 /*
3518 * Break symlinks and/or hardlinks if we've been asked to.
3519 */
3520 if ((bkc_flags & BKC_BREAKSYMLINK) || (bkc_flags & BKC_BREAKHARDLINK))
3521 {
3522 int lstat_res;
3523
3524 lstat_res = mch_lstat((char *)fname, &st);
3525
3526 /* Symlinks. */
3527 if ((bkc_flags & BKC_BREAKSYMLINK)
3528 && lstat_res == 0
3529 && st.st_ino != st_old.st_ino)
3530 backup_copy = FALSE;
3531
3532 /* Hardlinks. */
3533 if ((bkc_flags & BKC_BREAKHARDLINK)
3534 && st_old.st_nlink > 1
3535 && (lstat_res != 0 || st.st_ino == st_old.st_ino))
3536 backup_copy = FALSE;
3537 }
3538#endif
3539
3540#endif
3541
3542 /* make sure we have a valid backup extension to use */
3543 if (*p_bex == NUL)
3544 {
3545#ifdef RISCOS
3546 backup_ext = (char_u *)"/bak";
3547#else
3548 backup_ext = (char_u *)".bak";
3549#endif
3550 }
3551 else
3552 backup_ext = p_bex;
3553
3554 if (backup_copy
3555 && (fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
3556 {
3557 int bfd;
3558 char_u *copybuf, *wp;
3559 int some_error = FALSE;
3560 struct stat st_new;
3561 char_u *dirp;
3562 char_u *rootname;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003563#if defined(UNIX) && !defined(SHORT_FNAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 int did_set_shortname;
3565#endif
3566
3567 copybuf = alloc(BUFSIZE + 1);
3568 if (copybuf == NULL)
3569 {
3570 some_error = TRUE; /* out of memory */
3571 goto nobackup;
3572 }
3573
3574 /*
3575 * Try to make the backup in each directory in the 'bdir' option.
3576 *
3577 * Unix semantics has it, that we may have a writable file,
3578 * that cannot be recreated with a simple open(..., O_CREAT, ) e.g:
3579 * - the directory is not writable,
3580 * - the file may be a symbolic link,
3581 * - the file may belong to another user/group, etc.
3582 *
3583 * For these reasons, the existing writable file must be truncated
3584 * and reused. Creation of a backup COPY will be attempted.
3585 */
3586 dirp = p_bdir;
3587 while (*dirp)
3588 {
3589#ifdef UNIX
3590 st_new.st_ino = 0;
3591 st_new.st_dev = 0;
3592 st_new.st_gid = 0;
3593#endif
3594
3595 /*
3596 * Isolate one directory name, using an entry in 'bdir'.
3597 */
3598 (void)copy_option_part(&dirp, copybuf, BUFSIZE, ",");
3599 rootname = get_file_in_dir(fname, copybuf);
3600 if (rootname == NULL)
3601 {
3602 some_error = TRUE; /* out of memory */
3603 goto nobackup;
3604 }
3605
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003606#if defined(UNIX) && !defined(SHORT_FNAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 did_set_shortname = FALSE;
3608#endif
3609
3610 /*
3611 * May try twice if 'shortname' not set.
3612 */
3613 for (;;)
3614 {
3615 /*
3616 * Make backup file name.
3617 */
3618 backup = buf_modname(
3619#ifdef SHORT_FNAME
3620 TRUE,
3621#else
3622 (buf->b_p_sn || buf->b_shortname),
3623#endif
3624 rootname, backup_ext, FALSE);
3625 if (backup == NULL)
3626 {
3627 vim_free(rootname);
3628 some_error = TRUE; /* out of memory */
3629 goto nobackup;
3630 }
3631
3632 /*
3633 * Check if backup file already exists.
3634 */
3635 if (mch_stat((char *)backup, &st_new) >= 0)
3636 {
3637#ifdef UNIX
3638 /*
3639 * Check if backup file is same as original file.
3640 * May happen when modname() gave the same file back.
3641 * E.g. silly link, or file name-length reached.
3642 * If we don't check here, we either ruin the file
3643 * when copying or erase it after writing. jw.
3644 */
3645 if (st_new.st_dev == st_old.st_dev
3646 && st_new.st_ino == st_old.st_ino)
3647 {
3648 vim_free(backup);
3649 backup = NULL; /* no backup file to delete */
3650# ifndef SHORT_FNAME
3651 /*
3652 * may try again with 'shortname' set
3653 */
3654 if (!(buf->b_shortname || buf->b_p_sn))
3655 {
3656 buf->b_shortname = TRUE;
3657 did_set_shortname = TRUE;
3658 continue;
3659 }
3660 /* setting shortname didn't help */
3661 if (did_set_shortname)
3662 buf->b_shortname = FALSE;
3663# endif
3664 break;
3665 }
3666#endif
3667
3668 /*
3669 * If we are not going to keep the backup file, don't
3670 * delete an existing one, try to use another name.
3671 * Change one character, just before the extension.
3672 */
3673 if (!p_bk)
3674 {
3675 wp = backup + STRLEN(backup) - 1
3676 - STRLEN(backup_ext);
3677 if (wp < backup) /* empty file name ??? */
3678 wp = backup;
3679 *wp = 'z';
3680 while (*wp > 'a'
3681 && mch_stat((char *)backup, &st_new) >= 0)
3682 --*wp;
3683 /* They all exist??? Must be something wrong. */
3684 if (*wp == 'a')
3685 {
3686 vim_free(backup);
3687 backup = NULL;
3688 }
3689 }
3690 }
3691 break;
3692 }
3693 vim_free(rootname);
3694
3695 /*
3696 * Try to create the backup file
3697 */
3698 if (backup != NULL)
3699 {
3700 /* remove old backup, if present */
3701 mch_remove(backup);
3702 /* Open with O_EXCL to avoid the file being created while
3703 * we were sleeping (symlink hacker attack?) */
3704 bfd = mch_open((char *)backup,
Bram Moolenaara5792f52005-11-23 21:25:05 +00003705 O_WRONLY|O_CREAT|O_EXTRA|O_EXCL|O_NOFOLLOW,
3706 perm & 0777);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 if (bfd < 0)
3708 {
3709 vim_free(backup);
3710 backup = NULL;
3711 }
3712 else
3713 {
3714 /* set file protection same as original file, but
3715 * strip s-bit */
3716 (void)mch_setperm(backup, perm & 0777);
3717
3718#ifdef UNIX
3719 /*
3720 * Try to set the group of the backup same as the
3721 * original file. If this fails, set the protection
3722 * bits for the group same as the protection bits for
3723 * others.
3724 */
Bram Moolenaara5792f52005-11-23 21:25:05 +00003725 if (st_new.st_gid != st_old.st_gid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726# ifdef HAVE_FCHOWN /* sequent-ptx lacks fchown() */
Bram Moolenaara5792f52005-11-23 21:25:05 +00003727 && fchown(bfd, (uid_t)-1, st_old.st_gid) != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728# endif
3729 )
3730 mch_setperm(backup,
3731 (perm & 0707) | ((perm & 07) << 3));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00003732# ifdef HAVE_SELINUX
3733 mch_copy_sec(fname, backup);
3734# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735#endif
3736
3737 /*
3738 * copy the file.
3739 */
3740 write_info.bw_fd = bfd;
3741 write_info.bw_buf = copybuf;
3742#ifdef HAS_BW_FLAGS
3743 write_info.bw_flags = FIO_NOCONVERT;
3744#endif
3745 while ((write_info.bw_len = vim_read(fd, copybuf,
3746 BUFSIZE)) > 0)
3747 {
3748 if (buf_write_bytes(&write_info) == FAIL)
3749 {
3750 errmsg = (char_u *)_("E506: Can't write to backup file (add ! to override)");
3751 break;
3752 }
3753 ui_breakcheck();
3754 if (got_int)
3755 {
3756 errmsg = (char_u *)_(e_interr);
3757 break;
3758 }
3759 }
3760
3761 if (close(bfd) < 0 && errmsg == NULL)
3762 errmsg = (char_u *)_("E507: Close error for backup file (add ! to override)");
3763 if (write_info.bw_len < 0)
3764 errmsg = (char_u *)_("E508: Can't read file for backup (add ! to override)");
3765#ifdef UNIX
3766 set_file_time(backup, st_old.st_atime, st_old.st_mtime);
3767#endif
3768#ifdef HAVE_ACL
3769 mch_set_acl(backup, acl);
3770#endif
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00003771#ifdef HAVE_SELINUX
3772 mch_copy_sec(fname, backup);
3773#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 break;
3775 }
3776 }
3777 }
3778 nobackup:
3779 close(fd); /* ignore errors for closing read file */
3780 vim_free(copybuf);
3781
3782 if (backup == NULL && errmsg == NULL)
3783 errmsg = (char_u *)_("E509: Cannot create backup file (add ! to override)");
3784 /* ignore errors when forceit is TRUE */
3785 if ((some_error || errmsg != NULL) && !forceit)
3786 {
3787 retval = FAIL;
3788 goto fail;
3789 }
3790 errmsg = NULL;
3791 }
3792 else
3793 {
3794 char_u *dirp;
3795 char_u *p;
3796 char_u *rootname;
3797
3798 /*
3799 * Make a backup by renaming the original file.
3800 */
3801 /*
3802 * If 'cpoptions' includes the "W" flag, we don't want to
3803 * overwrite a read-only file. But rename may be possible
3804 * anyway, thus we need an extra check here.
3805 */
3806 if (file_readonly && vim_strchr(p_cpo, CPO_FWRITE) != NULL)
3807 {
3808 errnum = (char_u *)"E504: ";
3809 errmsg = (char_u *)_(err_readonly);
3810 goto fail;
3811 }
3812
3813 /*
3814 *
3815 * Form the backup file name - change path/fo.o.h to
3816 * path/fo.o.h.bak Try all directories in 'backupdir', first one
3817 * that works is used.
3818 */
3819 dirp = p_bdir;
3820 while (*dirp)
3821 {
3822 /*
3823 * Isolate one directory name and make the backup file name.
3824 */
3825 (void)copy_option_part(&dirp, IObuff, IOSIZE, ",");
3826 rootname = get_file_in_dir(fname, IObuff);
3827 if (rootname == NULL)
3828 backup = NULL;
3829 else
3830 {
3831 backup = buf_modname(
3832#ifdef SHORT_FNAME
3833 TRUE,
3834#else
3835 (buf->b_p_sn || buf->b_shortname),
3836#endif
3837 rootname, backup_ext, FALSE);
3838 vim_free(rootname);
3839 }
3840
3841 if (backup != NULL)
3842 {
3843 /*
3844 * If we are not going to keep the backup file, don't
3845 * delete an existing one, try to use another name.
3846 * Change one character, just before the extension.
3847 */
3848 if (!p_bk && mch_getperm(backup) >= 0)
3849 {
3850 p = backup + STRLEN(backup) - 1 - STRLEN(backup_ext);
3851 if (p < backup) /* empty file name ??? */
3852 p = backup;
3853 *p = 'z';
3854 while (*p > 'a' && mch_getperm(backup) >= 0)
3855 --*p;
3856 /* They all exist??? Must be something wrong! */
3857 if (*p == 'a')
3858 {
3859 vim_free(backup);
3860 backup = NULL;
3861 }
3862 }
3863 }
3864 if (backup != NULL)
3865 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 /*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003867 * Delete any existing backup and move the current version
3868 * to the backup. For safety, we don't remove the backup
3869 * until the write has finished successfully. And if the
3870 * 'backup' option is set, leave it around.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003871 */
3872 /*
3873 * If the renaming of the original file to the backup file
3874 * works, quit here.
3875 */
3876 if (vim_rename(fname, backup) == 0)
3877 break;
3878
3879 vim_free(backup); /* don't do the rename below */
3880 backup = NULL;
3881 }
3882 }
3883 if (backup == NULL && !forceit)
3884 {
3885 errmsg = (char_u *)_("E510: Can't make backup file (add ! to override)");
3886 goto fail;
3887 }
3888 }
3889 }
3890
3891#if defined(UNIX) && !defined(ARCHIE)
3892 /* When using ":w!" and the file was read-only: make it writable */
3893 if (forceit && perm >= 0 && !(perm & 0200) && st_old.st_uid == getuid()
3894 && vim_strchr(p_cpo, CPO_FWRITE) == NULL)
3895 {
3896 perm |= 0200;
3897 (void)mch_setperm(fname, perm);
3898 made_writable = TRUE;
3899 }
3900#endif
3901
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003902 /* When using ":w!" and writing to the current file, 'readonly' makes no
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003903 * sense, reset it, unless 'Z' appears in 'cpoptions'. */
3904 if (forceit && overwriting && vim_strchr(p_cpo, CPO_KEEPRO) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905 {
3906 buf->b_p_ro = FALSE;
3907#ifdef FEAT_TITLE
3908 need_maketitle = TRUE; /* set window title later */
3909#endif
3910#ifdef FEAT_WINDOWS
3911 status_redraw_all(); /* redraw status lines later */
3912#endif
3913 }
3914
3915 if (end > buf->b_ml.ml_line_count)
3916 end = buf->b_ml.ml_line_count;
3917 if (buf->b_ml.ml_flags & ML_EMPTY)
3918 start = end + 1;
3919
3920 /*
3921 * If the original file is being overwritten, there is a small chance that
3922 * we crash in the middle of writing. Therefore the file is preserved now.
3923 * This makes all block numbers positive so that recovery does not need
3924 * the original file.
3925 * Don't do this if there is a backup file and we are exiting.
3926 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003927 if (reset_changed && !newfile && overwriting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003928 && !(exiting && backup != NULL))
3929 {
3930 ml_preserve(buf, FALSE);
3931 if (got_int)
3932 {
3933 errmsg = (char_u *)_(e_interr);
3934 goto restore_backup;
3935 }
3936 }
3937
3938#ifdef MACOS_CLASSIC /* TODO: Is it need for MACOS_X? (Dany) */
3939 /*
3940 * Before risking to lose the original file verify if there's
3941 * a resource fork to preserve, and if cannot be done warn
3942 * the users. This happens when overwriting without backups.
3943 */
3944 if (backup == NULL && overwriting && !append)
3945 if (mch_has_resource_fork(fname))
3946 {
3947 errmsg = (char_u *)_("E460: The resource fork would be lost (add ! to override)");
3948 goto restore_backup;
3949 }
3950#endif
3951
3952#ifdef VMS
3953 vms_remove_version(fname); /* remove version */
3954#endif
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00003955 /* Default: write the file directly. May write to a temp file for
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 * multi-byte conversion. */
3957 wfname = fname;
3958
3959#ifdef FEAT_MBYTE
3960 /* Check for forced 'fileencoding' from "++opt=val" argument. */
3961 if (eap != NULL && eap->force_enc != 0)
3962 {
3963 fenc = eap->cmd + eap->force_enc;
3964 fenc = enc_canonize(fenc);
3965 fenc_tofree = fenc;
3966 }
3967 else
3968 fenc = buf->b_p_fenc;
3969
3970 /*
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00003971 * Check if the file needs to be converted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972 */
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00003973 converted = need_conversion(fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974
3975 /*
3976 * Check if UTF-8 to UCS-2/4 or Latin1 conversion needs to be done. Or
3977 * Latin1 to Unicode conversion. This is handled in buf_write_bytes().
3978 * Prepare the flags for it and allocate bw_conv_buf when needed.
3979 */
3980 if (converted && (enc_utf8 || STRCMP(p_enc, "latin1") == 0))
3981 {
3982 wb_flags = get_fio_flags(fenc);
3983 if (wb_flags & (FIO_UCS2 | FIO_UCS4 | FIO_UTF16 | FIO_UTF8))
3984 {
3985 /* Need to allocate a buffer to translate into. */
3986 if (wb_flags & (FIO_UCS2 | FIO_UTF16 | FIO_UTF8))
3987 write_info.bw_conv_buflen = bufsize * 2;
3988 else /* FIO_UCS4 */
3989 write_info.bw_conv_buflen = bufsize * 4;
3990 write_info.bw_conv_buf
3991 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
3992 if (write_info.bw_conv_buf == NULL)
3993 end = 0;
3994 }
3995 }
3996
3997# ifdef WIN3264
3998 if (converted && wb_flags == 0 && (wb_flags = get_win_fio_flags(fenc)) != 0)
3999 {
4000 /* Convert UTF-8 -> UCS-2 and UCS-2 -> DBCS. Worst-case * 4: */
4001 write_info.bw_conv_buflen = bufsize * 4;
4002 write_info.bw_conv_buf
4003 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
4004 if (write_info.bw_conv_buf == NULL)
4005 end = 0;
4006 }
4007# endif
4008
4009# ifdef MACOS_X
4010 if (converted && wb_flags == 0 && (wb_flags = get_mac_fio_flags(fenc)) != 0)
4011 {
4012 write_info.bw_conv_buflen = bufsize * 3;
4013 write_info.bw_conv_buf
4014 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
4015 if (write_info.bw_conv_buf == NULL)
4016 end = 0;
4017 }
4018# endif
4019
4020# if defined(FEAT_EVAL) || defined(USE_ICONV)
4021 if (converted && wb_flags == 0)
4022 {
4023# ifdef USE_ICONV
4024 /*
4025 * Use iconv() conversion when conversion is needed and it's not done
4026 * internally.
4027 */
4028 write_info.bw_iconv_fd = (iconv_t)my_iconv_open(fenc,
4029 enc_utf8 ? (char_u *)"utf-8" : p_enc);
4030 if (write_info.bw_iconv_fd != (iconv_t)-1)
4031 {
4032 /* We're going to use iconv(), allocate a buffer to convert in. */
4033 write_info.bw_conv_buflen = bufsize * ICONV_MULT;
4034 write_info.bw_conv_buf
4035 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
4036 if (write_info.bw_conv_buf == NULL)
4037 end = 0;
4038 write_info.bw_first = TRUE;
4039 }
4040# ifdef FEAT_EVAL
4041 else
4042# endif
4043# endif
4044
4045# ifdef FEAT_EVAL
4046 /*
4047 * When the file needs to be converted with 'charconvert' after
4048 * writing, write to a temp file instead and let the conversion
4049 * overwrite the original file.
4050 */
4051 if (*p_ccv != NUL)
4052 {
4053 wfname = vim_tempname('w');
4054 if (wfname == NULL) /* Can't write without a tempfile! */
4055 {
4056 errmsg = (char_u *)_("E214: Can't find temp file for writing");
4057 goto restore_backup;
4058 }
4059 }
4060# endif
4061 }
4062# endif
4063 if (converted && wb_flags == 0
4064# ifdef USE_ICONV
4065 && write_info.bw_iconv_fd == (iconv_t)-1
4066# endif
4067# ifdef FEAT_EVAL
4068 && wfname == fname
4069# endif
4070 )
4071 {
4072 if (!forceit)
4073 {
4074 errmsg = (char_u *)_("E213: Cannot convert (add ! to write without conversion)");
4075 goto restore_backup;
4076 }
4077 notconverted = TRUE;
4078 }
4079#endif
4080
4081 /*
4082 * Open the file "wfname" for writing.
4083 * We may try to open the file twice: If we can't write to the
4084 * file and forceit is TRUE we delete the existing file and try to create
4085 * a new one. If this still fails we may have lost the original file!
4086 * (this may happen when the user reached his quotum for number of files).
4087 * Appending will fail if the file does not exist and forceit is FALSE.
4088 */
4089 while ((fd = mch_open((char *)wfname, O_WRONLY | O_EXTRA | (append
4090 ? (forceit ? (O_APPEND | O_CREAT) : O_APPEND)
4091 : (O_CREAT | O_TRUNC))
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00004092 , perm < 0 ? 0666 : (perm & 0777))) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 {
4094 /*
4095 * A forced write will try to create a new file if the old one is
4096 * still readonly. This may also happen when the directory is
4097 * read-only. In that case the mch_remove() will fail.
4098 */
4099 if (errmsg == NULL)
4100 {
4101#ifdef UNIX
4102 struct stat st;
4103
4104 /* Don't delete the file when it's a hard or symbolic link. */
4105 if ((!newfile && st_old.st_nlink > 1)
4106 || (mch_lstat((char *)fname, &st) == 0
4107 && (st.st_dev != st_old.st_dev
4108 || st.st_ino != st_old.st_ino)))
4109 errmsg = (char_u *)_("E166: Can't open linked file for writing");
4110 else
4111#endif
4112 {
4113 errmsg = (char_u *)_("E212: Can't open file for writing");
4114 if (forceit && vim_strchr(p_cpo, CPO_FWRITE) == NULL
4115 && perm >= 0)
4116 {
4117#ifdef UNIX
4118 /* we write to the file, thus it should be marked
4119 writable after all */
4120 if (!(perm & 0200))
4121 made_writable = TRUE;
4122 perm |= 0200;
4123 if (st_old.st_uid != getuid() || st_old.st_gid != getgid())
4124 perm &= 0777;
4125#endif
4126 if (!append) /* don't remove when appending */
4127 mch_remove(wfname);
4128 continue;
4129 }
4130 }
4131 }
4132
4133restore_backup:
4134 {
4135 struct stat st;
4136
4137 /*
4138 * If we failed to open the file, we don't need a backup. Throw it
4139 * away. If we moved or removed the original file try to put the
4140 * backup in its place.
4141 */
4142 if (backup != NULL && wfname == fname)
4143 {
4144 if (backup_copy)
4145 {
4146 /*
4147 * There is a small chance that we removed the original,
4148 * try to move the copy in its place.
4149 * This may not work if the vim_rename() fails.
4150 * In that case we leave the copy around.
4151 */
4152 /* If file does not exist, put the copy in its place */
4153 if (mch_stat((char *)fname, &st) < 0)
4154 vim_rename(backup, fname);
4155 /* if original file does exist throw away the copy */
4156 if (mch_stat((char *)fname, &st) >= 0)
4157 mch_remove(backup);
4158 }
4159 else
4160 {
4161 /* try to put the original file back */
4162 vim_rename(backup, fname);
4163 }
4164 }
4165
4166 /* if original file no longer exists give an extra warning */
4167 if (!newfile && mch_stat((char *)fname, &st) < 0)
4168 end = 0;
4169 }
4170
4171#ifdef FEAT_MBYTE
4172 if (wfname != fname)
4173 vim_free(wfname);
4174#endif
4175 goto fail;
4176 }
4177 errmsg = NULL;
4178
4179#if defined(MACOS_CLASSIC) || defined(WIN3264)
4180 /* TODO: Is it need for MACOS_X? (Dany) */
4181 /*
4182 * On macintosh copy the original files attributes (i.e. the backup)
Bram Moolenaar7263a772007-05-10 17:35:54 +00004183 * This is done in order to preserve the resource fork and the
4184 * Finder attribute (label, comments, custom icons, file creator)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185 */
4186 if (backup != NULL && overwriting && !append)
4187 {
4188 if (backup_copy)
4189 (void)mch_copy_file_attribute(wfname, backup);
4190 else
4191 (void)mch_copy_file_attribute(backup, wfname);
4192 }
4193
4194 if (!overwriting && !append)
4195 {
4196 if (buf->b_ffname != NULL)
4197 (void)mch_copy_file_attribute(buf->b_ffname, wfname);
Bram Moolenaar7263a772007-05-10 17:35:54 +00004198 /* Should copy resource fork */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 }
4200#endif
4201
4202 write_info.bw_fd = fd;
4203
4204#ifdef FEAT_CRYPT
4205 if (*buf->b_p_key && !filtering)
4206 {
4207 crypt_init_keys(buf->b_p_key);
4208 /* Write magic number, so that Vim knows that this file is encrypted
4209 * when reading it again. This also undergoes utf-8 to ucs-2/4
4210 * conversion when needed. */
4211 write_info.bw_buf = (char_u *)CRYPT_MAGIC;
4212 write_info.bw_len = CRYPT_MAGIC_LEN;
4213 write_info.bw_flags = FIO_NOCONVERT;
4214 if (buf_write_bytes(&write_info) == FAIL)
4215 end = 0;
4216 wb_flags |= FIO_ENCRYPTED;
4217 }
4218#endif
4219
4220 write_info.bw_buf = buffer;
4221 nchars = 0;
4222
4223 /* use "++bin", "++nobin" or 'binary' */
4224 if (eap != NULL && eap->force_bin != 0)
4225 write_bin = (eap->force_bin == FORCE_BIN);
4226 else
4227 write_bin = buf->b_p_bin;
4228
4229#ifdef FEAT_MBYTE
4230 /*
4231 * The BOM is written just after the encryption magic number.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004232 * Skip it when appending and the file already existed, the BOM only makes
4233 * sense at the start of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004235 if (buf->b_p_bomb && !write_bin && (!append || perm < 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004236 {
4237 write_info.bw_len = make_bom(buffer, fenc);
4238 if (write_info.bw_len > 0)
4239 {
4240 /* don't convert, do encryption */
4241 write_info.bw_flags = FIO_NOCONVERT | wb_flags;
4242 if (buf_write_bytes(&write_info) == FAIL)
4243 end = 0;
4244 else
4245 nchars += write_info.bw_len;
4246 }
4247 }
Bram Moolenaar32b485f2009-07-29 16:06:27 +00004248 write_info.bw_start_lnum = start;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249#endif
4250
4251 write_info.bw_len = bufsize;
4252#ifdef HAS_BW_FLAGS
4253 write_info.bw_flags = wb_flags;
4254#endif
4255 fileformat = get_fileformat_force(buf, eap);
4256 s = buffer;
4257 len = 0;
4258 for (lnum = start; lnum <= end; ++lnum)
4259 {
4260 /*
4261 * The next while loop is done once for each character written.
4262 * Keep it fast!
4263 */
4264 ptr = ml_get_buf(buf, lnum, FALSE) - 1;
4265 while ((c = *++ptr) != NUL)
4266 {
4267 if (c == NL)
4268 *s = NUL; /* replace newlines with NULs */
4269 else if (c == CAR && fileformat == EOL_MAC)
4270 *s = NL; /* Mac: replace CRs with NLs */
4271 else
4272 *s = c;
4273 ++s;
4274 if (++len != bufsize)
4275 continue;
4276 if (buf_write_bytes(&write_info) == FAIL)
4277 {
4278 end = 0; /* write error: break loop */
4279 break;
4280 }
4281 nchars += bufsize;
4282 s = buffer;
4283 len = 0;
Bram Moolenaar32b485f2009-07-29 16:06:27 +00004284#ifdef FEAT_MBYTE
4285 write_info.bw_start_lnum = lnum;
4286#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 }
4288 /* write failed or last line has no EOL: stop here */
4289 if (end == 0
4290 || (lnum == end
4291 && write_bin
4292 && (lnum == write_no_eol_lnum
4293 || (lnum == buf->b_ml.ml_line_count && !buf->b_p_eol))))
4294 {
4295 ++lnum; /* written the line, count it */
4296 no_eol = TRUE;
4297 break;
4298 }
4299 if (fileformat == EOL_UNIX)
4300 *s++ = NL;
4301 else
4302 {
4303 *s++ = CAR; /* EOL_MAC or EOL_DOS: write CR */
4304 if (fileformat == EOL_DOS) /* write CR-NL */
4305 {
4306 if (++len == bufsize)
4307 {
4308 if (buf_write_bytes(&write_info) == FAIL)
4309 {
4310 end = 0; /* write error: break loop */
4311 break;
4312 }
4313 nchars += bufsize;
4314 s = buffer;
4315 len = 0;
4316 }
4317 *s++ = NL;
4318 }
4319 }
4320 if (++len == bufsize && end)
4321 {
4322 if (buf_write_bytes(&write_info) == FAIL)
4323 {
4324 end = 0; /* write error: break loop */
4325 break;
4326 }
4327 nchars += bufsize;
4328 s = buffer;
4329 len = 0;
4330
4331 ui_breakcheck();
4332 if (got_int)
4333 {
4334 end = 0; /* Interrupted, break loop */
4335 break;
4336 }
4337 }
4338#ifdef VMS
4339 /*
4340 * On VMS there is a problem: newlines get added when writing blocks
4341 * at a time. Fix it by writing a line at a time.
4342 * This is much slower!
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004343 * Explanation: VAX/DECC RTL insists that records in some RMS
4344 * structures end with a newline (carriage return) character, and if
4345 * they don't it adds one.
4346 * With other RMS structures it works perfect without this fix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 */
Bram Moolenaarb52e2602007-10-29 21:38:54 +00004348 if (buf->b_fab_rfm == FAB$C_VFC
4349 || ((buf->b_fab_rat & (FAB$M_FTN | FAB$M_CR)) != 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004351 int b2write;
4352
4353 buf->b_fab_mrs = (buf->b_fab_mrs == 0
4354 ? MIN(4096, bufsize)
4355 : MIN(buf->b_fab_mrs, bufsize));
4356
4357 b2write = len;
4358 while (b2write > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004360 write_info.bw_len = MIN(b2write, buf->b_fab_mrs);
4361 if (buf_write_bytes(&write_info) == FAIL)
4362 {
4363 end = 0;
4364 break;
4365 }
4366 b2write -= MIN(b2write, buf->b_fab_mrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 }
4368 write_info.bw_len = bufsize;
4369 nchars += len;
4370 s = buffer;
4371 len = 0;
4372 }
4373#endif
4374 }
4375 if (len > 0 && end > 0)
4376 {
4377 write_info.bw_len = len;
4378 if (buf_write_bytes(&write_info) == FAIL)
4379 end = 0; /* write error */
4380 nchars += len;
4381 }
4382
4383#if defined(UNIX) && defined(HAVE_FSYNC)
4384 /* On many journalling file systems there is a bug that causes both the
4385 * original and the backup file to be lost when halting the system right
4386 * after writing the file. That's because only the meta-data is
4387 * journalled. Syncing the file slows down the system, but assures it has
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004388 * been written to disk and we don't lose it.
4389 * For a device do try the fsync() but don't complain if it does not work
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004390 * (could be a pipe).
4391 * If the 'fsync' option is FALSE, don't fsync(). Useful for laptops. */
4392 if (p_fs && fsync(fd) != 0 && !device)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 {
4394 errmsg = (char_u *)_("E667: Fsync failed");
4395 end = 0;
4396 }
4397#endif
4398
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00004399#ifdef HAVE_SELINUX
4400 /* Probably need to set the security context. */
4401 if (!backup_copy)
4402 mch_copy_sec(backup, wfname);
4403#endif
4404
Bram Moolenaara5792f52005-11-23 21:25:05 +00004405#ifdef UNIX
4406 /* When creating a new file, set its owner/group to that of the original
4407 * file. Get the new device and inode number. */
4408 if (backup != NULL && !backup_copy)
4409 {
4410# ifdef HAVE_FCHOWN
4411 struct stat st;
4412
4413 /* don't change the owner when it's already OK, some systems remove
4414 * permission or ACL stuff */
4415 if (mch_stat((char *)wfname, &st) < 0
4416 || st.st_uid != st_old.st_uid
4417 || st.st_gid != st_old.st_gid)
4418 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004419 ignored = fchown(fd, st_old.st_uid, st_old.st_gid);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004420 if (perm >= 0) /* set permission again, may have changed */
4421 (void)mch_setperm(wfname, perm);
4422 }
4423# endif
4424 buf_setino(buf);
4425 }
Bram Moolenaarf1726cc2009-05-13 18:48:16 +00004426 else if (!buf->b_dev_valid)
Bram Moolenaar8fa04452005-12-23 22:13:51 +00004427 /* Set the inode when creating a new file. */
4428 buf_setino(buf);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004429#endif
4430
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 if (close(fd) != 0)
4432 {
4433 errmsg = (char_u *)_("E512: Close failed");
4434 end = 0;
4435 }
4436
4437#ifdef UNIX
4438 if (made_writable)
4439 perm &= ~0200; /* reset 'w' bit for security reasons */
4440#endif
4441 if (perm >= 0) /* set perm. of new file same as old file */
4442 (void)mch_setperm(wfname, perm);
4443#ifdef RISCOS
4444 if (!append && !filtering)
4445 /* Set the filetype after writing the file. */
4446 mch_set_filetype(wfname, buf->b_p_oft);
4447#endif
4448#ifdef HAVE_ACL
4449 /* Probably need to set the ACL before changing the user (can't set the
4450 * ACL on a file the user doesn't own). */
4451 if (!backup_copy)
4452 mch_set_acl(wfname, acl);
4453#endif
4454
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455
4456#if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
4457 if (wfname != fname)
4458 {
4459 /*
4460 * The file was written to a temp file, now it needs to be converted
4461 * with 'charconvert' to (overwrite) the output file.
4462 */
4463 if (end != 0)
4464 {
4465 if (eval_charconvert(enc_utf8 ? (char_u *)"utf-8" : p_enc, fenc,
4466 wfname, fname) == FAIL)
4467 {
4468 write_info.bw_conv_error = TRUE;
4469 end = 0;
4470 }
4471 }
4472 mch_remove(wfname);
4473 vim_free(wfname);
4474 }
4475#endif
4476
4477 if (end == 0)
4478 {
4479 if (errmsg == NULL)
4480 {
4481#ifdef FEAT_MBYTE
4482 if (write_info.bw_conv_error)
Bram Moolenaar32b485f2009-07-29 16:06:27 +00004483 {
4484 if (write_info.bw_conv_error_lnum == 0)
4485 errmsg = (char_u *)_("E513: write error, conversion failed (make 'fenc' empty to override)");
4486 else
4487 {
4488 errmsg_allocated = TRUE;
4489 errmsg = alloc(300);
4490 vim_snprintf((char *)errmsg, 300, _("E513: write error, conversion failed in line %ld (make 'fenc' empty to override)"),
4491 (long)write_info.bw_conv_error_lnum);
4492 }
4493 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 else
4495#endif
4496 if (got_int)
4497 errmsg = (char_u *)_(e_interr);
4498 else
4499 errmsg = (char_u *)_("E514: write error (file system full?)");
4500 }
4501
4502 /*
4503 * If we have a backup file, try to put it in place of the new file,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004504 * because the new file is probably corrupt. This avoids losing the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 * original file when trying to make a backup when writing the file a
4506 * second time.
4507 * When "backup_copy" is set we need to copy the backup over the new
4508 * file. Otherwise rename the backup file.
4509 * If this is OK, don't give the extra warning message.
4510 */
4511 if (backup != NULL)
4512 {
4513 if (backup_copy)
4514 {
4515 /* This may take a while, if we were interrupted let the user
4516 * know we got the message. */
4517 if (got_int)
4518 {
4519 MSG(_(e_interr));
4520 out_flush();
4521 }
4522 if ((fd = mch_open((char *)backup, O_RDONLY | O_EXTRA, 0)) >= 0)
4523 {
4524 if ((write_info.bw_fd = mch_open((char *)fname,
Bram Moolenaar9be038d2005-03-08 22:34:32 +00004525 O_WRONLY | O_CREAT | O_TRUNC | O_EXTRA,
4526 perm & 0777)) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 {
4528 /* copy the file. */
4529 write_info.bw_buf = smallbuf;
4530#ifdef HAS_BW_FLAGS
4531 write_info.bw_flags = FIO_NOCONVERT;
4532#endif
4533 while ((write_info.bw_len = vim_read(fd, smallbuf,
4534 SMBUFSIZE)) > 0)
4535 if (buf_write_bytes(&write_info) == FAIL)
4536 break;
4537
4538 if (close(write_info.bw_fd) >= 0
4539 && write_info.bw_len == 0)
4540 end = 1; /* success */
4541 }
4542 close(fd); /* ignore errors for closing read file */
4543 }
4544 }
4545 else
4546 {
4547 if (vim_rename(backup, fname) == 0)
4548 end = 1;
4549 }
4550 }
4551 goto fail;
4552 }
4553
4554 lnum -= start; /* compute number of written lines */
4555 --no_wait_return; /* may wait for return now */
4556
4557#if !(defined(UNIX) || defined(VMS))
4558 fname = sfname; /* use shortname now, for the messages */
4559#endif
4560 if (!filtering)
4561 {
4562 msg_add_fname(buf, fname); /* put fname in IObuff with quotes */
4563 c = FALSE;
4564#ifdef FEAT_MBYTE
4565 if (write_info.bw_conv_error)
4566 {
4567 STRCAT(IObuff, _(" CONVERSION ERROR"));
4568 c = TRUE;
Bram Moolenaar32b485f2009-07-29 16:06:27 +00004569 if (write_info.bw_conv_error_lnum != 0)
4570 {
Bram Moolenaarc0662022009-09-11 13:04:24 +00004571 size_t l = STRLEN(IObuff);
Bram Moolenaar32b485f2009-07-29 16:06:27 +00004572 vim_snprintf((char *)IObuff + l, IOSIZE - l, _(" in line %ld;"),
4573 (long)write_info.bw_conv_error_lnum);
4574 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 }
4576 else if (notconverted)
4577 {
4578 STRCAT(IObuff, _("[NOT converted]"));
4579 c = TRUE;
4580 }
4581 else if (converted)
4582 {
4583 STRCAT(IObuff, _("[converted]"));
4584 c = TRUE;
4585 }
4586#endif
4587 if (device)
4588 {
4589 STRCAT(IObuff, _("[Device]"));
4590 c = TRUE;
4591 }
4592 else if (newfile)
4593 {
4594 STRCAT(IObuff, shortmess(SHM_NEW) ? _("[New]") : _("[New File]"));
4595 c = TRUE;
4596 }
4597 if (no_eol)
4598 {
4599 msg_add_eol();
4600 c = TRUE;
4601 }
4602 /* may add [unix/dos/mac] */
4603 if (msg_add_fileformat(fileformat))
4604 c = TRUE;
4605#ifdef FEAT_CRYPT
4606 if (wb_flags & FIO_ENCRYPTED)
4607 {
4608 STRCAT(IObuff, _("[crypted]"));
4609 c = TRUE;
4610 }
4611#endif
4612 msg_add_lines(c, (long)lnum, nchars); /* add line/char count */
4613 if (!shortmess(SHM_WRITE))
4614 {
4615 if (append)
4616 STRCAT(IObuff, shortmess(SHM_WRI) ? _(" [a]") : _(" appended"));
4617 else
4618 STRCAT(IObuff, shortmess(SHM_WRI) ? _(" [w]") : _(" written"));
4619 }
4620
Bram Moolenaar8f7fd652006-02-21 22:04:51 +00004621 set_keep_msg(msg_trunc_attr(IObuff, FALSE, 0), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622 }
4623
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004624 /* When written everything correctly: reset 'modified'. Unless not
4625 * writing to the original file and '+' is not in 'cpoptions'. */
Bram Moolenaar292ad192005-12-11 21:29:51 +00004626 if (reset_changed && whole && !append
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627#ifdef FEAT_MBYTE
4628 && !write_info.bw_conv_error
4629#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004630 && (overwriting || vim_strchr(p_cpo, CPO_PLUS) != NULL)
4631 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 {
4633 unchanged(buf, TRUE);
4634 u_unchanged(buf);
4635 }
4636
4637 /*
4638 * If written to the current file, update the timestamp of the swap file
4639 * and reset the BF_WRITE_MASK flags. Also sets buf->b_mtime.
4640 */
4641 if (overwriting)
4642 {
4643 ml_timestamp(buf);
Bram Moolenaar292ad192005-12-11 21:29:51 +00004644 if (append)
4645 buf->b_flags &= ~BF_NEW;
4646 else
4647 buf->b_flags &= ~BF_WRITE_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648 }
4649
4650 /*
4651 * If we kept a backup until now, and we are in patch mode, then we make
4652 * the backup file our 'original' file.
4653 */
4654 if (*p_pm && dobackup)
4655 {
4656 char *org = (char *)buf_modname(
4657#ifdef SHORT_FNAME
4658 TRUE,
4659#else
4660 (buf->b_p_sn || buf->b_shortname),
4661#endif
4662 fname, p_pm, FALSE);
4663
4664 if (backup != NULL)
4665 {
4666 struct stat st;
4667
4668 /*
4669 * If the original file does not exist yet
4670 * the current backup file becomes the original file
4671 */
4672 if (org == NULL)
4673 EMSG(_("E205: Patchmode: can't save original file"));
4674 else if (mch_stat(org, &st) < 0)
4675 {
4676 vim_rename(backup, (char_u *)org);
4677 vim_free(backup); /* don't delete the file */
4678 backup = NULL;
4679#ifdef UNIX
4680 set_file_time((char_u *)org, st_old.st_atime, st_old.st_mtime);
4681#endif
4682 }
4683 }
4684 /*
4685 * If there is no backup file, remember that a (new) file was
4686 * created.
4687 */
4688 else
4689 {
4690 int empty_fd;
4691
4692 if (org == NULL
Bram Moolenaara5792f52005-11-23 21:25:05 +00004693 || (empty_fd = mch_open(org,
4694 O_CREAT | O_EXTRA | O_EXCL | O_NOFOLLOW,
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00004695 perm < 0 ? 0666 : (perm & 0777))) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 EMSG(_("E206: patchmode: can't touch empty original file"));
4697 else
4698 close(empty_fd);
4699 }
4700 if (org != NULL)
4701 {
4702 mch_setperm((char_u *)org, mch_getperm(fname) & 0777);
4703 vim_free(org);
4704 }
4705 }
4706
4707 /*
4708 * Remove the backup unless 'backup' option is set
4709 */
4710 if (!p_bk && backup != NULL && mch_remove(backup) != 0)
4711 EMSG(_("E207: Can't delete backup file"));
4712
4713#ifdef FEAT_SUN_WORKSHOP
4714 if (usingSunWorkShop)
4715 workshop_file_saved((char *) ffname);
4716#endif
4717
4718 goto nofail;
4719
4720 /*
4721 * Finish up. We get here either after failure or success.
4722 */
4723fail:
4724 --no_wait_return; /* may wait for return now */
4725nofail:
4726
4727 /* Done saving, we accept changed buffer warnings again */
4728 buf->b_saving = FALSE;
4729
4730 vim_free(backup);
4731 if (buffer != smallbuf)
4732 vim_free(buffer);
4733#ifdef FEAT_MBYTE
4734 vim_free(fenc_tofree);
4735 vim_free(write_info.bw_conv_buf);
4736# ifdef USE_ICONV
4737 if (write_info.bw_iconv_fd != (iconv_t)-1)
4738 {
4739 iconv_close(write_info.bw_iconv_fd);
4740 write_info.bw_iconv_fd = (iconv_t)-1;
4741 }
4742# endif
4743#endif
4744#ifdef HAVE_ACL
4745 mch_free_acl(acl);
4746#endif
4747
4748 if (errmsg != NULL)
4749 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004750 int numlen = errnum != NULL ? (int)STRLEN(errnum) : 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751
4752 attr = hl_attr(HLF_E); /* set highlight for error messages */
4753 msg_add_fname(buf,
4754#ifndef UNIX
4755 sfname
4756#else
4757 fname
4758#endif
4759 ); /* put file name in IObuff with quotes */
4760 if (STRLEN(IObuff) + STRLEN(errmsg) + numlen >= IOSIZE)
4761 IObuff[IOSIZE - STRLEN(errmsg) - numlen - 1] = NUL;
4762 /* If the error message has the form "is ...", put the error number in
4763 * front of the file name. */
4764 if (errnum != NULL)
4765 {
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00004766 STRMOVE(IObuff + numlen, IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 mch_memmove(IObuff, errnum, (size_t)numlen);
4768 }
4769 STRCAT(IObuff, errmsg);
4770 emsg(IObuff);
Bram Moolenaar32b485f2009-07-29 16:06:27 +00004771 if (errmsg_allocated)
4772 vim_free(errmsg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773
4774 retval = FAIL;
4775 if (end == 0)
4776 {
4777 MSG_PUTS_ATTR(_("\nWARNING: Original file may be lost or damaged\n"),
4778 attr | MSG_HIST);
4779 MSG_PUTS_ATTR(_("don't quit the editor until the file is successfully written!"),
4780 attr | MSG_HIST);
4781
4782 /* Update the timestamp to avoid an "overwrite changed file"
4783 * prompt when writing again. */
4784 if (mch_stat((char *)fname, &st_old) >= 0)
4785 {
4786 buf_store_time(buf, &st_old, fname);
4787 buf->b_mtime_read = buf->b_mtime;
4788 }
4789 }
4790 }
4791 msg_scroll = msg_save;
4792
4793#ifdef FEAT_AUTOCMD
4794#ifdef FEAT_EVAL
4795 if (!should_abort(retval))
4796#else
4797 if (!got_int)
4798#endif
4799 {
4800 aco_save_T aco;
4801
4802 write_no_eol_lnum = 0; /* in case it was set by the previous read */
4803
4804 /*
4805 * Apply POST autocommands.
4806 * Careful: The autocommands may call buf_write() recursively!
4807 */
4808 aucmd_prepbuf(&aco, buf);
4809
4810 if (append)
4811 apply_autocmds_exarg(EVENT_FILEAPPENDPOST, fname, fname,
4812 FALSE, curbuf, eap);
4813 else if (filtering)
4814 apply_autocmds_exarg(EVENT_FILTERWRITEPOST, NULL, fname,
4815 FALSE, curbuf, eap);
4816 else if (reset_changed && whole)
4817 apply_autocmds_exarg(EVENT_BUFWRITEPOST, fname, fname,
4818 FALSE, curbuf, eap);
4819 else
4820 apply_autocmds_exarg(EVENT_FILEWRITEPOST, fname, fname,
4821 FALSE, curbuf, eap);
4822
4823 /* restore curwin/curbuf and a few other things */
4824 aucmd_restbuf(&aco);
4825
4826#ifdef FEAT_EVAL
4827 if (aborting()) /* autocmds may abort script processing */
4828 retval = FALSE;
4829#endif
4830 }
4831#endif
4832
4833 got_int |= prev_got_int;
4834
4835#ifdef MACOS_CLASSIC /* TODO: Is it need for MACOS_X? (Dany) */
4836 /* Update machine specific information. */
4837 mch_post_buffer_write(buf);
4838#endif
4839 return retval;
4840}
4841
4842/*
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004843 * Set the name of the current buffer. Use when the buffer doesn't have a
4844 * name and a ":r" or ":w" command with a file name is used.
4845 */
4846 static int
4847set_rw_fname(fname, sfname)
4848 char_u *fname;
4849 char_u *sfname;
4850{
4851#ifdef FEAT_AUTOCMD
Bram Moolenaar8b38e242009-06-16 13:35:20 +00004852 buf_T *buf = curbuf;
4853
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004854 /* It's like the unnamed buffer is deleted.... */
4855 if (curbuf->b_p_bl)
4856 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
4857 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
4858# ifdef FEAT_EVAL
4859 if (aborting()) /* autocmds may abort script processing */
4860 return FAIL;
4861# endif
Bram Moolenaar8b38e242009-06-16 13:35:20 +00004862 if (curbuf != buf)
4863 {
4864 /* We are in another buffer now, don't do the renaming. */
4865 EMSG(_(e_auchangedbuf));
4866 return FAIL;
4867 }
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004868#endif
4869
4870 if (setfname(curbuf, fname, sfname, FALSE) == OK)
4871 curbuf->b_flags |= BF_NOTEDITED;
4872
4873#ifdef FEAT_AUTOCMD
4874 /* ....and a new named one is created */
4875 apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, curbuf);
4876 if (curbuf->b_p_bl)
4877 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
4878# ifdef FEAT_EVAL
4879 if (aborting()) /* autocmds may abort script processing */
4880 return FAIL;
4881# endif
4882
4883 /* Do filetype detection now if 'filetype' is empty. */
4884 if (*curbuf->b_p_ft == NUL)
4885 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004886 if (au_has_group((char_u *)"filetypedetect"))
Bram Moolenaar70836c82006-02-20 21:28:49 +00004887 (void)do_doautocmd((char_u *)"filetypedetect BufRead", FALSE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004888 do_modelines(0);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004889 }
4890#endif
4891
4892 return OK;
4893}
4894
4895/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 * Put file name into IObuff with quotes.
4897 */
Bram Moolenaar009b2592004-10-24 19:18:58 +00004898 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899msg_add_fname(buf, fname)
4900 buf_T *buf;
4901 char_u *fname;
4902{
4903 if (fname == NULL)
4904 fname = (char_u *)"-stdin-";
4905 home_replace(buf, fname, IObuff + 1, IOSIZE - 4, TRUE);
4906 IObuff[0] = '"';
4907 STRCAT(IObuff, "\" ");
4908}
4909
4910/*
4911 * Append message for text mode to IObuff.
4912 * Return TRUE if something appended.
4913 */
4914 static int
4915msg_add_fileformat(eol_type)
4916 int eol_type;
4917{
4918#ifndef USE_CRNL
4919 if (eol_type == EOL_DOS)
4920 {
4921 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[dos]") : _("[dos format]"));
4922 return TRUE;
4923 }
4924#endif
4925#ifndef USE_CR
4926 if (eol_type == EOL_MAC)
4927 {
4928 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[mac]") : _("[mac format]"));
4929 return TRUE;
4930 }
4931#endif
4932#if defined(USE_CRNL) || defined(USE_CR)
4933 if (eol_type == EOL_UNIX)
4934 {
4935 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[unix]") : _("[unix format]"));
4936 return TRUE;
4937 }
4938#endif
4939 return FALSE;
4940}
4941
4942/*
4943 * Append line and character count to IObuff.
4944 */
Bram Moolenaar009b2592004-10-24 19:18:58 +00004945 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946msg_add_lines(insert_space, lnum, nchars)
4947 int insert_space;
4948 long lnum;
4949 long nchars;
4950{
4951 char_u *p;
4952
4953 p = IObuff + STRLEN(IObuff);
4954
4955 if (insert_space)
4956 *p++ = ' ';
4957 if (shortmess(SHM_LINES))
4958 sprintf((char *)p, "%ldL, %ldC", lnum, nchars);
4959 else
4960 {
4961 if (lnum == 1)
4962 STRCPY(p, _("1 line, "));
4963 else
4964 sprintf((char *)p, _("%ld lines, "), lnum);
4965 p += STRLEN(p);
4966 if (nchars == 1)
4967 STRCPY(p, _("1 character"));
4968 else
4969 sprintf((char *)p, _("%ld characters"), nchars);
4970 }
4971}
4972
4973/*
4974 * Append message for missing line separator to IObuff.
4975 */
4976 static void
4977msg_add_eol()
4978{
4979 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]") : _("[Incomplete last line]"));
4980}
4981
4982/*
4983 * Check modification time of file, before writing to it.
4984 * The size isn't checked, because using a tool like "gzip" takes care of
4985 * using the same timestamp but can't set the size.
4986 */
4987 static int
4988check_mtime(buf, st)
4989 buf_T *buf;
4990 struct stat *st;
4991{
4992 if (buf->b_mtime_read != 0
4993 && time_differs((long)st->st_mtime, buf->b_mtime_read))
4994 {
4995 msg_scroll = TRUE; /* don't overwrite messages here */
4996 msg_silent = 0; /* must give this prompt */
4997 /* don't use emsg() here, don't want to flush the buffers */
4998 MSG_ATTR(_("WARNING: The file has been changed since reading it!!!"),
4999 hl_attr(HLF_E));
5000 if (ask_yesno((char_u *)_("Do you really want to write to it"),
5001 TRUE) == 'n')
5002 return FAIL;
5003 msg_scroll = FALSE; /* always overwrite the file message now */
5004 }
5005 return OK;
5006}
5007
5008 static int
5009time_differs(t1, t2)
5010 long t1, t2;
5011{
5012#if defined(__linux__) || defined(MSDOS) || defined(MSWIN)
5013 /* On a FAT filesystem, esp. under Linux, there are only 5 bits to store
5014 * the seconds. Since the roundoff is done when flushing the inode, the
5015 * time may change unexpectedly by one second!!! */
5016 return (t1 - t2 > 1 || t2 - t1 > 1);
5017#else
5018 return (t1 != t2);
5019#endif
5020}
5021
5022/*
5023 * Call write() to write a number of bytes to the file.
5024 * Also handles encryption and 'encoding' conversion.
5025 *
5026 * Return FAIL for failure, OK otherwise.
5027 */
5028 static int
5029buf_write_bytes(ip)
5030 struct bw_info *ip;
5031{
5032 int wlen;
5033 char_u *buf = ip->bw_buf; /* data to write */
5034 int len = ip->bw_len; /* length of data */
5035#ifdef HAS_BW_FLAGS
5036 int flags = ip->bw_flags; /* extra flags */
5037#endif
5038
5039#ifdef FEAT_MBYTE
5040 /*
5041 * Skip conversion when writing the crypt magic number or the BOM.
5042 */
5043 if (!(flags & FIO_NOCONVERT))
5044 {
5045 char_u *p;
5046 unsigned c;
5047 int n;
5048
5049 if (flags & FIO_UTF8)
5050 {
5051 /*
5052 * Convert latin1 in the buffer to UTF-8 in the file.
5053 */
5054 p = ip->bw_conv_buf; /* translate to buffer */
5055 for (wlen = 0; wlen < len; ++wlen)
5056 p += utf_char2bytes(buf[wlen], p);
5057 buf = ip->bw_conv_buf;
5058 len = (int)(p - ip->bw_conv_buf);
5059 }
5060 else if (flags & (FIO_UCS4 | FIO_UTF16 | FIO_UCS2 | FIO_LATIN1))
5061 {
5062 /*
5063 * Convert UTF-8 bytes in the buffer to UCS-2, UCS-4, UTF-16 or
5064 * Latin1 chars in the file.
5065 */
5066 if (flags & FIO_LATIN1)
5067 p = buf; /* translate in-place (can only get shorter) */
5068 else
5069 p = ip->bw_conv_buf; /* translate to buffer */
5070 for (wlen = 0; wlen < len; wlen += n)
5071 {
5072 if (wlen == 0 && ip->bw_restlen != 0)
5073 {
5074 int l;
5075
5076 /* Use remainder of previous call. Append the start of
5077 * buf[] to get a full sequence. Might still be too
5078 * short! */
5079 l = CONV_RESTLEN - ip->bw_restlen;
5080 if (l > len)
5081 l = len;
5082 mch_memmove(ip->bw_rest + ip->bw_restlen, buf, (size_t)l);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005083 n = utf_ptr2len_len(ip->bw_rest, ip->bw_restlen + l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 if (n > ip->bw_restlen + len)
5085 {
5086 /* We have an incomplete byte sequence at the end to
5087 * be written. We can't convert it without the
5088 * remaining bytes. Keep them for the next call. */
5089 if (ip->bw_restlen + len > CONV_RESTLEN)
5090 return FAIL;
5091 ip->bw_restlen += len;
5092 break;
5093 }
5094 if (n > 1)
5095 c = utf_ptr2char(ip->bw_rest);
5096 else
5097 c = ip->bw_rest[0];
5098 if (n >= ip->bw_restlen)
5099 {
5100 n -= ip->bw_restlen;
5101 ip->bw_restlen = 0;
5102 }
5103 else
5104 {
5105 ip->bw_restlen -= n;
5106 mch_memmove(ip->bw_rest, ip->bw_rest + n,
5107 (size_t)ip->bw_restlen);
5108 n = 0;
5109 }
5110 }
5111 else
5112 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005113 n = utf_ptr2len_len(buf + wlen, len - wlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 if (n > len - wlen)
5115 {
5116 /* We have an incomplete byte sequence at the end to
5117 * be written. We can't convert it without the
5118 * remaining bytes. Keep them for the next call. */
5119 if (len - wlen > CONV_RESTLEN)
5120 return FAIL;
5121 ip->bw_restlen = len - wlen;
5122 mch_memmove(ip->bw_rest, buf + wlen,
5123 (size_t)ip->bw_restlen);
5124 break;
5125 }
5126 if (n > 1)
5127 c = utf_ptr2char(buf + wlen);
5128 else
5129 c = buf[wlen];
5130 }
5131
Bram Moolenaar32b485f2009-07-29 16:06:27 +00005132 if (ucs2bytes(c, &p, flags) && !ip->bw_conv_error)
5133 {
5134 ip->bw_conv_error = TRUE;
5135 ip->bw_conv_error_lnum = ip->bw_start_lnum;
5136 }
5137 if (c == NL)
5138 ++ip->bw_start_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139 }
5140 if (flags & FIO_LATIN1)
5141 len = (int)(p - buf);
5142 else
5143 {
5144 buf = ip->bw_conv_buf;
5145 len = (int)(p - ip->bw_conv_buf);
5146 }
5147 }
5148
5149# ifdef WIN3264
5150 else if (flags & FIO_CODEPAGE)
5151 {
5152 /*
5153 * Convert UTF-8 or codepage to UCS-2 and then to MS-Windows
5154 * codepage.
5155 */
5156 char_u *from;
5157 size_t fromlen;
5158 char_u *to;
5159 int u8c;
5160 BOOL bad = FALSE;
5161 int needed;
5162
5163 if (ip->bw_restlen > 0)
5164 {
5165 /* Need to concatenate the remainder of the previous call and
5166 * the bytes of the current call. Use the end of the
5167 * conversion buffer for this. */
5168 fromlen = len + ip->bw_restlen;
5169 from = ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5170 mch_memmove(from, ip->bw_rest, (size_t)ip->bw_restlen);
5171 mch_memmove(from + ip->bw_restlen, buf, (size_t)len);
5172 }
5173 else
5174 {
5175 from = buf;
5176 fromlen = len;
5177 }
5178
5179 to = ip->bw_conv_buf;
5180 if (enc_utf8)
5181 {
5182 /* Convert from UTF-8 to UCS-2, to the start of the buffer.
5183 * The buffer has been allocated to be big enough. */
5184 while (fromlen > 0)
5185 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005186 n = (int)utf_ptr2len_len(from, (int)fromlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005187 if (n > (int)fromlen) /* incomplete byte sequence */
5188 break;
5189 u8c = utf_ptr2char(from);
5190 *to++ = (u8c & 0xff);
5191 *to++ = (u8c >> 8);
5192 fromlen -= n;
5193 from += n;
5194 }
5195
5196 /* Copy remainder to ip->bw_rest[] to be used for the next
5197 * call. */
5198 if (fromlen > CONV_RESTLEN)
5199 {
5200 /* weird overlong sequence */
5201 ip->bw_conv_error = TRUE;
5202 return FAIL;
5203 }
5204 mch_memmove(ip->bw_rest, from, fromlen);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005205 ip->bw_restlen = (int)fromlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005206 }
5207 else
5208 {
5209 /* Convert from enc_codepage to UCS-2, to the start of the
5210 * buffer. The buffer has been allocated to be big enough. */
5211 ip->bw_restlen = 0;
5212 needed = MultiByteToWideChar(enc_codepage,
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005213 MB_ERR_INVALID_CHARS, (LPCSTR)from, (int)fromlen,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214 NULL, 0);
5215 if (needed == 0)
5216 {
5217 /* When conversion fails there may be a trailing byte. */
5218 needed = MultiByteToWideChar(enc_codepage,
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005219 MB_ERR_INVALID_CHARS, (LPCSTR)from, (int)fromlen - 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005220 NULL, 0);
5221 if (needed == 0)
5222 {
5223 /* Conversion doesn't work. */
5224 ip->bw_conv_error = TRUE;
5225 return FAIL;
5226 }
5227 /* Save the trailing byte for the next call. */
5228 ip->bw_rest[0] = from[fromlen - 1];
5229 ip->bw_restlen = 1;
5230 }
5231 needed = MultiByteToWideChar(enc_codepage, MB_ERR_INVALID_CHARS,
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005232 (LPCSTR)from, (int)(fromlen - ip->bw_restlen),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233 (LPWSTR)to, needed);
5234 if (needed == 0)
5235 {
5236 /* Safety check: Conversion doesn't work. */
5237 ip->bw_conv_error = TRUE;
5238 return FAIL;
5239 }
5240 to += needed * 2;
5241 }
5242
5243 fromlen = to - ip->bw_conv_buf;
5244 buf = to;
5245# ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
5246 if (FIO_GET_CP(flags) == CP_UTF8)
5247 {
5248 /* Convert from UCS-2 to UTF-8, using the remainder of the
5249 * conversion buffer. Fails when out of space. */
5250 for (from = ip->bw_conv_buf; fromlen > 1; fromlen -= 2)
5251 {
5252 u8c = *from++;
5253 u8c += (*from++ << 8);
5254 to += utf_char2bytes(u8c, to);
5255 if (to + 6 >= ip->bw_conv_buf + ip->bw_conv_buflen)
5256 {
5257 ip->bw_conv_error = TRUE;
5258 return FAIL;
5259 }
5260 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005261 len = (int)(to - buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262 }
5263 else
5264#endif
5265 {
5266 /* Convert from UCS-2 to the codepage, using the remainder of
5267 * the conversion buffer. If the conversion uses the default
5268 * character "0", the data doesn't fit in this encoding, so
5269 * fail. */
5270 len = WideCharToMultiByte(FIO_GET_CP(flags), 0,
5271 (LPCWSTR)ip->bw_conv_buf, (int)fromlen / sizeof(WCHAR),
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005272 (LPSTR)to, (int)(ip->bw_conv_buflen - fromlen), 0,
5273 &bad);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 if (bad)
5275 {
5276 ip->bw_conv_error = TRUE;
5277 return FAIL;
5278 }
5279 }
5280 }
5281# endif
5282
Bram Moolenaar56718732006-03-15 22:53:57 +00005283# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 else if (flags & FIO_MACROMAN)
5285 {
5286 /*
5287 * Convert UTF-8 or latin1 to Apple MacRoman.
5288 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005289 char_u *from;
5290 size_t fromlen;
5291
5292 if (ip->bw_restlen > 0)
5293 {
5294 /* Need to concatenate the remainder of the previous call and
5295 * the bytes of the current call. Use the end of the
5296 * conversion buffer for this. */
5297 fromlen = len + ip->bw_restlen;
5298 from = ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5299 mch_memmove(from, ip->bw_rest, (size_t)ip->bw_restlen);
5300 mch_memmove(from + ip->bw_restlen, buf, (size_t)len);
5301 }
5302 else
5303 {
5304 from = buf;
5305 fromlen = len;
5306 }
5307
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005308 if (enc2macroman(from, fromlen,
5309 ip->bw_conv_buf, &len, ip->bw_conv_buflen,
5310 ip->bw_rest, &ip->bw_restlen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 {
5312 ip->bw_conv_error = TRUE;
5313 return FAIL;
5314 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 buf = ip->bw_conv_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 }
5317# endif
5318
5319# ifdef USE_ICONV
5320 if (ip->bw_iconv_fd != (iconv_t)-1)
5321 {
5322 const char *from;
5323 size_t fromlen;
5324 char *to;
5325 size_t tolen;
5326
5327 /* Convert with iconv(). */
5328 if (ip->bw_restlen > 0)
5329 {
Bram Moolenaar5d294d12009-03-11 12:11:02 +00005330 char *fp;
5331
Bram Moolenaar071d4272004-06-13 20:20:40 +00005332 /* Need to concatenate the remainder of the previous call and
5333 * the bytes of the current call. Use the end of the
5334 * conversion buffer for this. */
5335 fromlen = len + ip->bw_restlen;
Bram Moolenaar5d294d12009-03-11 12:11:02 +00005336 fp = (char *)ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5337 mch_memmove(fp, ip->bw_rest, (size_t)ip->bw_restlen);
5338 mch_memmove(fp + ip->bw_restlen, buf, (size_t)len);
5339 from = fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 tolen = ip->bw_conv_buflen - fromlen;
5341 }
5342 else
5343 {
5344 from = (const char *)buf;
5345 fromlen = len;
5346 tolen = ip->bw_conv_buflen;
5347 }
5348 to = (char *)ip->bw_conv_buf;
5349
5350 if (ip->bw_first)
5351 {
5352 size_t save_len = tolen;
5353
5354 /* output the initial shift state sequence */
5355 (void)iconv(ip->bw_iconv_fd, NULL, NULL, &to, &tolen);
5356
5357 /* There is a bug in iconv() on Linux (which appears to be
5358 * wide-spread) which sets "to" to NULL and messes up "tolen".
5359 */
5360 if (to == NULL)
5361 {
5362 to = (char *)ip->bw_conv_buf;
5363 tolen = save_len;
5364 }
5365 ip->bw_first = FALSE;
5366 }
5367
5368 /*
5369 * If iconv() has an error or there is not enough room, fail.
5370 */
5371 if ((iconv(ip->bw_iconv_fd, (void *)&from, &fromlen, &to, &tolen)
5372 == (size_t)-1 && ICONV_ERRNO != ICONV_EINVAL)
5373 || fromlen > CONV_RESTLEN)
5374 {
5375 ip->bw_conv_error = TRUE;
5376 return FAIL;
5377 }
5378
5379 /* copy remainder to ip->bw_rest[] to be used for the next call. */
5380 if (fromlen > 0)
5381 mch_memmove(ip->bw_rest, (void *)from, fromlen);
5382 ip->bw_restlen = (int)fromlen;
5383
5384 buf = ip->bw_conv_buf;
5385 len = (int)((char_u *)to - ip->bw_conv_buf);
5386 }
5387# endif
5388 }
5389#endif /* FEAT_MBYTE */
5390
5391#ifdef FEAT_CRYPT
5392 if (flags & FIO_ENCRYPTED) /* encrypt the data */
5393 {
5394 int ztemp, t, i;
5395
5396 for (i = 0; i < len; i++)
5397 {
5398 ztemp = buf[i];
5399 buf[i] = ZENCODE(ztemp, t);
5400 }
5401 }
5402#endif
5403
5404 /* Repeat the write(), it may be interrupted by a signal. */
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005405 while (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406 {
5407 wlen = vim_write(ip->bw_fd, buf, len);
5408 if (wlen <= 0) /* error! */
5409 return FAIL;
5410 len -= wlen;
5411 buf += wlen;
5412 }
5413 return OK;
5414}
5415
5416#ifdef FEAT_MBYTE
5417/*
5418 * Convert a Unicode character to bytes.
Bram Moolenaar32b485f2009-07-29 16:06:27 +00005419 * Return TRUE for an error, FALSE when it's OK.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 */
5421 static int
5422ucs2bytes(c, pp, flags)
5423 unsigned c; /* in: character */
5424 char_u **pp; /* in/out: pointer to result */
5425 int flags; /* FIO_ flags */
5426{
5427 char_u *p = *pp;
5428 int error = FALSE;
5429 int cc;
5430
5431
5432 if (flags & FIO_UCS4)
5433 {
5434 if (flags & FIO_ENDIAN_L)
5435 {
5436 *p++ = c;
5437 *p++ = (c >> 8);
5438 *p++ = (c >> 16);
5439 *p++ = (c >> 24);
5440 }
5441 else
5442 {
5443 *p++ = (c >> 24);
5444 *p++ = (c >> 16);
5445 *p++ = (c >> 8);
5446 *p++ = c;
5447 }
5448 }
5449 else if (flags & (FIO_UCS2 | FIO_UTF16))
5450 {
5451 if (c >= 0x10000)
5452 {
5453 if (flags & FIO_UTF16)
5454 {
5455 /* Make two words, ten bits of the character in each. First
5456 * word is 0xd800 - 0xdbff, second one 0xdc00 - 0xdfff */
5457 c -= 0x10000;
5458 if (c >= 0x100000)
5459 error = TRUE;
5460 cc = ((c >> 10) & 0x3ff) + 0xd800;
5461 if (flags & FIO_ENDIAN_L)
5462 {
5463 *p++ = cc;
5464 *p++ = ((unsigned)cc >> 8);
5465 }
5466 else
5467 {
5468 *p++ = ((unsigned)cc >> 8);
5469 *p++ = cc;
5470 }
5471 c = (c & 0x3ff) + 0xdc00;
5472 }
5473 else
5474 error = TRUE;
5475 }
5476 if (flags & FIO_ENDIAN_L)
5477 {
5478 *p++ = c;
5479 *p++ = (c >> 8);
5480 }
5481 else
5482 {
5483 *p++ = (c >> 8);
5484 *p++ = c;
5485 }
5486 }
5487 else /* Latin1 */
5488 {
5489 if (c >= 0x100)
5490 {
5491 error = TRUE;
5492 *p++ = 0xBF;
5493 }
5494 else
5495 *p++ = c;
5496 }
5497
5498 *pp = p;
5499 return error;
5500}
5501
5502/*
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00005503 * Return TRUE if file encoding "fenc" requires conversion from or to
5504 * 'encoding'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 */
5506 static int
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00005507need_conversion(fenc)
5508 char_u *fenc;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509{
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00005510 int same_encoding;
5511 int enc_flags;
5512 int fenc_flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00005514 if (*fenc == NUL || STRCMP(p_enc, fenc) == 0)
5515 same_encoding = TRUE;
5516 else
5517 {
5518 /* Ignore difference between "ansi" and "latin1", "ucs-4" and
5519 * "ucs-4be", etc. */
5520 enc_flags = get_fio_flags(p_enc);
5521 fenc_flags = get_fio_flags(fenc);
5522 same_encoding = (enc_flags != 0 && fenc_flags == enc_flags);
5523 }
5524 if (same_encoding)
5525 {
5526 /* Specified encoding matches with 'encoding'. This requires
5527 * conversion when 'encoding' is Unicode but not UTF-8. */
5528 return enc_unicode != 0;
5529 }
5530
5531 /* Encodings differ. However, conversion is not needed when 'enc' is any
5532 * Unicode encoding and the file is UTF-8. */
5533 return !(enc_utf8 && fenc_flags == FIO_UTF8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534}
5535
5536/*
5537 * Check "ptr" for a unicode encoding and return the FIO_ flags needed for the
5538 * internal conversion.
5539 * if "ptr" is an empty string, use 'encoding'.
5540 */
5541 static int
5542get_fio_flags(ptr)
5543 char_u *ptr;
5544{
5545 int prop;
5546
5547 if (*ptr == NUL)
5548 ptr = p_enc;
5549
5550 prop = enc_canon_props(ptr);
5551 if (prop & ENC_UNICODE)
5552 {
5553 if (prop & ENC_2BYTE)
5554 {
5555 if (prop & ENC_ENDIAN_L)
5556 return FIO_UCS2 | FIO_ENDIAN_L;
5557 return FIO_UCS2;
5558 }
5559 if (prop & ENC_4BYTE)
5560 {
5561 if (prop & ENC_ENDIAN_L)
5562 return FIO_UCS4 | FIO_ENDIAN_L;
5563 return FIO_UCS4;
5564 }
5565 if (prop & ENC_2WORD)
5566 {
5567 if (prop & ENC_ENDIAN_L)
5568 return FIO_UTF16 | FIO_ENDIAN_L;
5569 return FIO_UTF16;
5570 }
5571 return FIO_UTF8;
5572 }
5573 if (prop & ENC_LATIN1)
5574 return FIO_LATIN1;
5575 /* must be ENC_DBCS, requires iconv() */
5576 return 0;
5577}
5578
5579#ifdef WIN3264
5580/*
5581 * Check "ptr" for a MS-Windows codepage name and return the FIO_ flags needed
5582 * for the conversion MS-Windows can do for us. Also accept "utf-8".
5583 * Used for conversion between 'encoding' and 'fileencoding'.
5584 */
5585 static int
5586get_win_fio_flags(ptr)
5587 char_u *ptr;
5588{
5589 int cp;
5590
5591 /* Cannot do this when 'encoding' is not utf-8 and not a codepage. */
5592 if (!enc_utf8 && enc_codepage <= 0)
5593 return 0;
5594
5595 cp = encname2codepage(ptr);
5596 if (cp == 0)
5597 {
5598# ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
5599 if (STRCMP(ptr, "utf-8") == 0)
5600 cp = CP_UTF8;
5601 else
5602# endif
5603 return 0;
5604 }
5605 return FIO_PUT_CP(cp) | FIO_CODEPAGE;
5606}
5607#endif
5608
5609#ifdef MACOS_X
5610/*
5611 * Check "ptr" for a Carbon supported encoding and return the FIO_ flags
5612 * needed for the internal conversion to/from utf-8 or latin1.
5613 */
5614 static int
5615get_mac_fio_flags(ptr)
5616 char_u *ptr;
5617{
5618 if ((enc_utf8 || STRCMP(p_enc, "latin1") == 0)
5619 && (enc_canon_props(ptr) & ENC_MACROMAN))
5620 return FIO_MACROMAN;
5621 return 0;
5622}
5623#endif
5624
5625/*
5626 * Check for a Unicode BOM (Byte Order Mark) at the start of p[size].
5627 * "size" must be at least 2.
5628 * Return the name of the encoding and set "*lenp" to the length.
5629 * Returns NULL when no BOM found.
5630 */
5631 static char_u *
5632check_for_bom(p, size, lenp, flags)
5633 char_u *p;
5634 long size;
5635 int *lenp;
5636 int flags;
5637{
5638 char *name = NULL;
5639 int len = 2;
5640
5641 if (p[0] == 0xef && p[1] == 0xbb && size >= 3 && p[2] == 0xbf
Bram Moolenaaree0f5a62008-07-24 20:09:16 +00005642 && (flags == FIO_ALL || flags == FIO_UTF8 || flags == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005643 {
5644 name = "utf-8"; /* EF BB BF */
5645 len = 3;
5646 }
5647 else if (p[0] == 0xff && p[1] == 0xfe)
5648 {
5649 if (size >= 4 && p[2] == 0 && p[3] == 0
5650 && (flags == FIO_ALL || flags == (FIO_UCS4 | FIO_ENDIAN_L)))
5651 {
5652 name = "ucs-4le"; /* FF FE 00 00 */
5653 len = 4;
5654 }
Bram Moolenaar223a1892008-11-11 20:57:11 +00005655 else if (flags == (FIO_UCS2 | FIO_ENDIAN_L))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005656 name = "ucs-2le"; /* FF FE */
Bram Moolenaar223a1892008-11-11 20:57:11 +00005657 else if (flags == FIO_ALL || flags == (FIO_UTF16 | FIO_ENDIAN_L))
5658 /* utf-16le is preferred, it also works for ucs-2le text */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 name = "utf-16le"; /* FF FE */
5660 }
5661 else if (p[0] == 0xfe && p[1] == 0xff
5662 && (flags == FIO_ALL || flags == FIO_UCS2 || flags == FIO_UTF16))
5663 {
Bram Moolenaarffd82c52008-02-20 17:15:26 +00005664 /* Default to utf-16, it works also for ucs-2 text. */
5665 if (flags == FIO_UCS2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666 name = "ucs-2"; /* FE FF */
Bram Moolenaarffd82c52008-02-20 17:15:26 +00005667 else
5668 name = "utf-16"; /* FE FF */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669 }
5670 else if (size >= 4 && p[0] == 0 && p[1] == 0 && p[2] == 0xfe
5671 && p[3] == 0xff && (flags == FIO_ALL || flags == FIO_UCS4))
5672 {
5673 name = "ucs-4"; /* 00 00 FE FF */
5674 len = 4;
5675 }
5676
5677 *lenp = len;
5678 return (char_u *)name;
5679}
5680
5681/*
5682 * Generate a BOM in "buf[4]" for encoding "name".
5683 * Return the length of the BOM (zero when no BOM).
5684 */
5685 static int
5686make_bom(buf, name)
5687 char_u *buf;
5688 char_u *name;
5689{
5690 int flags;
5691 char_u *p;
5692
5693 flags = get_fio_flags(name);
5694
5695 /* Can't put a BOM in a non-Unicode file. */
5696 if (flags == FIO_LATIN1 || flags == 0)
5697 return 0;
5698
5699 if (flags == FIO_UTF8) /* UTF-8 */
5700 {
5701 buf[0] = 0xef;
5702 buf[1] = 0xbb;
5703 buf[2] = 0xbf;
5704 return 3;
5705 }
5706 p = buf;
5707 (void)ucs2bytes(0xfeff, &p, flags);
5708 return (int)(p - buf);
5709}
5710#endif
5711
Bram Moolenaard4cacdf2007-10-03 10:50:10 +00005712#if defined(FEAT_VIMINFO) || defined(FEAT_BROWSE) || \
Bram Moolenaara0174af2008-01-02 20:08:25 +00005713 defined(FEAT_QUICKFIX) || defined(FEAT_AUTOCMD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005714/*
5715 * Try to find a shortname by comparing the fullname with the current
5716 * directory.
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005717 * Returns "full_path" or pointer into "full_path" if shortened.
5718 */
5719 char_u *
5720shorten_fname1(full_path)
5721 char_u *full_path;
5722{
5723 char_u dirname[MAXPATHL];
5724 char_u *p = full_path;
5725
5726 if (mch_dirname(dirname, MAXPATHL) == OK)
5727 {
5728 p = shorten_fname(full_path, dirname);
5729 if (p == NULL || *p == NUL)
5730 p = full_path;
5731 }
5732 return p;
5733}
Bram Moolenaard4cacdf2007-10-03 10:50:10 +00005734#endif
Bram Moolenaard089d9b2007-09-30 12:02:55 +00005735
5736/*
5737 * Try to find a shortname by comparing the fullname with the current
5738 * directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739 * Returns NULL if not shorter name possible, pointer into "full_path"
5740 * otherwise.
5741 */
5742 char_u *
5743shorten_fname(full_path, dir_name)
5744 char_u *full_path;
5745 char_u *dir_name;
5746{
5747 int len;
5748 char_u *p;
5749
5750 if (full_path == NULL)
5751 return NULL;
5752 len = (int)STRLEN(dir_name);
5753 if (fnamencmp(dir_name, full_path, len) == 0)
5754 {
5755 p = full_path + len;
5756#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
5757 /*
5758 * MSDOS: when a file is in the root directory, dir_name will end in a
5759 * slash, since C: by itself does not define a specific dir. In this
5760 * case p may already be correct. <negri>
5761 */
5762 if (!((len > 2) && (*(p - 2) == ':')))
5763#endif
5764 {
5765 if (vim_ispathsep(*p))
5766 ++p;
5767#ifndef VMS /* the path separator is always part of the path */
5768 else
5769 p = NULL;
5770#endif
5771 }
5772 }
5773#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
5774 /*
5775 * When using a file in the current drive, remove the drive name:
5776 * "A:\dir\file" -> "\dir\file". This helps when moving a session file on
5777 * a floppy from "A:\dir" to "B:\dir".
5778 */
5779 else if (len > 3
5780 && TOUPPER_LOC(full_path[0]) == TOUPPER_LOC(dir_name[0])
5781 && full_path[1] == ':'
5782 && vim_ispathsep(full_path[2]))
5783 p = full_path + 2;
5784#endif
5785 else
5786 p = NULL;
5787 return p;
5788}
5789
5790/*
5791 * Shorten filenames for all buffers.
5792 * When "force" is TRUE: Use full path from now on for files currently being
5793 * edited, both for file name and swap file name. Try to shorten the file
5794 * names a bit, if safe to do so.
5795 * When "force" is FALSE: Only try to shorten absolute file names.
5796 * For buffers that have buftype "nofile" or "scratch": never change the file
5797 * name.
5798 */
5799 void
5800shorten_fnames(force)
5801 int force;
5802{
5803 char_u dirname[MAXPATHL];
5804 buf_T *buf;
5805 char_u *p;
5806
5807 mch_dirname(dirname, MAXPATHL);
5808 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
5809 {
5810 if (buf->b_fname != NULL
5811#ifdef FEAT_QUICKFIX
5812 && !bt_nofile(buf)
5813#endif
5814 && !path_with_url(buf->b_fname)
5815 && (force
5816 || buf->b_sfname == NULL
5817 || mch_isFullName(buf->b_sfname)))
5818 {
5819 vim_free(buf->b_sfname);
5820 buf->b_sfname = NULL;
5821 p = shorten_fname(buf->b_ffname, dirname);
5822 if (p != NULL)
5823 {
5824 buf->b_sfname = vim_strsave(p);
5825 buf->b_fname = buf->b_sfname;
5826 }
5827 if (p == NULL || buf->b_fname == NULL)
5828 buf->b_fname = buf->b_ffname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005830
5831 /* Always make the swap file name a full path, a "nofile" buffer may
5832 * also have a swap file. */
5833 mf_fullname(buf->b_ml.ml_mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 }
5835#ifdef FEAT_WINDOWS
5836 status_redraw_all();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005837 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005838#endif
5839}
5840
5841#if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \
5842 || defined(FEAT_GUI_MSWIN) \
5843 || defined(FEAT_GUI_MAC) \
5844 || defined(PROTO)
5845/*
5846 * Shorten all filenames in "fnames[count]" by current directory.
5847 */
5848 void
5849shorten_filenames(fnames, count)
5850 char_u **fnames;
5851 int count;
5852{
5853 int i;
5854 char_u dirname[MAXPATHL];
5855 char_u *p;
5856
5857 if (fnames == NULL || count < 1)
5858 return;
5859 mch_dirname(dirname, sizeof(dirname));
5860 for (i = 0; i < count; ++i)
5861 {
5862 if ((p = shorten_fname(fnames[i], dirname)) != NULL)
5863 {
5864 /* shorten_fname() returns pointer in given "fnames[i]". If free
5865 * "fnames[i]" first, "p" becomes invalid. So we need to copy
5866 * "p" first then free fnames[i]. */
5867 p = vim_strsave(p);
5868 vim_free(fnames[i]);
5869 fnames[i] = p;
5870 }
5871 }
5872}
5873#endif
5874
5875/*
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00005876 * add extension to file name - change path/fo.o.h to path/fo.o.h.ext or
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877 * fo_o_h.ext for MSDOS or when shortname option set.
5878 *
5879 * Assumed that fname is a valid name found in the filesystem we assure that
5880 * the return value is a different name and ends in 'ext'.
5881 * "ext" MUST be at most 4 characters long if it starts with a dot, 3
5882 * characters otherwise.
5883 * Space for the returned name is allocated, must be freed later.
5884 * Returns NULL when out of memory.
5885 */
5886 char_u *
5887modname(fname, ext, prepend_dot)
5888 char_u *fname, *ext;
5889 int prepend_dot; /* may prepend a '.' to file name */
5890{
5891 return buf_modname(
5892#ifdef SHORT_FNAME
5893 TRUE,
5894#else
5895 (curbuf->b_p_sn || curbuf->b_shortname),
5896#endif
5897 fname, ext, prepend_dot);
5898}
5899
5900 char_u *
5901buf_modname(shortname, fname, ext, prepend_dot)
5902 int shortname; /* use 8.3 file name */
5903 char_u *fname, *ext;
5904 int prepend_dot; /* may prepend a '.' to file name */
5905{
5906 char_u *retval;
5907 char_u *s;
5908 char_u *e;
5909 char_u *ptr;
5910 int fnamelen, extlen;
5911
5912 extlen = (int)STRLEN(ext);
5913
5914 /*
5915 * If there is no file name we must get the name of the current directory
5916 * (we need the full path in case :cd is used).
5917 */
5918 if (fname == NULL || *fname == NUL)
5919 {
5920 retval = alloc((unsigned)(MAXPATHL + extlen + 3));
5921 if (retval == NULL)
5922 return NULL;
5923 if (mch_dirname(retval, MAXPATHL) == FAIL ||
5924 (fnamelen = (int)STRLEN(retval)) == 0)
5925 {
5926 vim_free(retval);
5927 return NULL;
5928 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005929 if (!after_pathsep(retval, retval + fnamelen))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930 {
5931 retval[fnamelen++] = PATHSEP;
5932 retval[fnamelen] = NUL;
5933 }
5934#ifndef SHORT_FNAME
5935 prepend_dot = FALSE; /* nothing to prepend a dot to */
5936#endif
5937 }
5938 else
5939 {
5940 fnamelen = (int)STRLEN(fname);
5941 retval = alloc((unsigned)(fnamelen + extlen + 3));
5942 if (retval == NULL)
5943 return NULL;
5944 STRCPY(retval, fname);
5945#ifdef VMS
5946 vms_remove_version(retval); /* we do not need versions here */
5947#endif
5948 }
5949
5950 /*
5951 * search backwards until we hit a '/', '\' or ':' replacing all '.'
5952 * by '_' for MSDOS or when shortname option set and ext starts with a dot.
5953 * Then truncate what is after the '/', '\' or ':' to 8 characters for
5954 * MSDOS and 26 characters for AMIGA, a lot more for UNIX.
5955 */
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005956 for (ptr = retval + fnamelen; ptr > retval; mb_ptr_back(retval, ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957 {
5958#ifndef RISCOS
5959 if (*ext == '.'
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005960# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961 && (!USE_LONG_FNAME || shortname)
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005962# else
5963# ifndef SHORT_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00005964 && shortname
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005965# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005967 )
5968 if (*ptr == '.') /* replace '.' by '_' */
5969 *ptr = '_';
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005970#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005971 if (vim_ispathsep(*ptr))
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005972 {
5973 ++ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005974 break;
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977
5978 /* the file name has at most BASENAMELEN characters. */
5979#ifndef SHORT_FNAME
5980 if (STRLEN(ptr) > (unsigned)BASENAMELEN)
5981 ptr[BASENAMELEN] = '\0';
5982#endif
5983
5984 s = ptr + STRLEN(ptr);
5985
5986 /*
5987 * For 8.3 file names we may have to reduce the length.
5988 */
5989#ifdef USE_LONG_FNAME
5990 if (!USE_LONG_FNAME || shortname)
5991#else
5992# ifndef SHORT_FNAME
5993 if (shortname)
5994# endif
5995#endif
5996 {
5997 /*
5998 * If there is no file name, or the file name ends in '/', and the
5999 * extension starts with '.', put a '_' before the dot, because just
6000 * ".ext" is invalid.
6001 */
6002 if (fname == NULL || *fname == NUL
6003 || vim_ispathsep(fname[STRLEN(fname) - 1]))
6004 {
6005#ifdef RISCOS
6006 if (*ext == '/')
6007#else
6008 if (*ext == '.')
6009#endif
6010 *s++ = '_';
6011 }
6012 /*
6013 * If the extension starts with '.', truncate the base name at 8
6014 * characters
6015 */
6016#ifdef RISCOS
6017 /* We normally use '/', but swap files are '_' */
6018 else if (*ext == '/' || *ext == '_')
6019#else
6020 else if (*ext == '.')
6021#endif
6022 {
Bram Moolenaar78a15312009-05-15 19:33:18 +00006023 if ((size_t)(s - ptr) > (size_t)8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024 {
6025 s = ptr + 8;
6026 *s = '\0';
6027 }
6028 }
6029 /*
6030 * If the extension doesn't start with '.', and the file name
6031 * doesn't have an extension yet, append a '.'
6032 */
6033#ifdef RISCOS
6034 else if ((e = vim_strchr(ptr, '/')) == NULL)
6035 *s++ = '/';
6036#else
6037 else if ((e = vim_strchr(ptr, '.')) == NULL)
6038 *s++ = '.';
6039#endif
6040 /*
6041 * If the extension doesn't start with '.', and there already is an
Bram Moolenaar7263a772007-05-10 17:35:54 +00006042 * extension, it may need to be truncated
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 */
6044 else if ((int)STRLEN(e) + extlen > 4)
6045 s = e + 4 - extlen;
6046 }
6047#if defined(OS2) || defined(USE_LONG_FNAME) || defined(WIN3264)
6048 /*
6049 * If there is no file name, and the extension starts with '.', put a
6050 * '_' before the dot, because just ".ext" may be invalid if it's on a
6051 * FAT partition, and on HPFS it doesn't matter.
6052 */
6053 else if ((fname == NULL || *fname == NUL) && *ext == '.')
6054 *s++ = '_';
6055#endif
6056
6057 /*
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006058 * Append the extension.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059 * ext can start with '.' and cannot exceed 3 more characters.
6060 */
6061 STRCPY(s, ext);
6062
6063#ifndef SHORT_FNAME
6064 /*
6065 * Prepend the dot.
6066 */
6067 if (prepend_dot && !shortname && *(e = gettail(retval)) !=
6068#ifdef RISCOS
6069 '/'
6070#else
6071 '.'
6072#endif
6073#ifdef USE_LONG_FNAME
6074 && USE_LONG_FNAME
6075#endif
6076 )
6077 {
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006078 STRMOVE(e + 1, e);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006079#ifdef RISCOS
6080 *e = '/';
6081#else
6082 *e = '.';
6083#endif
6084 }
6085#endif
6086
6087 /*
6088 * Check that, after appending the extension, the file name is really
6089 * different.
6090 */
6091 if (fname != NULL && STRCMP(fname, retval) == 0)
6092 {
6093 /* we search for a character that can be replaced by '_' */
6094 while (--s >= ptr)
6095 {
6096 if (*s != '_')
6097 {
6098 *s = '_';
6099 break;
6100 }
6101 }
6102 if (s < ptr) /* fname was "________.<ext>", how tricky! */
6103 *ptr = 'v';
6104 }
6105 return retval;
6106}
6107
6108/*
6109 * Like fgets(), but if the file line is too long, it is truncated and the
6110 * rest of the line is thrown away. Returns TRUE for end-of-file.
6111 */
6112 int
6113vim_fgets(buf, size, fp)
6114 char_u *buf;
6115 int size;
6116 FILE *fp;
6117{
6118 char *eof;
6119#define FGETS_SIZE 200
6120 char tbuf[FGETS_SIZE];
6121
6122 buf[size - 2] = NUL;
6123#ifdef USE_CR
6124 eof = fgets_cr((char *)buf, size, fp);
6125#else
6126 eof = fgets((char *)buf, size, fp);
6127#endif
6128 if (buf[size - 2] != NUL && buf[size - 2] != '\n')
6129 {
6130 buf[size - 1] = NUL; /* Truncate the line */
6131
6132 /* Now throw away the rest of the line: */
6133 do
6134 {
6135 tbuf[FGETS_SIZE - 2] = NUL;
6136#ifdef USE_CR
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00006137 ignoredp = fgets_cr((char *)tbuf, FGETS_SIZE, fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006138#else
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00006139 ignoredp = fgets((char *)tbuf, FGETS_SIZE, fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006140#endif
6141 } while (tbuf[FGETS_SIZE - 2] != NUL && tbuf[FGETS_SIZE - 2] != '\n');
6142 }
6143 return (eof == NULL);
6144}
6145
6146#if defined(USE_CR) || defined(PROTO)
6147/*
6148 * Like vim_fgets(), but accept any line terminator: CR, CR-LF or LF.
6149 * Returns TRUE for end-of-file.
6150 * Only used for the Mac, because it's much slower than vim_fgets().
6151 */
6152 int
6153tag_fgets(buf, size, fp)
6154 char_u *buf;
6155 int size;
6156 FILE *fp;
6157{
6158 int i = 0;
6159 int c;
6160 int eof = FALSE;
6161
6162 for (;;)
6163 {
6164 c = fgetc(fp);
6165 if (c == EOF)
6166 {
6167 eof = TRUE;
6168 break;
6169 }
6170 if (c == '\r')
6171 {
6172 /* Always store a NL for end-of-line. */
6173 if (i < size - 1)
6174 buf[i++] = '\n';
6175 c = fgetc(fp);
6176 if (c != '\n') /* Macintosh format: single CR. */
6177 ungetc(c, fp);
6178 break;
6179 }
6180 if (i < size - 1)
6181 buf[i++] = c;
6182 if (c == '\n')
6183 break;
6184 }
6185 buf[i] = NUL;
6186 return eof;
6187}
6188#endif
6189
6190/*
6191 * rename() only works if both files are on the same file system, this
6192 * function will (attempts to?) copy the file across if rename fails -- webb
6193 * Return -1 for failure, 0 for success.
6194 */
6195 int
6196vim_rename(from, to)
6197 char_u *from;
6198 char_u *to;
6199{
6200 int fd_in;
6201 int fd_out;
6202 int n;
6203 char *errmsg = NULL;
6204 char *buffer;
6205#ifdef AMIGA
6206 BPTR flock;
6207#endif
6208 struct stat st;
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006209 long perm;
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006210#ifdef HAVE_ACL
6211 vim_acl_T acl; /* ACL from original file */
6212#endif
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006213#if defined(UNIX) || defined(CASE_INSENSITIVE_FILENAME)
6214 int use_tmp_file = FALSE;
6215#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216
6217 /*
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006218 * When the names are identical, there is nothing to do. When they refer
6219 * to the same file (ignoring case and slash/backslash differences) but
6220 * the file name differs we need to go through a temp file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006221 */
6222 if (fnamecmp(from, to) == 0)
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006223 {
6224#ifdef CASE_INSENSITIVE_FILENAME
6225 if (STRCMP(gettail(from), gettail(to)) != 0)
6226 use_tmp_file = TRUE;
6227 else
6228#endif
6229 return 0;
6230 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006231
6232 /*
6233 * Fail if the "from" file doesn't exist. Avoids that "to" is deleted.
6234 */
6235 if (mch_stat((char *)from, &st) < 0)
6236 return -1;
6237
Bram Moolenaar3576da72008-12-30 15:15:57 +00006238#ifdef UNIX
6239 {
6240 struct stat st_to;
Bram Moolenaar3576da72008-12-30 15:15:57 +00006241
6242 /* It's possible for the source and destination to be the same file.
6243 * This happens when "from" and "to" differ in case and are on a FAT32
6244 * filesystem. In that case go through a temp file name. */
6245 if (mch_stat((char *)to, &st_to) >= 0
6246 && st.st_dev == st_to.st_dev
6247 && st.st_ino == st_to.st_ino)
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006248 use_tmp_file = TRUE;
6249 }
6250#endif
6251
6252#if defined(UNIX) || defined(CASE_INSENSITIVE_FILENAME)
6253 if (use_tmp_file)
6254 {
6255 char tempname[MAXPATHL + 1];
6256
6257 /*
6258 * Find a name that doesn't exist and is in the same directory.
6259 * Rename "from" to "tempname" and then rename "tempname" to "to".
6260 */
6261 if (STRLEN(from) >= MAXPATHL - 5)
6262 return -1;
6263 STRCPY(tempname, from);
6264 for (n = 123; n < 99999; ++n)
Bram Moolenaar3576da72008-12-30 15:15:57 +00006265 {
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006266 sprintf((char *)gettail((char_u *)tempname), "%d", n);
6267 if (mch_stat(tempname, &st) < 0)
Bram Moolenaar3576da72008-12-30 15:15:57 +00006268 {
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006269 if (mch_rename((char *)from, tempname) == 0)
Bram Moolenaar3576da72008-12-30 15:15:57 +00006270 {
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006271 if (mch_rename(tempname, (char *)to) == 0)
6272 return 0;
6273 /* Strange, the second step failed. Try moving the
6274 * file back and return failure. */
6275 mch_rename(tempname, (char *)from);
Bram Moolenaar3576da72008-12-30 15:15:57 +00006276 return -1;
6277 }
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006278 /* If it fails for one temp name it will most likely fail
6279 * for any temp name, give up. */
6280 return -1;
Bram Moolenaar3576da72008-12-30 15:15:57 +00006281 }
Bram Moolenaar3576da72008-12-30 15:15:57 +00006282 }
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006283 return -1;
Bram Moolenaar3576da72008-12-30 15:15:57 +00006284 }
6285#endif
6286
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287 /*
6288 * Delete the "to" file, this is required on some systems to make the
6289 * mch_rename() work, on other systems it makes sure that we don't have
6290 * two files when the mch_rename() fails.
6291 */
6292
6293#ifdef AMIGA
6294 /*
6295 * With MSDOS-compatible filesystems (crossdos, messydos) it is possible
6296 * that the name of the "to" file is the same as the "from" file, even
Bram Moolenaar7263a772007-05-10 17:35:54 +00006297 * though the names are different. To avoid the chance of accidentally
Bram Moolenaar071d4272004-06-13 20:20:40 +00006298 * deleting the "from" file (horror!) we lock it during the remove.
6299 *
6300 * When used for making a backup before writing the file: This should not
6301 * happen with ":w", because startscript() should detect this problem and
6302 * set buf->b_shortname, causing modname() to return a correct ".bak" file
6303 * name. This problem does exist with ":w filename", but then the
6304 * original file will be somewhere else so the backup isn't really
6305 * important. If autoscripting is off the rename may fail.
6306 */
6307 flock = Lock((UBYTE *)from, (long)ACCESS_READ);
6308#endif
6309 mch_remove(to);
6310#ifdef AMIGA
6311 if (flock)
6312 UnLock(flock);
6313#endif
6314
6315 /*
6316 * First try a normal rename, return if it works.
6317 */
6318 if (mch_rename((char *)from, (char *)to) == 0)
6319 return 0;
6320
6321 /*
6322 * Rename() failed, try copying the file.
6323 */
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006324 perm = mch_getperm(from);
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006325#ifdef HAVE_ACL
6326 /* For systems that support ACL: get the ACL from the original file. */
6327 acl = mch_get_acl(from);
6328#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006329 fd_in = mch_open((char *)from, O_RDONLY|O_EXTRA, 0);
6330 if (fd_in == -1)
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006331 {
6332#ifdef HAVE_ACL
6333 mch_free_acl(acl);
6334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 return -1;
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006336 }
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006337
6338 /* Create the new file with same permissions as the original. */
Bram Moolenaara5792f52005-11-23 21:25:05 +00006339 fd_out = mch_open((char *)to,
6340 O_CREAT|O_EXCL|O_WRONLY|O_EXTRA|O_NOFOLLOW, (int)perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341 if (fd_out == -1)
6342 {
6343 close(fd_in);
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006344#ifdef HAVE_ACL
6345 mch_free_acl(acl);
6346#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347 return -1;
6348 }
6349
6350 buffer = (char *)alloc(BUFSIZE);
6351 if (buffer == NULL)
6352 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006353 close(fd_out);
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006354 close(fd_in);
6355#ifdef HAVE_ACL
6356 mch_free_acl(acl);
6357#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 return -1;
6359 }
6360
6361 while ((n = vim_read(fd_in, buffer, BUFSIZE)) > 0)
6362 if (vim_write(fd_out, buffer, n) != n)
6363 {
6364 errmsg = _("E208: Error writing to \"%s\"");
6365 break;
6366 }
6367
6368 vim_free(buffer);
6369 close(fd_in);
6370 if (close(fd_out) < 0)
6371 errmsg = _("E209: Error closing \"%s\"");
6372 if (n < 0)
6373 {
6374 errmsg = _("E210: Error reading \"%s\"");
6375 to = from;
6376 }
Bram Moolenaar7263a772007-05-10 17:35:54 +00006377#ifndef UNIX /* for Unix mch_open() already set the permission */
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006378 mch_setperm(to, perm);
Bram Moolenaarc6039d82005-12-02 00:44:04 +00006379#endif
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006380#ifdef HAVE_ACL
6381 mch_set_acl(to, acl);
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006382 mch_free_acl(acl);
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006383#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006384 if (errmsg != NULL)
6385 {
6386 EMSG2(errmsg, to);
6387 return -1;
6388 }
6389 mch_remove(from);
6390 return 0;
6391}
6392
6393static int already_warned = FALSE;
6394
6395/*
6396 * Check if any not hidden buffer has been changed.
6397 * Postpone the check if there are characters in the stuff buffer, a global
6398 * command is being executed, a mapping is being executed or an autocommand is
6399 * busy.
6400 * Returns TRUE if some message was written (screen should be redrawn and
6401 * cursor positioned).
6402 */
6403 int
6404check_timestamps(focus)
6405 int focus; /* called for GUI focus event */
6406{
6407 buf_T *buf;
6408 int didit = 0;
6409 int n;
6410
6411 /* Don't check timestamps while system() or another low-level function may
6412 * cause us to lose and gain focus. */
6413 if (no_check_timestamps > 0)
6414 return FALSE;
6415
6416 /* Avoid doing a check twice. The OK/Reload dialog can cause a focus
6417 * event and we would keep on checking if the file is steadily growing.
6418 * Do check again after typing something. */
6419 if (focus && did_check_timestamps)
6420 {
6421 need_check_timestamps = TRUE;
6422 return FALSE;
6423 }
6424
6425 if (!stuff_empty() || global_busy || !typebuf_typed()
6426#ifdef FEAT_AUTOCMD
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00006427 || autocmd_busy || curbuf_lock > 0 || allbuf_lock > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006428#endif
6429 )
6430 need_check_timestamps = TRUE; /* check later */
6431 else
6432 {
6433 ++no_wait_return;
6434 did_check_timestamps = TRUE;
6435 already_warned = FALSE;
6436 for (buf = firstbuf; buf != NULL; )
6437 {
6438 /* Only check buffers in a window. */
6439 if (buf->b_nwindows > 0)
6440 {
6441 n = buf_check_timestamp(buf, focus);
6442 if (didit < n)
6443 didit = n;
6444 if (n > 0 && !buf_valid(buf))
6445 {
6446 /* Autocommands have removed the buffer, start at the
6447 * first one again. */
6448 buf = firstbuf;
6449 continue;
6450 }
6451 }
6452 buf = buf->b_next;
6453 }
6454 --no_wait_return;
6455 need_check_timestamps = FALSE;
6456 if (need_wait_return && didit == 2)
6457 {
6458 /* make sure msg isn't overwritten */
6459 msg_puts((char_u *)"\n");
6460 out_flush();
6461 }
6462 }
6463 return didit;
6464}
6465
6466/*
6467 * Move all the lines from buffer "frombuf" to buffer "tobuf".
6468 * Return OK or FAIL. When FAIL "tobuf" is incomplete and/or "frombuf" is not
6469 * empty.
6470 */
6471 static int
6472move_lines(frombuf, tobuf)
6473 buf_T *frombuf;
6474 buf_T *tobuf;
6475{
6476 buf_T *tbuf = curbuf;
6477 int retval = OK;
6478 linenr_T lnum;
6479 char_u *p;
6480
6481 /* Copy the lines in "frombuf" to "tobuf". */
6482 curbuf = tobuf;
6483 for (lnum = 1; lnum <= frombuf->b_ml.ml_line_count; ++lnum)
6484 {
6485 p = vim_strsave(ml_get_buf(frombuf, lnum, FALSE));
6486 if (p == NULL || ml_append(lnum - 1, p, 0, FALSE) == FAIL)
6487 {
6488 vim_free(p);
6489 retval = FAIL;
6490 break;
6491 }
6492 vim_free(p);
6493 }
6494
6495 /* Delete all the lines in "frombuf". */
6496 if (retval != FAIL)
6497 {
6498 curbuf = frombuf;
Bram Moolenaar9460b9d2007-01-09 14:37:01 +00006499 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0; --lnum)
6500 if (ml_delete(lnum, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501 {
6502 /* Oops! We could try putting back the saved lines, but that
6503 * might fail again... */
6504 retval = FAIL;
6505 break;
6506 }
6507 }
6508
6509 curbuf = tbuf;
6510 return retval;
6511}
6512
6513/*
6514 * Check if buffer "buf" has been changed.
6515 * Also check if the file for a new buffer unexpectedly appeared.
6516 * return 1 if a changed buffer was found.
6517 * return 2 if a message has been displayed.
6518 * return 0 otherwise.
6519 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006520 int
6521buf_check_timestamp(buf, focus)
6522 buf_T *buf;
Bram Moolenaar78a15312009-05-15 19:33:18 +00006523 int focus UNUSED; /* called for GUI focus event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006524{
6525 struct stat st;
6526 int stat_res;
6527 int retval = 0;
6528 char_u *path;
6529 char_u *tbuf;
6530 char *mesg = NULL;
Bram Moolenaar44ecf652005-03-07 23:09:59 +00006531 char *mesg2 = "";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532 int helpmesg = FALSE;
6533 int reload = FALSE;
6534#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6535 int can_reload = FALSE;
6536#endif
6537 size_t orig_size = buf->b_orig_size;
6538 int orig_mode = buf->b_orig_mode;
6539#ifdef FEAT_GUI
6540 int save_mouse_correct = need_mouse_correct;
6541#endif
6542#ifdef FEAT_AUTOCMD
6543 static int busy = FALSE;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006544 int n;
6545 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006546#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006547 char *reason;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006548
6549 /* If there is no file name, the buffer is not loaded, 'buftype' is
6550 * set, we are in the middle of a save or being called recursively: ignore
6551 * this buffer. */
6552 if (buf->b_ffname == NULL
6553 || buf->b_ml.ml_mfp == NULL
6554#if defined(FEAT_QUICKFIX)
6555 || *buf->b_p_bt != NUL
6556#endif
6557 || buf->b_saving
6558#ifdef FEAT_AUTOCMD
6559 || busy
6560#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +00006561#ifdef FEAT_NETBEANS_INTG
6562 || isNetbeansBuffer(buf)
6563#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006564 )
6565 return 0;
6566
6567 if ( !(buf->b_flags & BF_NOTEDITED)
6568 && buf->b_mtime != 0
6569 && ((stat_res = mch_stat((char *)buf->b_ffname, &st)) < 0
6570 || time_differs((long)st.st_mtime, buf->b_mtime)
6571#ifdef HAVE_ST_MODE
6572 || (int)st.st_mode != buf->b_orig_mode
6573#else
6574 || mch_getperm(buf->b_ffname) != buf->b_orig_mode
6575#endif
6576 ))
6577 {
6578 retval = 1;
6579
Bram Moolenaar316059c2006-01-14 21:18:42 +00006580 /* set b_mtime to stop further warnings (e.g., when executing
6581 * FileChangedShell autocmd) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582 if (stat_res < 0)
6583 {
6584 buf->b_mtime = 0;
6585 buf->b_orig_size = 0;
6586 buf->b_orig_mode = 0;
6587 }
6588 else
6589 buf_store_time(buf, &st, buf->b_ffname);
6590
6591 /* Don't do anything for a directory. Might contain the file
6592 * explorer. */
6593 if (mch_isdir(buf->b_fname))
6594 ;
6595
6596 /*
6597 * If 'autoread' is set, the buffer has no changes and the file still
6598 * exists, reload the buffer. Use the buffer-local option value if it
6599 * was set, the global option value otherwise.
6600 */
6601 else if ((buf->b_p_ar >= 0 ? buf->b_p_ar : p_ar)
6602 && !bufIsChanged(buf) && stat_res >= 0)
6603 reload = TRUE;
6604 else
6605 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006606 if (stat_res < 0)
6607 reason = "deleted";
6608 else if (bufIsChanged(buf))
6609 reason = "conflict";
6610 else if (orig_size != buf->b_orig_size || buf_contents_changed(buf))
6611 reason = "changed";
6612 else if (orig_mode != buf->b_orig_mode)
6613 reason = "mode";
6614 else
6615 reason = "time";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006616
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006617#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006618 /*
6619 * Only give the warning if there are no FileChangedShell
6620 * autocommands.
6621 * Avoid being called recursively by setting "busy".
6622 */
6623 busy = TRUE;
Bram Moolenaar1e015462005-09-25 22:16:38 +00006624# ifdef FEAT_EVAL
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006625 set_vim_var_string(VV_FCS_REASON, (char_u *)reason, -1);
6626 set_vim_var_string(VV_FCS_CHOICE, (char_u *)"", -1);
Bram Moolenaar1e015462005-09-25 22:16:38 +00006627# endif
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00006628 ++allbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006629 n = apply_autocmds(EVENT_FILECHANGEDSHELL,
6630 buf->b_fname, buf->b_fname, FALSE, buf);
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00006631 --allbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632 busy = FALSE;
6633 if (n)
6634 {
6635 if (!buf_valid(buf))
6636 EMSG(_("E246: FileChangedShell autocommand deleted buffer"));
Bram Moolenaar1e015462005-09-25 22:16:38 +00006637# ifdef FEAT_EVAL
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006638 s = get_vim_var_str(VV_FCS_CHOICE);
6639 if (STRCMP(s, "reload") == 0 && *reason != 'd')
6640 reload = TRUE;
6641 else if (STRCMP(s, "ask") == 0)
6642 n = FALSE;
6643 else
Bram Moolenaar1e015462005-09-25 22:16:38 +00006644# endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006645 return 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006646 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006647 if (!n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006648#endif
6649 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006650 if (*reason == 'd')
6651 mesg = _("E211: File \"%s\" no longer available");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006652 else
6653 {
6654 helpmesg = TRUE;
6655#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6656 can_reload = TRUE;
6657#endif
6658 /*
6659 * Check if the file contents really changed to avoid
6660 * giving a warning when only the timestamp was set (e.g.,
6661 * checked out of CVS). Always warn when the buffer was
6662 * changed.
6663 */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006664 if (reason[2] == 'n')
6665 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666 mesg = _("W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as well");
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006667 mesg2 = _("See \":help W12\" for more info.");
6668 }
6669 else if (reason[1] == 'h')
6670 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006671 mesg = _("W11: Warning: File \"%s\" has changed since editing started");
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006672 mesg2 = _("See \":help W11\" for more info.");
6673 }
6674 else if (*reason == 'm')
6675 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006676 mesg = _("W16: Warning: Mode of file \"%s\" has changed since editing started");
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006677 mesg2 = _("See \":help W16\" for more info.");
6678 }
Bram Moolenaar85388b52009-06-24 09:58:32 +00006679 else
6680 /* Only timestamp changed, store it to avoid a warning
6681 * in check_mtime() later. */
6682 buf->b_mtime_read = buf->b_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006683 }
6684 }
6685 }
6686
6687 }
6688 else if ((buf->b_flags & BF_NEW) && !(buf->b_flags & BF_NEW_W)
6689 && vim_fexists(buf->b_ffname))
6690 {
6691 retval = 1;
6692 mesg = _("W13: Warning: File \"%s\" has been created after editing started");
6693 buf->b_flags |= BF_NEW_W;
6694#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6695 can_reload = TRUE;
6696#endif
6697 }
6698
6699 if (mesg != NULL)
6700 {
6701 path = home_replace_save(buf, buf->b_fname);
6702 if (path != NULL)
6703 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006704 if (!helpmesg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006705 mesg2 = "";
6706 tbuf = alloc((unsigned)(STRLEN(path) + STRLEN(mesg)
6707 + STRLEN(mesg2) + 2));
6708 sprintf((char *)tbuf, mesg, path);
Bram Moolenaar496c5262009-03-18 14:42:00 +00006709#ifdef FEAT_EVAL
6710 /* Set warningmsg here, before the unimportant and output-specific
6711 * mesg2 has been appended. */
6712 set_vim_var_string(VV_WARNINGMSG, tbuf, -1);
6713#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006714#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6715 if (can_reload)
6716 {
6717 if (*mesg2 != NUL)
6718 {
6719 STRCAT(tbuf, "\n");
6720 STRCAT(tbuf, mesg2);
6721 }
6722 if (do_dialog(VIM_WARNING, (char_u *)_("Warning"), tbuf,
6723 (char_u *)_("&OK\n&Load File"), 1, NULL) == 2)
6724 reload = TRUE;
6725 }
6726 else
6727#endif
6728 if (State > NORMAL_BUSY || (State & CMDLINE) || already_warned)
6729 {
6730 if (*mesg2 != NUL)
6731 {
6732 STRCAT(tbuf, "; ");
6733 STRCAT(tbuf, mesg2);
6734 }
6735 EMSG(tbuf);
6736 retval = 2;
6737 }
6738 else
6739 {
Bram Moolenaared203462004-06-16 11:19:22 +00006740# ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741 if (!autocmd_busy)
Bram Moolenaared203462004-06-16 11:19:22 +00006742# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006743 {
6744 msg_start();
6745 msg_puts_attr(tbuf, hl_attr(HLF_E) + MSG_HIST);
6746 if (*mesg2 != NUL)
6747 msg_puts_attr((char_u *)mesg2,
6748 hl_attr(HLF_W) + MSG_HIST);
6749 msg_clr_eos();
6750 (void)msg_end();
6751 if (emsg_silent == 0)
6752 {
6753 out_flush();
Bram Moolenaared203462004-06-16 11:19:22 +00006754# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006755 if (!focus)
Bram Moolenaared203462004-06-16 11:19:22 +00006756# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006757 /* give the user some time to think about it */
6758 ui_delay(1000L, TRUE);
6759
6760 /* don't redraw and erase the message */
6761 redraw_cmdline = FALSE;
6762 }
6763 }
6764 already_warned = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006765 }
6766
6767 vim_free(path);
6768 vim_free(tbuf);
6769 }
6770 }
6771
6772 if (reload)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006773 /* Reload the buffer. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006774 buf_reload(buf, orig_mode);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006775
Bram Moolenaar56718732006-03-15 22:53:57 +00006776#ifdef FEAT_AUTOCMD
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006777 /* Trigger FileChangedShell when the file was changed in any way. */
6778 if (buf_valid(buf) && retval != 0)
Bram Moolenaar56718732006-03-15 22:53:57 +00006779 (void)apply_autocmds(EVENT_FILECHANGEDSHELLPOST,
6780 buf->b_fname, buf->b_fname, FALSE, buf);
6781#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006782#ifdef FEAT_GUI
6783 /* restore this in case an autocommand has set it; it would break
6784 * 'mousefocus' */
6785 need_mouse_correct = save_mouse_correct;
6786#endif
6787
6788 return retval;
6789}
6790
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006791/*
6792 * Reload a buffer that is already loaded.
6793 * Used when the file was changed outside of Vim.
Bram Moolenaar316059c2006-01-14 21:18:42 +00006794 * "orig_mode" is buf->b_orig_mode before the need for reloading was detected.
6795 * buf->b_orig_mode may have been reset already.
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006796 */
6797 void
Bram Moolenaar316059c2006-01-14 21:18:42 +00006798buf_reload(buf, orig_mode)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006799 buf_T *buf;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006800 int orig_mode;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006801{
6802 exarg_T ea;
6803 pos_T old_cursor;
6804 linenr_T old_topline;
6805 int old_ro = buf->b_p_ro;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006806 buf_T *savebuf;
6807 int saved = OK;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006808 aco_save_T aco;
6809
6810 /* set curwin/curbuf for "buf" and save some things */
6811 aucmd_prepbuf(&aco, buf);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006812
6813 /* We only want to read the text from the file, not reset the syntax
6814 * highlighting, clear marks, diff status, etc. Force the fileformat
6815 * and encoding to be the same. */
6816 if (prep_exarg(&ea, buf) == OK)
6817 {
6818 old_cursor = curwin->w_cursor;
6819 old_topline = curwin->w_topline;
6820
6821 /*
6822 * To behave like when a new file is edited (matters for
6823 * BufReadPost autocommands) we first need to delete the current
6824 * buffer contents. But if reading the file fails we should keep
6825 * the old contents. Can't use memory only, the file might be
6826 * too big. Use a hidden buffer to move the buffer contents to.
6827 */
6828 if (bufempty())
6829 savebuf = NULL;
6830 else
6831 {
6832 /* Allocate a buffer without putting it in the buffer list. */
6833 savebuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
Bram Moolenaar8424a622006-04-19 21:23:36 +00006834 if (savebuf != NULL && buf == curbuf)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006835 {
6836 /* Open the memline. */
6837 curbuf = savebuf;
6838 curwin->w_buffer = savebuf;
Bram Moolenaar4770d092006-01-12 23:22:24 +00006839 saved = ml_open(curbuf);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006840 curbuf = buf;
6841 curwin->w_buffer = buf;
6842 }
Bram Moolenaar8424a622006-04-19 21:23:36 +00006843 if (savebuf == NULL || saved == FAIL || buf != curbuf
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006844 || move_lines(buf, savebuf) == FAIL)
6845 {
6846 EMSG2(_("E462: Could not prepare for reloading \"%s\""),
6847 buf->b_fname);
6848 saved = FAIL;
6849 }
6850 }
6851
6852 if (saved == OK)
6853 {
6854 curbuf->b_flags |= BF_CHECK_RO; /* check for RO again */
6855#ifdef FEAT_AUTOCMD
6856 keep_filetype = TRUE; /* don't detect 'filetype' */
6857#endif
6858 if (readfile(buf->b_ffname, buf->b_fname, (linenr_T)0,
6859 (linenr_T)0,
6860 (linenr_T)MAXLNUM, &ea, READ_NEW) == FAIL)
6861 {
6862#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6863 if (!aborting())
6864#endif
6865 EMSG2(_("E321: Could not reload \"%s\""), buf->b_fname);
Bram Moolenaar8424a622006-04-19 21:23:36 +00006866 if (savebuf != NULL && buf_valid(savebuf) && buf == curbuf)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006867 {
6868 /* Put the text back from the save buffer. First
6869 * delete any lines that readfile() added. */
6870 while (!bufempty())
Bram Moolenaar8424a622006-04-19 21:23:36 +00006871 if (ml_delete(buf->b_ml.ml_line_count, FALSE) == FAIL)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006872 break;
6873 (void)move_lines(savebuf, buf);
6874 }
6875 }
Bram Moolenaar8424a622006-04-19 21:23:36 +00006876 else if (buf == curbuf)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006877 {
6878 /* Mark the buffer as unmodified and free undo info. */
6879 unchanged(buf, TRUE);
6880 u_blockfree(buf);
6881 u_clearall(buf);
6882 }
6883 }
6884 vim_free(ea.cmd);
6885
Bram Moolenaar8424a622006-04-19 21:23:36 +00006886 if (savebuf != NULL && buf_valid(savebuf))
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006887 wipe_buffer(savebuf, FALSE);
6888
6889#ifdef FEAT_DIFF
6890 /* Invalidate diff info if necessary. */
Bram Moolenaar8424a622006-04-19 21:23:36 +00006891 diff_invalidate(curbuf);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006892#endif
6893
6894 /* Restore the topline and cursor position and check it (lines may
6895 * have been removed). */
6896 if (old_topline > curbuf->b_ml.ml_line_count)
6897 curwin->w_topline = curbuf->b_ml.ml_line_count;
6898 else
6899 curwin->w_topline = old_topline;
6900 curwin->w_cursor = old_cursor;
6901 check_cursor();
6902 update_topline();
6903#ifdef FEAT_AUTOCMD
6904 keep_filetype = FALSE;
6905#endif
6906#ifdef FEAT_FOLDING
6907 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00006908 win_T *wp;
6909 tabpage_T *tp;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006910
6911 /* Update folds unless they are defined manually. */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00006912 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006913 if (wp->w_buffer == curwin->w_buffer
6914 && !foldmethodIsManual(wp))
6915 foldUpdateAll(wp);
6916 }
6917#endif
6918 /* If the mode didn't change and 'readonly' was set, keep the old
6919 * value; the user probably used the ":view" command. But don't
6920 * reset it, might have had a read error. */
6921 if (orig_mode == curbuf->b_orig_mode)
6922 curbuf->b_p_ro |= old_ro;
6923 }
6924
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006925 /* restore curwin/curbuf and a few other things */
6926 aucmd_restbuf(&aco);
6927 /* Careful: autocommands may have made "buf" invalid! */
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006928}
6929
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 void
6931buf_store_time(buf, st, fname)
6932 buf_T *buf;
6933 struct stat *st;
Bram Moolenaar78a15312009-05-15 19:33:18 +00006934 char_u *fname UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006935{
6936 buf->b_mtime = (long)st->st_mtime;
6937 buf->b_orig_size = (size_t)st->st_size;
6938#ifdef HAVE_ST_MODE
6939 buf->b_orig_mode = (int)st->st_mode;
6940#else
6941 buf->b_orig_mode = mch_getperm(fname);
6942#endif
6943}
6944
6945/*
6946 * Adjust the line with missing eol, used for the next write.
6947 * Used for do_filter(), when the input lines for the filter are deleted.
6948 */
6949 void
6950write_lnum_adjust(offset)
6951 linenr_T offset;
6952{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006953 if (write_no_eol_lnum != 0) /* only if there is a missing eol */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006954 write_no_eol_lnum += offset;
6955}
6956
6957#if defined(TEMPDIRNAMES) || defined(PROTO)
6958static long temp_count = 0; /* Temp filename counter. */
6959
6960/*
6961 * Delete the temp directory and all files it contains.
6962 */
6963 void
6964vim_deltempdir()
6965{
6966 char_u **files;
6967 int file_count;
6968 int i;
6969
6970 if (vim_tempdir != NULL)
6971 {
6972 sprintf((char *)NameBuff, "%s*", vim_tempdir);
6973 if (gen_expand_wildcards(1, &NameBuff, &file_count, &files,
6974 EW_DIR|EW_FILE|EW_SILENT) == OK)
6975 {
6976 for (i = 0; i < file_count; ++i)
6977 mch_remove(files[i]);
6978 FreeWild(file_count, files);
6979 }
6980 gettail(NameBuff)[-1] = NUL;
6981 (void)mch_rmdir(NameBuff);
6982
6983 vim_free(vim_tempdir);
6984 vim_tempdir = NULL;
6985 }
6986}
6987#endif
6988
6989/*
6990 * vim_tempname(): Return a unique name that can be used for a temp file.
6991 *
6992 * The temp file is NOT created.
6993 *
6994 * The returned pointer is to allocated memory.
6995 * The returned pointer is NULL if no valid name was found.
6996 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006997 char_u *
6998vim_tempname(extra_char)
Bram Moolenaar78a15312009-05-15 19:33:18 +00006999 int extra_char UNUSED; /* char to use in the name instead of '?' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007000{
7001#ifdef USE_TMPNAM
7002 char_u itmp[L_tmpnam]; /* use tmpnam() */
7003#else
7004 char_u itmp[TEMPNAMELEN];
7005#endif
7006
7007#ifdef TEMPDIRNAMES
7008 static char *(tempdirs[]) = {TEMPDIRNAMES};
7009 int i;
7010 long nr;
7011 long off;
7012# ifndef EEXIST
7013 struct stat st;
7014# endif
7015
7016 /*
7017 * This will create a directory for private use by this instance of Vim.
7018 * This is done once, and the same directory is used for all temp files.
7019 * This method avoids security problems because of symlink attacks et al.
7020 * It's also a bit faster, because we only need to check for an existing
7021 * file when creating the directory and not for each temp file.
7022 */
7023 if (vim_tempdir == NULL)
7024 {
7025 /*
7026 * Try the entries in TEMPDIRNAMES to create the temp directory.
7027 */
Bram Moolenaar78a15312009-05-15 19:33:18 +00007028 for (i = 0; i < (int)(sizeof(tempdirs) / sizeof(char *)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029 {
7030 /* expand $TMP, leave room for "/v1100000/999999999" */
7031 expand_env((char_u *)tempdirs[i], itmp, TEMPNAMELEN - 20);
7032 if (mch_isdir(itmp)) /* directory exists */
7033 {
7034# ifdef __EMX__
7035 /* If $TMP contains a forward slash (perhaps using bash or
7036 * tcsh), don't add a backslash, use a forward slash!
7037 * Adding 2 backslashes didn't work. */
7038 if (vim_strchr(itmp, '/') != NULL)
7039 STRCAT(itmp, "/");
7040 else
7041# endif
7042 add_pathsep(itmp);
7043
7044 /* Get an arbitrary number of up to 6 digits. When it's
7045 * unlikely that it already exists it will be faster,
7046 * otherwise it doesn't matter. The use of mkdir() avoids any
7047 * security problems because of the predictable number. */
7048 nr = (mch_get_pid() + (long)time(NULL)) % 1000000L;
7049
7050 /* Try up to 10000 different values until we find a name that
7051 * doesn't exist. */
7052 for (off = 0; off < 10000L; ++off)
7053 {
7054 int r;
7055#if defined(UNIX) || defined(VMS)
7056 mode_t umask_save;
7057#endif
7058
7059 sprintf((char *)itmp + STRLEN(itmp), "v%ld", nr + off);
7060# ifndef EEXIST
7061 /* If mkdir() does not set errno to EEXIST, check for
7062 * existing file here. There is a race condition then,
7063 * although it's fail-safe. */
7064 if (mch_stat((char *)itmp, &st) >= 0)
7065 continue;
7066# endif
7067#if defined(UNIX) || defined(VMS)
7068 /* Make sure the umask doesn't remove the executable bit.
7069 * "repl" has been reported to use "177". */
7070 umask_save = umask(077);
7071#endif
7072 r = vim_mkdir(itmp, 0700);
7073#if defined(UNIX) || defined(VMS)
7074 (void)umask(umask_save);
7075#endif
7076 if (r == 0)
7077 {
7078 char_u *buf;
7079
7080 /* Directory was created, use this name.
7081 * Expand to full path; When using the current
7082 * directory a ":cd" would confuse us. */
7083 buf = alloc((unsigned)MAXPATHL + 1);
7084 if (buf != NULL)
7085 {
7086 if (vim_FullName(itmp, buf, MAXPATHL, FALSE)
7087 == FAIL)
7088 STRCPY(buf, itmp);
7089# ifdef __EMX__
7090 if (vim_strchr(buf, '/') != NULL)
7091 STRCAT(buf, "/");
7092 else
7093# endif
7094 add_pathsep(buf);
7095 vim_tempdir = vim_strsave(buf);
7096 vim_free(buf);
7097 }
7098 break;
7099 }
7100# ifdef EEXIST
7101 /* If the mkdir() didn't fail because the file/dir exists,
7102 * we probably can't create any dir here, try another
7103 * place. */
7104 if (errno != EEXIST)
7105# endif
7106 break;
7107 }
7108 if (vim_tempdir != NULL)
7109 break;
7110 }
7111 }
7112 }
7113
7114 if (vim_tempdir != NULL)
7115 {
7116 /* There is no need to check if the file exists, because we own the
7117 * directory and nobody else creates a file in it. */
7118 sprintf((char *)itmp, "%s%ld", vim_tempdir, temp_count++);
7119 return vim_strsave(itmp);
7120 }
7121
7122 return NULL;
7123
7124#else /* TEMPDIRNAMES */
7125
7126# ifdef WIN3264
7127 char szTempFile[_MAX_PATH + 1];
7128 char buf4[4];
7129 char_u *retval;
7130 char_u *p;
7131
7132 STRCPY(itmp, "");
7133 if (GetTempPath(_MAX_PATH, szTempFile) == 0)
7134 szTempFile[0] = NUL; /* GetTempPath() failed, use current dir */
7135 strcpy(buf4, "VIM");
7136 buf4[2] = extra_char; /* make it "VIa", "VIb", etc. */
7137 if (GetTempFileName(szTempFile, buf4, 0, itmp) == 0)
7138 return NULL;
7139 /* GetTempFileName() will create the file, we don't want that */
7140 (void)DeleteFile(itmp);
7141
7142 /* Backslashes in a temp file name cause problems when filtering with
7143 * "sh". NOTE: This also checks 'shellcmdflag' to help those people who
7144 * didn't set 'shellslash'. */
7145 retval = vim_strsave(itmp);
7146 if (*p_shcf == '-' || p_ssl)
7147 for (p = retval; *p; ++p)
7148 if (*p == '\\')
7149 *p = '/';
7150 return retval;
7151
7152# else /* WIN3264 */
7153
7154# ifdef USE_TMPNAM
7155 /* tmpnam() will make its own name */
7156 if (*tmpnam((char *)itmp) == NUL)
7157 return NULL;
7158# else
7159 char_u *p;
7160
7161# ifdef VMS_TEMPNAM
7162 /* mktemp() is not working on VMS. It seems to be
7163 * a do-nothing function. Therefore we use tempnam().
7164 */
7165 sprintf((char *)itmp, "VIM%c", extra_char);
7166 p = (char_u *)tempnam("tmp:", (char *)itmp);
7167 if (p != NULL)
7168 {
7169 /* VMS will use '.LOG' if we don't explicitly specify an extension,
7170 * and VIM will then be unable to find the file later */
7171 STRCPY(itmp, p);
7172 STRCAT(itmp, ".txt");
7173 free(p);
7174 }
7175 else
7176 return NULL;
7177# else
7178 STRCPY(itmp, TEMPNAME);
7179 if ((p = vim_strchr(itmp, '?')) != NULL)
7180 *p = extra_char;
7181 if (mktemp((char *)itmp) == NULL)
7182 return NULL;
7183# endif
7184# endif
7185
7186 return vim_strsave(itmp);
7187# endif /* WIN3264 */
7188#endif /* TEMPDIRNAMES */
7189}
7190
7191#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
7192/*
7193 * Convert all backslashes in fname to forward slashes in-place.
7194 */
7195 void
7196forward_slash(fname)
7197 char_u *fname;
7198{
7199 char_u *p;
7200
7201 for (p = fname; *p != NUL; ++p)
7202# ifdef FEAT_MBYTE
7203 /* The Big5 encoding can have '\' in the trail byte. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007204 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007205 ++p;
7206 else
7207# endif
7208 if (*p == '\\')
7209 *p = '/';
7210}
7211#endif
7212
7213
7214/*
7215 * Code for automatic commands.
7216 *
7217 * Only included when "FEAT_AUTOCMD" has been defined.
7218 */
7219
7220#if defined(FEAT_AUTOCMD) || defined(PROTO)
7221
7222/*
7223 * The autocommands are stored in a list for each event.
7224 * Autocommands for the same pattern, that are consecutive, are joined
7225 * together, to avoid having to match the pattern too often.
7226 * The result is an array of Autopat lists, which point to AutoCmd lists:
7227 *
7228 * first_autopat[0] --> Autopat.next --> Autopat.next --> NULL
7229 * Autopat.cmds Autopat.cmds
7230 * | |
7231 * V V
7232 * AutoCmd.next AutoCmd.next
7233 * | |
7234 * V V
7235 * AutoCmd.next NULL
7236 * |
7237 * V
7238 * NULL
7239 *
7240 * first_autopat[1] --> Autopat.next --> NULL
7241 * Autopat.cmds
7242 * |
7243 * V
7244 * AutoCmd.next
7245 * |
7246 * V
7247 * NULL
7248 * etc.
7249 *
7250 * The order of AutoCmds is important, this is the order in which they were
7251 * defined and will have to be executed.
7252 */
7253typedef struct AutoCmd
7254{
7255 char_u *cmd; /* The command to be executed (NULL
7256 when command has been removed) */
7257 char nested; /* If autocommands nest here */
7258 char last; /* last command in list */
7259#ifdef FEAT_EVAL
7260 scid_T scriptID; /* script ID where defined */
7261#endif
7262 struct AutoCmd *next; /* Next AutoCmd in list */
7263} AutoCmd;
7264
7265typedef struct AutoPat
7266{
7267 int group; /* group ID */
7268 char_u *pat; /* pattern as typed (NULL when pattern
7269 has been removed) */
7270 int patlen; /* strlen() of pat */
Bram Moolenaar748bf032005-02-02 23:04:36 +00007271 regprog_T *reg_prog; /* compiled regprog for pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007272 char allow_dirs; /* Pattern may match whole path */
7273 char last; /* last pattern for apply_autocmds() */
7274 AutoCmd *cmds; /* list of commands to do */
7275 struct AutoPat *next; /* next AutoPat in AutoPat list */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007276 int buflocal_nr; /* !=0 for buffer-local AutoPat */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007277} AutoPat;
7278
7279static struct event_name
7280{
7281 char *name; /* event name */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007282 event_T event; /* event number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007283} event_names[] =
7284{
7285 {"BufAdd", EVENT_BUFADD},
7286 {"BufCreate", EVENT_BUFADD},
7287 {"BufDelete", EVENT_BUFDELETE},
7288 {"BufEnter", EVENT_BUFENTER},
7289 {"BufFilePost", EVENT_BUFFILEPOST},
7290 {"BufFilePre", EVENT_BUFFILEPRE},
7291 {"BufHidden", EVENT_BUFHIDDEN},
7292 {"BufLeave", EVENT_BUFLEAVE},
7293 {"BufNew", EVENT_BUFNEW},
7294 {"BufNewFile", EVENT_BUFNEWFILE},
7295 {"BufRead", EVENT_BUFREADPOST},
7296 {"BufReadCmd", EVENT_BUFREADCMD},
7297 {"BufReadPost", EVENT_BUFREADPOST},
7298 {"BufReadPre", EVENT_BUFREADPRE},
7299 {"BufUnload", EVENT_BUFUNLOAD},
7300 {"BufWinEnter", EVENT_BUFWINENTER},
7301 {"BufWinLeave", EVENT_BUFWINLEAVE},
7302 {"BufWipeout", EVENT_BUFWIPEOUT},
7303 {"BufWrite", EVENT_BUFWRITEPRE},
7304 {"BufWritePost", EVENT_BUFWRITEPOST},
7305 {"BufWritePre", EVENT_BUFWRITEPRE},
7306 {"BufWriteCmd", EVENT_BUFWRITECMD},
7307 {"CmdwinEnter", EVENT_CMDWINENTER},
7308 {"CmdwinLeave", EVENT_CMDWINLEAVE},
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007309 {"ColorScheme", EVENT_COLORSCHEME},
Bram Moolenaar754b5602006-02-09 23:53:20 +00007310 {"CursorHold", EVENT_CURSORHOLD},
7311 {"CursorHoldI", EVENT_CURSORHOLDI},
7312 {"CursorMoved", EVENT_CURSORMOVED},
7313 {"CursorMovedI", EVENT_CURSORMOVEDI},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314 {"EncodingChanged", EVENT_ENCODINGCHANGED},
7315 {"FileEncoding", EVENT_ENCODINGCHANGED},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007316 {"FileAppendPost", EVENT_FILEAPPENDPOST},
7317 {"FileAppendPre", EVENT_FILEAPPENDPRE},
7318 {"FileAppendCmd", EVENT_FILEAPPENDCMD},
7319 {"FileChangedShell",EVENT_FILECHANGEDSHELL},
Bram Moolenaar56718732006-03-15 22:53:57 +00007320 {"FileChangedShellPost",EVENT_FILECHANGEDSHELLPOST},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007321 {"FileChangedRO", EVENT_FILECHANGEDRO},
7322 {"FileReadPost", EVENT_FILEREADPOST},
7323 {"FileReadPre", EVENT_FILEREADPRE},
7324 {"FileReadCmd", EVENT_FILEREADCMD},
7325 {"FileType", EVENT_FILETYPE},
7326 {"FileWritePost", EVENT_FILEWRITEPOST},
7327 {"FileWritePre", EVENT_FILEWRITEPRE},
7328 {"FileWriteCmd", EVENT_FILEWRITECMD},
7329 {"FilterReadPost", EVENT_FILTERREADPOST},
7330 {"FilterReadPre", EVENT_FILTERREADPRE},
7331 {"FilterWritePost", EVENT_FILTERWRITEPOST},
7332 {"FilterWritePre", EVENT_FILTERWRITEPRE},
7333 {"FocusGained", EVENT_FOCUSGAINED},
7334 {"FocusLost", EVENT_FOCUSLOST},
7335 {"FuncUndefined", EVENT_FUNCUNDEFINED},
7336 {"GUIEnter", EVENT_GUIENTER},
Bram Moolenaar265e5072006-08-29 16:13:22 +00007337 {"GUIFailed", EVENT_GUIFAILED},
Bram Moolenaar843ee412004-06-30 16:16:41 +00007338 {"InsertChange", EVENT_INSERTCHANGE},
7339 {"InsertEnter", EVENT_INSERTENTER},
7340 {"InsertLeave", EVENT_INSERTLEAVE},
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00007341 {"MenuPopup", EVENT_MENUPOPUP},
Bram Moolenaar7c626922005-02-07 22:01:03 +00007342 {"QuickFixCmdPost", EVENT_QUICKFIXCMDPOST},
7343 {"QuickFixCmdPre", EVENT_QUICKFIXCMDPRE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007344 {"RemoteReply", EVENT_REMOTEREPLY},
Bram Moolenaar9372a112005-12-06 19:59:18 +00007345 {"SessionLoadPost", EVENT_SESSIONLOADPOST},
Bram Moolenaar5c4bab02006-03-10 21:37:46 +00007346 {"ShellCmdPost", EVENT_SHELLCMDPOST},
7347 {"ShellFilterPost", EVENT_SHELLFILTERPOST},
Bram Moolenaara2031822006-03-07 22:29:51 +00007348 {"SourcePre", EVENT_SOURCEPRE},
Bram Moolenaar8dd1aa52007-01-16 20:33:19 +00007349 {"SourceCmd", EVENT_SOURCECMD},
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00007350 {"SpellFileMissing",EVENT_SPELLFILEMISSING},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007351 {"StdinReadPost", EVENT_STDINREADPOST},
7352 {"StdinReadPre", EVENT_STDINREADPRE},
Bram Moolenaarb815dac2005-12-07 20:59:24 +00007353 {"SwapExists", EVENT_SWAPEXISTS},
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007354 {"Syntax", EVENT_SYNTAX},
Bram Moolenaar70836c82006-02-20 21:28:49 +00007355 {"TabEnter", EVENT_TABENTER},
7356 {"TabLeave", EVENT_TABLEAVE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007357 {"TermChanged", EVENT_TERMCHANGED},
7358 {"TermResponse", EVENT_TERMRESPONSE},
7359 {"User", EVENT_USER},
7360 {"VimEnter", EVENT_VIMENTER},
7361 {"VimLeave", EVENT_VIMLEAVE},
7362 {"VimLeavePre", EVENT_VIMLEAVEPRE},
7363 {"WinEnter", EVENT_WINENTER},
7364 {"WinLeave", EVENT_WINLEAVE},
Bram Moolenaar56718732006-03-15 22:53:57 +00007365 {"VimResized", EVENT_VIMRESIZED},
Bram Moolenaar754b5602006-02-09 23:53:20 +00007366 {NULL, (event_T)0}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007367};
7368
7369static AutoPat *first_autopat[NUM_EVENTS] =
7370{
7371 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7372 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7373 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7374 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007375 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7376 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007377};
7378
7379/*
7380 * struct used to keep status while executing autocommands for an event.
7381 */
7382typedef struct AutoPatCmd
7383{
7384 AutoPat *curpat; /* next AutoPat to examine */
7385 AutoCmd *nextcmd; /* next AutoCmd to execute */
7386 int group; /* group being used */
7387 char_u *fname; /* fname to match with */
7388 char_u *sfname; /* sfname to match with */
7389 char_u *tail; /* tail of fname */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007390 event_T event; /* current event */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007391 int arg_bufnr; /* initially equal to <abuf>, set to zero when
7392 buf is deleted */
7393 struct AutoPatCmd *next; /* chain of active apc-s for auto-invalidation*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00007394} AutoPatCmd;
7395
Bram Moolenaard6f676d2005-06-01 21:51:55 +00007396static AutoPatCmd *active_apc_list = NULL; /* stack of active autocommands */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007397
Bram Moolenaar071d4272004-06-13 20:20:40 +00007398/*
7399 * augroups stores a list of autocmd group names.
7400 */
Bram Moolenaard6f676d2005-06-01 21:51:55 +00007401static garray_T augroups = {0, 0, sizeof(char_u *), 10, NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402#define AUGROUP_NAME(i) (((char_u **)augroups.ga_data)[i])
7403
7404/*
7405 * The ID of the current group. Group 0 is the default one.
7406 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007407static int current_augroup = AUGROUP_DEFAULT;
7408
7409static int au_need_clean = FALSE; /* need to delete marked patterns */
7410
Bram Moolenaar754b5602006-02-09 23:53:20 +00007411static void show_autocmd __ARGS((AutoPat *ap, event_T event));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007412static void au_remove_pat __ARGS((AutoPat *ap));
7413static void au_remove_cmds __ARGS((AutoPat *ap));
7414static void au_cleanup __ARGS((void));
7415static int au_new_group __ARGS((char_u *name));
7416static void au_del_group __ARGS((char_u *name));
Bram Moolenaar754b5602006-02-09 23:53:20 +00007417static event_T event_name2nr __ARGS((char_u *start, char_u **end));
7418static char_u *event_nr2name __ARGS((event_T event));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007419static char_u *find_end_event __ARGS((char_u *arg, int have_group));
Bram Moolenaar754b5602006-02-09 23:53:20 +00007420static int event_ignored __ARGS((event_T event));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007421static int au_get_grouparg __ARGS((char_u **argp));
Bram Moolenaar754b5602006-02-09 23:53:20 +00007422static 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 +00007423static char_u *getnextac __ARGS((int c, void *cookie, int indent));
Bram Moolenaar754b5602006-02-09 23:53:20 +00007424static 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 +00007425static void auto_next_pat __ARGS((AutoPatCmd *apc, int stop_at_last));
7426
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007427
Bram Moolenaar754b5602006-02-09 23:53:20 +00007428static event_T last_event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007429static int last_group;
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007430static int autocmd_blocked = 0; /* block all autocmds */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007431
7432/*
7433 * Show the autocommands for one AutoPat.
7434 */
7435 static void
7436show_autocmd(ap, event)
7437 AutoPat *ap;
Bram Moolenaar754b5602006-02-09 23:53:20 +00007438 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007439{
7440 AutoCmd *ac;
7441
7442 /* Check for "got_int" (here and at various places below), which is set
7443 * when "q" has been hit for the "--more--" prompt */
7444 if (got_int)
7445 return;
7446 if (ap->pat == NULL) /* pattern has been removed */
7447 return;
7448
7449 msg_putchar('\n');
7450 if (got_int)
7451 return;
7452 if (event != last_event || ap->group != last_group)
7453 {
7454 if (ap->group != AUGROUP_DEFAULT)
7455 {
7456 if (AUGROUP_NAME(ap->group) == NULL)
7457 msg_puts_attr((char_u *)_("--Deleted--"), hl_attr(HLF_E));
7458 else
7459 msg_puts_attr(AUGROUP_NAME(ap->group), hl_attr(HLF_T));
7460 msg_puts((char_u *)" ");
7461 }
7462 msg_puts_attr(event_nr2name(event), hl_attr(HLF_T));
7463 last_event = event;
7464 last_group = ap->group;
7465 msg_putchar('\n');
7466 if (got_int)
7467 return;
7468 }
7469 msg_col = 4;
7470 msg_outtrans(ap->pat);
7471
7472 for (ac = ap->cmds; ac != NULL; ac = ac->next)
7473 {
7474 if (ac->cmd != NULL) /* skip removed commands */
7475 {
7476 if (msg_col >= 14)
7477 msg_putchar('\n');
7478 msg_col = 14;
7479 if (got_int)
7480 return;
7481 msg_outtrans(ac->cmd);
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00007482#ifdef FEAT_EVAL
7483 if (p_verbose > 0)
7484 last_set_msg(ac->scriptID);
7485#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007486 if (got_int)
7487 return;
7488 if (ac->next != NULL)
7489 {
7490 msg_putchar('\n');
7491 if (got_int)
7492 return;
7493 }
7494 }
7495 }
7496}
7497
7498/*
7499 * Mark an autocommand pattern for deletion.
7500 */
7501 static void
7502au_remove_pat(ap)
7503 AutoPat *ap;
7504{
7505 vim_free(ap->pat);
7506 ap->pat = NULL;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007507 ap->buflocal_nr = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007508 au_need_clean = TRUE;
7509}
7510
7511/*
7512 * Mark all commands for a pattern for deletion.
7513 */
7514 static void
7515au_remove_cmds(ap)
7516 AutoPat *ap;
7517{
7518 AutoCmd *ac;
7519
7520 for (ac = ap->cmds; ac != NULL; ac = ac->next)
7521 {
7522 vim_free(ac->cmd);
7523 ac->cmd = NULL;
7524 }
7525 au_need_clean = TRUE;
7526}
7527
7528/*
7529 * Cleanup autocommands and patterns that have been deleted.
7530 * This is only done when not executing autocommands.
7531 */
7532 static void
7533au_cleanup()
7534{
7535 AutoPat *ap, **prev_ap;
7536 AutoCmd *ac, **prev_ac;
Bram Moolenaar754b5602006-02-09 23:53:20 +00007537 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007538
7539 if (autocmd_busy || !au_need_clean)
7540 return;
7541
7542 /* loop over all events */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007543 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
7544 event = (event_T)((int)event + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007545 {
7546 /* loop over all autocommand patterns */
7547 prev_ap = &(first_autopat[(int)event]);
7548 for (ap = *prev_ap; ap != NULL; ap = *prev_ap)
7549 {
7550 /* loop over all commands for this pattern */
7551 prev_ac = &(ap->cmds);
7552 for (ac = *prev_ac; ac != NULL; ac = *prev_ac)
7553 {
7554 /* remove the command if the pattern is to be deleted or when
7555 * the command has been marked for deletion */
7556 if (ap->pat == NULL || ac->cmd == NULL)
7557 {
7558 *prev_ac = ac->next;
7559 vim_free(ac->cmd);
7560 vim_free(ac);
7561 }
7562 else
7563 prev_ac = &(ac->next);
7564 }
7565
7566 /* remove the pattern if it has been marked for deletion */
7567 if (ap->pat == NULL)
7568 {
7569 *prev_ap = ap->next;
Bram Moolenaar748bf032005-02-02 23:04:36 +00007570 vim_free(ap->reg_prog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007571 vim_free(ap);
7572 }
7573 else
7574 prev_ap = &(ap->next);
7575 }
7576 }
7577
7578 au_need_clean = FALSE;
7579}
7580
7581/*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007582 * Called when buffer is freed, to remove/invalidate related buffer-local
7583 * autocmds.
7584 */
7585 void
7586aubuflocal_remove(buf)
7587 buf_T *buf;
7588{
7589 AutoPat *ap;
Bram Moolenaar754b5602006-02-09 23:53:20 +00007590 event_T event;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007591 AutoPatCmd *apc;
7592
7593 /* invalidate currently executing autocommands */
7594 for (apc = active_apc_list; apc; apc = apc->next)
7595 if (buf->b_fnum == apc->arg_bufnr)
7596 apc->arg_bufnr = 0;
7597
7598 /* invalidate buflocals looping through events */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007599 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
7600 event = (event_T)((int)event + 1))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007601 /* loop over all autocommand patterns */
7602 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
7603 if (ap->buflocal_nr == buf->b_fnum)
7604 {
7605 au_remove_pat(ap);
7606 if (p_verbose >= 6)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007607 {
7608 verbose_enter();
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007609 smsg((char_u *)
7610 _("auto-removing autocommand: %s <buffer=%d>"),
7611 event_nr2name(event), buf->b_fnum);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007612 verbose_leave();
7613 }
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007614 }
7615 au_cleanup();
7616}
7617
7618/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007619 * Add an autocmd group name.
7620 * Return it's ID. Returns AUGROUP_ERROR (< 0) for error.
7621 */
7622 static int
7623au_new_group(name)
7624 char_u *name;
7625{
7626 int i;
7627
7628 i = au_find_group(name);
7629 if (i == AUGROUP_ERROR) /* the group doesn't exist yet, add it */
7630 {
7631 /* First try using a free entry. */
7632 for (i = 0; i < augroups.ga_len; ++i)
7633 if (AUGROUP_NAME(i) == NULL)
7634 break;
7635 if (i == augroups.ga_len && ga_grow(&augroups, 1) == FAIL)
7636 return AUGROUP_ERROR;
7637
7638 AUGROUP_NAME(i) = vim_strsave(name);
7639 if (AUGROUP_NAME(i) == NULL)
7640 return AUGROUP_ERROR;
7641 if (i == augroups.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007642 ++augroups.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007643 }
7644
7645 return i;
7646}
7647
7648 static void
7649au_del_group(name)
7650 char_u *name;
7651{
7652 int i;
7653
7654 i = au_find_group(name);
7655 if (i == AUGROUP_ERROR) /* the group doesn't exist */
7656 EMSG2(_("E367: No such group: \"%s\""), name);
7657 else
7658 {
7659 vim_free(AUGROUP_NAME(i));
7660 AUGROUP_NAME(i) = NULL;
7661 }
7662}
7663
7664/*
7665 * Find the ID of an autocmd group name.
7666 * Return it's ID. Returns AUGROUP_ERROR (< 0) for error.
7667 */
7668 static int
7669au_find_group(name)
7670 char_u *name;
7671{
7672 int i;
7673
7674 for (i = 0; i < augroups.ga_len; ++i)
7675 if (AUGROUP_NAME(i) != NULL && STRCMP(AUGROUP_NAME(i), name) == 0)
7676 return i;
7677 return AUGROUP_ERROR;
7678}
7679
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007680/*
7681 * Return TRUE if augroup "name" exists.
7682 */
7683 int
7684au_has_group(name)
7685 char_u *name;
7686{
7687 return au_find_group(name) != AUGROUP_ERROR;
7688}
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007689
Bram Moolenaar071d4272004-06-13 20:20:40 +00007690/*
7691 * ":augroup {name}".
7692 */
7693 void
7694do_augroup(arg, del_group)
7695 char_u *arg;
7696 int del_group;
7697{
7698 int i;
7699
7700 if (del_group)
7701 {
7702 if (*arg == NUL)
7703 EMSG(_(e_argreq));
7704 else
7705 au_del_group(arg);
7706 }
7707 else if (STRICMP(arg, "end") == 0) /* ":aug end": back to group 0 */
7708 current_augroup = AUGROUP_DEFAULT;
7709 else if (*arg) /* ":aug xxx": switch to group xxx */
7710 {
7711 i = au_new_group(arg);
7712 if (i != AUGROUP_ERROR)
7713 current_augroup = i;
7714 }
7715 else /* ":aug": list the group names */
7716 {
7717 msg_start();
7718 for (i = 0; i < augroups.ga_len; ++i)
7719 {
7720 if (AUGROUP_NAME(i) != NULL)
7721 {
7722 msg_puts(AUGROUP_NAME(i));
7723 msg_puts((char_u *)" ");
7724 }
7725 }
7726 msg_clr_eos();
7727 msg_end();
7728 }
7729}
7730
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00007731#if defined(EXITFREE) || defined(PROTO)
7732 void
7733free_all_autocmds()
7734{
7735 for (current_augroup = -1; current_augroup < augroups.ga_len;
7736 ++current_augroup)
7737 do_autocmd((char_u *)"", TRUE);
7738 ga_clear_strings(&augroups);
7739}
7740#endif
7741
Bram Moolenaar071d4272004-06-13 20:20:40 +00007742/*
7743 * Return the event number for event name "start".
7744 * Return NUM_EVENTS if the event name was not found.
7745 * Return a pointer to the next event name in "end".
7746 */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007747 static event_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00007748event_name2nr(start, end)
7749 char_u *start;
7750 char_u **end;
7751{
7752 char_u *p;
7753 int i;
7754 int len;
7755
7756 /* the event name ends with end of line, a blank or a comma */
7757 for (p = start; *p && !vim_iswhite(*p) && *p != ','; ++p)
7758 ;
7759 for (i = 0; event_names[i].name != NULL; ++i)
7760 {
7761 len = (int)STRLEN(event_names[i].name);
7762 if (len == p - start && STRNICMP(event_names[i].name, start, len) == 0)
7763 break;
7764 }
7765 if (*p == ',')
7766 ++p;
7767 *end = p;
7768 if (event_names[i].name == NULL)
7769 return NUM_EVENTS;
7770 return event_names[i].event;
7771}
7772
7773/*
7774 * Return the name for event "event".
7775 */
7776 static char_u *
7777event_nr2name(event)
Bram Moolenaar754b5602006-02-09 23:53:20 +00007778 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007779{
7780 int i;
7781
7782 for (i = 0; event_names[i].name != NULL; ++i)
7783 if (event_names[i].event == event)
7784 return (char_u *)event_names[i].name;
7785 return (char_u *)"Unknown";
7786}
7787
7788/*
7789 * Scan over the events. "*" stands for all events.
7790 */
7791 static char_u *
7792find_end_event(arg, have_group)
7793 char_u *arg;
7794 int have_group; /* TRUE when group name was found */
7795{
7796 char_u *pat;
7797 char_u *p;
7798
7799 if (*arg == '*')
7800 {
7801 if (arg[1] && !vim_iswhite(arg[1]))
7802 {
7803 EMSG2(_("E215: Illegal character after *: %s"), arg);
7804 return NULL;
7805 }
7806 pat = arg + 1;
7807 }
7808 else
7809 {
7810 for (pat = arg; *pat && !vim_iswhite(*pat); pat = p)
7811 {
7812 if ((int)event_name2nr(pat, &p) >= (int)NUM_EVENTS)
7813 {
7814 if (have_group)
7815 EMSG2(_("E216: No such event: %s"), pat);
7816 else
7817 EMSG2(_("E216: No such group or event: %s"), pat);
7818 return NULL;
7819 }
7820 }
7821 }
7822 return pat;
7823}
7824
7825/*
7826 * Return TRUE if "event" is included in 'eventignore'.
7827 */
7828 static int
7829event_ignored(event)
Bram Moolenaar754b5602006-02-09 23:53:20 +00007830 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007831{
7832 char_u *p = p_ei;
7833
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007834 while (*p != NUL)
7835 {
7836 if (STRNICMP(p, "all", 3) == 0 && (p[3] == NUL || p[3] == ','))
7837 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007838 if (event_name2nr(p, &p) == event)
7839 return TRUE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007840 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007841
7842 return FALSE;
7843}
7844
7845/*
7846 * Return OK when the contents of p_ei is valid, FAIL otherwise.
7847 */
7848 int
7849check_ei()
7850{
7851 char_u *p = p_ei;
7852
Bram Moolenaar071d4272004-06-13 20:20:40 +00007853 while (*p)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007854 {
7855 if (STRNICMP(p, "all", 3) == 0 && (p[3] == NUL || p[3] == ','))
7856 {
7857 p += 3;
7858 if (*p == ',')
7859 ++p;
7860 }
7861 else if (event_name2nr(p, &p) == NUM_EVENTS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007862 return FAIL;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007863 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007864
7865 return OK;
7866}
7867
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00007868# if defined(FEAT_SYN_HL) || defined(PROTO)
7869
7870/*
7871 * Add "what" to 'eventignore' to skip loading syntax highlighting for every
7872 * buffer loaded into the window. "what" must start with a comma.
7873 * Returns the old value of 'eventignore' in allocated memory.
7874 */
7875 char_u *
7876au_event_disable(what)
7877 char *what;
7878{
7879 char_u *new_ei;
7880 char_u *save_ei;
7881
7882 save_ei = vim_strsave(p_ei);
7883 if (save_ei != NULL)
7884 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00007885 new_ei = vim_strnsave(p_ei, (int)(STRLEN(p_ei) + STRLEN(what)));
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00007886 if (new_ei != NULL)
7887 {
7888 STRCAT(new_ei, what);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007889 set_string_option_direct((char_u *)"ei", -1, new_ei,
7890 OPT_FREE, SID_NONE);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00007891 vim_free(new_ei);
7892 }
7893 }
7894 return save_ei;
7895}
7896
7897 void
7898au_event_restore(old_ei)
7899 char_u *old_ei;
7900{
7901 if (old_ei != NULL)
7902 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007903 set_string_option_direct((char_u *)"ei", -1, old_ei,
7904 OPT_FREE, SID_NONE);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00007905 vim_free(old_ei);
7906 }
7907}
7908# endif /* FEAT_SYN_HL */
7909
Bram Moolenaar071d4272004-06-13 20:20:40 +00007910/*
7911 * do_autocmd() -- implements the :autocmd command. Can be used in the
7912 * following ways:
7913 *
7914 * :autocmd <event> <pat> <cmd> Add <cmd> to the list of commands that
7915 * will be automatically executed for <event>
7916 * when editing a file matching <pat>, in
7917 * the current group.
7918 * :autocmd <event> <pat> Show the auto-commands associated with
7919 * <event> and <pat>.
7920 * :autocmd <event> Show the auto-commands associated with
7921 * <event>.
7922 * :autocmd Show all auto-commands.
7923 * :autocmd! <event> <pat> <cmd> Remove all auto-commands associated with
7924 * <event> and <pat>, and add the command
7925 * <cmd>, for the current group.
7926 * :autocmd! <event> <pat> Remove all auto-commands associated with
7927 * <event> and <pat> for the current group.
7928 * :autocmd! <event> Remove all auto-commands associated with
7929 * <event> for the current group.
7930 * :autocmd! Remove ALL auto-commands for the current
7931 * group.
7932 *
7933 * Multiple events and patterns may be given separated by commas. Here are
7934 * some examples:
7935 * :autocmd bufread,bufenter *.c,*.h set tw=0 smartindent noic
7936 * :autocmd bufleave * set tw=79 nosmartindent ic infercase
7937 *
7938 * :autocmd * *.c show all autocommands for *.c files.
Bram Moolenaard35f9712005-12-18 22:02:33 +00007939 *
7940 * Mostly a {group} argument can optionally appear before <event>.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007941 */
7942 void
7943do_autocmd(arg, forceit)
7944 char_u *arg;
7945 int forceit;
7946{
7947 char_u *pat;
7948 char_u *envpat = NULL;
7949 char_u *cmd;
Bram Moolenaar754b5602006-02-09 23:53:20 +00007950 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007951 int need_free = FALSE;
7952 int nested = FALSE;
7953 int group;
7954
7955 /*
7956 * Check for a legal group name. If not, use AUGROUP_ALL.
7957 */
7958 group = au_get_grouparg(&arg);
7959 if (arg == NULL) /* out of memory */
7960 return;
7961
7962 /*
7963 * Scan over the events.
7964 * If we find an illegal name, return here, don't do anything.
7965 */
7966 pat = find_end_event(arg, group != AUGROUP_ALL);
7967 if (pat == NULL)
7968 return;
7969
7970 /*
7971 * Scan over the pattern. Put a NUL at the end.
7972 */
7973 pat = skipwhite(pat);
7974 cmd = pat;
7975 while (*cmd && (!vim_iswhite(*cmd) || cmd[-1] == '\\'))
7976 cmd++;
7977 if (*cmd)
7978 *cmd++ = NUL;
7979
7980 /* Expand environment variables in the pattern. Set 'shellslash', we want
7981 * forward slashes here. */
7982 if (vim_strchr(pat, '$') != NULL || vim_strchr(pat, '~') != NULL)
7983 {
7984#ifdef BACKSLASH_IN_FILENAME
7985 int p_ssl_save = p_ssl;
7986
7987 p_ssl = TRUE;
7988#endif
7989 envpat = expand_env_save(pat);
7990#ifdef BACKSLASH_IN_FILENAME
7991 p_ssl = p_ssl_save;
7992#endif
7993 if (envpat != NULL)
7994 pat = envpat;
7995 }
7996
7997 /*
7998 * Check for "nested" flag.
7999 */
8000 cmd = skipwhite(cmd);
8001 if (*cmd != NUL && STRNCMP(cmd, "nested", 6) == 0 && vim_iswhite(cmd[6]))
8002 {
8003 nested = TRUE;
8004 cmd = skipwhite(cmd + 6);
8005 }
8006
8007 /*
8008 * Find the start of the commands.
8009 * Expand <sfile> in it.
8010 */
8011 if (*cmd != NUL)
8012 {
8013 cmd = expand_sfile(cmd);
8014 if (cmd == NULL) /* some error */
8015 return;
8016 need_free = TRUE;
8017 }
8018
8019 /*
8020 * Print header when showing autocommands.
8021 */
8022 if (!forceit && *cmd == NUL)
8023 {
8024 /* Highlight title */
8025 MSG_PUTS_TITLE(_("\n--- Auto-Commands ---"));
8026 }
8027
8028 /*
8029 * Loop over the events.
8030 */
Bram Moolenaar754b5602006-02-09 23:53:20 +00008031 last_event = (event_T)-1; /* for listing the event name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008032 last_group = AUGROUP_ERROR; /* for listing the group name */
8033 if (*arg == '*' || *arg == NUL)
8034 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00008035 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
8036 event = (event_T)((int)event + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008037 if (do_autocmd_event(event, pat,
8038 nested, cmd, forceit, group) == FAIL)
8039 break;
8040 }
8041 else
8042 {
8043 while (*arg && !vim_iswhite(*arg))
8044 if (do_autocmd_event(event_name2nr(arg, &arg), pat,
8045 nested, cmd, forceit, group) == FAIL)
8046 break;
8047 }
8048
8049 if (need_free)
8050 vim_free(cmd);
8051 vim_free(envpat);
8052}
8053
8054/*
8055 * Find the group ID in a ":autocmd" or ":doautocmd" argument.
8056 * The "argp" argument is advanced to the following argument.
8057 *
8058 * Returns the group ID, AUGROUP_ERROR for error (out of memory).
8059 */
8060 static int
8061au_get_grouparg(argp)
8062 char_u **argp;
8063{
8064 char_u *group_name;
8065 char_u *p;
8066 char_u *arg = *argp;
8067 int group = AUGROUP_ALL;
8068
8069 p = skiptowhite(arg);
8070 if (p > arg)
8071 {
8072 group_name = vim_strnsave(arg, (int)(p - arg));
8073 if (group_name == NULL) /* out of memory */
8074 return AUGROUP_ERROR;
8075 group = au_find_group(group_name);
8076 if (group == AUGROUP_ERROR)
8077 group = AUGROUP_ALL; /* no match, use all groups */
8078 else
8079 *argp = skipwhite(p); /* match, skip over group name */
8080 vim_free(group_name);
8081 }
8082 return group;
8083}
8084
8085/*
8086 * do_autocmd() for one event.
8087 * If *pat == NUL do for all patterns.
8088 * If *cmd == NUL show entries.
8089 * If forceit == TRUE delete entries.
8090 * If group is not AUGROUP_ALL, only use this group.
8091 */
8092 static int
8093do_autocmd_event(event, pat, nested, cmd, forceit, group)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008094 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008095 char_u *pat;
8096 int nested;
8097 char_u *cmd;
8098 int forceit;
8099 int group;
8100{
8101 AutoPat *ap;
8102 AutoPat **prev_ap;
8103 AutoCmd *ac;
8104 AutoCmd **prev_ac;
8105 int brace_level;
8106 char_u *endpat;
8107 int findgroup;
8108 int allgroups;
8109 int patlen;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008110 int is_buflocal;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008111 int buflocal_nr;
8112 char_u buflocal_pat[25]; /* for "<buffer=X>" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008113
8114 if (group == AUGROUP_ALL)
8115 findgroup = current_augroup;
8116 else
8117 findgroup = group;
8118 allgroups = (group == AUGROUP_ALL && !forceit && *cmd == NUL);
8119
8120 /*
8121 * Show or delete all patterns for an event.
8122 */
8123 if (*pat == NUL)
8124 {
8125 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
8126 {
8127 if (forceit) /* delete the AutoPat, if it's in the current group */
8128 {
8129 if (ap->group == findgroup)
8130 au_remove_pat(ap);
8131 }
8132 else if (group == AUGROUP_ALL || ap->group == group)
8133 show_autocmd(ap, event);
8134 }
8135 }
8136
8137 /*
8138 * Loop through all the specified patterns.
8139 */
8140 for ( ; *pat; pat = (*endpat == ',' ? endpat + 1 : endpat))
8141 {
8142 /*
8143 * Find end of the pattern.
8144 * Watch out for a comma in braces, like "*.\{obj,o\}".
8145 */
8146 brace_level = 0;
8147 for (endpat = pat; *endpat && (*endpat != ',' || brace_level
8148 || endpat[-1] == '\\'); ++endpat)
8149 {
8150 if (*endpat == '{')
8151 brace_level++;
8152 else if (*endpat == '}')
8153 brace_level--;
8154 }
8155 if (pat == endpat) /* ignore single comma */
8156 continue;
8157 patlen = (int)(endpat - pat);
8158
8159 /*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008160 * detect special <buflocal[=X]> buffer-local patterns
8161 */
8162 is_buflocal = FALSE;
8163 buflocal_nr = 0;
8164
8165 if (patlen >= 7 && STRNCMP(pat, "<buffer", 7) == 0
8166 && pat[patlen - 1] == '>')
8167 {
8168 /* Error will be printed only for addition. printing and removing
8169 * will proceed silently. */
8170 is_buflocal = TRUE;
8171 if (patlen == 8)
8172 buflocal_nr = curbuf->b_fnum;
8173 else if (patlen > 9 && pat[7] == '=')
8174 {
8175 /* <buffer=abuf> */
8176 if (patlen == 13 && STRNICMP(pat, "<buffer=abuf>", 13))
8177 buflocal_nr = autocmd_bufnr;
8178 /* <buffer=123> */
8179 else if (skipdigits(pat + 8) == pat + patlen - 1)
8180 buflocal_nr = atoi((char *)pat + 8);
8181 }
8182 }
8183
8184 if (is_buflocal)
8185 {
8186 /* normalize pat into standard "<buffer>#N" form */
8187 sprintf((char *)buflocal_pat, "<buffer=%d>", buflocal_nr);
8188 pat = buflocal_pat; /* can modify pat and patlen */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008189 patlen = (int)STRLEN(buflocal_pat); /* but not endpat */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008190 }
8191
8192 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008193 * Find AutoPat entries with this pattern.
8194 */
8195 prev_ap = &first_autopat[(int)event];
8196 while ((ap = *prev_ap) != NULL)
8197 {
8198 if (ap->pat != NULL)
8199 {
8200 /* Accept a pattern when:
8201 * - a group was specified and it's that group, or a group was
8202 * not specified and it's the current group, or a group was
8203 * not specified and we are listing
8204 * - the length of the pattern matches
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008205 * - the pattern matches.
8206 * For <buffer[=X]>, this condition works because we normalize
8207 * all buffer-local patterns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008208 */
8209 if ((allgroups || ap->group == findgroup)
8210 && ap->patlen == patlen
8211 && STRNCMP(pat, ap->pat, patlen) == 0)
8212 {
8213 /*
8214 * Remove existing autocommands.
8215 * If adding any new autocmd's for this AutoPat, don't
8216 * delete the pattern from the autopat list, append to
8217 * this list.
8218 */
8219 if (forceit)
8220 {
8221 if (*cmd != NUL && ap->next == NULL)
8222 {
8223 au_remove_cmds(ap);
8224 break;
8225 }
8226 au_remove_pat(ap);
8227 }
8228
8229 /*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008230 * Show autocmd's for this autopat, or buflocals <buffer=X>
Bram Moolenaar071d4272004-06-13 20:20:40 +00008231 */
8232 else if (*cmd == NUL)
8233 show_autocmd(ap, event);
8234
8235 /*
8236 * Add autocmd to this autopat, if it's the last one.
8237 */
8238 else if (ap->next == NULL)
8239 break;
8240 }
8241 }
8242 prev_ap = &ap->next;
8243 }
8244
8245 /*
8246 * Add a new command.
8247 */
8248 if (*cmd != NUL)
8249 {
8250 /*
8251 * If the pattern we want to add a command to does appear at the
8252 * end of the list (or not is not in the list at all), add the
8253 * pattern at the end of the list.
8254 */
8255 if (ap == NULL)
8256 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008257 /* refuse to add buffer-local ap if buffer number is invalid */
8258 if (is_buflocal && (buflocal_nr == 0
8259 || buflist_findnr(buflocal_nr) == NULL))
8260 {
8261 EMSGN(_("E680: <buffer=%d>: invalid buffer number "),
8262 buflocal_nr);
8263 return FAIL;
8264 }
8265
Bram Moolenaar071d4272004-06-13 20:20:40 +00008266 ap = (AutoPat *)alloc((unsigned)sizeof(AutoPat));
8267 if (ap == NULL)
8268 return FAIL;
8269 ap->pat = vim_strnsave(pat, patlen);
8270 ap->patlen = patlen;
8271 if (ap->pat == NULL)
8272 {
8273 vim_free(ap);
8274 return FAIL;
8275 }
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008276
8277 if (is_buflocal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008278 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008279 ap->buflocal_nr = buflocal_nr;
Bram Moolenaar748bf032005-02-02 23:04:36 +00008280 ap->reg_prog = NULL;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008281 }
8282 else
8283 {
Bram Moolenaar748bf032005-02-02 23:04:36 +00008284 char_u *reg_pat;
8285
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008286 ap->buflocal_nr = 0;
Bram Moolenaar748bf032005-02-02 23:04:36 +00008287 reg_pat = file_pat_to_reg_pat(pat, endpat,
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008288 &ap->allow_dirs, TRUE);
Bram Moolenaar748bf032005-02-02 23:04:36 +00008289 if (reg_pat != NULL)
8290 ap->reg_prog = vim_regcomp(reg_pat, RE_MAGIC);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00008291 vim_free(reg_pat);
Bram Moolenaar748bf032005-02-02 23:04:36 +00008292 if (reg_pat == NULL || ap->reg_prog == NULL)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008293 {
8294 vim_free(ap->pat);
8295 vim_free(ap);
8296 return FAIL;
8297 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008298 }
8299 ap->cmds = NULL;
8300 *prev_ap = ap;
8301 ap->next = NULL;
8302 if (group == AUGROUP_ALL)
8303 ap->group = current_augroup;
8304 else
8305 ap->group = group;
8306 }
8307
8308 /*
8309 * Add the autocmd at the end of the AutoCmd list.
8310 */
8311 prev_ac = &(ap->cmds);
8312 while ((ac = *prev_ac) != NULL)
8313 prev_ac = &ac->next;
8314 ac = (AutoCmd *)alloc((unsigned)sizeof(AutoCmd));
8315 if (ac == NULL)
8316 return FAIL;
8317 ac->cmd = vim_strsave(cmd);
8318#ifdef FEAT_EVAL
8319 ac->scriptID = current_SID;
8320#endif
8321 if (ac->cmd == NULL)
8322 {
8323 vim_free(ac);
8324 return FAIL;
8325 }
8326 ac->next = NULL;
8327 *prev_ac = ac;
8328 ac->nested = nested;
8329 }
8330 }
8331
8332 au_cleanup(); /* may really delete removed patterns/commands now */
8333 return OK;
8334}
8335
8336/*
8337 * Implementation of ":doautocmd [group] event [fname]".
8338 * Return OK for success, FAIL for failure;
8339 */
8340 int
8341do_doautocmd(arg, do_msg)
8342 char_u *arg;
8343 int do_msg; /* give message for no matching autocmds? */
8344{
8345 char_u *fname;
8346 int nothing_done = TRUE;
8347 int group;
8348
8349 /*
8350 * Check for a legal group name. If not, use AUGROUP_ALL.
8351 */
8352 group = au_get_grouparg(&arg);
8353 if (arg == NULL) /* out of memory */
8354 return FAIL;
8355
8356 if (*arg == '*')
8357 {
8358 EMSG(_("E217: Can't execute autocommands for ALL events"));
8359 return FAIL;
8360 }
8361
8362 /*
8363 * Scan over the events.
8364 * If we find an illegal name, return here, don't do anything.
8365 */
8366 fname = find_end_event(arg, group != AUGROUP_ALL);
8367 if (fname == NULL)
8368 return FAIL;
8369
8370 fname = skipwhite(fname);
8371
8372 /*
8373 * Loop over the events.
8374 */
8375 while (*arg && !vim_iswhite(*arg))
8376 if (apply_autocmds_group(event_name2nr(arg, &arg),
8377 fname, NULL, TRUE, group, curbuf, NULL))
8378 nothing_done = FALSE;
8379
8380 if (nothing_done && do_msg)
8381 MSG(_("No matching autocommands"));
8382
8383#ifdef FEAT_EVAL
8384 return aborting() ? FAIL : OK;
8385#else
8386 return OK;
8387#endif
8388}
8389
8390/*
8391 * ":doautoall": execute autocommands for each loaded buffer.
8392 */
8393 void
8394ex_doautoall(eap)
8395 exarg_T *eap;
8396{
8397 int retval;
8398 aco_save_T aco;
8399 buf_T *buf;
8400
8401 /*
8402 * This is a bit tricky: For some commands curwin->w_buffer needs to be
8403 * equal to curbuf, but for some buffers there may not be a window.
8404 * So we change the buffer for the current window for a moment. This
8405 * gives problems when the autocommands make changes to the list of
8406 * buffers or windows...
8407 */
8408 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8409 {
Bram Moolenaar3a847972008-07-08 09:36:58 +00008410 if (buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008411 {
8412 /* find a window for this buffer and save some values */
8413 aucmd_prepbuf(&aco, buf);
8414
8415 /* execute the autocommands for this buffer */
8416 retval = do_doautocmd(eap->arg, FALSE);
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008417
8418 /* Execute the modeline settings, but don't set window-local
8419 * options if we are using the current window for another buffer. */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008420 do_modelines(curwin == aucmd_win ? OPT_NOWIN : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008421
8422 /* restore the current window */
8423 aucmd_restbuf(&aco);
8424
8425 /* stop if there is some error or buffer was deleted */
8426 if (retval == FAIL || !buf_valid(buf))
8427 break;
8428 }
8429 }
8430
8431 check_cursor(); /* just in case lines got deleted */
8432}
8433
8434/*
8435 * Prepare for executing autocommands for (hidden) buffer "buf".
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008436 * Search for a visible window containing the current buffer. If there isn't
8437 * one then use "aucmd_win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00008438 * Set "curbuf" and "curwin" to match "buf".
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00008439 * When FEAT_AUTOCMD is not defined another version is used, see below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008440 */
8441 void
8442aucmd_prepbuf(aco, buf)
8443 aco_save_T *aco; /* structure to save values in */
8444 buf_T *buf; /* new curbuf */
8445{
8446 win_T *win;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008447#ifdef FEAT_WINDOWS
8448 int save_ea;
8449#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008450
8451 /* Find a window that is for the new buffer */
8452 if (buf == curbuf) /* be quick when buf is curbuf */
8453 win = curwin;
8454 else
8455#ifdef FEAT_WINDOWS
8456 for (win = firstwin; win != NULL; win = win->w_next)
8457 if (win->w_buffer == buf)
8458 break;
8459#else
8460 win = NULL;
8461#endif
8462
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008463 /* Allocate "aucmd_win" when needed. If this fails (out of memory) fall
8464 * back to using the current window. */
8465 if (win == NULL && aucmd_win == NULL)
8466 {
8467 win_alloc_aucmd_win();
8468 if (aucmd_win == NULL)
8469 win = curwin;
8470 }
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00008471 if (win == NULL && aucmd_win_used)
8472 /* Strange recursive autocommand, fall back to using the current
8473 * window. Expect a few side effects... */
8474 win = curwin;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008475
8476 aco->save_curwin = curwin;
8477 aco->save_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008478 if (win != NULL)
8479 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008480 /* There is a window for "buf" in the current tab page, make it the
8481 * curwin. This is preferred, it has the least side effects (esp. if
8482 * "buf" is curbuf). */
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00008483 aco->use_aucmd_win = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008484 curwin = win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008485 }
8486 else
8487 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008488 /* There is no window for "buf", use "aucmd_win". To minimize the side
8489 * effects, insert it in a the current tab page.
8490 * Anything related to a window (e.g., setting folds) may have
8491 * unexpected results. */
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00008492 aco->use_aucmd_win = TRUE;
8493 aucmd_win_used = TRUE;
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00008494 aucmd_win->w_buffer = buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008495 ++buf->b_nwindows;
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00008496 win_init_empty(aucmd_win); /* set cursor and topline to safe values */
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00008497 vim_free(aucmd_win->w_localdir);
8498 aucmd_win->w_localdir = NULL;
8499
8500 /* Make sure w_localdir and globaldir are NULL to avoid a chdir() in
8501 * win_enter_ext(). */
8502 aucmd_win->w_localdir = NULL;
8503 aco->globaldir = globaldir;
8504 globaldir = NULL;
8505
Bram Moolenaar071d4272004-06-13 20:20:40 +00008506
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008507#ifdef FEAT_WINDOWS
Bram Moolenaar2bc76e62009-07-01 15:13:56 +00008508 /* Split the current window, put the aucmd_win in the upper half.
8509 * We don't want the BufEnter or WinEnter autocommands. */
8510 block_autocmds();
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008511 make_snapshot(SNAP_AUCMD_IDX);
8512 save_ea = p_ea;
8513 p_ea = FALSE;
8514 (void)win_split_ins(0, WSP_TOP, aucmd_win, 0);
8515 (void)win_comp_pos(); /* recompute window positions */
8516 p_ea = save_ea;
Bram Moolenaar2bc76e62009-07-01 15:13:56 +00008517 unblock_autocmds();
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008518#endif
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00008519 curwin = aucmd_win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008520 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008521 curbuf = buf;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008522 aco->new_curwin = curwin;
8523 aco->new_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008524}
8525
8526/*
8527 * Cleanup after executing autocommands for a (hidden) buffer.
8528 * Restore the window as it was (if possible).
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00008529 * When FEAT_AUTOCMD is not defined another version is used, see below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008530 */
8531 void
8532aucmd_restbuf(aco)
8533 aco_save_T *aco; /* structure holding saved values */
8534{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008535#ifdef FEAT_WINDOWS
8536 int dummy;
8537#endif
8538
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00008539 if (aco->use_aucmd_win)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008540 {
8541 --curbuf->b_nwindows;
8542#ifdef FEAT_WINDOWS
8543 /* Find "aucmd_win", it can't be closed, but it may be in another tab
Bram Moolenaar2bc76e62009-07-01 15:13:56 +00008544 * page. Do not trigger autocommands here. */
8545 block_autocmds();
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008546 if (curwin != aucmd_win)
8547 {
8548 tabpage_T *tp;
8549 win_T *wp;
8550
8551 FOR_ALL_TAB_WINDOWS(tp, wp)
8552 {
8553 if (wp == aucmd_win)
8554 {
8555 if (tp != curtab)
8556 goto_tabpage_tp(tp);
8557 win_goto(aucmd_win);
8558 break;
8559 }
8560 }
8561 }
8562
8563 /* Remove the window and frame from the tree of frames. */
8564 (void)winframe_remove(curwin, &dummy, NULL);
8565 win_remove(curwin, NULL);
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00008566 aucmd_win_used = FALSE;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008567 last_status(FALSE); /* may need to remove last status line */
8568 restore_snapshot(SNAP_AUCMD_IDX, FALSE);
8569 (void)win_comp_pos(); /* recompute window positions */
Bram Moolenaar2bc76e62009-07-01 15:13:56 +00008570 unblock_autocmds();
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008571
8572 if (win_valid(aco->save_curwin))
8573 curwin = aco->save_curwin;
8574 else
8575 /* Hmm, original window disappeared. Just use the first one. */
8576 curwin = firstwin;
8577# ifdef FEAT_EVAL
8578 vars_clear(&aucmd_win->w_vars.dv_hashtab); /* free all w: variables */
8579# endif
8580#else
8581 curwin = aco->save_curwin;
8582#endif
8583 curbuf = curwin->w_buffer;
8584
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00008585 vim_free(globaldir);
8586 globaldir = aco->globaldir;
8587
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008588 /* the buffer contents may have changed */
8589 check_cursor();
8590 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
8591 {
8592 curwin->w_topline = curbuf->b_ml.ml_line_count;
8593#ifdef FEAT_DIFF
8594 curwin->w_topfill = 0;
8595#endif
8596 }
8597#if defined(FEAT_GUI)
8598 /* Hide the scrollbars from the aucmd_win and update. */
8599 gui_mch_enable_scrollbar(&aucmd_win->w_scrollbars[SBAR_LEFT], FALSE);
8600 gui_mch_enable_scrollbar(&aucmd_win->w_scrollbars[SBAR_RIGHT], FALSE);
8601 gui_may_update_scrollbars();
8602#endif
8603 }
8604 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008605 {
8606 /* restore curwin */
8607#ifdef FEAT_WINDOWS
8608 if (win_valid(aco->save_curwin))
8609#endif
8610 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008611 /* Restore the buffer which was previously edited by curwin, if
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00008612 * it was changed, we are still the same window and the buffer is
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008613 * valid. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008614 if (curwin == aco->new_curwin
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008615 && curbuf != aco->new_curbuf
8616 && buf_valid(aco->new_curbuf)
8617 && aco->new_curbuf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008618 {
8619 --curbuf->b_nwindows;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00008620 curbuf = aco->new_curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008621 curwin->w_buffer = curbuf;
8622 ++curbuf->b_nwindows;
8623 }
8624
8625 curwin = aco->save_curwin;
8626 curbuf = curwin->w_buffer;
8627 }
8628 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008629}
8630
8631static int autocmd_nested = FALSE;
8632
8633/*
8634 * Execute autocommands for "event" and file name "fname".
8635 * Return TRUE if some commands were executed.
8636 */
8637 int
8638apply_autocmds(event, fname, fname_io, force, buf)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008639 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008640 char_u *fname; /* NULL or empty means use actual file name */
8641 char_u *fname_io; /* fname to use for <afile> on cmdline */
8642 int force; /* when TRUE, ignore autocmd_busy */
8643 buf_T *buf; /* buffer for <abuf> */
8644{
8645 return apply_autocmds_group(event, fname, fname_io, force,
8646 AUGROUP_ALL, buf, NULL);
8647}
8648
8649/*
8650 * Like apply_autocmds(), but with extra "eap" argument. This takes care of
8651 * setting v:filearg.
8652 */
8653 static int
8654apply_autocmds_exarg(event, fname, fname_io, force, buf, eap)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008655 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008656 char_u *fname;
8657 char_u *fname_io;
8658 int force;
8659 buf_T *buf;
8660 exarg_T *eap;
8661{
8662 return apply_autocmds_group(event, fname, fname_io, force,
8663 AUGROUP_ALL, buf, eap);
8664}
8665
8666/*
8667 * Like apply_autocmds(), but handles the caller's retval. If the script
8668 * processing is being aborted or if retval is FAIL when inside a try
8669 * conditional, no autocommands are executed. If otherwise the autocommands
8670 * cause the script to be aborted, retval is set to FAIL.
8671 */
8672 int
8673apply_autocmds_retval(event, fname, fname_io, force, buf, retval)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008674 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008675 char_u *fname; /* NULL or empty means use actual file name */
8676 char_u *fname_io; /* fname to use for <afile> on cmdline */
8677 int force; /* when TRUE, ignore autocmd_busy */
8678 buf_T *buf; /* buffer for <abuf> */
8679 int *retval; /* pointer to caller's retval */
8680{
8681 int did_cmd;
8682
Bram Moolenaar1e015462005-09-25 22:16:38 +00008683#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008684 if (should_abort(*retval))
8685 return FALSE;
Bram Moolenaar1e015462005-09-25 22:16:38 +00008686#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008687
8688 did_cmd = apply_autocmds_group(event, fname, fname_io, force,
8689 AUGROUP_ALL, buf, NULL);
Bram Moolenaar1e015462005-09-25 22:16:38 +00008690 if (did_cmd
8691#ifdef FEAT_EVAL
8692 && aborting()
8693#endif
8694 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00008695 *retval = FAIL;
8696 return did_cmd;
8697}
8698
Bram Moolenaard35f9712005-12-18 22:02:33 +00008699/*
8700 * Return TRUE when there is a CursorHold autocommand defined.
8701 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008702 int
8703has_cursorhold()
8704{
Bram Moolenaar754b5602006-02-09 23:53:20 +00008705 return (first_autopat[(int)(get_real_state() == NORMAL_BUSY
8706 ? EVENT_CURSORHOLD : EVENT_CURSORHOLDI)] != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008707}
Bram Moolenaard35f9712005-12-18 22:02:33 +00008708
8709/*
8710 * Return TRUE if the CursorHold event can be triggered.
8711 */
8712 int
8713trigger_cursorhold()
8714{
Bram Moolenaar754b5602006-02-09 23:53:20 +00008715 int state;
8716
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00008717 if (!did_cursorhold && has_cursorhold() && !Recording
8718#ifdef FEAT_INS_EXPAND
8719 && !ins_compl_active()
8720#endif
8721 )
Bram Moolenaar754b5602006-02-09 23:53:20 +00008722 {
8723 state = get_real_state();
8724 if (state == NORMAL_BUSY || (state & INSERT) != 0)
8725 return TRUE;
8726 }
8727 return FALSE;
Bram Moolenaard35f9712005-12-18 22:02:33 +00008728}
Bram Moolenaar754b5602006-02-09 23:53:20 +00008729
8730/*
8731 * Return TRUE when there is a CursorMoved autocommand defined.
8732 */
8733 int
8734has_cursormoved()
8735{
8736 return (first_autopat[(int)EVENT_CURSORMOVED] != NULL);
8737}
8738
8739/*
8740 * Return TRUE when there is a CursorMovedI autocommand defined.
8741 */
8742 int
8743has_cursormovedI()
8744{
8745 return (first_autopat[(int)EVENT_CURSORMOVEDI] != NULL);
8746}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008747
8748 static int
8749apply_autocmds_group(event, fname, fname_io, force, group, buf, eap)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008750 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008751 char_u *fname; /* NULL or empty means use actual file name */
8752 char_u *fname_io; /* fname to use for <afile> on cmdline, NULL means
8753 use fname */
8754 int force; /* when TRUE, ignore autocmd_busy */
8755 int group; /* group ID, or AUGROUP_ALL */
8756 buf_T *buf; /* buffer for <abuf> */
8757 exarg_T *eap; /* command arguments */
8758{
8759 char_u *sfname = NULL; /* short file name */
8760 char_u *tail;
8761 int save_changed;
8762 buf_T *old_curbuf;
8763 int retval = FALSE;
8764 char_u *save_sourcing_name;
8765 linenr_T save_sourcing_lnum;
8766 char_u *save_autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00008767 int save_autocmd_fname_full;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008768 int save_autocmd_bufnr;
8769 char_u *save_autocmd_match;
8770 int save_autocmd_busy;
8771 int save_autocmd_nested;
8772 static int nesting = 0;
8773 AutoPatCmd patcmd;
8774 AutoPat *ap;
8775#ifdef FEAT_EVAL
8776 scid_T save_current_SID;
8777 void *save_funccalp;
8778 char_u *save_cmdarg;
8779 long save_cmdbang;
8780#endif
8781 static int filechangeshell_busy = FALSE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00008782#ifdef FEAT_PROFILE
8783 proftime_T wait_time;
8784#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008785
8786 /*
8787 * Quickly return if there are no autocommands for this event or
8788 * autocommands are blocked.
8789 */
Bram Moolenaar78ab3312007-09-29 12:16:41 +00008790 if (first_autopat[(int)event] == NULL || autocmd_blocked > 0)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008791 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008792
8793 /*
8794 * When autocommands are busy, new autocommands are only executed when
8795 * explicitly enabled with the "nested" flag.
8796 */
8797 if (autocmd_busy && !(force || autocmd_nested))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008798 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008799
8800#ifdef FEAT_EVAL
8801 /*
Bram Moolenaar7263a772007-05-10 17:35:54 +00008802 * Quickly return when immediately aborting on error, or when an interrupt
Bram Moolenaar071d4272004-06-13 20:20:40 +00008803 * occurred or an exception was thrown but not caught.
8804 */
8805 if (aborting())
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008806 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008807#endif
8808
8809 /*
8810 * FileChangedShell never nests, because it can create an endless loop.
8811 */
Bram Moolenaar56718732006-03-15 22:53:57 +00008812 if (filechangeshell_busy && (event == EVENT_FILECHANGEDSHELL
8813 || event == EVENT_FILECHANGEDSHELLPOST))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008814 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008815
8816 /*
8817 * Ignore events in 'eventignore'.
8818 */
8819 if (event_ignored(event))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008820 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008821
8822 /*
8823 * Allow nesting of autocommands, but restrict the depth, because it's
8824 * possible to create an endless loop.
8825 */
8826 if (nesting == 10)
8827 {
8828 EMSG(_("E218: autocommand nesting too deep"));
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008829 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008830 }
8831
8832 /*
8833 * Check if these autocommands are disabled. Used when doing ":all" or
8834 * ":ball".
8835 */
8836 if ( (autocmd_no_enter
8837 && (event == EVENT_WINENTER || event == EVENT_BUFENTER))
8838 || (autocmd_no_leave
8839 && (event == EVENT_WINLEAVE || event == EVENT_BUFLEAVE)))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008840 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008841
8842 /*
8843 * Save the autocmd_* variables and info about the current buffer.
8844 */
8845 save_autocmd_fname = autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00008846 save_autocmd_fname_full = autocmd_fname_full;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008847 save_autocmd_bufnr = autocmd_bufnr;
8848 save_autocmd_match = autocmd_match;
8849 save_autocmd_busy = autocmd_busy;
8850 save_autocmd_nested = autocmd_nested;
8851 save_changed = curbuf->b_changed;
8852 old_curbuf = curbuf;
8853
8854 /*
8855 * Set the file name to be used for <afile>.
Bram Moolenaara0174af2008-01-02 20:08:25 +00008856 * Make a copy to avoid that changing a buffer name or directory makes it
8857 * invalid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008858 */
8859 if (fname_io == NULL)
8860 {
8861 if (fname != NULL && *fname != NUL)
8862 autocmd_fname = fname;
8863 else if (buf != NULL)
Bram Moolenaarf6dad432008-09-18 19:29:58 +00008864 autocmd_fname = buf->b_ffname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008865 else
8866 autocmd_fname = NULL;
8867 }
8868 else
8869 autocmd_fname = fname_io;
Bram Moolenaara0174af2008-01-02 20:08:25 +00008870 if (autocmd_fname != NULL)
Bram Moolenaarf6dad432008-09-18 19:29:58 +00008871 autocmd_fname = vim_strsave(autocmd_fname);
8872 autocmd_fname_full = FALSE; /* call FullName_save() later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008873
8874 /*
8875 * Set the buffer number to be used for <abuf>.
8876 */
8877 if (buf == NULL)
8878 autocmd_bufnr = 0;
8879 else
8880 autocmd_bufnr = buf->b_fnum;
8881
8882 /*
8883 * When the file name is NULL or empty, use the file name of buffer "buf".
8884 * Always use the full path of the file name to match with, in case
8885 * "allow_dirs" is set.
8886 */
8887 if (fname == NULL || *fname == NUL)
8888 {
8889 if (buf == NULL)
8890 fname = NULL;
8891 else
8892 {
8893#ifdef FEAT_SYN_HL
8894 if (event == EVENT_SYNTAX)
8895 fname = buf->b_p_syn;
8896 else
8897#endif
8898 if (event == EVENT_FILETYPE)
8899 fname = buf->b_p_ft;
8900 else
8901 {
8902 if (buf->b_sfname != NULL)
8903 sfname = vim_strsave(buf->b_sfname);
8904 fname = buf->b_ffname;
8905 }
8906 }
8907 if (fname == NULL)
8908 fname = (char_u *)"";
8909 fname = vim_strsave(fname); /* make a copy, so we can change it */
8910 }
8911 else
8912 {
8913 sfname = vim_strsave(fname);
Bram Moolenaar5135d462009-04-29 16:03:38 +00008914 /* Don't try expanding FileType, Syntax, FuncUndefined, WindowID or
8915 * QuickFixCmd* */
Bram Moolenaar7c626922005-02-07 22:01:03 +00008916 if (event == EVENT_FILETYPE
8917 || event == EVENT_SYNTAX
Bram Moolenaar5135d462009-04-29 16:03:38 +00008918 || event == EVENT_FUNCUNDEFINED
Bram Moolenaar7c626922005-02-07 22:01:03 +00008919 || event == EVENT_REMOTEREPLY
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00008920 || event == EVENT_SPELLFILEMISSING
Bram Moolenaar7c626922005-02-07 22:01:03 +00008921 || event == EVENT_QUICKFIXCMDPRE
8922 || event == EVENT_QUICKFIXCMDPOST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008923 fname = vim_strsave(fname);
8924 else
8925 fname = FullName_save(fname, FALSE);
8926 }
8927 if (fname == NULL) /* out of memory */
8928 {
8929 vim_free(sfname);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008930 retval = FALSE;
8931 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008932 }
8933
8934#ifdef BACKSLASH_IN_FILENAME
8935 /*
8936 * Replace all backslashes with forward slashes. This makes the
8937 * autocommand patterns portable between Unix and MS-DOS.
8938 */
8939 if (sfname != NULL)
8940 forward_slash(sfname);
8941 forward_slash(fname);
8942#endif
8943
8944#ifdef VMS
8945 /* remove version for correct match */
8946 if (sfname != NULL)
8947 vms_remove_version(sfname);
8948 vms_remove_version(fname);
8949#endif
8950
8951 /*
8952 * Set the name to be used for <amatch>.
8953 */
8954 autocmd_match = fname;
8955
8956
8957 /* Don't redraw while doing auto commands. */
8958 ++RedrawingDisabled;
8959 save_sourcing_name = sourcing_name;
8960 sourcing_name = NULL; /* don't free this one */
8961 save_sourcing_lnum = sourcing_lnum;
8962 sourcing_lnum = 0; /* no line number here */
8963
8964#ifdef FEAT_EVAL
8965 save_current_SID = current_SID;
8966
Bram Moolenaar05159a02005-02-26 23:04:13 +00008967# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +00008968 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00008969 prof_child_enter(&wait_time); /* doesn't count for the caller itself */
8970# endif
8971
Bram Moolenaar071d4272004-06-13 20:20:40 +00008972 /* Don't use local function variables, if called from a function */
8973 save_funccalp = save_funccal();
8974#endif
8975
8976 /*
8977 * When starting to execute autocommands, save the search patterns.
8978 */
8979 if (!autocmd_busy)
8980 {
8981 save_search_patterns();
8982 saveRedobuff();
8983 did_filetype = keep_filetype;
8984 }
8985
8986 /*
8987 * Note that we are applying autocmds. Some commands need to know.
8988 */
8989 autocmd_busy = TRUE;
8990 filechangeshell_busy = (event == EVENT_FILECHANGEDSHELL);
8991 ++nesting; /* see matching decrement below */
8992
8993 /* Remember that FileType was triggered. Used for did_filetype(). */
8994 if (event == EVENT_FILETYPE)
8995 did_filetype = TRUE;
8996
8997 tail = gettail(fname);
8998
8999 /* Find first autocommand that matches */
9000 patcmd.curpat = first_autopat[(int)event];
9001 patcmd.nextcmd = NULL;
9002 patcmd.group = group;
9003 patcmd.fname = fname;
9004 patcmd.sfname = sfname;
9005 patcmd.tail = tail;
9006 patcmd.event = event;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009007 patcmd.arg_bufnr = autocmd_bufnr;
9008 patcmd.next = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009009 auto_next_pat(&patcmd, FALSE);
9010
9011 /* found one, start executing the autocommands */
9012 if (patcmd.curpat != NULL)
9013 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009014 /* add to active_apc_list */
9015 patcmd.next = active_apc_list;
9016 active_apc_list = &patcmd;
9017
Bram Moolenaar071d4272004-06-13 20:20:40 +00009018#ifdef FEAT_EVAL
9019 /* set v:cmdarg (only when there is a matching pattern) */
9020 save_cmdbang = get_vim_var_nr(VV_CMDBANG);
9021 if (eap != NULL)
9022 {
9023 save_cmdarg = set_cmdarg(eap, NULL);
9024 set_vim_var_nr(VV_CMDBANG, (long)eap->forceit);
9025 }
9026 else
9027 save_cmdarg = NULL; /* avoid gcc warning */
9028#endif
9029 retval = TRUE;
9030 /* mark the last pattern, to avoid an endless loop when more patterns
9031 * are added when executing autocommands */
9032 for (ap = patcmd.curpat; ap->next != NULL; ap = ap->next)
9033 ap->last = FALSE;
9034 ap->last = TRUE;
9035 check_lnums(TRUE); /* make sure cursor and topline are valid */
9036 do_cmdline(NULL, getnextac, (void *)&patcmd,
9037 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
9038#ifdef FEAT_EVAL
9039 if (eap != NULL)
9040 {
9041 (void)set_cmdarg(NULL, save_cmdarg);
9042 set_vim_var_nr(VV_CMDBANG, save_cmdbang);
9043 }
9044#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009045 /* delete from active_apc_list */
9046 if (active_apc_list == &patcmd) /* just in case */
9047 active_apc_list = patcmd.next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009048 }
9049
9050 --RedrawingDisabled;
9051 autocmd_busy = save_autocmd_busy;
9052 filechangeshell_busy = FALSE;
9053 autocmd_nested = save_autocmd_nested;
9054 vim_free(sourcing_name);
9055 sourcing_name = save_sourcing_name;
9056 sourcing_lnum = save_sourcing_lnum;
Bram Moolenaara0174af2008-01-02 20:08:25 +00009057 vim_free(autocmd_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009058 autocmd_fname = save_autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009059 autocmd_fname_full = save_autocmd_fname_full;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009060 autocmd_bufnr = save_autocmd_bufnr;
9061 autocmd_match = save_autocmd_match;
9062#ifdef FEAT_EVAL
9063 current_SID = save_current_SID;
9064 restore_funccal(save_funccalp);
Bram Moolenaar05159a02005-02-26 23:04:13 +00009065# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +00009066 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00009067 prof_child_exit(&wait_time);
9068# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009069#endif
9070 vim_free(fname);
9071 vim_free(sfname);
9072 --nesting; /* see matching increment above */
9073
9074 /*
9075 * When stopping to execute autocommands, restore the search patterns and
9076 * the redo buffer.
9077 */
9078 if (!autocmd_busy)
9079 {
9080 restore_search_patterns();
9081 restoreRedobuff();
9082 did_filetype = FALSE;
9083 }
9084
9085 /*
9086 * Some events don't set or reset the Changed flag.
9087 * Check if still in the same buffer!
9088 */
9089 if (curbuf == old_curbuf
9090 && (event == EVENT_BUFREADPOST
9091 || event == EVENT_BUFWRITEPOST
9092 || event == EVENT_FILEAPPENDPOST
9093 || event == EVENT_VIMLEAVE
9094 || event == EVENT_VIMLEAVEPRE))
9095 {
9096#ifdef FEAT_TITLE
9097 if (curbuf->b_changed != save_changed)
9098 need_maketitle = TRUE;
9099#endif
9100 curbuf->b_changed = save_changed;
9101 }
9102
9103 au_cleanup(); /* may really delete removed patterns/commands now */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009104
9105BYPASS_AU:
9106 /* When wiping out a buffer make sure all its buffer-local autocommands
9107 * are deleted. */
9108 if (event == EVENT_BUFWIPEOUT && buf != NULL)
9109 aubuflocal_remove(buf);
9110
Bram Moolenaar071d4272004-06-13 20:20:40 +00009111 return retval;
9112}
9113
Bram Moolenaar78ab3312007-09-29 12:16:41 +00009114# ifdef FEAT_EVAL
9115static char_u *old_termresponse = NULL;
9116# endif
9117
9118/*
9119 * Block triggering autocommands until unblock_autocmd() is called.
9120 * Can be used recursively, so long as it's symmetric.
9121 */
9122 void
9123block_autocmds()
9124{
9125# ifdef FEAT_EVAL
9126 /* Remember the value of v:termresponse. */
9127 if (autocmd_blocked == 0)
9128 old_termresponse = get_vim_var_str(VV_TERMRESPONSE);
9129# endif
9130 ++autocmd_blocked;
9131}
9132
9133 void
9134unblock_autocmds()
9135{
9136 --autocmd_blocked;
9137
9138# ifdef FEAT_EVAL
9139 /* When v:termresponse was set while autocommands were blocked, trigger
9140 * the autocommands now. Esp. useful when executing a shell command
9141 * during startup (vimdiff). */
9142 if (autocmd_blocked == 0
9143 && get_vim_var_str(VV_TERMRESPONSE) != old_termresponse)
9144 apply_autocmds(EVENT_TERMRESPONSE, NULL, NULL, FALSE, curbuf);
9145# endif
9146}
9147
Bram Moolenaar071d4272004-06-13 20:20:40 +00009148/*
9149 * Find next autocommand pattern that matches.
9150 */
9151 static void
9152auto_next_pat(apc, stop_at_last)
9153 AutoPatCmd *apc;
9154 int stop_at_last; /* stop when 'last' flag is set */
9155{
9156 AutoPat *ap;
9157 AutoCmd *cp;
9158 char_u *name;
9159 char *s;
9160
9161 vim_free(sourcing_name);
9162 sourcing_name = NULL;
9163
9164 for (ap = apc->curpat; ap != NULL && !got_int; ap = ap->next)
9165 {
9166 apc->curpat = NULL;
9167
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009168 /* Only use a pattern when it has not been removed, has commands and
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009169 * the group matches. For buffer-local autocommands only check the
9170 * buffer number. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009171 if (ap->pat != NULL && ap->cmds != NULL
9172 && (apc->group == AUGROUP_ALL || apc->group == ap->group))
9173 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009174 /* execution-condition */
9175 if (ap->buflocal_nr == 0
Bram Moolenaar748bf032005-02-02 23:04:36 +00009176 ? (match_file_pat(NULL, ap->reg_prog, apc->fname,
9177 apc->sfname, apc->tail, ap->allow_dirs))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009178 : ap->buflocal_nr == apc->arg_bufnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009179 {
9180 name = event_nr2name(apc->event);
9181 s = _("%s Auto commands for \"%s\"");
9182 sourcing_name = alloc((unsigned)(STRLEN(s)
9183 + STRLEN(name) + ap->patlen + 1));
9184 if (sourcing_name != NULL)
9185 {
9186 sprintf((char *)sourcing_name, s,
9187 (char *)name, (char *)ap->pat);
9188 if (p_verbose >= 8)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00009189 {
9190 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00009191 smsg((char_u *)_("Executing %s"), sourcing_name);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00009192 verbose_leave();
9193 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009194 }
9195
9196 apc->curpat = ap;
9197 apc->nextcmd = ap->cmds;
9198 /* mark last command */
9199 for (cp = ap->cmds; cp->next != NULL; cp = cp->next)
9200 cp->last = FALSE;
9201 cp->last = TRUE;
9202 }
9203 line_breakcheck();
9204 if (apc->curpat != NULL) /* found a match */
9205 break;
9206 }
9207 if (stop_at_last && ap->last)
9208 break;
9209 }
9210}
9211
9212/*
9213 * Get next autocommand command.
9214 * Called by do_cmdline() to get the next line for ":if".
9215 * Returns allocated string, or NULL for end of autocommands.
9216 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009217 static char_u *
9218getnextac(c, cookie, indent)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009219 int c UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009220 void *cookie;
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009221 int indent UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009222{
9223 AutoPatCmd *acp = (AutoPatCmd *)cookie;
9224 char_u *retval;
9225 AutoCmd *ac;
9226
9227 /* Can be called again after returning the last line. */
9228 if (acp->curpat == NULL)
9229 return NULL;
9230
9231 /* repeat until we find an autocommand to execute */
9232 for (;;)
9233 {
9234 /* skip removed commands */
9235 while (acp->nextcmd != NULL && acp->nextcmd->cmd == NULL)
9236 if (acp->nextcmd->last)
9237 acp->nextcmd = NULL;
9238 else
9239 acp->nextcmd = acp->nextcmd->next;
9240
9241 if (acp->nextcmd != NULL)
9242 break;
9243
9244 /* at end of commands, find next pattern that matches */
9245 if (acp->curpat->last)
9246 acp->curpat = NULL;
9247 else
9248 acp->curpat = acp->curpat->next;
9249 if (acp->curpat != NULL)
9250 auto_next_pat(acp, TRUE);
9251 if (acp->curpat == NULL)
9252 return NULL;
9253 }
9254
9255 ac = acp->nextcmd;
9256
9257 if (p_verbose >= 9)
9258 {
Bram Moolenaara04f10b2005-05-31 22:09:46 +00009259 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00009260 smsg((char_u *)_("autocommand %s"), ac->cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009261 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaara04f10b2005-05-31 22:09:46 +00009262 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009263 }
9264 retval = vim_strsave(ac->cmd);
9265 autocmd_nested = ac->nested;
9266#ifdef FEAT_EVAL
9267 current_SID = ac->scriptID;
9268#endif
9269 if (ac->last)
9270 acp->nextcmd = NULL;
9271 else
9272 acp->nextcmd = ac->next;
9273 return retval;
9274}
9275
9276/*
9277 * Return TRUE if there is a matching autocommand for "fname".
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009278 * To account for buffer-local autocommands, function needs to know
9279 * in which buffer the file will be opened.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009280 */
9281 int
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009282has_autocmd(event, sfname, buf)
Bram Moolenaar754b5602006-02-09 23:53:20 +00009283 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009284 char_u *sfname;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009285 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009286{
9287 AutoPat *ap;
9288 char_u *fname;
9289 char_u *tail = gettail(sfname);
9290 int retval = FALSE;
9291
9292 fname = FullName_save(sfname, FALSE);
9293 if (fname == NULL)
9294 return FALSE;
9295
9296#ifdef BACKSLASH_IN_FILENAME
9297 /*
9298 * Replace all backslashes with forward slashes. This makes the
9299 * autocommand patterns portable between Unix and MS-DOS.
9300 */
9301 sfname = vim_strsave(sfname);
9302 if (sfname != NULL)
9303 forward_slash(sfname);
9304 forward_slash(fname);
9305#endif
9306
9307 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
9308 if (ap->pat != NULL && ap->cmds != NULL
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00009309 && (ap->buflocal_nr == 0
Bram Moolenaar748bf032005-02-02 23:04:36 +00009310 ? match_file_pat(NULL, ap->reg_prog,
9311 fname, sfname, tail, ap->allow_dirs)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00009312 : buf != NULL && ap->buflocal_nr == buf->b_fnum
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009313 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009314 {
9315 retval = TRUE;
9316 break;
9317 }
9318
9319 vim_free(fname);
9320#ifdef BACKSLASH_IN_FILENAME
9321 vim_free(sfname);
9322#endif
9323
9324 return retval;
9325}
9326
9327#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9328/*
9329 * Function given to ExpandGeneric() to obtain the list of autocommand group
9330 * names.
9331 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009332 char_u *
9333get_augroup_name(xp, idx)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009334 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009335 int idx;
9336{
9337 if (idx == augroups.ga_len) /* add "END" add the end */
9338 return (char_u *)"END";
9339 if (idx >= augroups.ga_len) /* end of list */
9340 return NULL;
9341 if (AUGROUP_NAME(idx) == NULL) /* skip deleted entries */
9342 return (char_u *)"";
9343 return AUGROUP_NAME(idx); /* return a name */
9344}
9345
9346static int include_groups = FALSE;
9347
9348 char_u *
9349set_context_in_autocmd(xp, arg, doautocmd)
9350 expand_T *xp;
9351 char_u *arg;
Bram Moolenaard812df62008-11-09 12:46:09 +00009352 int doautocmd; /* TRUE for :doauto*, FALSE for :autocmd */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009353{
9354 char_u *p;
9355 int group;
9356
9357 /* check for a group name, skip it if present */
9358 include_groups = FALSE;
9359 p = arg;
9360 group = au_get_grouparg(&arg);
9361 if (group == AUGROUP_ERROR)
9362 return NULL;
9363 /* If there only is a group name that's what we expand. */
9364 if (*arg == NUL && group != AUGROUP_ALL && !vim_iswhite(arg[-1]))
9365 {
9366 arg = p;
9367 group = AUGROUP_ALL;
9368 }
9369
9370 /* skip over event name */
9371 for (p = arg; *p != NUL && !vim_iswhite(*p); ++p)
9372 if (*p == ',')
9373 arg = p + 1;
9374 if (*p == NUL)
9375 {
9376 if (group == AUGROUP_ALL)
9377 include_groups = TRUE;
9378 xp->xp_context = EXPAND_EVENTS; /* expand event name */
9379 xp->xp_pattern = arg;
9380 return NULL;
9381 }
9382
9383 /* skip over pattern */
9384 arg = skipwhite(p);
9385 while (*arg && (!vim_iswhite(*arg) || arg[-1] == '\\'))
9386 arg++;
9387 if (*arg)
9388 return arg; /* expand (next) command */
9389
9390 if (doautocmd)
9391 xp->xp_context = EXPAND_FILES; /* expand file names */
9392 else
9393 xp->xp_context = EXPAND_NOTHING; /* pattern is not expanded */
9394 return NULL;
9395}
9396
9397/*
9398 * Function given to ExpandGeneric() to obtain the list of event names.
9399 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009400 char_u *
9401get_event_name(xp, idx)
Bram Moolenaaraf0167f2009-05-16 15:31:32 +00009402 expand_T *xp UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009403 int idx;
9404{
9405 if (idx < augroups.ga_len) /* First list group names, if wanted */
9406 {
9407 if (!include_groups || AUGROUP_NAME(idx) == NULL)
9408 return (char_u *)""; /* skip deleted entries */
9409 return AUGROUP_NAME(idx); /* return a name */
9410 }
9411 return (char_u *)event_names[idx - augroups.ga_len].name;
9412}
9413
9414#endif /* FEAT_CMDL_COMPL */
9415
9416/*
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009417 * Return TRUE if autocmd is supported.
9418 */
9419 int
9420autocmd_supported(name)
9421 char_u *name;
9422{
9423 char_u *p;
9424
9425 return (event_name2nr(name, &p) != NUM_EVENTS);
9426}
9427
9428/*
Bram Moolenaar195d6352005-12-19 22:08:24 +00009429 * Return TRUE if an autocommand is defined for a group, event and
9430 * pattern: The group can be omitted to accept any group. "event" and "pattern"
9431 * can be NULL to accept any event and pattern. "pattern" can be NULL to accept
9432 * any pattern. Buffer-local patterns <buffer> or <buffer=N> are accepted.
9433 * Used for:
9434 * exists("#Group") or
9435 * exists("#Group#Event") or
9436 * exists("#Group#Event#pat") or
9437 * exists("#Event") or
9438 * exists("#Event#pat")
Bram Moolenaar071d4272004-06-13 20:20:40 +00009439 */
9440 int
Bram Moolenaar195d6352005-12-19 22:08:24 +00009441au_exists(arg)
9442 char_u *arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009443{
Bram Moolenaar195d6352005-12-19 22:08:24 +00009444 char_u *arg_save;
9445 char_u *pattern = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009446 char_u *event_name;
9447 char_u *p;
Bram Moolenaar754b5602006-02-09 23:53:20 +00009448 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009449 AutoPat *ap;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009450 buf_T *buflocal_buf = NULL;
Bram Moolenaar195d6352005-12-19 22:08:24 +00009451 int group;
9452 int retval = FALSE;
9453
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009454 /* Make a copy so that we can change the '#' chars to a NUL. */
Bram Moolenaar195d6352005-12-19 22:08:24 +00009455 arg_save = vim_strsave(arg);
9456 if (arg_save == NULL)
9457 return FALSE;
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009458 p = vim_strchr(arg_save, '#');
Bram Moolenaar195d6352005-12-19 22:08:24 +00009459 if (p != NULL)
9460 *p++ = NUL;
9461
9462 /* First, look for an autocmd group name */
9463 group = au_find_group(arg_save);
9464 if (group == AUGROUP_ERROR)
9465 {
9466 /* Didn't match a group name, assume the first argument is an event. */
9467 group = AUGROUP_ALL;
9468 event_name = arg_save;
9469 }
9470 else
9471 {
9472 if (p == NULL)
9473 {
9474 /* "Group": group name is present and it's recognized */
9475 retval = TRUE;
9476 goto theend;
9477 }
9478
9479 /* Must be "Group#Event" or "Group#Event#pat". */
9480 event_name = p;
9481 p = vim_strchr(event_name, '#');
9482 if (p != NULL)
9483 *p++ = NUL; /* "Group#Event#pat" */
9484 }
9485
9486 pattern = p; /* "pattern" is NULL when there is no pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009487
9488 /* find the index (enum) for the event name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009489 event = event_name2nr(event_name, &p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009490
9491 /* return FALSE if the event name is not recognized */
Bram Moolenaar195d6352005-12-19 22:08:24 +00009492 if (event == NUM_EVENTS)
9493 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009494
9495 /* Find the first autocommand for this event.
9496 * If there isn't any, return FALSE;
9497 * If there is one and no pattern given, return TRUE; */
9498 ap = first_autopat[(int)event];
9499 if (ap == NULL)
Bram Moolenaar195d6352005-12-19 22:08:24 +00009500 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009501 if (pattern == NULL)
Bram Moolenaar195d6352005-12-19 22:08:24 +00009502 {
9503 retval = TRUE;
9504 goto theend;
9505 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009506
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009507 /* if pattern is "<buffer>", special handling is needed which uses curbuf */
9508 /* for pattern "<buffer=N>, fnamecmp() will work fine */
9509 if (STRICMP(pattern, "<buffer>") == 0)
9510 buflocal_buf = curbuf;
9511
Bram Moolenaar071d4272004-06-13 20:20:40 +00009512 /* Check if there is an autocommand with the given pattern. */
9513 for ( ; ap != NULL; ap = ap->next)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009514 /* only use a pattern when it has not been removed and has commands. */
9515 /* For buffer-local autocommands, fnamecmp() works fine. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009516 if (ap->pat != NULL && ap->cmds != NULL
Bram Moolenaar195d6352005-12-19 22:08:24 +00009517 && (group == AUGROUP_ALL || ap->group == group)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009518 && (buflocal_buf == NULL
9519 ? fnamecmp(ap->pat, pattern) == 0
9520 : ap->buflocal_nr == buflocal_buf->b_fnum))
Bram Moolenaar195d6352005-12-19 22:08:24 +00009521 {
9522 retval = TRUE;
9523 break;
9524 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009525
Bram Moolenaar195d6352005-12-19 22:08:24 +00009526theend:
9527 vim_free(arg_save);
9528 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009529}
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009530
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009531#else /* FEAT_AUTOCMD */
9532
9533/*
9534 * Prepare for executing commands for (hidden) buffer "buf".
9535 * This is the non-autocommand version, it simply saves "curbuf" and sets
9536 * "curbuf" and "curwin" to match "buf".
9537 */
9538 void
9539aucmd_prepbuf(aco, buf)
9540 aco_save_T *aco; /* structure to save values in */
9541 buf_T *buf; /* new curbuf */
9542{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009543 aco->save_curbuf = curbuf;
9544 --curbuf->b_nwindows;
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009545 curbuf = buf;
9546 curwin->w_buffer = buf;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009547 ++curbuf->b_nwindows;
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009548}
9549
9550/*
9551 * Restore after executing commands for a (hidden) buffer.
9552 * This is the non-autocommand version.
9553 */
9554 void
9555aucmd_restbuf(aco)
9556 aco_save_T *aco; /* structure holding saved values */
9557{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009558 --curbuf->b_nwindows;
9559 curbuf = aco->save_curbuf;
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009560 curwin->w_buffer = curbuf;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009561 ++curbuf->b_nwindows;
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009562}
9563
Bram Moolenaar071d4272004-06-13 20:20:40 +00009564#endif /* FEAT_AUTOCMD */
9565
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009566
Bram Moolenaar071d4272004-06-13 20:20:40 +00009567#if defined(FEAT_AUTOCMD) || defined(FEAT_WILDIGN) || defined(PROTO)
9568/*
Bram Moolenaar748bf032005-02-02 23:04:36 +00009569 * Try matching a filename with a "pattern" ("prog" is NULL), or use the
9570 * precompiled regprog "prog" ("pattern" is NULL). That avoids calling
9571 * vim_regcomp() often.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009572 * Used for autocommands and 'wildignore'.
9573 * Returns TRUE if there is a match, FALSE otherwise.
9574 */
9575 int
Bram Moolenaar748bf032005-02-02 23:04:36 +00009576match_file_pat(pattern, prog, fname, sfname, tail, allow_dirs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009577 char_u *pattern; /* pattern to match with */
Bram Moolenaar748bf032005-02-02 23:04:36 +00009578 regprog_T *prog; /* pre-compiled regprog or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009579 char_u *fname; /* full path of file name */
9580 char_u *sfname; /* short file name or NULL */
9581 char_u *tail; /* tail of path */
9582 int allow_dirs; /* allow matching with dir */
9583{
9584 regmatch_T regmatch;
9585 int result = FALSE;
9586#ifdef FEAT_OSFILETYPE
9587 int no_pattern = FALSE; /* TRUE if check is filetype only */
9588 char_u *type_start;
9589 char_u c;
9590 int match = FALSE;
9591#endif
9592
9593#ifdef CASE_INSENSITIVE_FILENAME
9594 regmatch.rm_ic = TRUE; /* Always ignore case */
9595#else
9596 regmatch.rm_ic = FALSE; /* Don't ever ignore case */
9597#endif
9598#ifdef FEAT_OSFILETYPE
9599 if (*pattern == '<')
9600 {
9601 /* There is a filetype condition specified with this pattern.
9602 * Check the filetype matches first. If not, don't bother with the
9603 * pattern (set regprog to NULL).
9604 * Always use magic for the regexp.
9605 */
9606
9607 for (type_start = pattern + 1; (c = *pattern); pattern++)
9608 {
9609 if ((c == ';' || c == '>') && match == FALSE)
9610 {
9611 *pattern = NUL; /* Terminate the string */
9612 match = mch_check_filetype(fname, type_start);
9613 *pattern = c; /* Restore the terminator */
9614 type_start = pattern + 1;
9615 }
9616 if (c == '>')
9617 break;
9618 }
9619
9620 /* (c should never be NUL, but check anyway) */
9621 if (match == FALSE || c == NUL)
9622 regmatch.regprog = NULL; /* Doesn't match - don't check pat. */
9623 else if (*pattern == NUL)
9624 {
9625 regmatch.regprog = NULL; /* Vim will try to free regprog later */
9626 no_pattern = TRUE; /* Always matches - don't check pat. */
9627 }
9628 else
9629 regmatch.regprog = vim_regcomp(pattern + 1, RE_MAGIC);
9630 }
9631 else
9632#endif
Bram Moolenaar748bf032005-02-02 23:04:36 +00009633 {
9634 if (prog != NULL)
9635 regmatch.regprog = prog;
9636 else
9637 regmatch.regprog = vim_regcomp(pattern, RE_MAGIC);
9638 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009639
9640 /*
9641 * Try for a match with the pattern with:
9642 * 1. the full file name, when the pattern has a '/'.
9643 * 2. the short file name, when the pattern has a '/'.
9644 * 3. the tail of the file name, when the pattern has no '/'.
9645 */
9646 if (
9647#ifdef FEAT_OSFILETYPE
9648 /* If the check is for a filetype only and we don't care
9649 * about the path then skip all the regexp stuff.
9650 */
9651 no_pattern ||
9652#endif
9653 (regmatch.regprog != NULL
9654 && ((allow_dirs
9655 && (vim_regexec(&regmatch, fname, (colnr_T)0)
9656 || (sfname != NULL
9657 && vim_regexec(&regmatch, sfname, (colnr_T)0))))
9658 || (!allow_dirs && vim_regexec(&regmatch, tail, (colnr_T)0)))))
9659 result = TRUE;
9660
Bram Moolenaar748bf032005-02-02 23:04:36 +00009661 if (prog == NULL)
9662 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009663 return result;
9664}
9665#endif
9666
9667#if defined(FEAT_WILDIGN) || defined(PROTO)
9668/*
9669 * Return TRUE if a file matches with a pattern in "list".
9670 * "list" is a comma-separated list of patterns, like 'wildignore'.
9671 * "sfname" is the short file name or NULL, "ffname" the long file name.
9672 */
9673 int
9674match_file_list(list, sfname, ffname)
9675 char_u *list;
9676 char_u *sfname;
9677 char_u *ffname;
9678{
9679 char_u buf[100];
9680 char_u *tail;
9681 char_u *regpat;
9682 char allow_dirs;
9683 int match;
9684 char_u *p;
9685
9686 tail = gettail(sfname);
9687
9688 /* try all patterns in 'wildignore' */
9689 p = list;
9690 while (*p)
9691 {
9692 copy_option_part(&p, buf, 100, ",");
9693 regpat = file_pat_to_reg_pat(buf, NULL, &allow_dirs, FALSE);
9694 if (regpat == NULL)
9695 break;
Bram Moolenaar748bf032005-02-02 23:04:36 +00009696 match = match_file_pat(regpat, NULL, ffname, sfname,
9697 tail, (int)allow_dirs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009698 vim_free(regpat);
9699 if (match)
9700 return TRUE;
9701 }
9702 return FALSE;
9703}
9704#endif
9705
9706/*
9707 * Convert the given pattern "pat" which has shell style wildcards in it, into
9708 * a regular expression, and return the result in allocated memory. If there
9709 * is a directory path separator to be matched, then TRUE is put in
9710 * allow_dirs, otherwise FALSE is put there -- webb.
9711 * Handle backslashes before special characters, like "\*" and "\ ".
9712 *
9713 * If FEAT_OSFILETYPE defined then pass initial <type> through unchanged. Eg:
9714 * '<html>myfile' becomes '<html>^myfile$' -- leonard.
9715 *
9716 * Returns NULL when out of memory.
9717 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009718 char_u *
9719file_pat_to_reg_pat(pat, pat_end, allow_dirs, no_bslash)
9720 char_u *pat;
9721 char_u *pat_end; /* first char after pattern or NULL */
9722 char *allow_dirs; /* Result passed back out in here */
Bram Moolenaar78a15312009-05-15 19:33:18 +00009723 int no_bslash UNUSED; /* Don't use a backward slash as pathsep */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009724{
9725 int size;
9726 char_u *endp;
9727 char_u *reg_pat;
9728 char_u *p;
9729 int i;
9730 int nested = 0;
9731 int add_dollar = TRUE;
9732#ifdef FEAT_OSFILETYPE
9733 int check_length = 0;
9734#endif
9735
9736 if (allow_dirs != NULL)
9737 *allow_dirs = FALSE;
9738 if (pat_end == NULL)
9739 pat_end = pat + STRLEN(pat);
9740
9741#ifdef FEAT_OSFILETYPE
9742 /* Find out how much of the string is the filetype check */
9743 if (*pat == '<')
9744 {
9745 /* Count chars until the next '>' */
9746 for (p = pat + 1; p < pat_end && *p != '>'; p++)
9747 ;
9748 if (p < pat_end)
9749 {
9750 /* Pattern is of the form <.*>.* */
9751 check_length = p - pat + 1;
9752 if (p + 1 >= pat_end)
9753 {
9754 /* The 'pattern' is a filetype check ONLY */
9755 reg_pat = (char_u *)alloc(check_length + 1);
9756 if (reg_pat != NULL)
9757 {
9758 mch_memmove(reg_pat, pat, (size_t)check_length);
9759 reg_pat[check_length] = NUL;
9760 }
9761 return reg_pat;
9762 }
9763 }
9764 /* else: there was no closing '>' - assume it was a normal pattern */
9765
9766 }
9767 pat += check_length;
9768 size = 2 + check_length;
9769#else
9770 size = 2; /* '^' at start, '$' at end */
9771#endif
9772
9773 for (p = pat; p < pat_end; p++)
9774 {
9775 switch (*p)
9776 {
9777 case '*':
9778 case '.':
9779 case ',':
9780 case '{':
9781 case '}':
9782 case '~':
9783 size += 2; /* extra backslash */
9784 break;
9785#ifdef BACKSLASH_IN_FILENAME
9786 case '\\':
9787 case '/':
9788 size += 4; /* could become "[\/]" */
9789 break;
9790#endif
9791 default:
9792 size++;
9793# ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009794 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009795 {
9796 ++p;
9797 ++size;
9798 }
9799# endif
9800 break;
9801 }
9802 }
9803 reg_pat = alloc(size + 1);
9804 if (reg_pat == NULL)
9805 return NULL;
9806
9807#ifdef FEAT_OSFILETYPE
9808 /* Copy the type check in to the start. */
9809 if (check_length)
9810 mch_memmove(reg_pat, pat - check_length, (size_t)check_length);
9811 i = check_length;
9812#else
9813 i = 0;
9814#endif
9815
9816 if (pat[0] == '*')
9817 while (pat[0] == '*' && pat < pat_end - 1)
9818 pat++;
9819 else
9820 reg_pat[i++] = '^';
9821 endp = pat_end - 1;
9822 if (*endp == '*')
9823 {
9824 while (endp - pat > 0 && *endp == '*')
9825 endp--;
9826 add_dollar = FALSE;
9827 }
9828 for (p = pat; *p && nested >= 0 && p <= endp; p++)
9829 {
9830 switch (*p)
9831 {
9832 case '*':
9833 reg_pat[i++] = '.';
9834 reg_pat[i++] = '*';
Bram Moolenaar02743632005-07-25 20:42:36 +00009835 while (p[1] == '*') /* "**" matches like "*" */
9836 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009837 break;
9838 case '.':
9839#ifdef RISCOS
9840 if (allow_dirs != NULL)
9841 *allow_dirs = TRUE;
9842 /* FALLTHROUGH */
9843#endif
9844 case '~':
9845 reg_pat[i++] = '\\';
9846 reg_pat[i++] = *p;
9847 break;
9848 case '?':
9849#ifdef RISCOS
9850 case '#':
9851#endif
9852 reg_pat[i++] = '.';
9853 break;
9854 case '\\':
9855 if (p[1] == NUL)
9856 break;
9857#ifdef BACKSLASH_IN_FILENAME
9858 if (!no_bslash)
9859 {
9860 /* translate:
9861 * "\x" to "\\x" e.g., "dir\file"
9862 * "\*" to "\\.*" e.g., "dir\*.c"
9863 * "\?" to "\\." e.g., "dir\??.c"
9864 * "\+" to "\+" e.g., "fileX\+.c"
9865 */
9866 if ((vim_isfilec(p[1]) || p[1] == '*' || p[1] == '?')
9867 && p[1] != '+')
9868 {
9869 reg_pat[i++] = '[';
9870 reg_pat[i++] = '\\';
9871 reg_pat[i++] = '/';
9872 reg_pat[i++] = ']';
9873 if (allow_dirs != NULL)
9874 *allow_dirs = TRUE;
9875 break;
9876 }
9877 }
9878#endif
9879 if (*++p == '?'
9880#ifdef BACKSLASH_IN_FILENAME
9881 && no_bslash
9882#endif
9883 )
9884 reg_pat[i++] = '?';
9885 else
9886 if (*p == ',')
9887 reg_pat[i++] = ',';
9888 else
9889 {
9890 if (allow_dirs != NULL && vim_ispathsep(*p)
9891#ifdef BACKSLASH_IN_FILENAME
9892 && (!no_bslash || *p != '\\')
9893#endif
9894 )
9895 *allow_dirs = TRUE;
9896 reg_pat[i++] = '\\';
9897 reg_pat[i++] = *p;
9898 }
9899 break;
9900#ifdef BACKSLASH_IN_FILENAME
9901 case '/':
9902 reg_pat[i++] = '[';
9903 reg_pat[i++] = '\\';
9904 reg_pat[i++] = '/';
9905 reg_pat[i++] = ']';
9906 if (allow_dirs != NULL)
9907 *allow_dirs = TRUE;
9908 break;
9909#endif
9910 case '{':
9911 reg_pat[i++] = '\\';
9912 reg_pat[i++] = '(';
9913 nested++;
9914 break;
9915 case '}':
9916 reg_pat[i++] = '\\';
9917 reg_pat[i++] = ')';
9918 --nested;
9919 break;
9920 case ',':
9921 if (nested)
9922 {
9923 reg_pat[i++] = '\\';
9924 reg_pat[i++] = '|';
9925 }
9926 else
9927 reg_pat[i++] = ',';
9928 break;
9929 default:
9930# ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009931 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009932 reg_pat[i++] = *p++;
9933 else
9934# endif
9935 if (allow_dirs != NULL && vim_ispathsep(*p))
9936 *allow_dirs = TRUE;
9937 reg_pat[i++] = *p;
9938 break;
9939 }
9940 }
9941 if (add_dollar)
9942 reg_pat[i++] = '$';
9943 reg_pat[i] = NUL;
9944 if (nested != 0)
9945 {
9946 if (nested < 0)
9947 EMSG(_("E219: Missing {."));
9948 else
9949 EMSG(_("E220: Missing }."));
9950 vim_free(reg_pat);
9951 reg_pat = NULL;
9952 }
9953 return reg_pat;
9954}