blob: c44a08d378704cfc735787d5d9936f3f09a93f61 [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
24#ifdef HAVE_FCNTL_H
25# include <fcntl.h>
26#endif
27
28#ifdef __TANDEM
29# include <limits.h> /* for SSIZE_MAX */
30#endif
31
32#if defined(HAVE_UTIME) && defined(HAVE_UTIME_H)
33# include <utime.h> /* for struct utimbuf */
34#endif
35
36#define BUFSIZE 8192 /* size of normal write buffer */
37#define SMBUFSIZE 256 /* size of emergency write buffer */
38
39#ifdef FEAT_CRYPT
40# define CRYPT_MAGIC "VimCrypt~01!" /* "01" is the version nr */
41# define CRYPT_MAGIC_LEN 12 /* must be multiple of 4! */
42#endif
43
44/* Is there any system that doesn't have access()? */
Bram Moolenaar9372a112005-12-06 19:59:18 +000045#define USE_MCH_ACCESS
Bram Moolenaar071d4272004-06-13 20:20:40 +000046
47#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 */
72# define AUGROUP_ERROR -2 /* errornouse autocmd group */
73# 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 */
113 int bw_len; /* lenght of data */
114#ifdef HAS_BW_FLAGS
115 int bw_flags; /* FIO_ flags */
116#endif
117#ifdef FEAT_MBYTE
118 char_u bw_rest[CONV_RESTLEN]; /* not converted bytes */
119 int bw_restlen; /* nr of bytes in bw_rest[] */
120 int bw_first; /* first write call */
121 char_u *bw_conv_buf; /* buffer for writing converted chars */
122 int bw_conv_buflen; /* size of bw_conv_buf */
123 int bw_conv_error; /* set for conversion error */
124# ifdef USE_ICONV
125 iconv_t bw_iconv_fd; /* descriptor for iconv() or -1 */
126# endif
127#endif
128};
129
130static int buf_write_bytes __ARGS((struct bw_info *ip));
131
132#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000133static linenr_T readfile_linenr __ARGS((linenr_T linecnt, char_u *p, char_u *endp));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134static int ucs2bytes __ARGS((unsigned c, char_u **pp, int flags));
135static int same_encoding __ARGS((char_u *a, char_u *b));
136static int get_fio_flags __ARGS((char_u *ptr));
137static char_u *check_for_bom __ARGS((char_u *p, long size, int *lenp, int flags));
138static int make_bom __ARGS((char_u *buf, char_u *name));
139# ifdef WIN3264
140static int get_win_fio_flags __ARGS((char_u *ptr));
141# endif
142# ifdef MACOS_X
143static int get_mac_fio_flags __ARGS((char_u *ptr));
144# endif
145#endif
146static int move_lines __ARGS((buf_T *frombuf, buf_T *tobuf));
147
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000148
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149 void
150filemess(buf, name, s, attr)
151 buf_T *buf;
152 char_u *name;
153 char_u *s;
154 int attr;
155{
156 int msg_scroll_save;
157
158 if (msg_silent != 0)
159 return;
160 msg_add_fname(buf, name); /* put file name in IObuff with quotes */
161 /* If it's extremely long, truncate it. */
162 if (STRLEN(IObuff) > IOSIZE - 80)
163 IObuff[IOSIZE - 80] = NUL;
164 STRCAT(IObuff, s);
165 /*
166 * For the first message may have to start a new line.
167 * For further ones overwrite the previous one, reset msg_scroll before
168 * calling filemess().
169 */
170 msg_scroll_save = msg_scroll;
171 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
172 msg_scroll = FALSE;
173 if (!msg_scroll) /* wait a bit when overwriting an error msg */
174 check_for_delay(FALSE);
175 msg_start();
176 msg_scroll = msg_scroll_save;
177 msg_scrolled_ign = TRUE;
178 /* may truncate the message to avoid a hit-return prompt */
179 msg_outtrans_attr(msg_may_trunc(FALSE, IObuff), attr);
180 msg_clr_eos();
181 out_flush();
182 msg_scrolled_ign = FALSE;
183}
184
185/*
186 * Read lines from file "fname" into the buffer after line "from".
187 *
188 * 1. We allocate blocks with lalloc, as big as possible.
189 * 2. Each block is filled with characters from the file with a single read().
190 * 3. The lines are inserted in the buffer with ml_append().
191 *
192 * (caller must check that fname != NULL, unless READ_STDIN is used)
193 *
194 * "lines_to_skip" is the number of lines that must be skipped
195 * "lines_to_read" is the number of lines that are appended
196 * When not recovering lines_to_skip is 0 and lines_to_read MAXLNUM.
197 *
198 * flags:
199 * READ_NEW starting to edit a new buffer
200 * READ_FILTER reading filter output
201 * READ_STDIN read from stdin instead of a file
202 * READ_BUFFER read from curbuf instead of a file (converting after reading
203 * stdin)
204 * READ_DUMMY read into a dummy buffer (to check if file contents changed)
205 *
206 * return FAIL for failure, OK otherwise
207 */
208 int
209readfile(fname, sfname, from, lines_to_skip, lines_to_read, eap, flags)
210 char_u *fname;
211 char_u *sfname;
212 linenr_T from;
213 linenr_T lines_to_skip;
214 linenr_T lines_to_read;
215 exarg_T *eap; /* can be NULL! */
216 int flags;
217{
218 int fd = 0;
219 int newfile = (flags & READ_NEW);
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000220 int set_options = newfile || (eap != NULL && eap->read_edit);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221 int check_readonly;
222 int filtering = (flags & READ_FILTER);
223 int read_stdin = (flags & READ_STDIN);
224 int read_buffer = (flags & READ_BUFFER);
225 linenr_T read_buf_lnum = 1; /* next line to read from curbuf */
226 colnr_T read_buf_col = 0; /* next char to read from this line */
227 char_u c;
228 linenr_T lnum = from;
229 char_u *ptr = NULL; /* pointer into read buffer */
230 char_u *buffer = NULL; /* read buffer */
231 char_u *new_buffer = NULL; /* init to shut up gcc */
232 char_u *line_start = NULL; /* init to shut up gcc */
233 int wasempty; /* buffer was empty before reading */
234 colnr_T len;
235 long size = 0;
236 char_u *p;
237 long filesize = 0;
238 int skip_read = FALSE;
239#ifdef FEAT_CRYPT
240 char_u *cryptkey = NULL;
241#endif
242 int split = 0; /* number of split lines */
243#define UNKNOWN 0x0fffffff /* file size is unknown */
244 linenr_T linecnt;
245 int error = FALSE; /* errors encountered */
246 int ff_error = EOL_UNKNOWN; /* file format with errors */
247 long linerest = 0; /* remaining chars in line */
248#ifdef UNIX
249 int perm = 0;
250 int swap_mode = -1; /* protection bits for swap file */
251#else
252 int perm;
253#endif
254 int fileformat = 0; /* end-of-line format */
255 int keep_fileformat = FALSE;
256 struct stat st;
257 int file_readonly;
258 linenr_T skip_count = 0;
259 linenr_T read_count = 0;
260 int msg_save = msg_scroll;
261 linenr_T read_no_eol_lnum = 0; /* non-zero lnum when last line of
262 * last read was missing the eol */
263 int try_mac = (vim_strchr(p_ffs, 'm') != NULL);
264 int try_dos = (vim_strchr(p_ffs, 'd') != NULL);
265 int try_unix = (vim_strchr(p_ffs, 'x') != NULL);
266 int file_rewind = FALSE;
267#ifdef FEAT_MBYTE
268 int can_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000269 linenr_T conv_error = 0; /* line nr with conversion error */
270 linenr_T illegal_byte = 0; /* line nr with illegal byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 int keep_dest_enc = FALSE; /* don't retry when char doesn't fit
272 in destination encoding */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000273 int bad_char_behavior = BAD_REPLACE;
274 /* BAD_KEEP, BAD_DROP or character to
275 * replace with */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 char_u *tmpname = NULL; /* name of 'charconvert' output file */
277 int fio_flags = 0;
278 char_u *fenc; /* fileencoding to use */
279 int fenc_alloced; /* fenc_next is in allocated memory */
280 char_u *fenc_next = NULL; /* next item in 'fencs' or NULL */
281 int advance_fenc = FALSE;
282 long real_size = 0;
283# ifdef USE_ICONV
284 iconv_t iconv_fd = (iconv_t)-1; /* descriptor for iconv() or -1 */
285# ifdef FEAT_EVAL
286 int did_iconv = FALSE; /* TRUE when iconv() failed and trying
287 'charconvert' next */
288# endif
289# endif
290 int converted = FALSE; /* TRUE if conversion done */
291 int notconverted = FALSE; /* TRUE if conversion wanted but it
292 wasn't possible */
293 char_u conv_rest[CONV_RESTLEN];
294 int conv_restlen = 0; /* nr of bytes in conv_rest[] */
295#endif
296
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297 write_no_eol_lnum = 0; /* in case it was set by the previous read */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298
299 /*
300 * If there is no file name yet, use the one for the read file.
301 * BF_NOTEDITED is set to reflect this.
302 * Don't do this for a read from a filter.
303 * Only do this when 'cpoptions' contains the 'f' flag.
304 */
305 if (curbuf->b_ffname == NULL
306 && !filtering
307 && fname != NULL
308 && vim_strchr(p_cpo, CPO_FNAMER) != NULL
309 && !(flags & READ_DUMMY))
310 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000311 if (set_rw_fname(fname, sfname) == FAIL)
312 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 }
314
Bram Moolenaardf177f62005-02-22 08:39:57 +0000315 /* After reading a file the cursor line changes but we don't want to
316 * display the line. */
317 ex_no_reprint = TRUE;
318
Bram Moolenaar55b7cf82006-09-09 12:52:42 +0000319 /* don't display the file info for another buffer now */
320 need_fileinfo = FALSE;
321
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 /*
323 * For Unix: Use the short file name whenever possible.
324 * Avoids problems with networks and when directory names are changed.
325 * Don't do this for MS-DOS, a "cd" in a sub-shell may have moved us to
326 * another directory, which we don't detect.
327 */
328 if (sfname == NULL)
329 sfname = fname;
330#if defined(UNIX) || defined(__EMX__)
331 fname = sfname;
332#endif
333
334#ifdef FEAT_AUTOCMD
335 /*
336 * The BufReadCmd and FileReadCmd events intercept the reading process by
337 * executing the associated commands instead.
338 */
339 if (!filtering && !read_stdin && !read_buffer)
340 {
341 pos_T pos;
342
343 pos = curbuf->b_op_start;
344
345 /* Set '[ mark to the line above where the lines go (line 1 if zero). */
346 curbuf->b_op_start.lnum = ((from == 0) ? 1 : from);
347 curbuf->b_op_start.col = 0;
348
349 if (newfile)
350 {
351 if (apply_autocmds_exarg(EVENT_BUFREADCMD, NULL, sfname,
352 FALSE, curbuf, eap))
353#ifdef FEAT_EVAL
354 return aborting() ? FAIL : OK;
355#else
356 return OK;
357#endif
358 }
359 else if (apply_autocmds_exarg(EVENT_FILEREADCMD, sfname, sfname,
360 FALSE, NULL, eap))
361#ifdef FEAT_EVAL
362 return aborting() ? FAIL : OK;
363#else
364 return OK;
365#endif
366
367 curbuf->b_op_start = pos;
368 }
369#endif
370
371 if ((shortmess(SHM_OVER) || curbuf->b_help) && p_verbose == 0)
372 msg_scroll = FALSE; /* overwrite previous file message */
373 else
374 msg_scroll = TRUE; /* don't overwrite previous file message */
375
376 /*
377 * If the name ends in a path separator, we can't open it. Check here,
378 * because reading the file may actually work, but then creating the swap
379 * file may destroy it! Reported on MS-DOS and Win 95.
380 * If the name is too long we might crash further on, quit here.
381 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000382 if (fname != NULL && *fname != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000384 p = fname + STRLEN(fname);
385 if (after_pathsep(fname, p) || STRLEN(fname) >= MAXPATHL)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000386 {
387 filemess(curbuf, fname, (char_u *)_("Illegal file name"), 0);
388 msg_end();
389 msg_scroll = msg_save;
390 return FAIL;
391 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392 }
393
394#ifdef UNIX
395 /*
396 * On Unix it is possible to read a directory, so we have to
397 * check for it before the mch_open().
398 */
399 if (!read_stdin && !read_buffer)
400 {
401 perm = mch_getperm(fname);
402 if (perm >= 0 && !S_ISREG(perm) /* not a regular file ... */
403# ifdef S_ISFIFO
404 && !S_ISFIFO(perm) /* ... or fifo */
405# endif
406# ifdef S_ISSOCK
407 && !S_ISSOCK(perm) /* ... or socket */
408# endif
409 )
410 {
411 if (S_ISDIR(perm))
412 filemess(curbuf, fname, (char_u *)_("is a directory"), 0);
413 else
414 filemess(curbuf, fname, (char_u *)_("is not a file"), 0);
415 msg_end();
416 msg_scroll = msg_save;
417 return FAIL;
418 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419
Bram Moolenaarc67764a2006-10-12 19:14:26 +0000420# if defined(MSDOS) || defined(MSWIN) || defined(OS2)
421 /*
422 * MS-Windows allows opening a device, but we will probably get stuck
423 * trying to read it.
424 */
425 if (!p_odev && mch_nodetype(fname) == NODE_WRITABLE)
426 {
427 filemess(curbuf, fname, (char_u *)_("is a device (disabled with 'opendevice' option"), 0);
428 msg_end();
429 msg_scroll = msg_save;
430 return FAIL;
431 }
432# endif
Bram Moolenaar043545e2006-10-10 16:44:07 +0000433 }
434#endif
435
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436 /* set default 'fileformat' */
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000437 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 {
439 if (eap != NULL && eap->force_ff != 0)
440 set_fileformat(get_fileformat_force(curbuf, eap), OPT_LOCAL);
441 else if (*p_ffs != NUL)
442 set_fileformat(default_fileformat(), OPT_LOCAL);
443 }
444
445 /* set or reset 'binary' */
446 if (eap != NULL && eap->force_bin != 0)
447 {
448 int oldval = curbuf->b_p_bin;
449
450 curbuf->b_p_bin = (eap->force_bin == FORCE_BIN);
451 set_options_bin(oldval, curbuf->b_p_bin, OPT_LOCAL);
452 }
453
454 /*
455 * When opening a new file we take the readonly flag from the file.
456 * Default is r/w, can be set to r/o below.
457 * Don't reset it when in readonly mode
458 * Only set/reset b_p_ro when BF_CHECK_RO is set.
459 */
460 check_readonly = (newfile && (curbuf->b_flags & BF_CHECK_RO));
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000461 if (check_readonly && !readonlymode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 curbuf->b_p_ro = FALSE;
463
464 if (newfile && !read_stdin && !read_buffer)
465 {
466 /* Remember time of file.
467 * For RISCOS, also remember the filetype.
468 */
469 if (mch_stat((char *)fname, &st) >= 0)
470 {
471 buf_store_time(curbuf, &st, fname);
472 curbuf->b_mtime_read = curbuf->b_mtime;
473
474#if defined(RISCOS) && defined(FEAT_OSFILETYPE)
475 /* Read the filetype into the buffer local filetype option. */
476 mch_read_filetype(fname);
477#endif
478#ifdef UNIX
479 /*
480 * Use the protection bits of the original file for the swap file.
481 * This makes it possible for others to read the name of the
482 * edited file from the swapfile, but only if they can read the
483 * edited file.
484 * Remove the "write" and "execute" bits for group and others
485 * (they must not write the swapfile).
486 * Add the "read" and "write" bits for the user, otherwise we may
487 * not be able to write to the file ourselves.
488 * Setting the bits is done below, after creating the swap file.
489 */
490 swap_mode = (st.st_mode & 0644) | 0600;
491#endif
492#ifdef FEAT_CW_EDITOR
493 /* Get the FSSpec on MacOS
494 * TODO: Update it properly when the buffer name changes
495 */
496 (void)GetFSSpecFromPath(curbuf->b_ffname, &curbuf->b_FSSpec);
497#endif
498#ifdef VMS
499 curbuf->b_fab_rfm = st.st_fab_rfm;
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000500 curbuf->b_fab_rat = st.st_fab_rat;
501 curbuf->b_fab_mrs = st.st_fab_mrs;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000502#endif
503 }
504 else
505 {
506 curbuf->b_mtime = 0;
507 curbuf->b_mtime_read = 0;
508 curbuf->b_orig_size = 0;
509 curbuf->b_orig_mode = 0;
510 }
511
512 /* Reset the "new file" flag. It will be set again below when the
513 * file doesn't exist. */
514 curbuf->b_flags &= ~(BF_NEW | BF_NEW_W);
515 }
516
517/*
518 * for UNIX: check readonly with perm and mch_access()
519 * for RISCOS: same as Unix, otherwise file gets re-datestamped!
520 * for MSDOS and Amiga: check readonly by trying to open the file for writing
521 */
522 file_readonly = FALSE;
523 if (read_stdin)
524 {
525#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
526 /* Force binary I/O on stdin to avoid CR-LF -> LF conversion. */
527 setmode(0, O_BINARY);
528#endif
529 }
530 else if (!read_buffer)
531 {
532#ifdef USE_MCH_ACCESS
533 if (
534# ifdef UNIX
535 !(perm & 0222) ||
536# endif
537 mch_access((char *)fname, W_OK))
538 file_readonly = TRUE;
539 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
540#else
541 if (!newfile
542 || readonlymode
543 || (fd = mch_open((char *)fname, O_RDWR | O_EXTRA, 0)) < 0)
544 {
545 file_readonly = TRUE;
546 /* try to open ro */
547 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
548 }
549#endif
550 }
551
552 if (fd < 0) /* cannot open at all */
553 {
554#ifndef UNIX
555 int isdir_f;
556#endif
557 msg_scroll = msg_save;
558#ifndef UNIX
559 /*
560 * On MSDOS and Amiga we can't open a directory, check here.
561 */
562 isdir_f = (mch_isdir(fname));
563 perm = mch_getperm(fname); /* check if the file exists */
564 if (isdir_f)
565 {
566 filemess(curbuf, sfname, (char_u *)_("is a directory"), 0);
567 curbuf->b_p_ro = TRUE; /* must use "w!" now */
568 }
569 else
570#endif
571 if (newfile)
572 {
573 if (perm < 0)
574 {
575 /*
576 * Set the 'new-file' flag, so that when the file has
577 * been created by someone else, a ":w" will complain.
578 */
579 curbuf->b_flags |= BF_NEW;
580
581 /* Create a swap file now, so that other Vims are warned
582 * that we are editing this file. Don't do this for a
583 * "nofile" or "nowrite" buffer type. */
584#ifdef FEAT_QUICKFIX
585 if (!bt_dontwrite(curbuf))
586#endif
587 check_need_swap(newfile);
Bram Moolenaar5b962cf2005-12-12 21:58:40 +0000588 if (dir_of_file_exists(fname))
589 filemess(curbuf, sfname, (char_u *)_("[New File]"), 0);
590 else
591 filemess(curbuf, sfname,
592 (char_u *)_("[New DIRECTORY]"), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593#ifdef FEAT_VIMINFO
594 /* Even though this is a new file, it might have been
595 * edited before and deleted. Get the old marks. */
596 check_marks_read();
597#endif
598#ifdef FEAT_MBYTE
599 if (eap != NULL && eap->force_enc != 0)
600 {
601 /* set forced 'fileencoding' */
602 fenc = enc_canonize(eap->cmd + eap->force_enc);
603 if (fenc != NULL)
604 set_string_option_direct((char_u *)"fenc", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +0000605 fenc, OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 vim_free(fenc);
607 }
608#endif
609#ifdef FEAT_AUTOCMD
610 apply_autocmds_exarg(EVENT_BUFNEWFILE, sfname, sfname,
611 FALSE, curbuf, eap);
612#endif
613 /* remember the current fileformat */
614 save_file_ff(curbuf);
615
616#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
617 if (aborting()) /* autocmds may abort script processing */
618 return FAIL;
619#endif
620 return OK; /* a new file is not an error */
621 }
622 else
623 {
Bram Moolenaar202795b2005-10-11 20:29:39 +0000624 filemess(curbuf, sfname, (char_u *)(
625# ifdef EFBIG
626 (errno == EFBIG) ? _("[File too big]") :
627# endif
628 _("[Permission Denied]")), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 curbuf->b_p_ro = TRUE; /* must use "w!" now */
630 }
631 }
632
633 return FAIL;
634 }
635
636 /*
637 * Only set the 'ro' flag for readonly files the first time they are
638 * loaded. Help files always get readonly mode
639 */
640 if ((check_readonly && file_readonly) || curbuf->b_help)
641 curbuf->b_p_ro = TRUE;
642
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000643 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 {
645 curbuf->b_p_eol = TRUE;
646 curbuf->b_start_eol = TRUE;
647#ifdef FEAT_MBYTE
648 curbuf->b_p_bomb = FALSE;
649#endif
650 }
651
652 /* Create a swap file now, so that other Vims are warned that we are
653 * editing this file.
654 * Don't do this for a "nofile" or "nowrite" buffer type. */
655#ifdef FEAT_QUICKFIX
656 if (!bt_dontwrite(curbuf))
657#endif
658 {
659 check_need_swap(newfile);
660#ifdef UNIX
661 /* Set swap file protection bits after creating it. */
662 if (swap_mode > 0 && curbuf->b_ml.ml_mfp->mf_fname != NULL)
663 (void)mch_setperm(curbuf->b_ml.ml_mfp->mf_fname, (long)swap_mode);
664#endif
665 }
666
Bram Moolenaarb815dac2005-12-07 20:59:24 +0000667#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 /* If "Quit" selected at ATTENTION dialog, don't load the file */
669 if (swap_exists_action == SEA_QUIT)
670 {
671 if (!read_buffer && !read_stdin)
672 close(fd);
673 return FAIL;
674 }
675#endif
676
677 ++no_wait_return; /* don't wait for return yet */
678
679 /*
680 * Set '[ mark to the line above where the lines go (line 1 if zero).
681 */
682 curbuf->b_op_start.lnum = ((from == 0) ? 1 : from);
683 curbuf->b_op_start.col = 0;
684
685#ifdef FEAT_AUTOCMD
686 if (!read_buffer)
687 {
688 int m = msg_scroll;
689 int n = msg_scrolled;
690 buf_T *old_curbuf = curbuf;
691
692 /*
693 * The file must be closed again, the autocommands may want to change
694 * the file before reading it.
695 */
696 if (!read_stdin)
697 close(fd); /* ignore errors */
698
699 /*
700 * The output from the autocommands should not overwrite anything and
701 * should not be overwritten: Set msg_scroll, restore its value if no
702 * output was done.
703 */
704 msg_scroll = TRUE;
705 if (filtering)
706 apply_autocmds_exarg(EVENT_FILTERREADPRE, NULL, sfname,
707 FALSE, curbuf, eap);
708 else if (read_stdin)
709 apply_autocmds_exarg(EVENT_STDINREADPRE, NULL, sfname,
710 FALSE, curbuf, eap);
711 else if (newfile)
712 apply_autocmds_exarg(EVENT_BUFREADPRE, NULL, sfname,
713 FALSE, curbuf, eap);
714 else
715 apply_autocmds_exarg(EVENT_FILEREADPRE, sfname, sfname,
716 FALSE, NULL, eap);
717 if (msg_scrolled == n)
718 msg_scroll = m;
719
720#ifdef FEAT_EVAL
721 if (aborting()) /* autocmds may abort script processing */
722 {
723 --no_wait_return;
724 msg_scroll = msg_save;
725 curbuf->b_p_ro = TRUE; /* must use "w!" now */
726 return FAIL;
727 }
728#endif
729 /*
730 * Don't allow the autocommands to change the current buffer.
731 * Try to re-open the file.
732 */
733 if (!read_stdin && (curbuf != old_curbuf
734 || (fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) < 0))
735 {
736 --no_wait_return;
737 msg_scroll = msg_save;
738 if (fd < 0)
739 EMSG(_("E200: *ReadPre autocommands made the file unreadable"));
740 else
741 EMSG(_("E201: *ReadPre autocommands must not change current buffer"));
742 curbuf->b_p_ro = TRUE; /* must use "w!" now */
743 return FAIL;
744 }
745 }
746#endif /* FEAT_AUTOCMD */
747
748 /* Autocommands may add lines to the file, need to check if it is empty */
749 wasempty = (curbuf->b_ml.ml_flags & ML_EMPTY);
750
751 if (!recoverymode && !filtering && !(flags & READ_DUMMY))
752 {
753 /*
754 * Show the user that we are busy reading the input. Sometimes this
755 * may take a while. When reading from stdin another program may
756 * still be running, don't move the cursor to the last line, unless
757 * always using the GUI.
758 */
759 if (read_stdin)
760 {
761#ifndef ALWAYS_USE_GUI
762 mch_msg(_("Vim: Reading from stdin...\n"));
763#endif
764#ifdef FEAT_GUI
765 /* Also write a message in the GUI window, if there is one. */
766 if (gui.in_use && !gui.dying && !gui.starting)
767 {
768 p = (char_u *)_("Reading from stdin...");
769 gui_write(p, (int)STRLEN(p));
770 }
771#endif
772 }
773 else if (!read_buffer)
774 filemess(curbuf, sfname, (char_u *)"", 0);
775 }
776
777 msg_scroll = FALSE; /* overwrite the file message */
778
779 /*
780 * Set linecnt now, before the "retry" caused by a wrong guess for
781 * fileformat, and after the autocommands, which may change them.
782 */
783 linecnt = curbuf->b_ml.ml_line_count;
784
785#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000786 /* "++bad=" argument. */
787 if (eap != NULL && eap->bad_char != 0)
Bram Moolenaar195d6352005-12-19 22:08:24 +0000788 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000789 bad_char_behavior = eap->bad_char;
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000790 if (set_options)
Bram Moolenaar195d6352005-12-19 22:08:24 +0000791 curbuf->b_bad_char = eap->bad_char;
792 }
793 else
794 curbuf->b_bad_char = 0;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000795
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 /*
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000797 * Decide which 'encoding' to use or use first.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 */
799 if (eap != NULL && eap->force_enc != 0)
800 {
801 fenc = enc_canonize(eap->cmd + eap->force_enc);
802 fenc_alloced = TRUE;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000803 keep_dest_enc = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804 }
805 else if (curbuf->b_p_bin)
806 {
807 fenc = (char_u *)""; /* binary: don't convert */
808 fenc_alloced = FALSE;
809 }
810 else if (curbuf->b_help)
811 {
812 char_u firstline[80];
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000813 int fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814
815 /* Help files are either utf-8 or latin1. Try utf-8 first, if this
816 * fails it must be latin1.
817 * Always do this when 'encoding' is "utf-8". Otherwise only do
818 * this when needed to avoid [converted] remarks all the time.
819 * It is needed when the first line contains non-ASCII characters.
820 * That is only in *.??x files. */
821 fenc = (char_u *)"latin1";
822 c = enc_utf8;
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000823 if (!c && !read_stdin)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000825 fc = fname[STRLEN(fname) - 1];
826 if (TOLOWER_ASC(fc) == 'x')
827 {
828 /* Read the first line (and a bit more). Immediately rewind to
829 * the start of the file. If the read() fails "len" is -1. */
830 len = vim_read(fd, firstline, 80);
831 lseek(fd, (off_t)0L, SEEK_SET);
832 for (p = firstline; p < firstline + len; ++p)
833 if (*p >= 0x80)
834 {
835 c = TRUE;
836 break;
837 }
838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 }
840
841 if (c)
842 {
843 fenc_next = fenc;
844 fenc = (char_u *)"utf-8";
845
846 /* When the file is utf-8 but a character doesn't fit in
847 * 'encoding' don't retry. In help text editing utf-8 bytes
848 * doesn't make sense. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000849 if (!enc_utf8)
850 keep_dest_enc = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851 }
852 fenc_alloced = FALSE;
853 }
854 else if (*p_fencs == NUL)
855 {
856 fenc = curbuf->b_p_fenc; /* use format from buffer */
857 fenc_alloced = FALSE;
858 }
859 else
860 {
861 fenc_next = p_fencs; /* try items in 'fileencodings' */
862 fenc = next_fenc(&fenc_next);
863 fenc_alloced = TRUE;
864 }
865#endif
866
867 /*
868 * Jump back here to retry reading the file in different ways.
869 * Reasons to retry:
870 * - encoding conversion failed: try another one from "fenc_next"
871 * - BOM detected and fenc was set, need to setup conversion
872 * - "fileformat" check failed: try another
873 *
874 * Variables set for special retry actions:
875 * "file_rewind" Rewind the file to start reading it again.
876 * "advance_fenc" Advance "fenc" using "fenc_next".
877 * "skip_read" Re-use already read bytes (BOM detected).
878 * "did_iconv" iconv() conversion failed, try 'charconvert'.
879 * "keep_fileformat" Don't reset "fileformat".
880 *
881 * Other status indicators:
882 * "tmpname" When != NULL did conversion with 'charconvert'.
883 * Output file has to be deleted afterwards.
884 * "iconv_fd" When != -1 did conversion with iconv().
885 */
886retry:
887
888 if (file_rewind)
889 {
890 if (read_buffer)
891 {
892 read_buf_lnum = 1;
893 read_buf_col = 0;
894 }
895 else if (read_stdin || lseek(fd, (off_t)0L, SEEK_SET) != 0)
896 {
897 /* Can't rewind the file, give up. */
898 error = TRUE;
899 goto failed;
900 }
901 /* Delete the previously read lines. */
902 while (lnum > from)
903 ml_delete(lnum--, FALSE);
904 file_rewind = FALSE;
905#ifdef FEAT_MBYTE
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000906 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 curbuf->b_p_bomb = FALSE;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000908 conv_error = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909#endif
910 }
911
912 /*
913 * When retrying with another "fenc" and the first time "fileformat"
914 * will be reset.
915 */
916 if (keep_fileformat)
917 keep_fileformat = FALSE;
918 else
919 {
920 if (eap != NULL && eap->force_ff != 0)
921 fileformat = get_fileformat_force(curbuf, eap);
922 else if (curbuf->b_p_bin)
923 fileformat = EOL_UNIX; /* binary: use Unix format */
924 else if (*p_ffs == NUL)
925 fileformat = get_fileformat(curbuf);/* use format from buffer */
926 else
927 fileformat = EOL_UNKNOWN; /* detect from file */
928 }
929
930#ifdef FEAT_MBYTE
931# ifdef USE_ICONV
932 if (iconv_fd != (iconv_t)-1)
933 {
934 /* aborted conversion with iconv(), close the descriptor */
935 iconv_close(iconv_fd);
936 iconv_fd = (iconv_t)-1;
937 }
938# endif
939
940 if (advance_fenc)
941 {
942 /*
943 * Try the next entry in 'fileencodings'.
944 */
945 advance_fenc = FALSE;
946
947 if (eap != NULL && eap->force_enc != 0)
948 {
949 /* Conversion given with "++cc=" wasn't possible, read
950 * without conversion. */
951 notconverted = TRUE;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000952 conv_error = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 if (fenc_alloced)
954 vim_free(fenc);
955 fenc = (char_u *)"";
956 fenc_alloced = FALSE;
957 }
958 else
959 {
960 if (fenc_alloced)
961 vim_free(fenc);
962 if (fenc_next != NULL)
963 {
964 fenc = next_fenc(&fenc_next);
965 fenc_alloced = (fenc_next != NULL);
966 }
967 else
968 {
969 fenc = (char_u *)"";
970 fenc_alloced = FALSE;
971 }
972 }
973 if (tmpname != NULL)
974 {
975 mch_remove(tmpname); /* delete converted file */
976 vim_free(tmpname);
977 tmpname = NULL;
978 }
979 }
980
981 /*
982 * Conversion is required when the encoding of the file is different
983 * from 'encoding' or 'encoding' is UTF-16, UCS-2 or UCS-4 (requires
984 * conversion to UTF-8).
985 */
986 fio_flags = 0;
987 converted = (*fenc != NUL && !same_encoding(p_enc, fenc));
988 if (converted || enc_unicode != 0)
989 {
990
991 /* "ucs-bom" means we need to check the first bytes of the file
992 * for a BOM. */
993 if (STRCMP(fenc, ENC_UCSBOM) == 0)
994 fio_flags = FIO_UCSBOM;
995
996 /*
997 * Check if UCS-2/4 or Latin1 to UTF-8 conversion needs to be
998 * done. This is handled below after read(). Prepare the
999 * fio_flags to avoid having to parse the string each time.
1000 * Also check for Unicode to Latin1 conversion, because iconv()
1001 * appears not to handle this correctly. This works just like
1002 * conversion to UTF-8 except how the resulting character is put in
1003 * the buffer.
1004 */
1005 else if (enc_utf8 || STRCMP(p_enc, "latin1") == 0)
1006 fio_flags = get_fio_flags(fenc);
1007
1008# ifdef WIN3264
1009 /*
1010 * Conversion from an MS-Windows codepage to UTF-8 or another codepage
1011 * is handled with MultiByteToWideChar().
1012 */
1013 if (fio_flags == 0)
1014 fio_flags = get_win_fio_flags(fenc);
1015# endif
1016
1017# ifdef MACOS_X
1018 /* Conversion from Apple MacRoman to latin1 or UTF-8 */
1019 if (fio_flags == 0)
1020 fio_flags = get_mac_fio_flags(fenc);
1021# endif
1022
1023# ifdef USE_ICONV
1024 /*
1025 * Try using iconv() if we can't convert internally.
1026 */
1027 if (fio_flags == 0
1028# ifdef FEAT_EVAL
1029 && !did_iconv
1030# endif
1031 )
1032 iconv_fd = (iconv_t)my_iconv_open(
1033 enc_utf8 ? (char_u *)"utf-8" : p_enc, fenc);
1034# endif
1035
1036# ifdef FEAT_EVAL
1037 /*
1038 * Use the 'charconvert' expression when conversion is required
1039 * and we can't do it internally or with iconv().
1040 */
1041 if (fio_flags == 0 && !read_stdin && !read_buffer && *p_ccv != NUL
1042# ifdef USE_ICONV
1043 && iconv_fd == (iconv_t)-1
1044# endif
1045 )
1046 {
1047# ifdef USE_ICONV
1048 did_iconv = FALSE;
1049# endif
1050 /* Skip conversion when it's already done (retry for wrong
1051 * "fileformat"). */
1052 if (tmpname == NULL)
1053 {
1054 tmpname = readfile_charconvert(fname, fenc, &fd);
1055 if (tmpname == NULL)
1056 {
1057 /* Conversion failed. Try another one. */
1058 advance_fenc = TRUE;
1059 if (fd < 0)
1060 {
1061 /* Re-opening the original file failed! */
1062 EMSG(_("E202: Conversion made file unreadable!"));
1063 error = TRUE;
1064 goto failed;
1065 }
1066 goto retry;
1067 }
1068 }
1069 }
1070 else
1071# endif
1072 {
1073 if (fio_flags == 0
1074# ifdef USE_ICONV
1075 && iconv_fd == (iconv_t)-1
1076# endif
1077 )
1078 {
1079 /* Conversion wanted but we can't.
1080 * Try the next conversion in 'fileencodings' */
1081 advance_fenc = TRUE;
1082 goto retry;
1083 }
1084 }
1085 }
1086
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001087 /* Set "can_retry" when it's possible to rewind the file and try with
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 * another "fenc" value. It's FALSE when no other "fenc" to try, reading
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001089 * stdin or fixed at a specific encoding. */
1090 can_retry = (*fenc != NUL && !read_stdin && !keep_dest_enc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091#endif
1092
1093 if (!skip_read)
1094 {
1095 linerest = 0;
1096 filesize = 0;
1097 skip_count = lines_to_skip;
1098 read_count = lines_to_read;
1099#ifdef FEAT_MBYTE
1100 conv_restlen = 0;
1101#endif
1102 }
1103
1104 while (!error && !got_int)
1105 {
1106 /*
1107 * We allocate as much space for the file as we can get, plus
1108 * space for the old line plus room for one terminating NUL.
1109 * The amount is limited by the fact that read() only can read
1110 * upto max_unsigned characters (and other things).
1111 */
1112#if SIZEOF_INT <= 2
1113 if (linerest >= 0x7ff0)
1114 {
1115 ++split;
1116 *ptr = NL; /* split line by inserting a NL */
1117 size = 1;
1118 }
1119 else
1120#endif
1121 {
1122 if (!skip_read)
1123 {
1124#if SIZEOF_INT > 2
Bram Moolenaar311d9822007-02-27 15:48:28 +00001125# if defined(SSIZE_MAX) && (SSIZE_MAX < 0x10000L)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 size = SSIZE_MAX; /* use max I/O size, 52K */
1127# else
1128 size = 0x10000L; /* use buffer >= 64K */
1129# endif
1130#else
1131 size = 0x7ff0L - linerest; /* limit buffer to 32K */
1132#endif
1133
Bram Moolenaarc1e37902006-04-18 21:55:01 +00001134 for ( ; size >= 10; size = (long)((long_u)size >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 {
1136 if ((new_buffer = lalloc((long_u)(size + linerest + 1),
1137 FALSE)) != NULL)
1138 break;
1139 }
1140 if (new_buffer == NULL)
1141 {
1142 do_outofmem_msg((long_u)(size * 2 + linerest + 1));
1143 error = TRUE;
1144 break;
1145 }
1146 if (linerest) /* copy characters from the previous buffer */
1147 mch_memmove(new_buffer, ptr - linerest, (size_t)linerest);
1148 vim_free(buffer);
1149 buffer = new_buffer;
1150 ptr = buffer + linerest;
1151 line_start = buffer;
1152
1153#ifdef FEAT_MBYTE
1154 /* May need room to translate into.
1155 * For iconv() we don't really know the required space, use a
1156 * factor ICONV_MULT.
1157 * latin1 to utf-8: 1 byte becomes up to 2 bytes
1158 * utf-16 to utf-8: 2 bytes become up to 3 bytes, 4 bytes
1159 * become up to 4 bytes, size must be multiple of 2
1160 * ucs-2 to utf-8: 2 bytes become up to 3 bytes, size must be
1161 * multiple of 2
1162 * ucs-4 to utf-8: 4 bytes become up to 6 bytes, size must be
1163 * multiple of 4 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001164 real_size = (int)size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165# ifdef USE_ICONV
1166 if (iconv_fd != (iconv_t)-1)
1167 size = size / ICONV_MULT;
1168 else
1169# endif
1170 if (fio_flags & FIO_LATIN1)
1171 size = size / 2;
1172 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1173 size = (size * 2 / 3) & ~1;
1174 else if (fio_flags & FIO_UCS4)
1175 size = (size * 2 / 3) & ~3;
1176 else if (fio_flags == FIO_UCSBOM)
1177 size = size / ICONV_MULT; /* worst case */
1178# ifdef WIN3264
1179 else if (fio_flags & FIO_CODEPAGE)
1180 size = size / ICONV_MULT; /* also worst case */
1181# endif
1182# ifdef MACOS_X
1183 else if (fio_flags & FIO_MACROMAN)
1184 size = size / ICONV_MULT; /* also worst case */
1185# endif
1186#endif
1187
1188#ifdef FEAT_MBYTE
1189 if (conv_restlen > 0)
1190 {
1191 /* Insert unconverted bytes from previous line. */
1192 mch_memmove(ptr, conv_rest, conv_restlen);
1193 ptr += conv_restlen;
1194 size -= conv_restlen;
1195 }
1196#endif
1197
1198 if (read_buffer)
1199 {
1200 /*
1201 * Read bytes from curbuf. Used for converting text read
1202 * from stdin.
1203 */
1204 if (read_buf_lnum > from)
1205 size = 0;
1206 else
1207 {
1208 int n, ni;
1209 long tlen;
1210
1211 tlen = 0;
1212 for (;;)
1213 {
1214 p = ml_get(read_buf_lnum) + read_buf_col;
1215 n = (int)STRLEN(p);
1216 if ((int)tlen + n + 1 > size)
1217 {
1218 /* Filled up to "size", append partial line.
1219 * Change NL to NUL to reverse the effect done
1220 * below. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001221 n = (int)(size - tlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 for (ni = 0; ni < n; ++ni)
1223 {
1224 if (p[ni] == NL)
1225 ptr[tlen++] = NUL;
1226 else
1227 ptr[tlen++] = p[ni];
1228 }
1229 read_buf_col += n;
1230 break;
1231 }
1232 else
1233 {
1234 /* Append whole line and new-line. Change NL
1235 * to NUL to reverse the effect done below. */
1236 for (ni = 0; ni < n; ++ni)
1237 {
1238 if (p[ni] == NL)
1239 ptr[tlen++] = NUL;
1240 else
1241 ptr[tlen++] = p[ni];
1242 }
1243 ptr[tlen++] = NL;
1244 read_buf_col = 0;
1245 if (++read_buf_lnum > from)
1246 {
1247 /* When the last line didn't have an
1248 * end-of-line don't add it now either. */
1249 if (!curbuf->b_p_eol)
1250 --tlen;
1251 size = tlen;
1252 break;
1253 }
1254 }
1255 }
1256 }
1257 }
1258 else
1259 {
1260 /*
1261 * Read bytes from the file.
1262 */
1263 size = vim_read(fd, ptr, size);
1264 }
1265
1266 if (size <= 0)
1267 {
1268 if (size < 0) /* read error */
1269 error = TRUE;
1270#ifdef FEAT_MBYTE
1271 else if (conv_restlen > 0)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001272 {
1273 /* Reached end-of-file but some trailing bytes could
Bram Moolenaar7263a772007-05-10 17:35:54 +00001274 * not be converted. Truncated file? */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001275 if (conv_error == 0)
1276 conv_error = linecnt;
1277 if (bad_char_behavior != BAD_DROP)
1278 {
1279 fio_flags = 0; /* don't convert this */
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001280# ifdef USE_ICONV
1281 if (iconv_fd != (iconv_t)-1)
1282 {
1283 iconv_close(iconv_fd);
1284 iconv_fd = (iconv_t)-1;
1285 }
1286# endif
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001287 if (bad_char_behavior == BAD_KEEP)
1288 {
1289 /* Keep the trailing bytes as-is. */
1290 size = conv_restlen;
1291 ptr -= conv_restlen;
1292 }
1293 else
1294 {
1295 /* Replace the trailing bytes with the
1296 * replacement character. */
1297 size = 1;
1298 *--ptr = bad_char_behavior;
1299 }
1300 conv_restlen = 0;
1301 }
1302 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303#endif
1304 }
1305
1306#ifdef FEAT_CRYPT
1307 /*
1308 * At start of file: Check for magic number of encryption.
1309 */
1310 if (filesize == 0)
1311 cryptkey = check_for_cryptkey(cryptkey, ptr, &size,
1312 &filesize, newfile);
1313 /*
1314 * Decrypt the read bytes.
1315 */
1316 if (cryptkey != NULL && size > 0)
1317 for (p = ptr; p < ptr + size; ++p)
1318 ZDECODE(*p);
1319#endif
1320 }
1321 skip_read = FALSE;
1322
1323#ifdef FEAT_MBYTE
1324 /*
1325 * At start of file (or after crypt magic number): Check for BOM.
1326 * Also check for a BOM for other Unicode encodings, but not after
1327 * converting with 'charconvert' or when a BOM has already been
1328 * found.
1329 */
1330 if ((filesize == 0
1331# ifdef FEAT_CRYPT
1332 || (filesize == CRYPT_MAGIC_LEN && cryptkey != NULL)
1333# endif
1334 )
1335 && (fio_flags == FIO_UCSBOM
1336 || (!curbuf->b_p_bomb
1337 && tmpname == NULL
1338 && (*fenc == 'u' || (*fenc == NUL && enc_utf8)))))
1339 {
1340 char_u *ccname;
1341 int blen;
1342
1343 /* no BOM detection in a short file or in binary mode */
1344 if (size < 2 || curbuf->b_p_bin)
1345 ccname = NULL;
1346 else
1347 ccname = check_for_bom(ptr, size, &blen,
1348 fio_flags == FIO_UCSBOM ? FIO_ALL : get_fio_flags(fenc));
1349 if (ccname != NULL)
1350 {
1351 /* Remove BOM from the text */
1352 filesize += blen;
1353 size -= blen;
1354 mch_memmove(ptr, ptr + blen, (size_t)size);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001355 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 curbuf->b_p_bomb = TRUE;
1357 }
1358
1359 if (fio_flags == FIO_UCSBOM)
1360 {
1361 if (ccname == NULL)
1362 {
1363 /* No BOM detected: retry with next encoding. */
1364 advance_fenc = TRUE;
1365 }
1366 else
1367 {
1368 /* BOM detected: set "fenc" and jump back */
1369 if (fenc_alloced)
1370 vim_free(fenc);
1371 fenc = ccname;
1372 fenc_alloced = FALSE;
1373 }
1374 /* retry reading without getting new bytes or rewinding */
1375 skip_read = TRUE;
1376 goto retry;
1377 }
1378 }
1379#endif
1380 /*
1381 * Break here for a read error or end-of-file.
1382 */
1383 if (size <= 0)
1384 break;
1385
1386#ifdef FEAT_MBYTE
1387
1388 /* Include not converted bytes. */
1389 ptr -= conv_restlen;
1390 size += conv_restlen;
1391 conv_restlen = 0;
1392
1393# ifdef USE_ICONV
1394 if (iconv_fd != (iconv_t)-1)
1395 {
1396 /*
1397 * Attempt conversion of the read bytes to 'encoding' using
1398 * iconv().
1399 */
1400 const char *fromp;
1401 char *top;
1402 size_t from_size;
1403 size_t to_size;
1404
1405 fromp = (char *)ptr;
1406 from_size = size;
1407 ptr += size;
1408 top = (char *)ptr;
1409 to_size = real_size - size;
1410
1411 /*
1412 * If there is conversion error or not enough room try using
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001413 * another conversion. Except for when there is no
1414 * alternative (help files).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001416 while ((iconv(iconv_fd, (void *)&fromp, &from_size,
1417 &top, &to_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 == (size_t)-1 && ICONV_ERRNO != ICONV_EINVAL)
1419 || from_size > CONV_RESTLEN)
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001420 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001421 if (can_retry)
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001422 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001423 if (conv_error == 0)
1424 conv_error = readfile_linenr(linecnt,
1425 ptr, (char_u *)top);
Bram Moolenaar42eeac32005-06-29 22:40:58 +00001426
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001427 /* Deal with a bad byte and continue with the next. */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001428 ++fromp;
1429 --from_size;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001430 if (bad_char_behavior == BAD_KEEP)
1431 {
1432 *top++ = *(fromp - 1);
1433 --to_size;
1434 }
1435 else if (bad_char_behavior != BAD_DROP)
1436 {
1437 *top++ = bad_char_behavior;
1438 --to_size;
1439 }
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001440 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441
1442 if (from_size > 0)
1443 {
1444 /* Some remaining characters, keep them for the next
1445 * round. */
1446 mch_memmove(conv_rest, (char_u *)fromp, from_size);
1447 conv_restlen = (int)from_size;
1448 }
1449
1450 /* move the linerest to before the converted characters */
1451 line_start = ptr - linerest;
1452 mch_memmove(line_start, buffer, (size_t)linerest);
1453 size = (long)((char_u *)top - ptr);
1454 }
1455# endif
1456
1457# ifdef WIN3264
1458 if (fio_flags & FIO_CODEPAGE)
1459 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001460 char_u *src, *dst;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001461 WCHAR ucs2buf[3];
1462 int ucs2len;
1463 int codepage = FIO_GET_CP(fio_flags);
1464 int bytelen;
1465 int found_bad;
1466 char replstr[2];
1467
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 /*
1469 * Conversion from an MS-Windows codepage or UTF-8 to UTF-8 or
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001470 * a codepage, using standard MS-Windows functions. This
1471 * requires two steps:
1472 * 1. convert from 'fileencoding' to ucs-2
1473 * 2. convert from ucs-2 to 'encoding'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001474 *
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001475 * Because there may be illegal bytes AND an incomplete byte
1476 * sequence at the end, we may have to do the conversion one
1477 * character at a time to get it right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001478 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001479
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001480 /* Replacement string for WideCharToMultiByte(). */
1481 if (bad_char_behavior > 0)
1482 replstr[0] = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001483 else
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001484 replstr[0] = '?';
1485 replstr[1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001486
1487 /*
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001488 * Move the bytes to the end of the buffer, so that we have
1489 * room to put the result at the start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001491 src = ptr + real_size - size;
1492 mch_memmove(src, ptr, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001494 /*
1495 * Do the conversion.
1496 */
1497 dst = ptr;
1498 size = size;
1499 while (size > 0)
1500 {
1501 found_bad = FALSE;
1502
1503# ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
1504 if (codepage == CP_UTF8)
1505 {
1506 /* Handle CP_UTF8 input ourselves to be able to handle
1507 * trailing bytes properly.
1508 * Get one UTF-8 character from src. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001509 bytelen = (int)utf_ptr2len_len(src, size);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001510 if (bytelen > size)
1511 {
1512 /* Only got some bytes of a character. Normally
1513 * it's put in "conv_rest", but if it's too long
1514 * deal with it as if they were illegal bytes. */
1515 if (bytelen <= CONV_RESTLEN)
1516 break;
1517
1518 /* weird overlong byte sequence */
1519 bytelen = size;
1520 found_bad = TRUE;
1521 }
1522 else
1523 {
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001524 int u8c = utf_ptr2char(src);
1525
Bram Moolenaar86e01082005-12-29 22:45:34 +00001526 if (u8c > 0xffff || (*src >= 0x80 && bytelen == 1))
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001527 found_bad = TRUE;
1528 ucs2buf[0] = u8c;
1529 ucs2len = 1;
1530 }
1531 }
1532 else
1533# endif
1534 {
1535 /* We don't know how long the byte sequence is, try
1536 * from one to three bytes. */
1537 for (bytelen = 1; bytelen <= size && bytelen <= 3;
1538 ++bytelen)
1539 {
1540 ucs2len = MultiByteToWideChar(codepage,
1541 MB_ERR_INVALID_CHARS,
1542 (LPCSTR)src, bytelen,
1543 ucs2buf, 3);
1544 if (ucs2len > 0)
1545 break;
1546 }
1547 if (ucs2len == 0)
1548 {
1549 /* If we have only one byte then it's probably an
1550 * incomplete byte sequence. Otherwise discard
1551 * one byte as a bad character. */
1552 if (size == 1)
1553 break;
1554 found_bad = TRUE;
1555 bytelen = 1;
1556 }
1557 }
1558
1559 if (!found_bad)
1560 {
1561 int i;
1562
1563 /* Convert "ucs2buf[ucs2len]" to 'enc' in "dst". */
1564 if (enc_utf8)
1565 {
1566 /* From UCS-2 to UTF-8. Cannot fail. */
1567 for (i = 0; i < ucs2len; ++i)
1568 dst += utf_char2bytes(ucs2buf[i], dst);
1569 }
1570 else
1571 {
1572 BOOL bad = FALSE;
1573 int dstlen;
1574
1575 /* From UCS-2 to "enc_codepage". If the
1576 * conversion uses the default character "?",
1577 * the data doesn't fit in this encoding. */
1578 dstlen = WideCharToMultiByte(enc_codepage, 0,
1579 (LPCWSTR)ucs2buf, ucs2len,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001580 (LPSTR)dst, (int)(src - dst),
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001581 replstr, &bad);
1582 if (bad)
1583 found_bad = TRUE;
1584 else
1585 dst += dstlen;
1586 }
1587 }
1588
1589 if (found_bad)
1590 {
1591 /* Deal with bytes we can't convert. */
1592 if (can_retry)
1593 goto rewind_retry;
1594 if (conv_error == 0)
1595 conv_error = readfile_linenr(linecnt, ptr, dst);
1596 if (bad_char_behavior != BAD_DROP)
1597 {
1598 if (bad_char_behavior == BAD_KEEP)
1599 {
1600 mch_memmove(dst, src, bytelen);
1601 dst += bytelen;
1602 }
1603 else
1604 *dst++ = bad_char_behavior;
1605 }
1606 }
1607
1608 src += bytelen;
1609 size -= bytelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001611
1612 if (size > 0)
1613 {
1614 /* An incomplete byte sequence remaining. */
1615 mch_memmove(conv_rest, src, size);
1616 conv_restlen = size;
1617 }
1618
1619 /* The new size is equal to how much "dst" was advanced. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001620 size = (long)(dst - ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621 }
1622 else
1623# endif
Bram Moolenaar56718732006-03-15 22:53:57 +00001624# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625 if (fio_flags & FIO_MACROMAN)
1626 {
1627 /*
1628 * Conversion from Apple MacRoman char encoding to UTF-8 or
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00001629 * latin1. This is in os_mac_conv.c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 */
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00001631 if (macroman2enc(ptr, &size, real_size) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 goto rewind_retry;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 }
1634 else
1635# endif
1636 if (fio_flags != 0)
1637 {
1638 int u8c;
1639 char_u *dest;
1640 char_u *tail = NULL;
1641
1642 /*
1643 * "enc_utf8" set: Convert Unicode or Latin1 to UTF-8.
1644 * "enc_utf8" not set: Convert Unicode to Latin1.
1645 * Go from end to start through the buffer, because the number
1646 * of bytes may increase.
1647 * "dest" points to after where the UTF-8 bytes go, "p" points
1648 * to after the next character to convert.
1649 */
1650 dest = ptr + real_size;
1651 if (fio_flags == FIO_LATIN1 || fio_flags == FIO_UTF8)
1652 {
1653 p = ptr + size;
1654 if (fio_flags == FIO_UTF8)
1655 {
1656 /* Check for a trailing incomplete UTF-8 sequence */
1657 tail = ptr + size - 1;
1658 while (tail > ptr && (*tail & 0xc0) == 0x80)
1659 --tail;
1660 if (tail + utf_byte2len(*tail) <= ptr + size)
1661 tail = NULL;
1662 else
1663 p = tail;
1664 }
1665 }
1666 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1667 {
1668 /* Check for a trailing byte */
1669 p = ptr + (size & ~1);
1670 if (size & 1)
1671 tail = p;
1672 if ((fio_flags & FIO_UTF16) && p > ptr)
1673 {
1674 /* Check for a trailing leading word */
1675 if (fio_flags & FIO_ENDIAN_L)
1676 {
1677 u8c = (*--p << 8);
1678 u8c += *--p;
1679 }
1680 else
1681 {
1682 u8c = *--p;
1683 u8c += (*--p << 8);
1684 }
1685 if (u8c >= 0xd800 && u8c <= 0xdbff)
1686 tail = p;
1687 else
1688 p += 2;
1689 }
1690 }
1691 else /* FIO_UCS4 */
1692 {
1693 /* Check for trailing 1, 2 or 3 bytes */
1694 p = ptr + (size & ~3);
1695 if (size & 3)
1696 tail = p;
1697 }
1698
1699 /* If there is a trailing incomplete sequence move it to
1700 * conv_rest[]. */
1701 if (tail != NULL)
1702 {
1703 conv_restlen = (int)((ptr + size) - tail);
1704 mch_memmove(conv_rest, (char_u *)tail, conv_restlen);
1705 size -= conv_restlen;
1706 }
1707
1708
1709 while (p > ptr)
1710 {
1711 if (fio_flags & FIO_LATIN1)
1712 u8c = *--p;
1713 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1714 {
1715 if (fio_flags & FIO_ENDIAN_L)
1716 {
1717 u8c = (*--p << 8);
1718 u8c += *--p;
1719 }
1720 else
1721 {
1722 u8c = *--p;
1723 u8c += (*--p << 8);
1724 }
1725 if ((fio_flags & FIO_UTF16)
1726 && u8c >= 0xdc00 && u8c <= 0xdfff)
1727 {
1728 int u16c;
1729
1730 if (p == ptr)
1731 {
1732 /* Missing leading word. */
1733 if (can_retry)
1734 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001735 if (conv_error == 0)
1736 conv_error = readfile_linenr(linecnt,
1737 ptr, p);
1738 if (bad_char_behavior == BAD_DROP)
1739 continue;
1740 if (bad_char_behavior != BAD_KEEP)
1741 u8c = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 }
1743
1744 /* found second word of double-word, get the first
1745 * word and compute the resulting character */
1746 if (fio_flags & FIO_ENDIAN_L)
1747 {
1748 u16c = (*--p << 8);
1749 u16c += *--p;
1750 }
1751 else
1752 {
1753 u16c = *--p;
1754 u16c += (*--p << 8);
1755 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001756 u8c = 0x10000 + ((u16c & 0x3ff) << 10)
1757 + (u8c & 0x3ff);
1758
Bram Moolenaar071d4272004-06-13 20:20:40 +00001759 /* Check if the word is indeed a leading word. */
1760 if (u16c < 0xd800 || u16c > 0xdbff)
1761 {
1762 if (can_retry)
1763 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001764 if (conv_error == 0)
1765 conv_error = readfile_linenr(linecnt,
1766 ptr, p);
1767 if (bad_char_behavior == BAD_DROP)
1768 continue;
1769 if (bad_char_behavior != BAD_KEEP)
1770 u8c = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 }
1773 }
1774 else if (fio_flags & FIO_UCS4)
1775 {
1776 if (fio_flags & FIO_ENDIAN_L)
1777 {
1778 u8c = (*--p << 24);
1779 u8c += (*--p << 16);
1780 u8c += (*--p << 8);
1781 u8c += *--p;
1782 }
1783 else /* big endian */
1784 {
1785 u8c = *--p;
1786 u8c += (*--p << 8);
1787 u8c += (*--p << 16);
1788 u8c += (*--p << 24);
1789 }
1790 }
1791 else /* UTF-8 */
1792 {
1793 if (*--p < 0x80)
1794 u8c = *p;
1795 else
1796 {
1797 len = utf_head_off(ptr, p);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001798 p -= len;
1799 u8c = utf_ptr2char(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800 if (len == 0)
1801 {
1802 /* Not a valid UTF-8 character, retry with
1803 * another fenc when possible, otherwise just
1804 * report the error. */
1805 if (can_retry)
1806 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001807 if (conv_error == 0)
1808 conv_error = readfile_linenr(linecnt,
1809 ptr, p);
1810 if (bad_char_behavior == BAD_DROP)
1811 continue;
1812 if (bad_char_behavior != BAD_KEEP)
1813 u8c = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001815 }
1816 }
1817 if (enc_utf8) /* produce UTF-8 */
1818 {
1819 dest -= utf_char2len(u8c);
1820 (void)utf_char2bytes(u8c, dest);
1821 }
1822 else /* produce Latin1 */
1823 {
1824 --dest;
1825 if (u8c >= 0x100)
1826 {
1827 /* character doesn't fit in latin1, retry with
1828 * another fenc when possible, otherwise just
1829 * report the error. */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001830 if (can_retry)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001832 if (conv_error == 0)
1833 conv_error = readfile_linenr(linecnt, ptr, p);
1834 if (bad_char_behavior == BAD_DROP)
1835 ++dest;
1836 else if (bad_char_behavior == BAD_KEEP)
1837 *dest = u8c;
1838 else if (eap != NULL && eap->bad_char != 0)
1839 *dest = bad_char_behavior;
1840 else
1841 *dest = 0xBF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 }
1843 else
1844 *dest = u8c;
1845 }
1846 }
1847
1848 /* move the linerest to before the converted characters */
1849 line_start = dest - linerest;
1850 mch_memmove(line_start, buffer, (size_t)linerest);
1851 size = (long)((ptr + real_size) - dest);
1852 ptr = dest;
1853 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001854 else if (enc_utf8 && conv_error == 0 && !curbuf->b_p_bin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 {
1856 /* Reading UTF-8: Check if the bytes are valid UTF-8.
1857 * Need to start before "ptr" when part of the character was
1858 * read in the previous read() call. */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001859 for (p = ptr - utf_head_off(buffer, ptr); ; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001861 int todo = (int)((ptr + size) - p);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001862 int l;
1863
1864 if (todo <= 0)
1865 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 if (*p >= 0x80)
1867 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 /* A length of 1 means it's an illegal byte. Accept
1869 * an incomplete character at the end though, the next
1870 * read() will get the next bytes, we'll check it
1871 * then. */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001872 l = utf_ptr2len_len(p, todo);
1873 if (l > todo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001875 /* Incomplete byte sequence, the next read()
1876 * should get them and check the bytes. */
1877 p += todo;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 break;
1879 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001880 if (l == 1)
1881 {
1882 /* Illegal byte. If we can try another encoding
1883 * do that. */
1884 if (can_retry)
1885 break;
1886
1887 /* Remember the first linenr with an illegal byte */
1888 if (illegal_byte == 0)
1889 illegal_byte = readfile_linenr(linecnt, ptr, p);
1890# ifdef USE_ICONV
1891 /* When we did a conversion report an error. */
1892 if (iconv_fd != (iconv_t)-1 && conv_error == 0)
1893 conv_error = readfile_linenr(linecnt, ptr, p);
1894# endif
1895
1896 /* Drop, keep or replace the bad byte. */
1897 if (bad_char_behavior == BAD_DROP)
1898 {
1899 mch_memmove(p, p+1, todo - 1);
1900 --p;
1901 --size;
1902 }
1903 else if (bad_char_behavior != BAD_KEEP)
1904 *p = bad_char_behavior;
1905 }
1906 p += l - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 }
1908 }
1909 if (p < ptr + size)
1910 {
1911 /* Detected a UTF-8 error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912rewind_retry:
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001913 /* Retry reading with another conversion. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914# if defined(FEAT_EVAL) && defined(USE_ICONV)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001915 if (*p_ccv != NUL && iconv_fd != (iconv_t)-1)
1916 /* iconv() failed, try 'charconvert' */
1917 did_iconv = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 else
1919# endif
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001920 /* use next item from 'fileencodings' */
1921 advance_fenc = TRUE;
1922 file_rewind = TRUE;
1923 goto retry;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001924 }
1925 }
1926#endif
1927
1928 /* count the number of characters (after conversion!) */
1929 filesize += size;
1930
1931 /*
1932 * when reading the first part of a file: guess EOL type
1933 */
1934 if (fileformat == EOL_UNKNOWN)
1935 {
1936 /* First try finding a NL, for Dos and Unix */
1937 if (try_dos || try_unix)
1938 {
1939 for (p = ptr; p < ptr + size; ++p)
1940 {
1941 if (*p == NL)
1942 {
1943 if (!try_unix
1944 || (try_dos && p > ptr && p[-1] == CAR))
1945 fileformat = EOL_DOS;
1946 else
1947 fileformat = EOL_UNIX;
1948 break;
1949 }
1950 }
1951
1952 /* Don't give in to EOL_UNIX if EOL_MAC is more likely */
1953 if (fileformat == EOL_UNIX && try_mac)
1954 {
1955 /* Need to reset the counters when retrying fenc. */
1956 try_mac = 1;
1957 try_unix = 1;
1958 for (; p >= ptr && *p != CAR; p--)
1959 ;
1960 if (p >= ptr)
1961 {
1962 for (p = ptr; p < ptr + size; ++p)
1963 {
1964 if (*p == NL)
1965 try_unix++;
1966 else if (*p == CAR)
1967 try_mac++;
1968 }
1969 if (try_mac > try_unix)
1970 fileformat = EOL_MAC;
1971 }
1972 }
1973 }
1974
1975 /* No NL found: may use Mac format */
1976 if (fileformat == EOL_UNKNOWN && try_mac)
1977 fileformat = EOL_MAC;
1978
1979 /* Still nothing found? Use first format in 'ffs' */
1980 if (fileformat == EOL_UNKNOWN)
1981 fileformat = default_fileformat();
1982
1983 /* if editing a new file: may set p_tx and p_ff */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001984 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001985 set_fileformat(fileformat, OPT_LOCAL);
1986 }
1987 }
1988
1989 /*
1990 * This loop is executed once for every character read.
1991 * Keep it fast!
1992 */
1993 if (fileformat == EOL_MAC)
1994 {
1995 --ptr;
1996 while (++ptr, --size >= 0)
1997 {
1998 /* catch most common case first */
1999 if ((c = *ptr) != NUL && c != CAR && c != NL)
2000 continue;
2001 if (c == NUL)
2002 *ptr = NL; /* NULs are replaced by newlines! */
2003 else if (c == NL)
2004 *ptr = CAR; /* NLs are replaced by CRs! */
2005 else
2006 {
2007 if (skip_count == 0)
2008 {
2009 *ptr = NUL; /* end of line */
2010 len = (colnr_T) (ptr - line_start + 1);
2011 if (ml_append(lnum, line_start, len, newfile) == FAIL)
2012 {
2013 error = TRUE;
2014 break;
2015 }
2016 ++lnum;
2017 if (--read_count == 0)
2018 {
2019 error = TRUE; /* break loop */
2020 line_start = ptr; /* nothing left to write */
2021 break;
2022 }
2023 }
2024 else
2025 --skip_count;
2026 line_start = ptr + 1;
2027 }
2028 }
2029 }
2030 else
2031 {
2032 --ptr;
2033 while (++ptr, --size >= 0)
2034 {
2035 if ((c = *ptr) != NUL && c != NL) /* catch most common case */
2036 continue;
2037 if (c == NUL)
2038 *ptr = NL; /* NULs are replaced by newlines! */
2039 else
2040 {
2041 if (skip_count == 0)
2042 {
2043 *ptr = NUL; /* end of line */
2044 len = (colnr_T)(ptr - line_start + 1);
2045 if (fileformat == EOL_DOS)
2046 {
2047 if (ptr[-1] == CAR) /* remove CR */
2048 {
2049 ptr[-1] = NUL;
2050 --len;
2051 }
2052 /*
2053 * Reading in Dos format, but no CR-LF found!
2054 * When 'fileformats' includes "unix", delete all
2055 * the lines read so far and start all over again.
2056 * Otherwise give an error message later.
2057 */
2058 else if (ff_error != EOL_DOS)
2059 {
2060 if ( try_unix
2061 && !read_stdin
2062 && (read_buffer
2063 || lseek(fd, (off_t)0L, SEEK_SET) == 0))
2064 {
2065 fileformat = EOL_UNIX;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002066 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 set_fileformat(EOL_UNIX, OPT_LOCAL);
2068 file_rewind = TRUE;
2069 keep_fileformat = TRUE;
2070 goto retry;
2071 }
2072 ff_error = EOL_DOS;
2073 }
2074 }
2075 if (ml_append(lnum, line_start, len, newfile) == FAIL)
2076 {
2077 error = TRUE;
2078 break;
2079 }
2080 ++lnum;
2081 if (--read_count == 0)
2082 {
2083 error = TRUE; /* break loop */
2084 line_start = ptr; /* nothing left to write */
2085 break;
2086 }
2087 }
2088 else
2089 --skip_count;
2090 line_start = ptr + 1;
2091 }
2092 }
2093 }
2094 linerest = (long)(ptr - line_start);
2095 ui_breakcheck();
2096 }
2097
2098failed:
2099 /* not an error, max. number of lines reached */
2100 if (error && read_count == 0)
2101 error = FALSE;
2102
2103 /*
2104 * If we get EOF in the middle of a line, note the fact and
2105 * complete the line ourselves.
2106 * In Dos format ignore a trailing CTRL-Z, unless 'binary' set.
2107 */
2108 if (!error
2109 && !got_int
2110 && linerest != 0
2111 && !(!curbuf->b_p_bin
2112 && fileformat == EOL_DOS
2113 && *line_start == Ctrl_Z
2114 && ptr == line_start + 1))
2115 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002116 /* remember for when writing */
2117 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118 curbuf->b_p_eol = FALSE;
2119 *ptr = NUL;
2120 if (ml_append(lnum, line_start,
2121 (colnr_T)(ptr - line_start + 1), newfile) == FAIL)
2122 error = TRUE;
2123 else
2124 read_no_eol_lnum = ++lnum;
2125 }
2126
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002127 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 save_file_ff(curbuf); /* remember the current file format */
2129
2130#ifdef FEAT_CRYPT
2131 if (cryptkey != curbuf->b_p_key)
2132 vim_free(cryptkey);
2133#endif
2134
2135#ifdef FEAT_MBYTE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002136 /* If editing a new file: set 'fenc' for the current buffer.
2137 * Also for ":read ++edit file". */
2138 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 set_string_option_direct((char_u *)"fenc", -1, fenc,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002140 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 if (fenc_alloced)
2142 vim_free(fenc);
2143# ifdef USE_ICONV
2144 if (iconv_fd != (iconv_t)-1)
2145 {
2146 iconv_close(iconv_fd);
2147 iconv_fd = (iconv_t)-1;
2148 }
2149# endif
2150#endif
2151
2152 if (!read_buffer && !read_stdin)
2153 close(fd); /* errors are ignored */
2154 vim_free(buffer);
2155
2156#ifdef HAVE_DUP
2157 if (read_stdin)
2158 {
2159 /* Use stderr for stdin, makes shell commands work. */
2160 close(0);
2161 dup(2);
2162 }
2163#endif
2164
2165#ifdef FEAT_MBYTE
2166 if (tmpname != NULL)
2167 {
2168 mch_remove(tmpname); /* delete converted file */
2169 vim_free(tmpname);
2170 }
2171#endif
2172 --no_wait_return; /* may wait for return now */
2173
2174 /*
2175 * In recovery mode everything but autocommands is skipped.
2176 */
2177 if (!recoverymode)
2178 {
2179 /* need to delete the last line, which comes from the empty buffer */
2180 if (newfile && wasempty && !(curbuf->b_ml.ml_flags & ML_EMPTY))
2181 {
2182#ifdef FEAT_NETBEANS_INTG
2183 netbeansFireChanges = 0;
2184#endif
2185 ml_delete(curbuf->b_ml.ml_line_count, FALSE);
2186#ifdef FEAT_NETBEANS_INTG
2187 netbeansFireChanges = 1;
2188#endif
2189 --linecnt;
2190 }
2191 linecnt = curbuf->b_ml.ml_line_count - linecnt;
2192 if (filesize == 0)
2193 linecnt = 0;
2194 if (newfile || read_buffer)
Bram Moolenaar7263a772007-05-10 17:35:54 +00002195 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 redraw_curbuf_later(NOT_VALID);
Bram Moolenaar7263a772007-05-10 17:35:54 +00002197#ifdef FEAT_DIFF
2198 /* After reading the text into the buffer the diff info needs to
2199 * be updated. */
2200 diff_invalidate(curbuf);
2201#endif
2202#ifdef FEAT_FOLDING
2203 /* All folds in the window are invalid now. Mark them for update
2204 * before triggering autocommands. */
2205 foldUpdateAll(curwin);
2206#endif
2207 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 else if (linecnt) /* appended at least one line */
2209 appended_lines_mark(from, linecnt);
2210
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211#ifndef ALWAYS_USE_GUI
2212 /*
2213 * If we were reading from the same terminal as where messages go,
2214 * the screen will have been messed up.
2215 * Switch on raw mode now and clear the screen.
2216 */
2217 if (read_stdin)
2218 {
2219 settmode(TMODE_RAW); /* set to raw mode */
2220 starttermcap();
2221 screenclear();
2222 }
2223#endif
2224
2225 if (got_int)
2226 {
2227 if (!(flags & READ_DUMMY))
2228 {
2229 filemess(curbuf, sfname, (char_u *)_(e_interr), 0);
2230 if (newfile)
2231 curbuf->b_p_ro = TRUE; /* must use "w!" now */
2232 }
2233 msg_scroll = msg_save;
2234#ifdef FEAT_VIMINFO
2235 check_marks_read();
2236#endif
2237 return OK; /* an interrupt isn't really an error */
2238 }
2239
2240 if (!filtering && !(flags & READ_DUMMY))
2241 {
2242 msg_add_fname(curbuf, sfname); /* fname in IObuff with quotes */
2243 c = FALSE;
2244
2245#ifdef UNIX
2246# ifdef S_ISFIFO
2247 if (S_ISFIFO(perm)) /* fifo or socket */
2248 {
2249 STRCAT(IObuff, _("[fifo/socket]"));
2250 c = TRUE;
2251 }
2252# else
2253# ifdef S_IFIFO
2254 if ((perm & S_IFMT) == S_IFIFO) /* fifo */
2255 {
2256 STRCAT(IObuff, _("[fifo]"));
2257 c = TRUE;
2258 }
2259# endif
2260# ifdef S_IFSOCK
2261 if ((perm & S_IFMT) == S_IFSOCK) /* or socket */
2262 {
2263 STRCAT(IObuff, _("[socket]"));
2264 c = TRUE;
2265 }
2266# endif
2267# endif
2268#endif
2269 if (curbuf->b_p_ro)
2270 {
2271 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
2272 c = TRUE;
2273 }
2274 if (read_no_eol_lnum)
2275 {
2276 msg_add_eol();
2277 c = TRUE;
2278 }
2279 if (ff_error == EOL_DOS)
2280 {
2281 STRCAT(IObuff, _("[CR missing]"));
2282 c = TRUE;
2283 }
2284 if (ff_error == EOL_MAC)
2285 {
2286 STRCAT(IObuff, _("[NL found]"));
2287 c = TRUE;
2288 }
2289 if (split)
2290 {
2291 STRCAT(IObuff, _("[long lines split]"));
2292 c = TRUE;
2293 }
2294#ifdef FEAT_MBYTE
2295 if (notconverted)
2296 {
2297 STRCAT(IObuff, _("[NOT converted]"));
2298 c = TRUE;
2299 }
2300 else if (converted)
2301 {
2302 STRCAT(IObuff, _("[converted]"));
2303 c = TRUE;
2304 }
2305#endif
2306#ifdef FEAT_CRYPT
2307 if (cryptkey != NULL)
2308 {
2309 STRCAT(IObuff, _("[crypted]"));
2310 c = TRUE;
2311 }
2312#endif
2313#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002314 if (conv_error != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002316 sprintf((char *)IObuff + STRLEN(IObuff),
2317 _("[CONVERSION ERROR in line %ld]"), (long)conv_error);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 c = TRUE;
2319 }
2320 else if (illegal_byte > 0)
2321 {
2322 sprintf((char *)IObuff + STRLEN(IObuff),
2323 _("[ILLEGAL BYTE in line %ld]"), (long)illegal_byte);
2324 c = TRUE;
2325 }
2326 else
2327#endif
2328 if (error)
2329 {
2330 STRCAT(IObuff, _("[READ ERRORS]"));
2331 c = TRUE;
2332 }
2333 if (msg_add_fileformat(fileformat))
2334 c = TRUE;
2335#ifdef FEAT_CRYPT
2336 if (cryptkey != NULL)
2337 msg_add_lines(c, (long)linecnt, filesize - CRYPT_MAGIC_LEN);
2338 else
2339#endif
2340 msg_add_lines(c, (long)linecnt, filesize);
2341
2342 vim_free(keep_msg);
2343 keep_msg = NULL;
2344 msg_scrolled_ign = TRUE;
2345#ifdef ALWAYS_USE_GUI
2346 /* Don't show the message when reading stdin, it would end up in a
2347 * message box (which might be shown when exiting!) */
2348 if (read_stdin || read_buffer)
2349 p = msg_may_trunc(FALSE, IObuff);
2350 else
2351#endif
2352 p = msg_trunc_attr(IObuff, FALSE, 0);
2353 if (read_stdin || read_buffer || restart_edit != 0
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002354 || (msg_scrolled != 0 && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 /* Need to repeat the message after redrawing when:
2356 * - When reading from stdin (the screen will be cleared next).
2357 * - When restart_edit is set (otherwise there will be a delay
2358 * before redrawing).
2359 * - When the screen was scrolled but there is no wait-return
2360 * prompt. */
Bram Moolenaar8f7fd652006-02-21 22:04:51 +00002361 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 msg_scrolled_ign = FALSE;
2363 }
2364
2365 /* with errors writing the file requires ":w!" */
2366 if (newfile && (error
2367#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002368 || conv_error != 0
Bram Moolenaar8f7fd652006-02-21 22:04:51 +00002369 || (illegal_byte > 0 && bad_char_behavior != BAD_KEEP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002370#endif
2371 ))
2372 curbuf->b_p_ro = TRUE;
2373
2374 u_clearline(); /* cannot use "U" command after adding lines */
2375
2376 /*
2377 * In Ex mode: cursor at last new line.
2378 * Otherwise: cursor at first new line.
2379 */
2380 if (exmode_active)
2381 curwin->w_cursor.lnum = from + linecnt;
2382 else
2383 curwin->w_cursor.lnum = from + 1;
2384 check_cursor_lnum();
2385 beginline(BL_WHITE | BL_FIX); /* on first non-blank */
2386
2387 /*
2388 * Set '[ and '] marks to the newly read lines.
2389 */
2390 curbuf->b_op_start.lnum = from + 1;
2391 curbuf->b_op_start.col = 0;
2392 curbuf->b_op_end.lnum = from + linecnt;
2393 curbuf->b_op_end.col = 0;
Bram Moolenaar03f48552006-02-28 23:52:23 +00002394
2395#ifdef WIN32
2396 /*
2397 * Work around a weird problem: When a file has two links (only
2398 * possible on NTFS) and we write through one link, then stat() it
2399 * throught the other link, the timestamp information may be wrong.
2400 * It's correct again after reading the file, thus reset the timestamp
2401 * here.
2402 */
2403 if (newfile && !read_stdin && !read_buffer
2404 && mch_stat((char *)fname, &st) >= 0)
2405 {
2406 buf_store_time(curbuf, &st, fname);
2407 curbuf->b_mtime_read = curbuf->b_mtime;
2408 }
2409#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410 }
2411 msg_scroll = msg_save;
2412
2413#ifdef FEAT_VIMINFO
2414 /*
2415 * Get the marks before executing autocommands, so they can be used there.
2416 */
2417 check_marks_read();
2418#endif
2419
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 /*
2421 * Trick: We remember if the last line of the read didn't have
2422 * an eol for when writing it again. This is required for
2423 * ":autocmd FileReadPost *.gz set bin|'[,']!gunzip" to work.
2424 */
2425 write_no_eol_lnum = read_no_eol_lnum;
2426
Bram Moolenaardf177f62005-02-22 08:39:57 +00002427#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 if (!read_stdin && !read_buffer)
2429 {
2430 int m = msg_scroll;
2431 int n = msg_scrolled;
2432
2433 /* Save the fileformat now, otherwise the buffer will be considered
2434 * modified if the format/encoding was automatically detected. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002435 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 save_file_ff(curbuf);
2437
2438 /*
2439 * The output from the autocommands should not overwrite anything and
2440 * should not be overwritten: Set msg_scroll, restore its value if no
2441 * output was done.
2442 */
2443 msg_scroll = TRUE;
2444 if (filtering)
2445 apply_autocmds_exarg(EVENT_FILTERREADPOST, NULL, sfname,
2446 FALSE, curbuf, eap);
2447 else if (newfile)
2448 apply_autocmds_exarg(EVENT_BUFREADPOST, NULL, sfname,
2449 FALSE, curbuf, eap);
2450 else
2451 apply_autocmds_exarg(EVENT_FILEREADPOST, sfname, sfname,
2452 FALSE, NULL, eap);
2453 if (msg_scrolled == n)
2454 msg_scroll = m;
2455#ifdef FEAT_EVAL
2456 if (aborting()) /* autocmds may abort script processing */
2457 return FAIL;
2458#endif
2459 }
2460#endif
2461
2462 if (recoverymode && error)
2463 return FAIL;
2464 return OK;
2465}
2466
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002467#ifdef FEAT_MBYTE
2468
2469/*
2470 * From the current line count and characters read after that, estimate the
2471 * line number where we are now.
2472 * Used for error messages that include a line number.
2473 */
2474 static linenr_T
2475readfile_linenr(linecnt, p, endp)
2476 linenr_T linecnt; /* line count before reading more bytes */
2477 char_u *p; /* start of more bytes read */
2478 char_u *endp; /* end of more bytes read */
2479{
2480 char_u *s;
2481 linenr_T lnum;
2482
2483 lnum = curbuf->b_ml.ml_line_count - linecnt + 1;
2484 for (s = p; s < endp; ++s)
2485 if (*s == '\n')
2486 ++lnum;
2487 return lnum;
2488}
2489#endif
2490
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491/*
Bram Moolenaar195d6352005-12-19 22:08:24 +00002492 * Fill "*eap" to force the 'fileencoding', 'fileformat' and 'binary to be
2493 * equal to the buffer "buf". Used for calling readfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 * Returns OK or FAIL.
2495 */
2496 int
2497prep_exarg(eap, buf)
2498 exarg_T *eap;
2499 buf_T *buf;
2500{
2501 eap->cmd = alloc((unsigned)(STRLEN(buf->b_p_ff)
2502#ifdef FEAT_MBYTE
2503 + STRLEN(buf->b_p_fenc)
2504#endif
2505 + 15));
2506 if (eap->cmd == NULL)
2507 return FAIL;
2508
2509#ifdef FEAT_MBYTE
2510 sprintf((char *)eap->cmd, "e ++ff=%s ++enc=%s", buf->b_p_ff, buf->b_p_fenc);
2511 eap->force_enc = 14 + (int)STRLEN(buf->b_p_ff);
Bram Moolenaar195d6352005-12-19 22:08:24 +00002512 eap->bad_char = buf->b_bad_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513#else
2514 sprintf((char *)eap->cmd, "e ++ff=%s", buf->b_p_ff);
2515#endif
2516 eap->force_ff = 7;
Bram Moolenaar195d6352005-12-19 22:08:24 +00002517
2518 eap->force_bin = buf->b_p_bin ? FORCE_BIN : FORCE_NOBIN;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002519 eap->read_edit = FALSE;
Bram Moolenaar195d6352005-12-19 22:08:24 +00002520 eap->forceit = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002521 return OK;
2522}
2523
2524#ifdef FEAT_MBYTE
2525/*
2526 * Find next fileencoding to use from 'fileencodings'.
2527 * "pp" points to fenc_next. It's advanced to the next item.
2528 * When there are no more items, an empty string is returned and *pp is set to
2529 * NULL.
2530 * When *pp is not set to NULL, the result is in allocated memory.
2531 */
2532 static char_u *
2533next_fenc(pp)
2534 char_u **pp;
2535{
2536 char_u *p;
2537 char_u *r;
2538
2539 if (**pp == NUL)
2540 {
2541 *pp = NULL;
2542 return (char_u *)"";
2543 }
2544 p = vim_strchr(*pp, ',');
2545 if (p == NULL)
2546 {
2547 r = enc_canonize(*pp);
2548 *pp += STRLEN(*pp);
2549 }
2550 else
2551 {
2552 r = vim_strnsave(*pp, (int)(p - *pp));
2553 *pp = p + 1;
2554 if (r != NULL)
2555 {
2556 p = enc_canonize(r);
2557 vim_free(r);
2558 r = p;
2559 }
2560 }
2561 if (r == NULL) /* out of memory */
2562 {
2563 r = (char_u *)"";
2564 *pp = NULL;
2565 }
2566 return r;
2567}
2568
2569# ifdef FEAT_EVAL
2570/*
2571 * Convert a file with the 'charconvert' expression.
2572 * This closes the file which is to be read, converts it and opens the
2573 * resulting file for reading.
2574 * Returns name of the resulting converted file (the caller should delete it
2575 * after reading it).
2576 * Returns NULL if the conversion failed ("*fdp" is not set) .
2577 */
2578 static char_u *
2579readfile_charconvert(fname, fenc, fdp)
2580 char_u *fname; /* name of input file */
2581 char_u *fenc; /* converted from */
2582 int *fdp; /* in/out: file descriptor of file */
2583{
2584 char_u *tmpname;
2585 char_u *errmsg = NULL;
2586
2587 tmpname = vim_tempname('r');
2588 if (tmpname == NULL)
2589 errmsg = (char_u *)_("Can't find temp file for conversion");
2590 else
2591 {
2592 close(*fdp); /* close the input file, ignore errors */
2593 *fdp = -1;
2594 if (eval_charconvert(fenc, enc_utf8 ? (char_u *)"utf-8" : p_enc,
2595 fname, tmpname) == FAIL)
2596 errmsg = (char_u *)_("Conversion with 'charconvert' failed");
2597 if (errmsg == NULL && (*fdp = mch_open((char *)tmpname,
2598 O_RDONLY | O_EXTRA, 0)) < 0)
2599 errmsg = (char_u *)_("can't read output of 'charconvert'");
2600 }
2601
2602 if (errmsg != NULL)
2603 {
2604 /* Don't use emsg(), it breaks mappings, the retry with
2605 * another type of conversion might still work. */
2606 MSG(errmsg);
2607 if (tmpname != NULL)
2608 {
2609 mch_remove(tmpname); /* delete converted file */
2610 vim_free(tmpname);
2611 tmpname = NULL;
2612 }
2613 }
2614
2615 /* If the input file is closed, open it (caller should check for error). */
2616 if (*fdp < 0)
2617 *fdp = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2618
2619 return tmpname;
2620}
2621# endif
2622
2623#endif
2624
2625#ifdef FEAT_VIMINFO
2626/*
2627 * Read marks for the current buffer from the viminfo file, when we support
2628 * buffer marks and the buffer has a name.
2629 */
2630 static void
2631check_marks_read()
2632{
2633 if (!curbuf->b_marks_read && get_viminfo_parameter('\'') > 0
2634 && curbuf->b_ffname != NULL)
2635 read_viminfo(NULL, FALSE, TRUE, FALSE);
2636
2637 /* Always set b_marks_read; needed when 'viminfo' is changed to include
2638 * the ' parameter after opening a buffer. */
2639 curbuf->b_marks_read = TRUE;
2640}
2641#endif
2642
2643#ifdef FEAT_CRYPT
2644/*
2645 * Check for magic number used for encryption.
2646 * If found, the magic number is removed from ptr[*sizep] and *sizep and
2647 * *filesizep are updated.
2648 * Return the (new) encryption key, NULL for no encryption.
2649 */
2650 static char_u *
2651check_for_cryptkey(cryptkey, ptr, sizep, filesizep, newfile)
2652 char_u *cryptkey; /* previous encryption key or NULL */
2653 char_u *ptr; /* pointer to read bytes */
2654 long *sizep; /* length of read bytes */
2655 long *filesizep; /* nr of bytes used from file */
2656 int newfile; /* editing a new buffer */
2657{
2658 if (*sizep >= CRYPT_MAGIC_LEN
2659 && STRNCMP(ptr, CRYPT_MAGIC, CRYPT_MAGIC_LEN) == 0)
2660 {
2661 if (cryptkey == NULL)
2662 {
2663 if (*curbuf->b_p_key)
2664 cryptkey = curbuf->b_p_key;
2665 else
2666 {
2667 /* When newfile is TRUE, store the typed key
2668 * in the 'key' option and don't free it. */
2669 cryptkey = get_crypt_key(newfile, FALSE);
2670 /* check if empty key entered */
2671 if (cryptkey != NULL && *cryptkey == NUL)
2672 {
2673 if (cryptkey != curbuf->b_p_key)
2674 vim_free(cryptkey);
2675 cryptkey = NULL;
2676 }
2677 }
2678 }
2679
2680 if (cryptkey != NULL)
2681 {
2682 crypt_init_keys(cryptkey);
2683
2684 /* Remove magic number from the text */
2685 *filesizep += CRYPT_MAGIC_LEN;
2686 *sizep -= CRYPT_MAGIC_LEN;
2687 mch_memmove(ptr, ptr + CRYPT_MAGIC_LEN, (size_t)*sizep);
2688 }
2689 }
2690 /* When starting to edit a new file which does not have
2691 * encryption, clear the 'key' option, except when
2692 * starting up (called with -x argument) */
2693 else if (newfile && *curbuf->b_p_key && !starting)
2694 set_option_value((char_u *)"key", 0L, (char_u *)"", OPT_LOCAL);
2695
2696 return cryptkey;
2697}
2698#endif
2699
2700#ifdef UNIX
2701 static void
2702set_file_time(fname, atime, mtime)
2703 char_u *fname;
2704 time_t atime; /* access time */
2705 time_t mtime; /* modification time */
2706{
2707# if defined(HAVE_UTIME) && defined(HAVE_UTIME_H)
2708 struct utimbuf buf;
2709
2710 buf.actime = atime;
2711 buf.modtime = mtime;
2712 (void)utime((char *)fname, &buf);
2713# else
2714# if defined(HAVE_UTIMES)
2715 struct timeval tvp[2];
2716
2717 tvp[0].tv_sec = atime;
2718 tvp[0].tv_usec = 0;
2719 tvp[1].tv_sec = mtime;
2720 tvp[1].tv_usec = 0;
2721# ifdef NeXT
2722 (void)utimes((char *)fname, tvp);
2723# else
2724 (void)utimes((char *)fname, (const struct timeval *)&tvp);
2725# endif
2726# endif
2727# endif
2728}
2729#endif /* UNIX */
2730
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002731#if defined(VMS) && !defined(MIN)
2732/* Older DECC compiler for VAX doesn't define MIN() */
2733# define MIN(a, b) ((a) < (b) ? (a) : (b))
2734#endif
2735
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736/*
Bram Moolenaar292ad192005-12-11 21:29:51 +00002737 * buf_write() - write to file "fname" lines "start" through "end"
Bram Moolenaar071d4272004-06-13 20:20:40 +00002738 *
2739 * We do our own buffering here because fwrite() is so slow.
2740 *
Bram Moolenaar292ad192005-12-11 21:29:51 +00002741 * If "forceit" is true, we don't care for errors when attempting backups.
2742 * In case of an error everything possible is done to restore the original
2743 * file. But when "forceit" is TRUE, we risk loosing it.
2744 *
2745 * When "reset_changed" is TRUE and "append" == FALSE and "start" == 1 and
2746 * "end" == curbuf->b_ml.ml_line_count, reset curbuf->b_changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 *
2748 * This function must NOT use NameBuff (because it's called by autowrite()).
2749 *
2750 * return FAIL for failure, OK otherwise
2751 */
2752 int
2753buf_write(buf, fname, sfname, start, end, eap, append, forceit,
2754 reset_changed, filtering)
2755 buf_T *buf;
2756 char_u *fname;
2757 char_u *sfname;
2758 linenr_T start, end;
2759 exarg_T *eap; /* for forced 'ff' and 'fenc', can be
2760 NULL! */
Bram Moolenaar292ad192005-12-11 21:29:51 +00002761 int append; /* append to the file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002762 int forceit;
2763 int reset_changed;
2764 int filtering;
2765{
2766 int fd;
2767 char_u *backup = NULL;
2768 int backup_copy = FALSE; /* copy the original file? */
2769 int dobackup;
2770 char_u *ffname;
2771 char_u *wfname = NULL; /* name of file to write to */
2772 char_u *s;
2773 char_u *ptr;
2774 char_u c;
2775 int len;
2776 linenr_T lnum;
2777 long nchars;
2778 char_u *errmsg = NULL;
2779 char_u *errnum = NULL;
2780 char_u *buffer;
2781 char_u smallbuf[SMBUFSIZE];
2782 char_u *backup_ext;
2783 int bufsize;
2784 long perm; /* file permissions */
2785 int retval = OK;
2786 int newfile = FALSE; /* TRUE if file doesn't exist yet */
2787 int msg_save = msg_scroll;
2788 int overwriting; /* TRUE if writing over original */
2789 int no_eol = FALSE; /* no end-of-line written */
2790 int device = FALSE; /* writing to a device */
2791 struct stat st_old;
2792 int prev_got_int = got_int;
2793 int file_readonly = FALSE; /* overwritten file is read-only */
2794 static char *err_readonly = "is read-only (cannot override: \"W\" in 'cpoptions')";
2795#if defined(UNIX) || defined(__EMX__XX) /*XXX fix me sometime? */
2796 int made_writable = FALSE; /* 'w' bit has been set */
2797#endif
2798 /* writing everything */
2799 int whole = (start == 1 && end == buf->b_ml.ml_line_count);
2800#ifdef FEAT_AUTOCMD
2801 linenr_T old_line_count = buf->b_ml.ml_line_count;
2802#endif
2803 int attr;
2804 int fileformat;
2805 int write_bin;
2806 struct bw_info write_info; /* info for buf_write_bytes() */
2807#ifdef FEAT_MBYTE
2808 int converted = FALSE;
2809 int notconverted = FALSE;
2810 char_u *fenc; /* effective 'fileencoding' */
2811 char_u *fenc_tofree = NULL; /* allocated "fenc" */
2812#endif
2813#ifdef HAS_BW_FLAGS
2814 int wb_flags = 0;
2815#endif
2816#ifdef HAVE_ACL
2817 vim_acl_T acl = NULL; /* ACL copied from original file to
2818 backup or new file */
2819#endif
2820
2821 if (fname == NULL || *fname == NUL) /* safety check */
2822 return FAIL;
2823
2824 /*
2825 * Disallow writing from .exrc and .vimrc in current directory for
2826 * security reasons.
2827 */
2828 if (check_secure())
2829 return FAIL;
2830
2831 /* Avoid a crash for a long name. */
2832 if (STRLEN(fname) >= MAXPATHL)
2833 {
2834 EMSG(_(e_longname));
2835 return FAIL;
2836 }
2837
2838#ifdef FEAT_MBYTE
2839 /* must init bw_conv_buf and bw_iconv_fd before jumping to "fail" */
2840 write_info.bw_conv_buf = NULL;
2841 write_info.bw_conv_error = FALSE;
2842 write_info.bw_restlen = 0;
2843# ifdef USE_ICONV
2844 write_info.bw_iconv_fd = (iconv_t)-1;
2845# endif
2846#endif
2847
Bram Moolenaardf177f62005-02-22 08:39:57 +00002848 /* After writing a file changedtick changes but we don't want to display
2849 * the line. */
2850 ex_no_reprint = TRUE;
2851
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 /*
2853 * If there is no file name yet, use the one for the written file.
2854 * BF_NOTEDITED is set to reflect this (in case the write fails).
2855 * Don't do this when the write is for a filter command.
Bram Moolenaar292ad192005-12-11 21:29:51 +00002856 * Don't do this when appending.
2857 * Only do this when 'cpoptions' contains the 'F' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858 */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002859 if (buf->b_ffname == NULL
2860 && reset_changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 && whole
2862 && buf == curbuf
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00002863#ifdef FEAT_QUICKFIX
2864 && !bt_nofile(buf)
2865#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 && !filtering
Bram Moolenaar292ad192005-12-11 21:29:51 +00002867 && (!append || vim_strchr(p_cpo, CPO_FNAMEAPP) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 && vim_strchr(p_cpo, CPO_FNAMEW) != NULL)
2869 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002870 if (set_rw_fname(fname, sfname) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002871 return FAIL;
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00002872 buf = curbuf; /* just in case autocmds made "buf" invalid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 }
2874
2875 if (sfname == NULL)
2876 sfname = fname;
2877 /*
2878 * For Unix: Use the short file name whenever possible.
2879 * Avoids problems with networks and when directory names are changed.
2880 * Don't do this for MS-DOS, a "cd" in a sub-shell may have moved us to
2881 * another directory, which we don't detect
2882 */
2883 ffname = fname; /* remember full fname */
2884#ifdef UNIX
2885 fname = sfname;
2886#endif
2887
2888 if (buf->b_ffname != NULL && fnamecmp(ffname, buf->b_ffname) == 0)
2889 overwriting = TRUE;
2890 else
2891 overwriting = FALSE;
2892
2893 if (exiting)
2894 settmode(TMODE_COOK); /* when exiting allow typahead now */
2895
2896 ++no_wait_return; /* don't wait for return yet */
2897
2898 /*
2899 * Set '[ and '] marks to the lines to be written.
2900 */
2901 buf->b_op_start.lnum = start;
2902 buf->b_op_start.col = 0;
2903 buf->b_op_end.lnum = end;
2904 buf->b_op_end.col = 0;
2905
2906#ifdef FEAT_AUTOCMD
2907 {
2908 aco_save_T aco;
2909 int buf_ffname = FALSE;
2910 int buf_sfname = FALSE;
2911 int buf_fname_f = FALSE;
2912 int buf_fname_s = FALSE;
2913 int did_cmd = FALSE;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002914 int nofile_err = FALSE;
Bram Moolenaar7c626922005-02-07 22:01:03 +00002915 int empty_memline = (buf->b_ml.ml_mfp == NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002916
2917 /*
2918 * Apply PRE aucocommands.
2919 * Set curbuf to the buffer to be written.
2920 * Careful: The autocommands may call buf_write() recursively!
2921 */
2922 if (ffname == buf->b_ffname)
2923 buf_ffname = TRUE;
2924 if (sfname == buf->b_sfname)
2925 buf_sfname = TRUE;
2926 if (fname == buf->b_ffname)
2927 buf_fname_f = TRUE;
2928 if (fname == buf->b_sfname)
2929 buf_fname_s = TRUE;
2930
2931 /* set curwin/curbuf to buf and save a few things */
2932 aucmd_prepbuf(&aco, buf);
2933
2934 if (append)
2935 {
2936 if (!(did_cmd = apply_autocmds_exarg(EVENT_FILEAPPENDCMD,
2937 sfname, sfname, FALSE, curbuf, eap)))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002938 {
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00002939#ifdef FEAT_QUICKFIX
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00002940 if (overwriting && bt_nofile(curbuf))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002941 nofile_err = TRUE;
2942 else
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00002943#endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002944 apply_autocmds_exarg(EVENT_FILEAPPENDPRE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 sfname, sfname, FALSE, curbuf, eap);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002946 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 }
2948 else if (filtering)
2949 {
2950 apply_autocmds_exarg(EVENT_FILTERWRITEPRE,
2951 NULL, sfname, FALSE, curbuf, eap);
2952 }
2953 else if (reset_changed && whole)
2954 {
2955 if (!(did_cmd = apply_autocmds_exarg(EVENT_BUFWRITECMD,
2956 sfname, sfname, FALSE, curbuf, eap)))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002957 {
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00002958#ifdef FEAT_QUICKFIX
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002959 if (overwriting && bt_nofile(curbuf))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002960 nofile_err = TRUE;
2961 else
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00002962#endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002963 apply_autocmds_exarg(EVENT_BUFWRITEPRE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 sfname, sfname, FALSE, curbuf, eap);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002965 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 }
2967 else
2968 {
2969 if (!(did_cmd = apply_autocmds_exarg(EVENT_FILEWRITECMD,
2970 sfname, sfname, FALSE, curbuf, eap)))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002971 {
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00002972#ifdef FEAT_QUICKFIX
Bram Moolenaar19a09a12005-03-04 23:39:37 +00002973 if (overwriting && bt_nofile(curbuf))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002974 nofile_err = TRUE;
2975 else
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00002976#endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002977 apply_autocmds_exarg(EVENT_FILEWRITEPRE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002978 sfname, sfname, FALSE, curbuf, eap);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00002979 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 }
2981
2982 /* restore curwin/curbuf and a few other things */
2983 aucmd_restbuf(&aco);
2984
2985 /*
2986 * In three situations we return here and don't write the file:
2987 * 1. the autocommands deleted or unloaded the buffer.
2988 * 2. The autocommands abort script processing.
2989 * 3. If one of the "Cmd" autocommands was executed.
2990 */
2991 if (!buf_valid(buf))
2992 buf = NULL;
Bram Moolenaar7c626922005-02-07 22:01:03 +00002993 if (buf == NULL || (buf->b_ml.ml_mfp == NULL && !empty_memline)
Bram Moolenaar1e015462005-09-25 22:16:38 +00002994 || did_cmd || nofile_err
2995#ifdef FEAT_EVAL
2996 || aborting()
2997#endif
2998 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999 {
3000 --no_wait_return;
3001 msg_scroll = msg_save;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003002 if (nofile_err)
3003 EMSG(_("E676: No matching autocommands for acwrite buffer"));
3004
Bram Moolenaar1e015462005-09-25 22:16:38 +00003005 if (nofile_err
3006#ifdef FEAT_EVAL
3007 || aborting()
3008#endif
3009 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 /* An aborting error, interrupt or exception in the
3011 * autocommands. */
3012 return FAIL;
3013 if (did_cmd)
3014 {
3015 if (buf == NULL)
3016 /* The buffer was deleted. We assume it was written
3017 * (can't retry anyway). */
3018 return OK;
3019 if (overwriting)
3020 {
3021 /* Assume the buffer was written, update the timestamp. */
3022 ml_timestamp(buf);
Bram Moolenaar292ad192005-12-11 21:29:51 +00003023 if (append)
3024 buf->b_flags &= ~BF_NEW;
3025 else
3026 buf->b_flags &= ~BF_WRITE_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003027 }
Bram Moolenaar292ad192005-12-11 21:29:51 +00003028 if (reset_changed && buf->b_changed && !append
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003029 && (overwriting || vim_strchr(p_cpo, CPO_PLUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003030 /* Buffer still changed, the autocommands didn't work
3031 * properly. */
3032 return FAIL;
3033 return OK;
3034 }
3035#ifdef FEAT_EVAL
3036 if (!aborting())
3037#endif
3038 EMSG(_("E203: Autocommands deleted or unloaded buffer to be written"));
3039 return FAIL;
3040 }
3041
3042 /*
3043 * The autocommands may have changed the number of lines in the file.
3044 * When writing the whole file, adjust the end.
3045 * When writing part of the file, assume that the autocommands only
3046 * changed the number of lines that are to be written (tricky!).
3047 */
3048 if (buf->b_ml.ml_line_count != old_line_count)
3049 {
3050 if (whole) /* write all */
3051 end = buf->b_ml.ml_line_count;
3052 else if (buf->b_ml.ml_line_count > old_line_count) /* more lines */
3053 end += buf->b_ml.ml_line_count - old_line_count;
3054 else /* less lines */
3055 {
3056 end -= old_line_count - buf->b_ml.ml_line_count;
3057 if (end < start)
3058 {
3059 --no_wait_return;
3060 msg_scroll = msg_save;
3061 EMSG(_("E204: Autocommand changed number of lines in unexpected way"));
3062 return FAIL;
3063 }
3064 }
3065 }
3066
3067 /*
3068 * The autocommands may have changed the name of the buffer, which may
3069 * be kept in fname, ffname and sfname.
3070 */
3071 if (buf_ffname)
3072 ffname = buf->b_ffname;
3073 if (buf_sfname)
3074 sfname = buf->b_sfname;
3075 if (buf_fname_f)
3076 fname = buf->b_ffname;
3077 if (buf_fname_s)
3078 fname = buf->b_sfname;
3079 }
3080#endif
3081
3082#ifdef FEAT_NETBEANS_INTG
3083 if (usingNetbeans && isNetbeansBuffer(buf))
3084 {
3085 if (whole)
3086 {
3087 /*
3088 * b_changed can be 0 after an undo, but we still need to write
3089 * the buffer to NetBeans.
3090 */
3091 if (buf->b_changed || isNetbeansModified(buf))
3092 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00003093 --no_wait_return; /* may wait for return now */
3094 msg_scroll = msg_save;
3095 netbeans_save_buffer(buf); /* no error checking... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096 return retval;
3097 }
3098 else
3099 {
3100 errnum = (char_u *)"E656: ";
3101 errmsg = (char_u *)_("NetBeans dissallows writes of unmodified buffers");
3102 buffer = NULL;
3103 goto fail;
3104 }
3105 }
3106 else
3107 {
3108 errnum = (char_u *)"E657: ";
3109 errmsg = (char_u *)_("Partial writes disallowed for NetBeans buffers");
3110 buffer = NULL;
3111 goto fail;
3112 }
3113 }
3114#endif
3115
3116 if (shortmess(SHM_OVER) && !exiting)
3117 msg_scroll = FALSE; /* overwrite previous file message */
3118 else
3119 msg_scroll = TRUE; /* don't overwrite previous file message */
3120 if (!filtering)
3121 filemess(buf,
3122#ifndef UNIX
3123 sfname,
3124#else
3125 fname,
3126#endif
3127 (char_u *)"", 0); /* show that we are busy */
3128 msg_scroll = FALSE; /* always overwrite the file message now */
3129
3130 buffer = alloc(BUFSIZE);
3131 if (buffer == NULL) /* can't allocate big buffer, use small
3132 * one (to be able to write when out of
3133 * memory) */
3134 {
3135 buffer = smallbuf;
3136 bufsize = SMBUFSIZE;
3137 }
3138 else
3139 bufsize = BUFSIZE;
3140
3141 /*
3142 * Get information about original file (if there is one).
3143 */
3144#if defined(UNIX) && !defined(ARCHIE)
3145 st_old.st_dev = st_old.st_ino = 0;
3146 perm = -1;
3147 if (mch_stat((char *)fname, &st_old) < 0)
3148 newfile = TRUE;
3149 else
3150 {
3151 perm = st_old.st_mode;
3152 if (!S_ISREG(st_old.st_mode)) /* not a file */
3153 {
3154 if (S_ISDIR(st_old.st_mode))
3155 {
3156 errnum = (char_u *)"E502: ";
3157 errmsg = (char_u *)_("is a directory");
3158 goto fail;
3159 }
3160 if (mch_nodetype(fname) != NODE_WRITABLE)
3161 {
3162 errnum = (char_u *)"E503: ";
3163 errmsg = (char_u *)_("is not a file or writable device");
3164 goto fail;
3165 }
3166 /* It's a device of some kind (or a fifo) which we can write to
3167 * but for which we can't make a backup. */
3168 device = TRUE;
3169 newfile = TRUE;
3170 perm = -1;
3171 }
3172 }
3173#else /* !UNIX */
3174 /*
3175 * Check for a writable device name.
3176 */
3177 c = mch_nodetype(fname);
3178 if (c == NODE_OTHER)
3179 {
3180 errnum = (char_u *)"E503: ";
3181 errmsg = (char_u *)_("is not a file or writable device");
3182 goto fail;
3183 }
3184 if (c == NODE_WRITABLE)
3185 {
Bram Moolenaar043545e2006-10-10 16:44:07 +00003186# if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3187 /* MS-Windows allows opening a device, but we will probably get stuck
3188 * trying to write to it. */
3189 if (!p_odev)
3190 {
3191 errnum = (char_u *)"E796: ";
3192 errmsg = (char_u *)_("writing to device disabled with 'opendevice' option");
3193 goto fail;
3194 }
3195# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 device = TRUE;
3197 newfile = TRUE;
3198 perm = -1;
3199 }
3200 else
3201 {
3202 perm = mch_getperm(fname);
3203 if (perm < 0)
3204 newfile = TRUE;
3205 else if (mch_isdir(fname))
3206 {
3207 errnum = (char_u *)"E502: ";
3208 errmsg = (char_u *)_("is a directory");
3209 goto fail;
3210 }
3211 if (overwriting)
3212 (void)mch_stat((char *)fname, &st_old);
3213 }
3214#endif /* !UNIX */
3215
3216 if (!device && !newfile)
3217 {
3218 /*
3219 * Check if the file is really writable (when renaming the file to
3220 * make a backup we won't discover it later).
3221 */
3222 file_readonly = (
3223# ifdef USE_MCH_ACCESS
3224# ifdef UNIX
3225 (perm & 0222) == 0 ||
3226# endif
3227 mch_access((char *)fname, W_OK)
3228# else
3229 (fd = mch_open((char *)fname, O_RDWR | O_EXTRA, 0)) < 0
3230 ? TRUE : (close(fd), FALSE)
3231# endif
3232 );
3233 if (!forceit && file_readonly)
3234 {
3235 if (vim_strchr(p_cpo, CPO_FWRITE) != NULL)
3236 {
3237 errnum = (char_u *)"E504: ";
3238 errmsg = (char_u *)_(err_readonly);
3239 }
3240 else
3241 {
3242 errnum = (char_u *)"E505: ";
3243 errmsg = (char_u *)_("is read-only (add ! to override)");
3244 }
3245 goto fail;
3246 }
3247
3248 /*
3249 * Check if the timestamp hasn't changed since reading the file.
3250 */
3251 if (overwriting)
3252 {
3253 retval = check_mtime(buf, &st_old);
3254 if (retval == FAIL)
3255 goto fail;
3256 }
3257 }
3258
3259#ifdef HAVE_ACL
3260 /*
3261 * For systems that support ACL: get the ACL from the original file.
3262 */
3263 if (!newfile)
3264 acl = mch_get_acl(fname);
3265#endif
3266
3267 /*
3268 * If 'backupskip' is not empty, don't make a backup for some files.
3269 */
3270 dobackup = (p_wb || p_bk || *p_pm != NUL);
3271#ifdef FEAT_WILDIGN
3272 if (dobackup && *p_bsk != NUL && match_file_list(p_bsk, sfname, ffname))
3273 dobackup = FALSE;
3274#endif
3275
3276 /*
3277 * Save the value of got_int and reset it. We don't want a previous
3278 * interruption cancel writing, only hitting CTRL-C while writing should
3279 * abort it.
3280 */
3281 prev_got_int = got_int;
3282 got_int = FALSE;
3283
3284 /* Mark the buffer as 'being saved' to prevent changed buffer warnings */
3285 buf->b_saving = TRUE;
3286
3287 /*
3288 * If we are not appending or filtering, the file exists, and the
3289 * 'writebackup', 'backup' or 'patchmode' option is set, need a backup.
3290 * When 'patchmode' is set also make a backup when appending.
3291 *
3292 * Do not make any backup, if 'writebackup' and 'backup' are both switched
3293 * off. This helps when editing large files on almost-full disks.
3294 */
3295 if (!(append && *p_pm == NUL) && !filtering && perm >= 0 && dobackup)
3296 {
3297#if defined(UNIX) || defined(WIN32)
3298 struct stat st;
3299#endif
3300
3301 if ((bkc_flags & BKC_YES) || append) /* "yes" */
3302 backup_copy = TRUE;
3303#if defined(UNIX) || defined(WIN32)
3304 else if ((bkc_flags & BKC_AUTO)) /* "auto" */
3305 {
3306 int i;
3307
3308# ifdef UNIX
3309 /*
3310 * Don't rename the file when:
3311 * - it's a hard link
3312 * - it's a symbolic link
3313 * - we don't have write permission in the directory
3314 * - we can't set the owner/group of the new file
3315 */
3316 if (st_old.st_nlink > 1
3317 || mch_lstat((char *)fname, &st) < 0
3318 || st.st_dev != st_old.st_dev
Bram Moolenaara5792f52005-11-23 21:25:05 +00003319 || st.st_ino != st_old.st_ino
3320# ifndef HAVE_FCHOWN
3321 || st.st_uid != st_old.st_uid
3322 || st.st_gid != st_old.st_gid
3323# endif
3324 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003325 backup_copy = TRUE;
3326 else
Bram Moolenaar03f48552006-02-28 23:52:23 +00003327# else
3328# ifdef WIN32
3329 /* On NTFS file systems hard links are possible. */
3330 if (mch_is_linked(fname))
3331 backup_copy = TRUE;
3332 else
3333# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334# endif
3335 {
3336 /*
3337 * Check if we can create a file and set the owner/group to
3338 * the ones from the original file.
3339 * First find a file name that doesn't exist yet (use some
3340 * arbitrary numbers).
3341 */
3342 STRCPY(IObuff, fname);
3343 for (i = 4913; ; i += 123)
3344 {
3345 sprintf((char *)gettail(IObuff), "%d", i);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003346 if (mch_lstat((char *)IObuff, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347 break;
3348 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00003349 fd = mch_open((char *)IObuff,
3350 O_CREAT|O_WRONLY|O_EXCL|O_NOFOLLOW, perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 if (fd < 0) /* can't write in directory */
3352 backup_copy = TRUE;
3353 else
3354 {
3355# ifdef UNIX
Bram Moolenaara5792f52005-11-23 21:25:05 +00003356# ifdef HAVE_FCHOWN
3357 fchown(fd, st_old.st_uid, st_old.st_gid);
3358# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 if (mch_stat((char *)IObuff, &st) < 0
3360 || st.st_uid != st_old.st_uid
3361 || st.st_gid != st_old.st_gid
3362 || st.st_mode != perm)
3363 backup_copy = TRUE;
3364# endif
Bram Moolenaar98358622005-11-28 22:58:23 +00003365 /* Close the file before removing it, on MS-Windows we
3366 * can't delete an open file. */
Bram Moolenaara5792f52005-11-23 21:25:05 +00003367 close(fd);
Bram Moolenaar98358622005-11-28 22:58:23 +00003368 mch_remove(IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369 }
3370 }
3371 }
3372
3373# ifdef UNIX
3374 /*
3375 * Break symlinks and/or hardlinks if we've been asked to.
3376 */
3377 if ((bkc_flags & BKC_BREAKSYMLINK) || (bkc_flags & BKC_BREAKHARDLINK))
3378 {
3379 int lstat_res;
3380
3381 lstat_res = mch_lstat((char *)fname, &st);
3382
3383 /* Symlinks. */
3384 if ((bkc_flags & BKC_BREAKSYMLINK)
3385 && lstat_res == 0
3386 && st.st_ino != st_old.st_ino)
3387 backup_copy = FALSE;
3388
3389 /* Hardlinks. */
3390 if ((bkc_flags & BKC_BREAKHARDLINK)
3391 && st_old.st_nlink > 1
3392 && (lstat_res != 0 || st.st_ino == st_old.st_ino))
3393 backup_copy = FALSE;
3394 }
3395#endif
3396
3397#endif
3398
3399 /* make sure we have a valid backup extension to use */
3400 if (*p_bex == NUL)
3401 {
3402#ifdef RISCOS
3403 backup_ext = (char_u *)"/bak";
3404#else
3405 backup_ext = (char_u *)".bak";
3406#endif
3407 }
3408 else
3409 backup_ext = p_bex;
3410
3411 if (backup_copy
3412 && (fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
3413 {
3414 int bfd;
3415 char_u *copybuf, *wp;
3416 int some_error = FALSE;
3417 struct stat st_new;
3418 char_u *dirp;
3419 char_u *rootname;
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003420#if defined(UNIX) && !defined(SHORT_FNAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 int did_set_shortname;
3422#endif
3423
3424 copybuf = alloc(BUFSIZE + 1);
3425 if (copybuf == NULL)
3426 {
3427 some_error = TRUE; /* out of memory */
3428 goto nobackup;
3429 }
3430
3431 /*
3432 * Try to make the backup in each directory in the 'bdir' option.
3433 *
3434 * Unix semantics has it, that we may have a writable file,
3435 * that cannot be recreated with a simple open(..., O_CREAT, ) e.g:
3436 * - the directory is not writable,
3437 * - the file may be a symbolic link,
3438 * - the file may belong to another user/group, etc.
3439 *
3440 * For these reasons, the existing writable file must be truncated
3441 * and reused. Creation of a backup COPY will be attempted.
3442 */
3443 dirp = p_bdir;
3444 while (*dirp)
3445 {
3446#ifdef UNIX
3447 st_new.st_ino = 0;
3448 st_new.st_dev = 0;
3449 st_new.st_gid = 0;
3450#endif
3451
3452 /*
3453 * Isolate one directory name, using an entry in 'bdir'.
3454 */
3455 (void)copy_option_part(&dirp, copybuf, BUFSIZE, ",");
3456 rootname = get_file_in_dir(fname, copybuf);
3457 if (rootname == NULL)
3458 {
3459 some_error = TRUE; /* out of memory */
3460 goto nobackup;
3461 }
3462
Bram Moolenaard857f0e2005-06-21 22:37:39 +00003463#if defined(UNIX) && !defined(SHORT_FNAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003464 did_set_shortname = FALSE;
3465#endif
3466
3467 /*
3468 * May try twice if 'shortname' not set.
3469 */
3470 for (;;)
3471 {
3472 /*
3473 * Make backup file name.
3474 */
3475 backup = buf_modname(
3476#ifdef SHORT_FNAME
3477 TRUE,
3478#else
3479 (buf->b_p_sn || buf->b_shortname),
3480#endif
3481 rootname, backup_ext, FALSE);
3482 if (backup == NULL)
3483 {
3484 vim_free(rootname);
3485 some_error = TRUE; /* out of memory */
3486 goto nobackup;
3487 }
3488
3489 /*
3490 * Check if backup file already exists.
3491 */
3492 if (mch_stat((char *)backup, &st_new) >= 0)
3493 {
3494#ifdef UNIX
3495 /*
3496 * Check if backup file is same as original file.
3497 * May happen when modname() gave the same file back.
3498 * E.g. silly link, or file name-length reached.
3499 * If we don't check here, we either ruin the file
3500 * when copying or erase it after writing. jw.
3501 */
3502 if (st_new.st_dev == st_old.st_dev
3503 && st_new.st_ino == st_old.st_ino)
3504 {
3505 vim_free(backup);
3506 backup = NULL; /* no backup file to delete */
3507# ifndef SHORT_FNAME
3508 /*
3509 * may try again with 'shortname' set
3510 */
3511 if (!(buf->b_shortname || buf->b_p_sn))
3512 {
3513 buf->b_shortname = TRUE;
3514 did_set_shortname = TRUE;
3515 continue;
3516 }
3517 /* setting shortname didn't help */
3518 if (did_set_shortname)
3519 buf->b_shortname = FALSE;
3520# endif
3521 break;
3522 }
3523#endif
3524
3525 /*
3526 * If we are not going to keep the backup file, don't
3527 * delete an existing one, try to use another name.
3528 * Change one character, just before the extension.
3529 */
3530 if (!p_bk)
3531 {
3532 wp = backup + STRLEN(backup) - 1
3533 - STRLEN(backup_ext);
3534 if (wp < backup) /* empty file name ??? */
3535 wp = backup;
3536 *wp = 'z';
3537 while (*wp > 'a'
3538 && mch_stat((char *)backup, &st_new) >= 0)
3539 --*wp;
3540 /* They all exist??? Must be something wrong. */
3541 if (*wp == 'a')
3542 {
3543 vim_free(backup);
3544 backup = NULL;
3545 }
3546 }
3547 }
3548 break;
3549 }
3550 vim_free(rootname);
3551
3552 /*
3553 * Try to create the backup file
3554 */
3555 if (backup != NULL)
3556 {
3557 /* remove old backup, if present */
3558 mch_remove(backup);
3559 /* Open with O_EXCL to avoid the file being created while
3560 * we were sleeping (symlink hacker attack?) */
3561 bfd = mch_open((char *)backup,
Bram Moolenaara5792f52005-11-23 21:25:05 +00003562 O_WRONLY|O_CREAT|O_EXTRA|O_EXCL|O_NOFOLLOW,
3563 perm & 0777);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003564 if (bfd < 0)
3565 {
3566 vim_free(backup);
3567 backup = NULL;
3568 }
3569 else
3570 {
3571 /* set file protection same as original file, but
3572 * strip s-bit */
3573 (void)mch_setperm(backup, perm & 0777);
3574
3575#ifdef UNIX
3576 /*
3577 * Try to set the group of the backup same as the
3578 * original file. If this fails, set the protection
3579 * bits for the group same as the protection bits for
3580 * others.
3581 */
Bram Moolenaara5792f52005-11-23 21:25:05 +00003582 if (st_new.st_gid != st_old.st_gid
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583# ifdef HAVE_FCHOWN /* sequent-ptx lacks fchown() */
Bram Moolenaara5792f52005-11-23 21:25:05 +00003584 && fchown(bfd, (uid_t)-1, st_old.st_gid) != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585# endif
3586 )
3587 mch_setperm(backup,
3588 (perm & 0707) | ((perm & 07) << 3));
3589#endif
3590
3591 /*
3592 * copy the file.
3593 */
3594 write_info.bw_fd = bfd;
3595 write_info.bw_buf = copybuf;
3596#ifdef HAS_BW_FLAGS
3597 write_info.bw_flags = FIO_NOCONVERT;
3598#endif
3599 while ((write_info.bw_len = vim_read(fd, copybuf,
3600 BUFSIZE)) > 0)
3601 {
3602 if (buf_write_bytes(&write_info) == FAIL)
3603 {
3604 errmsg = (char_u *)_("E506: Can't write to backup file (add ! to override)");
3605 break;
3606 }
3607 ui_breakcheck();
3608 if (got_int)
3609 {
3610 errmsg = (char_u *)_(e_interr);
3611 break;
3612 }
3613 }
3614
3615 if (close(bfd) < 0 && errmsg == NULL)
3616 errmsg = (char_u *)_("E507: Close error for backup file (add ! to override)");
3617 if (write_info.bw_len < 0)
3618 errmsg = (char_u *)_("E508: Can't read file for backup (add ! to override)");
3619#ifdef UNIX
3620 set_file_time(backup, st_old.st_atime, st_old.st_mtime);
3621#endif
3622#ifdef HAVE_ACL
3623 mch_set_acl(backup, acl);
3624#endif
3625 break;
3626 }
3627 }
3628 }
3629 nobackup:
3630 close(fd); /* ignore errors for closing read file */
3631 vim_free(copybuf);
3632
3633 if (backup == NULL && errmsg == NULL)
3634 errmsg = (char_u *)_("E509: Cannot create backup file (add ! to override)");
3635 /* ignore errors when forceit is TRUE */
3636 if ((some_error || errmsg != NULL) && !forceit)
3637 {
3638 retval = FAIL;
3639 goto fail;
3640 }
3641 errmsg = NULL;
3642 }
3643 else
3644 {
3645 char_u *dirp;
3646 char_u *p;
3647 char_u *rootname;
3648
3649 /*
3650 * Make a backup by renaming the original file.
3651 */
3652 /*
3653 * If 'cpoptions' includes the "W" flag, we don't want to
3654 * overwrite a read-only file. But rename may be possible
3655 * anyway, thus we need an extra check here.
3656 */
3657 if (file_readonly && vim_strchr(p_cpo, CPO_FWRITE) != NULL)
3658 {
3659 errnum = (char_u *)"E504: ";
3660 errmsg = (char_u *)_(err_readonly);
3661 goto fail;
3662 }
3663
3664 /*
3665 *
3666 * Form the backup file name - change path/fo.o.h to
3667 * path/fo.o.h.bak Try all directories in 'backupdir', first one
3668 * that works is used.
3669 */
3670 dirp = p_bdir;
3671 while (*dirp)
3672 {
3673 /*
3674 * Isolate one directory name and make the backup file name.
3675 */
3676 (void)copy_option_part(&dirp, IObuff, IOSIZE, ",");
3677 rootname = get_file_in_dir(fname, IObuff);
3678 if (rootname == NULL)
3679 backup = NULL;
3680 else
3681 {
3682 backup = buf_modname(
3683#ifdef SHORT_FNAME
3684 TRUE,
3685#else
3686 (buf->b_p_sn || buf->b_shortname),
3687#endif
3688 rootname, backup_ext, FALSE);
3689 vim_free(rootname);
3690 }
3691
3692 if (backup != NULL)
3693 {
3694 /*
3695 * If we are not going to keep the backup file, don't
3696 * delete an existing one, try to use another name.
3697 * Change one character, just before the extension.
3698 */
3699 if (!p_bk && mch_getperm(backup) >= 0)
3700 {
3701 p = backup + STRLEN(backup) - 1 - STRLEN(backup_ext);
3702 if (p < backup) /* empty file name ??? */
3703 p = backup;
3704 *p = 'z';
3705 while (*p > 'a' && mch_getperm(backup) >= 0)
3706 --*p;
3707 /* They all exist??? Must be something wrong! */
3708 if (*p == 'a')
3709 {
3710 vim_free(backup);
3711 backup = NULL;
3712 }
3713 }
3714 }
3715 if (backup != NULL)
3716 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 /*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00003718 * Delete any existing backup and move the current version
3719 * to the backup. For safety, we don't remove the backup
3720 * until the write has finished successfully. And if the
3721 * 'backup' option is set, leave it around.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 */
3723 /*
3724 * If the renaming of the original file to the backup file
3725 * works, quit here.
3726 */
3727 if (vim_rename(fname, backup) == 0)
3728 break;
3729
3730 vim_free(backup); /* don't do the rename below */
3731 backup = NULL;
3732 }
3733 }
3734 if (backup == NULL && !forceit)
3735 {
3736 errmsg = (char_u *)_("E510: Can't make backup file (add ! to override)");
3737 goto fail;
3738 }
3739 }
3740 }
3741
3742#if defined(UNIX) && !defined(ARCHIE)
3743 /* When using ":w!" and the file was read-only: make it writable */
3744 if (forceit && perm >= 0 && !(perm & 0200) && st_old.st_uid == getuid()
3745 && vim_strchr(p_cpo, CPO_FWRITE) == NULL)
3746 {
3747 perm |= 0200;
3748 (void)mch_setperm(fname, perm);
3749 made_writable = TRUE;
3750 }
3751#endif
3752
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003753 /* When using ":w!" and writing to the current file, 'readonly' makes no
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003754 * sense, reset it, unless 'Z' appears in 'cpoptions'. */
3755 if (forceit && overwriting && vim_strchr(p_cpo, CPO_KEEPRO) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 {
3757 buf->b_p_ro = FALSE;
3758#ifdef FEAT_TITLE
3759 need_maketitle = TRUE; /* set window title later */
3760#endif
3761#ifdef FEAT_WINDOWS
3762 status_redraw_all(); /* redraw status lines later */
3763#endif
3764 }
3765
3766 if (end > buf->b_ml.ml_line_count)
3767 end = buf->b_ml.ml_line_count;
3768 if (buf->b_ml.ml_flags & ML_EMPTY)
3769 start = end + 1;
3770
3771 /*
3772 * If the original file is being overwritten, there is a small chance that
3773 * we crash in the middle of writing. Therefore the file is preserved now.
3774 * This makes all block numbers positive so that recovery does not need
3775 * the original file.
3776 * Don't do this if there is a backup file and we are exiting.
3777 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003778 if (reset_changed && !newfile && overwriting
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 && !(exiting && backup != NULL))
3780 {
3781 ml_preserve(buf, FALSE);
3782 if (got_int)
3783 {
3784 errmsg = (char_u *)_(e_interr);
3785 goto restore_backup;
3786 }
3787 }
3788
3789#ifdef MACOS_CLASSIC /* TODO: Is it need for MACOS_X? (Dany) */
3790 /*
3791 * Before risking to lose the original file verify if there's
3792 * a resource fork to preserve, and if cannot be done warn
3793 * the users. This happens when overwriting without backups.
3794 */
3795 if (backup == NULL && overwriting && !append)
3796 if (mch_has_resource_fork(fname))
3797 {
3798 errmsg = (char_u *)_("E460: The resource fork would be lost (add ! to override)");
3799 goto restore_backup;
3800 }
3801#endif
3802
3803#ifdef VMS
3804 vms_remove_version(fname); /* remove version */
3805#endif
3806 /* Default: write the the file directly. May write to a temp file for
3807 * multi-byte conversion. */
3808 wfname = fname;
3809
3810#ifdef FEAT_MBYTE
3811 /* Check for forced 'fileencoding' from "++opt=val" argument. */
3812 if (eap != NULL && eap->force_enc != 0)
3813 {
3814 fenc = eap->cmd + eap->force_enc;
3815 fenc = enc_canonize(fenc);
3816 fenc_tofree = fenc;
3817 }
3818 else
3819 fenc = buf->b_p_fenc;
3820
3821 /*
3822 * The file needs to be converted when 'fileencoding' is set and
3823 * 'fileencoding' differs from 'encoding'.
3824 */
3825 converted = (*fenc != NUL && !same_encoding(p_enc, fenc));
3826
3827 /*
3828 * Check if UTF-8 to UCS-2/4 or Latin1 conversion needs to be done. Or
3829 * Latin1 to Unicode conversion. This is handled in buf_write_bytes().
3830 * Prepare the flags for it and allocate bw_conv_buf when needed.
3831 */
3832 if (converted && (enc_utf8 || STRCMP(p_enc, "latin1") == 0))
3833 {
3834 wb_flags = get_fio_flags(fenc);
3835 if (wb_flags & (FIO_UCS2 | FIO_UCS4 | FIO_UTF16 | FIO_UTF8))
3836 {
3837 /* Need to allocate a buffer to translate into. */
3838 if (wb_flags & (FIO_UCS2 | FIO_UTF16 | FIO_UTF8))
3839 write_info.bw_conv_buflen = bufsize * 2;
3840 else /* FIO_UCS4 */
3841 write_info.bw_conv_buflen = bufsize * 4;
3842 write_info.bw_conv_buf
3843 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
3844 if (write_info.bw_conv_buf == NULL)
3845 end = 0;
3846 }
3847 }
3848
3849# ifdef WIN3264
3850 if (converted && wb_flags == 0 && (wb_flags = get_win_fio_flags(fenc)) != 0)
3851 {
3852 /* Convert UTF-8 -> UCS-2 and UCS-2 -> DBCS. Worst-case * 4: */
3853 write_info.bw_conv_buflen = bufsize * 4;
3854 write_info.bw_conv_buf
3855 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
3856 if (write_info.bw_conv_buf == NULL)
3857 end = 0;
3858 }
3859# endif
3860
3861# ifdef MACOS_X
3862 if (converted && wb_flags == 0 && (wb_flags = get_mac_fio_flags(fenc)) != 0)
3863 {
3864 write_info.bw_conv_buflen = bufsize * 3;
3865 write_info.bw_conv_buf
3866 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
3867 if (write_info.bw_conv_buf == NULL)
3868 end = 0;
3869 }
3870# endif
3871
3872# if defined(FEAT_EVAL) || defined(USE_ICONV)
3873 if (converted && wb_flags == 0)
3874 {
3875# ifdef USE_ICONV
3876 /*
3877 * Use iconv() conversion when conversion is needed and it's not done
3878 * internally.
3879 */
3880 write_info.bw_iconv_fd = (iconv_t)my_iconv_open(fenc,
3881 enc_utf8 ? (char_u *)"utf-8" : p_enc);
3882 if (write_info.bw_iconv_fd != (iconv_t)-1)
3883 {
3884 /* We're going to use iconv(), allocate a buffer to convert in. */
3885 write_info.bw_conv_buflen = bufsize * ICONV_MULT;
3886 write_info.bw_conv_buf
3887 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
3888 if (write_info.bw_conv_buf == NULL)
3889 end = 0;
3890 write_info.bw_first = TRUE;
3891 }
3892# ifdef FEAT_EVAL
3893 else
3894# endif
3895# endif
3896
3897# ifdef FEAT_EVAL
3898 /*
3899 * When the file needs to be converted with 'charconvert' after
3900 * writing, write to a temp file instead and let the conversion
3901 * overwrite the original file.
3902 */
3903 if (*p_ccv != NUL)
3904 {
3905 wfname = vim_tempname('w');
3906 if (wfname == NULL) /* Can't write without a tempfile! */
3907 {
3908 errmsg = (char_u *)_("E214: Can't find temp file for writing");
3909 goto restore_backup;
3910 }
3911 }
3912# endif
3913 }
3914# endif
3915 if (converted && wb_flags == 0
3916# ifdef USE_ICONV
3917 && write_info.bw_iconv_fd == (iconv_t)-1
3918# endif
3919# ifdef FEAT_EVAL
3920 && wfname == fname
3921# endif
3922 )
3923 {
3924 if (!forceit)
3925 {
3926 errmsg = (char_u *)_("E213: Cannot convert (add ! to write without conversion)");
3927 goto restore_backup;
3928 }
3929 notconverted = TRUE;
3930 }
3931#endif
3932
3933 /*
3934 * Open the file "wfname" for writing.
3935 * We may try to open the file twice: If we can't write to the
3936 * file and forceit is TRUE we delete the existing file and try to create
3937 * a new one. If this still fails we may have lost the original file!
3938 * (this may happen when the user reached his quotum for number of files).
3939 * Appending will fail if the file does not exist and forceit is FALSE.
3940 */
3941 while ((fd = mch_open((char *)wfname, O_WRONLY | O_EXTRA | (append
3942 ? (forceit ? (O_APPEND | O_CREAT) : O_APPEND)
3943 : (O_CREAT | O_TRUNC))
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00003944 , perm < 0 ? 0666 : (perm & 0777))) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945 {
3946 /*
3947 * A forced write will try to create a new file if the old one is
3948 * still readonly. This may also happen when the directory is
3949 * read-only. In that case the mch_remove() will fail.
3950 */
3951 if (errmsg == NULL)
3952 {
3953#ifdef UNIX
3954 struct stat st;
3955
3956 /* Don't delete the file when it's a hard or symbolic link. */
3957 if ((!newfile && st_old.st_nlink > 1)
3958 || (mch_lstat((char *)fname, &st) == 0
3959 && (st.st_dev != st_old.st_dev
3960 || st.st_ino != st_old.st_ino)))
3961 errmsg = (char_u *)_("E166: Can't open linked file for writing");
3962 else
3963#endif
3964 {
3965 errmsg = (char_u *)_("E212: Can't open file for writing");
3966 if (forceit && vim_strchr(p_cpo, CPO_FWRITE) == NULL
3967 && perm >= 0)
3968 {
3969#ifdef UNIX
3970 /* we write to the file, thus it should be marked
3971 writable after all */
3972 if (!(perm & 0200))
3973 made_writable = TRUE;
3974 perm |= 0200;
3975 if (st_old.st_uid != getuid() || st_old.st_gid != getgid())
3976 perm &= 0777;
3977#endif
3978 if (!append) /* don't remove when appending */
3979 mch_remove(wfname);
3980 continue;
3981 }
3982 }
3983 }
3984
3985restore_backup:
3986 {
3987 struct stat st;
3988
3989 /*
3990 * If we failed to open the file, we don't need a backup. Throw it
3991 * away. If we moved or removed the original file try to put the
3992 * backup in its place.
3993 */
3994 if (backup != NULL && wfname == fname)
3995 {
3996 if (backup_copy)
3997 {
3998 /*
3999 * There is a small chance that we removed the original,
4000 * try to move the copy in its place.
4001 * This may not work if the vim_rename() fails.
4002 * In that case we leave the copy around.
4003 */
4004 /* If file does not exist, put the copy in its place */
4005 if (mch_stat((char *)fname, &st) < 0)
4006 vim_rename(backup, fname);
4007 /* if original file does exist throw away the copy */
4008 if (mch_stat((char *)fname, &st) >= 0)
4009 mch_remove(backup);
4010 }
4011 else
4012 {
4013 /* try to put the original file back */
4014 vim_rename(backup, fname);
4015 }
4016 }
4017
4018 /* if original file no longer exists give an extra warning */
4019 if (!newfile && mch_stat((char *)fname, &st) < 0)
4020 end = 0;
4021 }
4022
4023#ifdef FEAT_MBYTE
4024 if (wfname != fname)
4025 vim_free(wfname);
4026#endif
4027 goto fail;
4028 }
4029 errmsg = NULL;
4030
4031#if defined(MACOS_CLASSIC) || defined(WIN3264)
4032 /* TODO: Is it need for MACOS_X? (Dany) */
4033 /*
4034 * On macintosh copy the original files attributes (i.e. the backup)
Bram Moolenaar7263a772007-05-10 17:35:54 +00004035 * This is done in order to preserve the resource fork and the
4036 * Finder attribute (label, comments, custom icons, file creator)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037 */
4038 if (backup != NULL && overwriting && !append)
4039 {
4040 if (backup_copy)
4041 (void)mch_copy_file_attribute(wfname, backup);
4042 else
4043 (void)mch_copy_file_attribute(backup, wfname);
4044 }
4045
4046 if (!overwriting && !append)
4047 {
4048 if (buf->b_ffname != NULL)
4049 (void)mch_copy_file_attribute(buf->b_ffname, wfname);
Bram Moolenaar7263a772007-05-10 17:35:54 +00004050 /* Should copy resource fork */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 }
4052#endif
4053
4054 write_info.bw_fd = fd;
4055
4056#ifdef FEAT_CRYPT
4057 if (*buf->b_p_key && !filtering)
4058 {
4059 crypt_init_keys(buf->b_p_key);
4060 /* Write magic number, so that Vim knows that this file is encrypted
4061 * when reading it again. This also undergoes utf-8 to ucs-2/4
4062 * conversion when needed. */
4063 write_info.bw_buf = (char_u *)CRYPT_MAGIC;
4064 write_info.bw_len = CRYPT_MAGIC_LEN;
4065 write_info.bw_flags = FIO_NOCONVERT;
4066 if (buf_write_bytes(&write_info) == FAIL)
4067 end = 0;
4068 wb_flags |= FIO_ENCRYPTED;
4069 }
4070#endif
4071
4072 write_info.bw_buf = buffer;
4073 nchars = 0;
4074
4075 /* use "++bin", "++nobin" or 'binary' */
4076 if (eap != NULL && eap->force_bin != 0)
4077 write_bin = (eap->force_bin == FORCE_BIN);
4078 else
4079 write_bin = buf->b_p_bin;
4080
4081#ifdef FEAT_MBYTE
4082 /*
4083 * The BOM is written just after the encryption magic number.
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004084 * Skip it when appending and the file already existed, the BOM only makes
4085 * sense at the start of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004086 */
Bram Moolenaarc0197e22004-09-13 20:26:32 +00004087 if (buf->b_p_bomb && !write_bin && (!append || perm < 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 {
4089 write_info.bw_len = make_bom(buffer, fenc);
4090 if (write_info.bw_len > 0)
4091 {
4092 /* don't convert, do encryption */
4093 write_info.bw_flags = FIO_NOCONVERT | wb_flags;
4094 if (buf_write_bytes(&write_info) == FAIL)
4095 end = 0;
4096 else
4097 nchars += write_info.bw_len;
4098 }
4099 }
4100#endif
4101
4102 write_info.bw_len = bufsize;
4103#ifdef HAS_BW_FLAGS
4104 write_info.bw_flags = wb_flags;
4105#endif
4106 fileformat = get_fileformat_force(buf, eap);
4107 s = buffer;
4108 len = 0;
4109 for (lnum = start; lnum <= end; ++lnum)
4110 {
4111 /*
4112 * The next while loop is done once for each character written.
4113 * Keep it fast!
4114 */
4115 ptr = ml_get_buf(buf, lnum, FALSE) - 1;
4116 while ((c = *++ptr) != NUL)
4117 {
4118 if (c == NL)
4119 *s = NUL; /* replace newlines with NULs */
4120 else if (c == CAR && fileformat == EOL_MAC)
4121 *s = NL; /* Mac: replace CRs with NLs */
4122 else
4123 *s = c;
4124 ++s;
4125 if (++len != bufsize)
4126 continue;
4127 if (buf_write_bytes(&write_info) == FAIL)
4128 {
4129 end = 0; /* write error: break loop */
4130 break;
4131 }
4132 nchars += bufsize;
4133 s = buffer;
4134 len = 0;
4135 }
4136 /* write failed or last line has no EOL: stop here */
4137 if (end == 0
4138 || (lnum == end
4139 && write_bin
4140 && (lnum == write_no_eol_lnum
4141 || (lnum == buf->b_ml.ml_line_count && !buf->b_p_eol))))
4142 {
4143 ++lnum; /* written the line, count it */
4144 no_eol = TRUE;
4145 break;
4146 }
4147 if (fileformat == EOL_UNIX)
4148 *s++ = NL;
4149 else
4150 {
4151 *s++ = CAR; /* EOL_MAC or EOL_DOS: write CR */
4152 if (fileformat == EOL_DOS) /* write CR-NL */
4153 {
4154 if (++len == bufsize)
4155 {
4156 if (buf_write_bytes(&write_info) == FAIL)
4157 {
4158 end = 0; /* write error: break loop */
4159 break;
4160 }
4161 nchars += bufsize;
4162 s = buffer;
4163 len = 0;
4164 }
4165 *s++ = NL;
4166 }
4167 }
4168 if (++len == bufsize && end)
4169 {
4170 if (buf_write_bytes(&write_info) == FAIL)
4171 {
4172 end = 0; /* write error: break loop */
4173 break;
4174 }
4175 nchars += bufsize;
4176 s = buffer;
4177 len = 0;
4178
4179 ui_breakcheck();
4180 if (got_int)
4181 {
4182 end = 0; /* Interrupted, break loop */
4183 break;
4184 }
4185 }
4186#ifdef VMS
4187 /*
4188 * On VMS there is a problem: newlines get added when writing blocks
4189 * at a time. Fix it by writing a line at a time.
4190 * This is much slower!
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004191 * Explanation: VAX/DECC RTL insists that records in some RMS
4192 * structures end with a newline (carriage return) character, and if
4193 * they don't it adds one.
4194 * With other RMS structures it works perfect without this fix.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004196 if ((buf->b_fab_rat & (FAB$M_FTN | FAB$M_CR)) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004198 int b2write;
4199
4200 buf->b_fab_mrs = (buf->b_fab_mrs == 0
4201 ? MIN(4096, bufsize)
4202 : MIN(buf->b_fab_mrs, bufsize));
4203
4204 b2write = len;
4205 while (b2write > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004207 write_info.bw_len = MIN(b2write, buf->b_fab_mrs);
4208 if (buf_write_bytes(&write_info) == FAIL)
4209 {
4210 end = 0;
4211 break;
4212 }
4213 b2write -= MIN(b2write, buf->b_fab_mrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214 }
4215 write_info.bw_len = bufsize;
4216 nchars += len;
4217 s = buffer;
4218 len = 0;
4219 }
4220#endif
4221 }
4222 if (len > 0 && end > 0)
4223 {
4224 write_info.bw_len = len;
4225 if (buf_write_bytes(&write_info) == FAIL)
4226 end = 0; /* write error */
4227 nchars += len;
4228 }
4229
4230#if defined(UNIX) && defined(HAVE_FSYNC)
4231 /* On many journalling file systems there is a bug that causes both the
4232 * original and the backup file to be lost when halting the system right
4233 * after writing the file. That's because only the meta-data is
4234 * journalled. Syncing the file slows down the system, but assures it has
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00004235 * been written to disk and we don't lose it.
4236 * For a device do try the fsync() but don't complain if it does not work
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00004237 * (could be a pipe).
4238 * If the 'fsync' option is FALSE, don't fsync(). Useful for laptops. */
4239 if (p_fs && fsync(fd) != 0 && !device)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240 {
4241 errmsg = (char_u *)_("E667: Fsync failed");
4242 end = 0;
4243 }
4244#endif
4245
Bram Moolenaara5792f52005-11-23 21:25:05 +00004246#ifdef UNIX
4247 /* When creating a new file, set its owner/group to that of the original
4248 * file. Get the new device and inode number. */
4249 if (backup != NULL && !backup_copy)
4250 {
4251# ifdef HAVE_FCHOWN
4252 struct stat st;
4253
4254 /* don't change the owner when it's already OK, some systems remove
4255 * permission or ACL stuff */
4256 if (mch_stat((char *)wfname, &st) < 0
4257 || st.st_uid != st_old.st_uid
4258 || st.st_gid != st_old.st_gid)
4259 {
4260 fchown(fd, st_old.st_uid, st_old.st_gid);
4261 if (perm >= 0) /* set permission again, may have changed */
4262 (void)mch_setperm(wfname, perm);
4263 }
4264# endif
4265 buf_setino(buf);
4266 }
Bram Moolenaar8fa04452005-12-23 22:13:51 +00004267 else if (buf->b_dev < 0)
4268 /* Set the inode when creating a new file. */
4269 buf_setino(buf);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004270#endif
4271
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272 if (close(fd) != 0)
4273 {
4274 errmsg = (char_u *)_("E512: Close failed");
4275 end = 0;
4276 }
4277
4278#ifdef UNIX
4279 if (made_writable)
4280 perm &= ~0200; /* reset 'w' bit for security reasons */
4281#endif
4282 if (perm >= 0) /* set perm. of new file same as old file */
4283 (void)mch_setperm(wfname, perm);
4284#ifdef RISCOS
4285 if (!append && !filtering)
4286 /* Set the filetype after writing the file. */
4287 mch_set_filetype(wfname, buf->b_p_oft);
4288#endif
4289#ifdef HAVE_ACL
4290 /* Probably need to set the ACL before changing the user (can't set the
4291 * ACL on a file the user doesn't own). */
4292 if (!backup_copy)
4293 mch_set_acl(wfname, acl);
4294#endif
4295
Bram Moolenaar071d4272004-06-13 20:20:40 +00004296
4297#if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
4298 if (wfname != fname)
4299 {
4300 /*
4301 * The file was written to a temp file, now it needs to be converted
4302 * with 'charconvert' to (overwrite) the output file.
4303 */
4304 if (end != 0)
4305 {
4306 if (eval_charconvert(enc_utf8 ? (char_u *)"utf-8" : p_enc, fenc,
4307 wfname, fname) == FAIL)
4308 {
4309 write_info.bw_conv_error = TRUE;
4310 end = 0;
4311 }
4312 }
4313 mch_remove(wfname);
4314 vim_free(wfname);
4315 }
4316#endif
4317
4318 if (end == 0)
4319 {
4320 if (errmsg == NULL)
4321 {
4322#ifdef FEAT_MBYTE
4323 if (write_info.bw_conv_error)
Bram Moolenaar3fdfa4a2004-10-07 21:02:47 +00004324 errmsg = (char_u *)_("E513: write error, conversion failed (make 'fenc' empty to override)");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 else
4326#endif
4327 if (got_int)
4328 errmsg = (char_u *)_(e_interr);
4329 else
4330 errmsg = (char_u *)_("E514: write error (file system full?)");
4331 }
4332
4333 /*
4334 * If we have a backup file, try to put it in place of the new file,
4335 * because the new file is probably corrupt. This avoids loosing the
4336 * original file when trying to make a backup when writing the file a
4337 * second time.
4338 * When "backup_copy" is set we need to copy the backup over the new
4339 * file. Otherwise rename the backup file.
4340 * If this is OK, don't give the extra warning message.
4341 */
4342 if (backup != NULL)
4343 {
4344 if (backup_copy)
4345 {
4346 /* This may take a while, if we were interrupted let the user
4347 * know we got the message. */
4348 if (got_int)
4349 {
4350 MSG(_(e_interr));
4351 out_flush();
4352 }
4353 if ((fd = mch_open((char *)backup, O_RDONLY | O_EXTRA, 0)) >= 0)
4354 {
4355 if ((write_info.bw_fd = mch_open((char *)fname,
Bram Moolenaar9be038d2005-03-08 22:34:32 +00004356 O_WRONLY | O_CREAT | O_TRUNC | O_EXTRA,
4357 perm & 0777)) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 {
4359 /* copy the file. */
4360 write_info.bw_buf = smallbuf;
4361#ifdef HAS_BW_FLAGS
4362 write_info.bw_flags = FIO_NOCONVERT;
4363#endif
4364 while ((write_info.bw_len = vim_read(fd, smallbuf,
4365 SMBUFSIZE)) > 0)
4366 if (buf_write_bytes(&write_info) == FAIL)
4367 break;
4368
4369 if (close(write_info.bw_fd) >= 0
4370 && write_info.bw_len == 0)
4371 end = 1; /* success */
4372 }
4373 close(fd); /* ignore errors for closing read file */
4374 }
4375 }
4376 else
4377 {
4378 if (vim_rename(backup, fname) == 0)
4379 end = 1;
4380 }
4381 }
4382 goto fail;
4383 }
4384
4385 lnum -= start; /* compute number of written lines */
4386 --no_wait_return; /* may wait for return now */
4387
4388#if !(defined(UNIX) || defined(VMS))
4389 fname = sfname; /* use shortname now, for the messages */
4390#endif
4391 if (!filtering)
4392 {
4393 msg_add_fname(buf, fname); /* put fname in IObuff with quotes */
4394 c = FALSE;
4395#ifdef FEAT_MBYTE
4396 if (write_info.bw_conv_error)
4397 {
4398 STRCAT(IObuff, _(" CONVERSION ERROR"));
4399 c = TRUE;
4400 }
4401 else if (notconverted)
4402 {
4403 STRCAT(IObuff, _("[NOT converted]"));
4404 c = TRUE;
4405 }
4406 else if (converted)
4407 {
4408 STRCAT(IObuff, _("[converted]"));
4409 c = TRUE;
4410 }
4411#endif
4412 if (device)
4413 {
4414 STRCAT(IObuff, _("[Device]"));
4415 c = TRUE;
4416 }
4417 else if (newfile)
4418 {
4419 STRCAT(IObuff, shortmess(SHM_NEW) ? _("[New]") : _("[New File]"));
4420 c = TRUE;
4421 }
4422 if (no_eol)
4423 {
4424 msg_add_eol();
4425 c = TRUE;
4426 }
4427 /* may add [unix/dos/mac] */
4428 if (msg_add_fileformat(fileformat))
4429 c = TRUE;
4430#ifdef FEAT_CRYPT
4431 if (wb_flags & FIO_ENCRYPTED)
4432 {
4433 STRCAT(IObuff, _("[crypted]"));
4434 c = TRUE;
4435 }
4436#endif
4437 msg_add_lines(c, (long)lnum, nchars); /* add line/char count */
4438 if (!shortmess(SHM_WRITE))
4439 {
4440 if (append)
4441 STRCAT(IObuff, shortmess(SHM_WRI) ? _(" [a]") : _(" appended"));
4442 else
4443 STRCAT(IObuff, shortmess(SHM_WRI) ? _(" [w]") : _(" written"));
4444 }
4445
Bram Moolenaar8f7fd652006-02-21 22:04:51 +00004446 set_keep_msg(msg_trunc_attr(IObuff, FALSE, 0), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 }
4448
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004449 /* When written everything correctly: reset 'modified'. Unless not
4450 * writing to the original file and '+' is not in 'cpoptions'. */
Bram Moolenaar292ad192005-12-11 21:29:51 +00004451 if (reset_changed && whole && !append
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452#ifdef FEAT_MBYTE
4453 && !write_info.bw_conv_error
4454#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004455 && (overwriting || vim_strchr(p_cpo, CPO_PLUS) != NULL)
4456 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 {
4458 unchanged(buf, TRUE);
4459 u_unchanged(buf);
4460 }
4461
4462 /*
4463 * If written to the current file, update the timestamp of the swap file
4464 * and reset the BF_WRITE_MASK flags. Also sets buf->b_mtime.
4465 */
4466 if (overwriting)
4467 {
4468 ml_timestamp(buf);
Bram Moolenaar292ad192005-12-11 21:29:51 +00004469 if (append)
4470 buf->b_flags &= ~BF_NEW;
4471 else
4472 buf->b_flags &= ~BF_WRITE_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 }
4474
4475 /*
4476 * If we kept a backup until now, and we are in patch mode, then we make
4477 * the backup file our 'original' file.
4478 */
4479 if (*p_pm && dobackup)
4480 {
4481 char *org = (char *)buf_modname(
4482#ifdef SHORT_FNAME
4483 TRUE,
4484#else
4485 (buf->b_p_sn || buf->b_shortname),
4486#endif
4487 fname, p_pm, FALSE);
4488
4489 if (backup != NULL)
4490 {
4491 struct stat st;
4492
4493 /*
4494 * If the original file does not exist yet
4495 * the current backup file becomes the original file
4496 */
4497 if (org == NULL)
4498 EMSG(_("E205: Patchmode: can't save original file"));
4499 else if (mch_stat(org, &st) < 0)
4500 {
4501 vim_rename(backup, (char_u *)org);
4502 vim_free(backup); /* don't delete the file */
4503 backup = NULL;
4504#ifdef UNIX
4505 set_file_time((char_u *)org, st_old.st_atime, st_old.st_mtime);
4506#endif
4507 }
4508 }
4509 /*
4510 * If there is no backup file, remember that a (new) file was
4511 * created.
4512 */
4513 else
4514 {
4515 int empty_fd;
4516
4517 if (org == NULL
Bram Moolenaara5792f52005-11-23 21:25:05 +00004518 || (empty_fd = mch_open(org,
4519 O_CREAT | O_EXTRA | O_EXCL | O_NOFOLLOW,
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00004520 perm < 0 ? 0666 : (perm & 0777))) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 EMSG(_("E206: patchmode: can't touch empty original file"));
4522 else
4523 close(empty_fd);
4524 }
4525 if (org != NULL)
4526 {
4527 mch_setperm((char_u *)org, mch_getperm(fname) & 0777);
4528 vim_free(org);
4529 }
4530 }
4531
4532 /*
4533 * Remove the backup unless 'backup' option is set
4534 */
4535 if (!p_bk && backup != NULL && mch_remove(backup) != 0)
4536 EMSG(_("E207: Can't delete backup file"));
4537
4538#ifdef FEAT_SUN_WORKSHOP
4539 if (usingSunWorkShop)
4540 workshop_file_saved((char *) ffname);
4541#endif
4542
4543 goto nofail;
4544
4545 /*
4546 * Finish up. We get here either after failure or success.
4547 */
4548fail:
4549 --no_wait_return; /* may wait for return now */
4550nofail:
4551
4552 /* Done saving, we accept changed buffer warnings again */
4553 buf->b_saving = FALSE;
4554
4555 vim_free(backup);
4556 if (buffer != smallbuf)
4557 vim_free(buffer);
4558#ifdef FEAT_MBYTE
4559 vim_free(fenc_tofree);
4560 vim_free(write_info.bw_conv_buf);
4561# ifdef USE_ICONV
4562 if (write_info.bw_iconv_fd != (iconv_t)-1)
4563 {
4564 iconv_close(write_info.bw_iconv_fd);
4565 write_info.bw_iconv_fd = (iconv_t)-1;
4566 }
4567# endif
4568#endif
4569#ifdef HAVE_ACL
4570 mch_free_acl(acl);
4571#endif
4572
4573 if (errmsg != NULL)
4574 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004575 int numlen = errnum != NULL ? (int)STRLEN(errnum) : 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576
4577 attr = hl_attr(HLF_E); /* set highlight for error messages */
4578 msg_add_fname(buf,
4579#ifndef UNIX
4580 sfname
4581#else
4582 fname
4583#endif
4584 ); /* put file name in IObuff with quotes */
4585 if (STRLEN(IObuff) + STRLEN(errmsg) + numlen >= IOSIZE)
4586 IObuff[IOSIZE - STRLEN(errmsg) - numlen - 1] = NUL;
4587 /* If the error message has the form "is ...", put the error number in
4588 * front of the file name. */
4589 if (errnum != NULL)
4590 {
4591 mch_memmove(IObuff + numlen, IObuff, STRLEN(IObuff) + 1);
4592 mch_memmove(IObuff, errnum, (size_t)numlen);
4593 }
4594 STRCAT(IObuff, errmsg);
4595 emsg(IObuff);
4596
4597 retval = FAIL;
4598 if (end == 0)
4599 {
4600 MSG_PUTS_ATTR(_("\nWARNING: Original file may be lost or damaged\n"),
4601 attr | MSG_HIST);
4602 MSG_PUTS_ATTR(_("don't quit the editor until the file is successfully written!"),
4603 attr | MSG_HIST);
4604
4605 /* Update the timestamp to avoid an "overwrite changed file"
4606 * prompt when writing again. */
4607 if (mch_stat((char *)fname, &st_old) >= 0)
4608 {
4609 buf_store_time(buf, &st_old, fname);
4610 buf->b_mtime_read = buf->b_mtime;
4611 }
4612 }
4613 }
4614 msg_scroll = msg_save;
4615
4616#ifdef FEAT_AUTOCMD
4617#ifdef FEAT_EVAL
4618 if (!should_abort(retval))
4619#else
4620 if (!got_int)
4621#endif
4622 {
4623 aco_save_T aco;
4624
4625 write_no_eol_lnum = 0; /* in case it was set by the previous read */
4626
4627 /*
4628 * Apply POST autocommands.
4629 * Careful: The autocommands may call buf_write() recursively!
4630 */
4631 aucmd_prepbuf(&aco, buf);
4632
4633 if (append)
4634 apply_autocmds_exarg(EVENT_FILEAPPENDPOST, fname, fname,
4635 FALSE, curbuf, eap);
4636 else if (filtering)
4637 apply_autocmds_exarg(EVENT_FILTERWRITEPOST, NULL, fname,
4638 FALSE, curbuf, eap);
4639 else if (reset_changed && whole)
4640 apply_autocmds_exarg(EVENT_BUFWRITEPOST, fname, fname,
4641 FALSE, curbuf, eap);
4642 else
4643 apply_autocmds_exarg(EVENT_FILEWRITEPOST, fname, fname,
4644 FALSE, curbuf, eap);
4645
4646 /* restore curwin/curbuf and a few other things */
4647 aucmd_restbuf(&aco);
4648
4649#ifdef FEAT_EVAL
4650 if (aborting()) /* autocmds may abort script processing */
4651 retval = FALSE;
4652#endif
4653 }
4654#endif
4655
4656 got_int |= prev_got_int;
4657
4658#ifdef MACOS_CLASSIC /* TODO: Is it need for MACOS_X? (Dany) */
4659 /* Update machine specific information. */
4660 mch_post_buffer_write(buf);
4661#endif
4662 return retval;
4663}
4664
4665/*
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004666 * Set the name of the current buffer. Use when the buffer doesn't have a
4667 * name and a ":r" or ":w" command with a file name is used.
4668 */
4669 static int
4670set_rw_fname(fname, sfname)
4671 char_u *fname;
4672 char_u *sfname;
4673{
4674#ifdef FEAT_AUTOCMD
4675 /* It's like the unnamed buffer is deleted.... */
4676 if (curbuf->b_p_bl)
4677 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
4678 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
4679# ifdef FEAT_EVAL
4680 if (aborting()) /* autocmds may abort script processing */
4681 return FAIL;
4682# endif
4683#endif
4684
4685 if (setfname(curbuf, fname, sfname, FALSE) == OK)
4686 curbuf->b_flags |= BF_NOTEDITED;
4687
4688#ifdef FEAT_AUTOCMD
4689 /* ....and a new named one is created */
4690 apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, curbuf);
4691 if (curbuf->b_p_bl)
4692 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
4693# ifdef FEAT_EVAL
4694 if (aborting()) /* autocmds may abort script processing */
4695 return FAIL;
4696# endif
4697
4698 /* Do filetype detection now if 'filetype' is empty. */
4699 if (*curbuf->b_p_ft == NUL)
4700 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004701 if (au_has_group((char_u *)"filetypedetect"))
Bram Moolenaar70836c82006-02-20 21:28:49 +00004702 (void)do_doautocmd((char_u *)"filetypedetect BufRead", FALSE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00004703 do_modelines(0);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00004704 }
4705#endif
4706
4707 return OK;
4708}
4709
4710/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 * Put file name into IObuff with quotes.
4712 */
Bram Moolenaar009b2592004-10-24 19:18:58 +00004713 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714msg_add_fname(buf, fname)
4715 buf_T *buf;
4716 char_u *fname;
4717{
4718 if (fname == NULL)
4719 fname = (char_u *)"-stdin-";
4720 home_replace(buf, fname, IObuff + 1, IOSIZE - 4, TRUE);
4721 IObuff[0] = '"';
4722 STRCAT(IObuff, "\" ");
4723}
4724
4725/*
4726 * Append message for text mode to IObuff.
4727 * Return TRUE if something appended.
4728 */
4729 static int
4730msg_add_fileformat(eol_type)
4731 int eol_type;
4732{
4733#ifndef USE_CRNL
4734 if (eol_type == EOL_DOS)
4735 {
4736 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[dos]") : _("[dos format]"));
4737 return TRUE;
4738 }
4739#endif
4740#ifndef USE_CR
4741 if (eol_type == EOL_MAC)
4742 {
4743 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[mac]") : _("[mac format]"));
4744 return TRUE;
4745 }
4746#endif
4747#if defined(USE_CRNL) || defined(USE_CR)
4748 if (eol_type == EOL_UNIX)
4749 {
4750 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[unix]") : _("[unix format]"));
4751 return TRUE;
4752 }
4753#endif
4754 return FALSE;
4755}
4756
4757/*
4758 * Append line and character count to IObuff.
4759 */
Bram Moolenaar009b2592004-10-24 19:18:58 +00004760 void
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761msg_add_lines(insert_space, lnum, nchars)
4762 int insert_space;
4763 long lnum;
4764 long nchars;
4765{
4766 char_u *p;
4767
4768 p = IObuff + STRLEN(IObuff);
4769
4770 if (insert_space)
4771 *p++ = ' ';
4772 if (shortmess(SHM_LINES))
4773 sprintf((char *)p, "%ldL, %ldC", lnum, nchars);
4774 else
4775 {
4776 if (lnum == 1)
4777 STRCPY(p, _("1 line, "));
4778 else
4779 sprintf((char *)p, _("%ld lines, "), lnum);
4780 p += STRLEN(p);
4781 if (nchars == 1)
4782 STRCPY(p, _("1 character"));
4783 else
4784 sprintf((char *)p, _("%ld characters"), nchars);
4785 }
4786}
4787
4788/*
4789 * Append message for missing line separator to IObuff.
4790 */
4791 static void
4792msg_add_eol()
4793{
4794 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]") : _("[Incomplete last line]"));
4795}
4796
4797/*
4798 * Check modification time of file, before writing to it.
4799 * The size isn't checked, because using a tool like "gzip" takes care of
4800 * using the same timestamp but can't set the size.
4801 */
4802 static int
4803check_mtime(buf, st)
4804 buf_T *buf;
4805 struct stat *st;
4806{
4807 if (buf->b_mtime_read != 0
4808 && time_differs((long)st->st_mtime, buf->b_mtime_read))
4809 {
4810 msg_scroll = TRUE; /* don't overwrite messages here */
4811 msg_silent = 0; /* must give this prompt */
4812 /* don't use emsg() here, don't want to flush the buffers */
4813 MSG_ATTR(_("WARNING: The file has been changed since reading it!!!"),
4814 hl_attr(HLF_E));
4815 if (ask_yesno((char_u *)_("Do you really want to write to it"),
4816 TRUE) == 'n')
4817 return FAIL;
4818 msg_scroll = FALSE; /* always overwrite the file message now */
4819 }
4820 return OK;
4821}
4822
4823 static int
4824time_differs(t1, t2)
4825 long t1, t2;
4826{
4827#if defined(__linux__) || defined(MSDOS) || defined(MSWIN)
4828 /* On a FAT filesystem, esp. under Linux, there are only 5 bits to store
4829 * the seconds. Since the roundoff is done when flushing the inode, the
4830 * time may change unexpectedly by one second!!! */
4831 return (t1 - t2 > 1 || t2 - t1 > 1);
4832#else
4833 return (t1 != t2);
4834#endif
4835}
4836
4837/*
4838 * Call write() to write a number of bytes to the file.
4839 * Also handles encryption and 'encoding' conversion.
4840 *
4841 * Return FAIL for failure, OK otherwise.
4842 */
4843 static int
4844buf_write_bytes(ip)
4845 struct bw_info *ip;
4846{
4847 int wlen;
4848 char_u *buf = ip->bw_buf; /* data to write */
4849 int len = ip->bw_len; /* length of data */
4850#ifdef HAS_BW_FLAGS
4851 int flags = ip->bw_flags; /* extra flags */
4852#endif
4853
4854#ifdef FEAT_MBYTE
4855 /*
4856 * Skip conversion when writing the crypt magic number or the BOM.
4857 */
4858 if (!(flags & FIO_NOCONVERT))
4859 {
4860 char_u *p;
4861 unsigned c;
4862 int n;
4863
4864 if (flags & FIO_UTF8)
4865 {
4866 /*
4867 * Convert latin1 in the buffer to UTF-8 in the file.
4868 */
4869 p = ip->bw_conv_buf; /* translate to buffer */
4870 for (wlen = 0; wlen < len; ++wlen)
4871 p += utf_char2bytes(buf[wlen], p);
4872 buf = ip->bw_conv_buf;
4873 len = (int)(p - ip->bw_conv_buf);
4874 }
4875 else if (flags & (FIO_UCS4 | FIO_UTF16 | FIO_UCS2 | FIO_LATIN1))
4876 {
4877 /*
4878 * Convert UTF-8 bytes in the buffer to UCS-2, UCS-4, UTF-16 or
4879 * Latin1 chars in the file.
4880 */
4881 if (flags & FIO_LATIN1)
4882 p = buf; /* translate in-place (can only get shorter) */
4883 else
4884 p = ip->bw_conv_buf; /* translate to buffer */
4885 for (wlen = 0; wlen < len; wlen += n)
4886 {
4887 if (wlen == 0 && ip->bw_restlen != 0)
4888 {
4889 int l;
4890
4891 /* Use remainder of previous call. Append the start of
4892 * buf[] to get a full sequence. Might still be too
4893 * short! */
4894 l = CONV_RESTLEN - ip->bw_restlen;
4895 if (l > len)
4896 l = len;
4897 mch_memmove(ip->bw_rest + ip->bw_restlen, buf, (size_t)l);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004898 n = utf_ptr2len_len(ip->bw_rest, ip->bw_restlen + l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 if (n > ip->bw_restlen + len)
4900 {
4901 /* We have an incomplete byte sequence at the end to
4902 * be written. We can't convert it without the
4903 * remaining bytes. Keep them for the next call. */
4904 if (ip->bw_restlen + len > CONV_RESTLEN)
4905 return FAIL;
4906 ip->bw_restlen += len;
4907 break;
4908 }
4909 if (n > 1)
4910 c = utf_ptr2char(ip->bw_rest);
4911 else
4912 c = ip->bw_rest[0];
4913 if (n >= ip->bw_restlen)
4914 {
4915 n -= ip->bw_restlen;
4916 ip->bw_restlen = 0;
4917 }
4918 else
4919 {
4920 ip->bw_restlen -= n;
4921 mch_memmove(ip->bw_rest, ip->bw_rest + n,
4922 (size_t)ip->bw_restlen);
4923 n = 0;
4924 }
4925 }
4926 else
4927 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004928 n = utf_ptr2len_len(buf + wlen, len - wlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 if (n > len - wlen)
4930 {
4931 /* We have an incomplete byte sequence at the end to
4932 * be written. We can't convert it without the
4933 * remaining bytes. Keep them for the next call. */
4934 if (len - wlen > CONV_RESTLEN)
4935 return FAIL;
4936 ip->bw_restlen = len - wlen;
4937 mch_memmove(ip->bw_rest, buf + wlen,
4938 (size_t)ip->bw_restlen);
4939 break;
4940 }
4941 if (n > 1)
4942 c = utf_ptr2char(buf + wlen);
4943 else
4944 c = buf[wlen];
4945 }
4946
4947 ip->bw_conv_error |= ucs2bytes(c, &p, flags);
4948 }
4949 if (flags & FIO_LATIN1)
4950 len = (int)(p - buf);
4951 else
4952 {
4953 buf = ip->bw_conv_buf;
4954 len = (int)(p - ip->bw_conv_buf);
4955 }
4956 }
4957
4958# ifdef WIN3264
4959 else if (flags & FIO_CODEPAGE)
4960 {
4961 /*
4962 * Convert UTF-8 or codepage to UCS-2 and then to MS-Windows
4963 * codepage.
4964 */
4965 char_u *from;
4966 size_t fromlen;
4967 char_u *to;
4968 int u8c;
4969 BOOL bad = FALSE;
4970 int needed;
4971
4972 if (ip->bw_restlen > 0)
4973 {
4974 /* Need to concatenate the remainder of the previous call and
4975 * the bytes of the current call. Use the end of the
4976 * conversion buffer for this. */
4977 fromlen = len + ip->bw_restlen;
4978 from = ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
4979 mch_memmove(from, ip->bw_rest, (size_t)ip->bw_restlen);
4980 mch_memmove(from + ip->bw_restlen, buf, (size_t)len);
4981 }
4982 else
4983 {
4984 from = buf;
4985 fromlen = len;
4986 }
4987
4988 to = ip->bw_conv_buf;
4989 if (enc_utf8)
4990 {
4991 /* Convert from UTF-8 to UCS-2, to the start of the buffer.
4992 * The buffer has been allocated to be big enough. */
4993 while (fromlen > 0)
4994 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004995 n = (int)utf_ptr2len_len(from, (int)fromlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 if (n > (int)fromlen) /* incomplete byte sequence */
4997 break;
4998 u8c = utf_ptr2char(from);
4999 *to++ = (u8c & 0xff);
5000 *to++ = (u8c >> 8);
5001 fromlen -= n;
5002 from += n;
5003 }
5004
5005 /* Copy remainder to ip->bw_rest[] to be used for the next
5006 * call. */
5007 if (fromlen > CONV_RESTLEN)
5008 {
5009 /* weird overlong sequence */
5010 ip->bw_conv_error = TRUE;
5011 return FAIL;
5012 }
5013 mch_memmove(ip->bw_rest, from, fromlen);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005014 ip->bw_restlen = (int)fromlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 }
5016 else
5017 {
5018 /* Convert from enc_codepage to UCS-2, to the start of the
5019 * buffer. The buffer has been allocated to be big enough. */
5020 ip->bw_restlen = 0;
5021 needed = MultiByteToWideChar(enc_codepage,
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005022 MB_ERR_INVALID_CHARS, (LPCSTR)from, (int)fromlen,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 NULL, 0);
5024 if (needed == 0)
5025 {
5026 /* When conversion fails there may be a trailing byte. */
5027 needed = MultiByteToWideChar(enc_codepage,
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005028 MB_ERR_INVALID_CHARS, (LPCSTR)from, (int)fromlen - 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 NULL, 0);
5030 if (needed == 0)
5031 {
5032 /* Conversion doesn't work. */
5033 ip->bw_conv_error = TRUE;
5034 return FAIL;
5035 }
5036 /* Save the trailing byte for the next call. */
5037 ip->bw_rest[0] = from[fromlen - 1];
5038 ip->bw_restlen = 1;
5039 }
5040 needed = MultiByteToWideChar(enc_codepage, MB_ERR_INVALID_CHARS,
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005041 (LPCSTR)from, (int)(fromlen - ip->bw_restlen),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 (LPWSTR)to, needed);
5043 if (needed == 0)
5044 {
5045 /* Safety check: Conversion doesn't work. */
5046 ip->bw_conv_error = TRUE;
5047 return FAIL;
5048 }
5049 to += needed * 2;
5050 }
5051
5052 fromlen = to - ip->bw_conv_buf;
5053 buf = to;
5054# ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
5055 if (FIO_GET_CP(flags) == CP_UTF8)
5056 {
5057 /* Convert from UCS-2 to UTF-8, using the remainder of the
5058 * conversion buffer. Fails when out of space. */
5059 for (from = ip->bw_conv_buf; fromlen > 1; fromlen -= 2)
5060 {
5061 u8c = *from++;
5062 u8c += (*from++ << 8);
5063 to += utf_char2bytes(u8c, to);
5064 if (to + 6 >= ip->bw_conv_buf + ip->bw_conv_buflen)
5065 {
5066 ip->bw_conv_error = TRUE;
5067 return FAIL;
5068 }
5069 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005070 len = (int)(to - buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 }
5072 else
5073#endif
5074 {
5075 /* Convert from UCS-2 to the codepage, using the remainder of
5076 * the conversion buffer. If the conversion uses the default
5077 * character "0", the data doesn't fit in this encoding, so
5078 * fail. */
5079 len = WideCharToMultiByte(FIO_GET_CP(flags), 0,
5080 (LPCWSTR)ip->bw_conv_buf, (int)fromlen / sizeof(WCHAR),
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005081 (LPSTR)to, (int)(ip->bw_conv_buflen - fromlen), 0,
5082 &bad);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 if (bad)
5084 {
5085 ip->bw_conv_error = TRUE;
5086 return FAIL;
5087 }
5088 }
5089 }
5090# endif
5091
Bram Moolenaar56718732006-03-15 22:53:57 +00005092# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 else if (flags & FIO_MACROMAN)
5094 {
5095 /*
5096 * Convert UTF-8 or latin1 to Apple MacRoman.
5097 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 char_u *from;
5099 size_t fromlen;
5100
5101 if (ip->bw_restlen > 0)
5102 {
5103 /* Need to concatenate the remainder of the previous call and
5104 * the bytes of the current call. Use the end of the
5105 * conversion buffer for this. */
5106 fromlen = len + ip->bw_restlen;
5107 from = ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5108 mch_memmove(from, ip->bw_rest, (size_t)ip->bw_restlen);
5109 mch_memmove(from + ip->bw_restlen, buf, (size_t)len);
5110 }
5111 else
5112 {
5113 from = buf;
5114 fromlen = len;
5115 }
5116
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005117 if (enc2macroman(from, fromlen,
5118 ip->bw_conv_buf, &len, ip->bw_conv_buflen,
5119 ip->bw_rest, &ip->bw_restlen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120 {
5121 ip->bw_conv_error = TRUE;
5122 return FAIL;
5123 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124 buf = ip->bw_conv_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005125 }
5126# endif
5127
5128# ifdef USE_ICONV
5129 if (ip->bw_iconv_fd != (iconv_t)-1)
5130 {
5131 const char *from;
5132 size_t fromlen;
5133 char *to;
5134 size_t tolen;
5135
5136 /* Convert with iconv(). */
5137 if (ip->bw_restlen > 0)
5138 {
5139 /* Need to concatenate the remainder of the previous call and
5140 * the bytes of the current call. Use the end of the
5141 * conversion buffer for this. */
5142 fromlen = len + ip->bw_restlen;
5143 from = (char *)ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5144 mch_memmove((void *)from, ip->bw_rest, (size_t)ip->bw_restlen);
5145 mch_memmove((void *)(from + ip->bw_restlen), buf, (size_t)len);
5146 tolen = ip->bw_conv_buflen - fromlen;
5147 }
5148 else
5149 {
5150 from = (const char *)buf;
5151 fromlen = len;
5152 tolen = ip->bw_conv_buflen;
5153 }
5154 to = (char *)ip->bw_conv_buf;
5155
5156 if (ip->bw_first)
5157 {
5158 size_t save_len = tolen;
5159
5160 /* output the initial shift state sequence */
5161 (void)iconv(ip->bw_iconv_fd, NULL, NULL, &to, &tolen);
5162
5163 /* There is a bug in iconv() on Linux (which appears to be
5164 * wide-spread) which sets "to" to NULL and messes up "tolen".
5165 */
5166 if (to == NULL)
5167 {
5168 to = (char *)ip->bw_conv_buf;
5169 tolen = save_len;
5170 }
5171 ip->bw_first = FALSE;
5172 }
5173
5174 /*
5175 * If iconv() has an error or there is not enough room, fail.
5176 */
5177 if ((iconv(ip->bw_iconv_fd, (void *)&from, &fromlen, &to, &tolen)
5178 == (size_t)-1 && ICONV_ERRNO != ICONV_EINVAL)
5179 || fromlen > CONV_RESTLEN)
5180 {
5181 ip->bw_conv_error = TRUE;
5182 return FAIL;
5183 }
5184
5185 /* copy remainder to ip->bw_rest[] to be used for the next call. */
5186 if (fromlen > 0)
5187 mch_memmove(ip->bw_rest, (void *)from, fromlen);
5188 ip->bw_restlen = (int)fromlen;
5189
5190 buf = ip->bw_conv_buf;
5191 len = (int)((char_u *)to - ip->bw_conv_buf);
5192 }
5193# endif
5194 }
5195#endif /* FEAT_MBYTE */
5196
5197#ifdef FEAT_CRYPT
5198 if (flags & FIO_ENCRYPTED) /* encrypt the data */
5199 {
5200 int ztemp, t, i;
5201
5202 for (i = 0; i < len; i++)
5203 {
5204 ztemp = buf[i];
5205 buf[i] = ZENCODE(ztemp, t);
5206 }
5207 }
5208#endif
5209
5210 /* Repeat the write(), it may be interrupted by a signal. */
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005211 while (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005212 {
5213 wlen = vim_write(ip->bw_fd, buf, len);
5214 if (wlen <= 0) /* error! */
5215 return FAIL;
5216 len -= wlen;
5217 buf += wlen;
5218 }
5219 return OK;
5220}
5221
5222#ifdef FEAT_MBYTE
5223/*
5224 * Convert a Unicode character to bytes.
5225 */
5226 static int
5227ucs2bytes(c, pp, flags)
5228 unsigned c; /* in: character */
5229 char_u **pp; /* in/out: pointer to result */
5230 int flags; /* FIO_ flags */
5231{
5232 char_u *p = *pp;
5233 int error = FALSE;
5234 int cc;
5235
5236
5237 if (flags & FIO_UCS4)
5238 {
5239 if (flags & FIO_ENDIAN_L)
5240 {
5241 *p++ = c;
5242 *p++ = (c >> 8);
5243 *p++ = (c >> 16);
5244 *p++ = (c >> 24);
5245 }
5246 else
5247 {
5248 *p++ = (c >> 24);
5249 *p++ = (c >> 16);
5250 *p++ = (c >> 8);
5251 *p++ = c;
5252 }
5253 }
5254 else if (flags & (FIO_UCS2 | FIO_UTF16))
5255 {
5256 if (c >= 0x10000)
5257 {
5258 if (flags & FIO_UTF16)
5259 {
5260 /* Make two words, ten bits of the character in each. First
5261 * word is 0xd800 - 0xdbff, second one 0xdc00 - 0xdfff */
5262 c -= 0x10000;
5263 if (c >= 0x100000)
5264 error = TRUE;
5265 cc = ((c >> 10) & 0x3ff) + 0xd800;
5266 if (flags & FIO_ENDIAN_L)
5267 {
5268 *p++ = cc;
5269 *p++ = ((unsigned)cc >> 8);
5270 }
5271 else
5272 {
5273 *p++ = ((unsigned)cc >> 8);
5274 *p++ = cc;
5275 }
5276 c = (c & 0x3ff) + 0xdc00;
5277 }
5278 else
5279 error = TRUE;
5280 }
5281 if (flags & FIO_ENDIAN_L)
5282 {
5283 *p++ = c;
5284 *p++ = (c >> 8);
5285 }
5286 else
5287 {
5288 *p++ = (c >> 8);
5289 *p++ = c;
5290 }
5291 }
5292 else /* Latin1 */
5293 {
5294 if (c >= 0x100)
5295 {
5296 error = TRUE;
5297 *p++ = 0xBF;
5298 }
5299 else
5300 *p++ = c;
5301 }
5302
5303 *pp = p;
5304 return error;
5305}
5306
5307/*
5308 * Return TRUE if "a" and "b" are the same 'encoding'.
5309 * Ignores difference between "ansi" and "latin1", "ucs-4" and "ucs-4be", etc.
5310 */
5311 static int
5312same_encoding(a, b)
5313 char_u *a;
5314 char_u *b;
5315{
5316 int f;
5317
5318 if (STRCMP(a, b) == 0)
5319 return TRUE;
5320 f = get_fio_flags(a);
5321 return (f != 0 && get_fio_flags(b) == f);
5322}
5323
5324/*
5325 * Check "ptr" for a unicode encoding and return the FIO_ flags needed for the
5326 * internal conversion.
5327 * if "ptr" is an empty string, use 'encoding'.
5328 */
5329 static int
5330get_fio_flags(ptr)
5331 char_u *ptr;
5332{
5333 int prop;
5334
5335 if (*ptr == NUL)
5336 ptr = p_enc;
5337
5338 prop = enc_canon_props(ptr);
5339 if (prop & ENC_UNICODE)
5340 {
5341 if (prop & ENC_2BYTE)
5342 {
5343 if (prop & ENC_ENDIAN_L)
5344 return FIO_UCS2 | FIO_ENDIAN_L;
5345 return FIO_UCS2;
5346 }
5347 if (prop & ENC_4BYTE)
5348 {
5349 if (prop & ENC_ENDIAN_L)
5350 return FIO_UCS4 | FIO_ENDIAN_L;
5351 return FIO_UCS4;
5352 }
5353 if (prop & ENC_2WORD)
5354 {
5355 if (prop & ENC_ENDIAN_L)
5356 return FIO_UTF16 | FIO_ENDIAN_L;
5357 return FIO_UTF16;
5358 }
5359 return FIO_UTF8;
5360 }
5361 if (prop & ENC_LATIN1)
5362 return FIO_LATIN1;
5363 /* must be ENC_DBCS, requires iconv() */
5364 return 0;
5365}
5366
5367#ifdef WIN3264
5368/*
5369 * Check "ptr" for a MS-Windows codepage name and return the FIO_ flags needed
5370 * for the conversion MS-Windows can do for us. Also accept "utf-8".
5371 * Used for conversion between 'encoding' and 'fileencoding'.
5372 */
5373 static int
5374get_win_fio_flags(ptr)
5375 char_u *ptr;
5376{
5377 int cp;
5378
5379 /* Cannot do this when 'encoding' is not utf-8 and not a codepage. */
5380 if (!enc_utf8 && enc_codepage <= 0)
5381 return 0;
5382
5383 cp = encname2codepage(ptr);
5384 if (cp == 0)
5385 {
5386# ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
5387 if (STRCMP(ptr, "utf-8") == 0)
5388 cp = CP_UTF8;
5389 else
5390# endif
5391 return 0;
5392 }
5393 return FIO_PUT_CP(cp) | FIO_CODEPAGE;
5394}
5395#endif
5396
5397#ifdef MACOS_X
5398/*
5399 * Check "ptr" for a Carbon supported encoding and return the FIO_ flags
5400 * needed for the internal conversion to/from utf-8 or latin1.
5401 */
5402 static int
5403get_mac_fio_flags(ptr)
5404 char_u *ptr;
5405{
5406 if ((enc_utf8 || STRCMP(p_enc, "latin1") == 0)
5407 && (enc_canon_props(ptr) & ENC_MACROMAN))
5408 return FIO_MACROMAN;
5409 return 0;
5410}
5411#endif
5412
5413/*
5414 * Check for a Unicode BOM (Byte Order Mark) at the start of p[size].
5415 * "size" must be at least 2.
5416 * Return the name of the encoding and set "*lenp" to the length.
5417 * Returns NULL when no BOM found.
5418 */
5419 static char_u *
5420check_for_bom(p, size, lenp, flags)
5421 char_u *p;
5422 long size;
5423 int *lenp;
5424 int flags;
5425{
5426 char *name = NULL;
5427 int len = 2;
5428
5429 if (p[0] == 0xef && p[1] == 0xbb && size >= 3 && p[2] == 0xbf
5430 && (flags == FIO_ALL || flags == 0))
5431 {
5432 name = "utf-8"; /* EF BB BF */
5433 len = 3;
5434 }
5435 else if (p[0] == 0xff && p[1] == 0xfe)
5436 {
5437 if (size >= 4 && p[2] == 0 && p[3] == 0
5438 && (flags == FIO_ALL || flags == (FIO_UCS4 | FIO_ENDIAN_L)))
5439 {
5440 name = "ucs-4le"; /* FF FE 00 00 */
5441 len = 4;
5442 }
5443 else if (flags == FIO_ALL || flags == (FIO_UCS2 | FIO_ENDIAN_L))
5444 name = "ucs-2le"; /* FF FE */
5445 else if (flags == (FIO_UTF16 | FIO_ENDIAN_L))
5446 name = "utf-16le"; /* FF FE */
5447 }
5448 else if (p[0] == 0xfe && p[1] == 0xff
5449 && (flags == FIO_ALL || flags == FIO_UCS2 || flags == FIO_UTF16))
5450 {
5451 if (flags == FIO_UTF16)
5452 name = "utf-16"; /* FE FF */
5453 else
5454 name = "ucs-2"; /* FE FF */
5455 }
5456 else if (size >= 4 && p[0] == 0 && p[1] == 0 && p[2] == 0xfe
5457 && p[3] == 0xff && (flags == FIO_ALL || flags == FIO_UCS4))
5458 {
5459 name = "ucs-4"; /* 00 00 FE FF */
5460 len = 4;
5461 }
5462
5463 *lenp = len;
5464 return (char_u *)name;
5465}
5466
5467/*
5468 * Generate a BOM in "buf[4]" for encoding "name".
5469 * Return the length of the BOM (zero when no BOM).
5470 */
5471 static int
5472make_bom(buf, name)
5473 char_u *buf;
5474 char_u *name;
5475{
5476 int flags;
5477 char_u *p;
5478
5479 flags = get_fio_flags(name);
5480
5481 /* Can't put a BOM in a non-Unicode file. */
5482 if (flags == FIO_LATIN1 || flags == 0)
5483 return 0;
5484
5485 if (flags == FIO_UTF8) /* UTF-8 */
5486 {
5487 buf[0] = 0xef;
5488 buf[1] = 0xbb;
5489 buf[2] = 0xbf;
5490 return 3;
5491 }
5492 p = buf;
5493 (void)ucs2bytes(0xfeff, &p, flags);
5494 return (int)(p - buf);
5495}
5496#endif
5497
5498/*
5499 * Try to find a shortname by comparing the fullname with the current
5500 * directory.
5501 * Returns NULL if not shorter name possible, pointer into "full_path"
5502 * otherwise.
5503 */
5504 char_u *
5505shorten_fname(full_path, dir_name)
5506 char_u *full_path;
5507 char_u *dir_name;
5508{
5509 int len;
5510 char_u *p;
5511
5512 if (full_path == NULL)
5513 return NULL;
5514 len = (int)STRLEN(dir_name);
5515 if (fnamencmp(dir_name, full_path, len) == 0)
5516 {
5517 p = full_path + len;
5518#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
5519 /*
5520 * MSDOS: when a file is in the root directory, dir_name will end in a
5521 * slash, since C: by itself does not define a specific dir. In this
5522 * case p may already be correct. <negri>
5523 */
5524 if (!((len > 2) && (*(p - 2) == ':')))
5525#endif
5526 {
5527 if (vim_ispathsep(*p))
5528 ++p;
5529#ifndef VMS /* the path separator is always part of the path */
5530 else
5531 p = NULL;
5532#endif
5533 }
5534 }
5535#if defined(MSDOS) || defined(MSWIN) || defined(OS2)
5536 /*
5537 * When using a file in the current drive, remove the drive name:
5538 * "A:\dir\file" -> "\dir\file". This helps when moving a session file on
5539 * a floppy from "A:\dir" to "B:\dir".
5540 */
5541 else if (len > 3
5542 && TOUPPER_LOC(full_path[0]) == TOUPPER_LOC(dir_name[0])
5543 && full_path[1] == ':'
5544 && vim_ispathsep(full_path[2]))
5545 p = full_path + 2;
5546#endif
5547 else
5548 p = NULL;
5549 return p;
5550}
5551
5552/*
5553 * Shorten filenames for all buffers.
5554 * When "force" is TRUE: Use full path from now on for files currently being
5555 * edited, both for file name and swap file name. Try to shorten the file
5556 * names a bit, if safe to do so.
5557 * When "force" is FALSE: Only try to shorten absolute file names.
5558 * For buffers that have buftype "nofile" or "scratch": never change the file
5559 * name.
5560 */
5561 void
5562shorten_fnames(force)
5563 int force;
5564{
5565 char_u dirname[MAXPATHL];
5566 buf_T *buf;
5567 char_u *p;
5568
5569 mch_dirname(dirname, MAXPATHL);
5570 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
5571 {
5572 if (buf->b_fname != NULL
5573#ifdef FEAT_QUICKFIX
5574 && !bt_nofile(buf)
5575#endif
5576 && !path_with_url(buf->b_fname)
5577 && (force
5578 || buf->b_sfname == NULL
5579 || mch_isFullName(buf->b_sfname)))
5580 {
5581 vim_free(buf->b_sfname);
5582 buf->b_sfname = NULL;
5583 p = shorten_fname(buf->b_ffname, dirname);
5584 if (p != NULL)
5585 {
5586 buf->b_sfname = vim_strsave(p);
5587 buf->b_fname = buf->b_sfname;
5588 }
5589 if (p == NULL || buf->b_fname == NULL)
5590 buf->b_fname = buf->b_ffname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 }
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005592
5593 /* Always make the swap file name a full path, a "nofile" buffer may
5594 * also have a swap file. */
5595 mf_fullname(buf->b_ml.ml_mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 }
5597#ifdef FEAT_WINDOWS
5598 status_redraw_all();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00005599 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005600#endif
5601}
5602
5603#if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \
5604 || defined(FEAT_GUI_MSWIN) \
5605 || defined(FEAT_GUI_MAC) \
5606 || defined(PROTO)
5607/*
5608 * Shorten all filenames in "fnames[count]" by current directory.
5609 */
5610 void
5611shorten_filenames(fnames, count)
5612 char_u **fnames;
5613 int count;
5614{
5615 int i;
5616 char_u dirname[MAXPATHL];
5617 char_u *p;
5618
5619 if (fnames == NULL || count < 1)
5620 return;
5621 mch_dirname(dirname, sizeof(dirname));
5622 for (i = 0; i < count; ++i)
5623 {
5624 if ((p = shorten_fname(fnames[i], dirname)) != NULL)
5625 {
5626 /* shorten_fname() returns pointer in given "fnames[i]". If free
5627 * "fnames[i]" first, "p" becomes invalid. So we need to copy
5628 * "p" first then free fnames[i]. */
5629 p = vim_strsave(p);
5630 vim_free(fnames[i]);
5631 fnames[i] = p;
5632 }
5633 }
5634}
5635#endif
5636
5637/*
5638 * add extention to file name - change path/fo.o.h to path/fo.o.h.ext or
5639 * fo_o_h.ext for MSDOS or when shortname option set.
5640 *
5641 * Assumed that fname is a valid name found in the filesystem we assure that
5642 * the return value is a different name and ends in 'ext'.
5643 * "ext" MUST be at most 4 characters long if it starts with a dot, 3
5644 * characters otherwise.
5645 * Space for the returned name is allocated, must be freed later.
5646 * Returns NULL when out of memory.
5647 */
5648 char_u *
5649modname(fname, ext, prepend_dot)
5650 char_u *fname, *ext;
5651 int prepend_dot; /* may prepend a '.' to file name */
5652{
5653 return buf_modname(
5654#ifdef SHORT_FNAME
5655 TRUE,
5656#else
5657 (curbuf->b_p_sn || curbuf->b_shortname),
5658#endif
5659 fname, ext, prepend_dot);
5660}
5661
5662 char_u *
5663buf_modname(shortname, fname, ext, prepend_dot)
5664 int shortname; /* use 8.3 file name */
5665 char_u *fname, *ext;
5666 int prepend_dot; /* may prepend a '.' to file name */
5667{
5668 char_u *retval;
5669 char_u *s;
5670 char_u *e;
5671 char_u *ptr;
5672 int fnamelen, extlen;
5673
5674 extlen = (int)STRLEN(ext);
5675
5676 /*
5677 * If there is no file name we must get the name of the current directory
5678 * (we need the full path in case :cd is used).
5679 */
5680 if (fname == NULL || *fname == NUL)
5681 {
5682 retval = alloc((unsigned)(MAXPATHL + extlen + 3));
5683 if (retval == NULL)
5684 return NULL;
5685 if (mch_dirname(retval, MAXPATHL) == FAIL ||
5686 (fnamelen = (int)STRLEN(retval)) == 0)
5687 {
5688 vim_free(retval);
5689 return NULL;
5690 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005691 if (!after_pathsep(retval, retval + fnamelen))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005692 {
5693 retval[fnamelen++] = PATHSEP;
5694 retval[fnamelen] = NUL;
5695 }
5696#ifndef SHORT_FNAME
5697 prepend_dot = FALSE; /* nothing to prepend a dot to */
5698#endif
5699 }
5700 else
5701 {
5702 fnamelen = (int)STRLEN(fname);
5703 retval = alloc((unsigned)(fnamelen + extlen + 3));
5704 if (retval == NULL)
5705 return NULL;
5706 STRCPY(retval, fname);
5707#ifdef VMS
5708 vms_remove_version(retval); /* we do not need versions here */
5709#endif
5710 }
5711
5712 /*
5713 * search backwards until we hit a '/', '\' or ':' replacing all '.'
5714 * by '_' for MSDOS or when shortname option set and ext starts with a dot.
5715 * Then truncate what is after the '/', '\' or ':' to 8 characters for
5716 * MSDOS and 26 characters for AMIGA, a lot more for UNIX.
5717 */
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005718 for (ptr = retval + fnamelen; ptr > retval; mb_ptr_back(retval, ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719 {
5720#ifndef RISCOS
5721 if (*ext == '.'
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005722# ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 && (!USE_LONG_FNAME || shortname)
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005724# else
5725# ifndef SHORT_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00005726 && shortname
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005727# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005728# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729 )
5730 if (*ptr == '.') /* replace '.' by '_' */
5731 *ptr = '_';
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005732#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 if (vim_ispathsep(*ptr))
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005734 {
5735 ++ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 break;
Bram Moolenaar53180ce2005-07-05 21:48:14 +00005737 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005738 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739
5740 /* the file name has at most BASENAMELEN characters. */
5741#ifndef SHORT_FNAME
5742 if (STRLEN(ptr) > (unsigned)BASENAMELEN)
5743 ptr[BASENAMELEN] = '\0';
5744#endif
5745
5746 s = ptr + STRLEN(ptr);
5747
5748 /*
5749 * For 8.3 file names we may have to reduce the length.
5750 */
5751#ifdef USE_LONG_FNAME
5752 if (!USE_LONG_FNAME || shortname)
5753#else
5754# ifndef SHORT_FNAME
5755 if (shortname)
5756# endif
5757#endif
5758 {
5759 /*
5760 * If there is no file name, or the file name ends in '/', and the
5761 * extension starts with '.', put a '_' before the dot, because just
5762 * ".ext" is invalid.
5763 */
5764 if (fname == NULL || *fname == NUL
5765 || vim_ispathsep(fname[STRLEN(fname) - 1]))
5766 {
5767#ifdef RISCOS
5768 if (*ext == '/')
5769#else
5770 if (*ext == '.')
5771#endif
5772 *s++ = '_';
5773 }
5774 /*
5775 * If the extension starts with '.', truncate the base name at 8
5776 * characters
5777 */
5778#ifdef RISCOS
5779 /* We normally use '/', but swap files are '_' */
5780 else if (*ext == '/' || *ext == '_')
5781#else
5782 else if (*ext == '.')
5783#endif
5784 {
5785 if (s - ptr > (size_t)8)
5786 {
5787 s = ptr + 8;
5788 *s = '\0';
5789 }
5790 }
5791 /*
5792 * If the extension doesn't start with '.', and the file name
5793 * doesn't have an extension yet, append a '.'
5794 */
5795#ifdef RISCOS
5796 else if ((e = vim_strchr(ptr, '/')) == NULL)
5797 *s++ = '/';
5798#else
5799 else if ((e = vim_strchr(ptr, '.')) == NULL)
5800 *s++ = '.';
5801#endif
5802 /*
5803 * If the extension doesn't start with '.', and there already is an
Bram Moolenaar7263a772007-05-10 17:35:54 +00005804 * extension, it may need to be truncated
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805 */
5806 else if ((int)STRLEN(e) + extlen > 4)
5807 s = e + 4 - extlen;
5808 }
5809#if defined(OS2) || defined(USE_LONG_FNAME) || defined(WIN3264)
5810 /*
5811 * If there is no file name, and the extension starts with '.', put a
5812 * '_' before the dot, because just ".ext" may be invalid if it's on a
5813 * FAT partition, and on HPFS it doesn't matter.
5814 */
5815 else if ((fname == NULL || *fname == NUL) && *ext == '.')
5816 *s++ = '_';
5817#endif
5818
5819 /*
5820 * Append the extention.
5821 * ext can start with '.' and cannot exceed 3 more characters.
5822 */
5823 STRCPY(s, ext);
5824
5825#ifndef SHORT_FNAME
5826 /*
5827 * Prepend the dot.
5828 */
5829 if (prepend_dot && !shortname && *(e = gettail(retval)) !=
5830#ifdef RISCOS
5831 '/'
5832#else
5833 '.'
5834#endif
5835#ifdef USE_LONG_FNAME
5836 && USE_LONG_FNAME
5837#endif
5838 )
5839 {
5840 mch_memmove(e + 1, e, STRLEN(e) + 1);
5841#ifdef RISCOS
5842 *e = '/';
5843#else
5844 *e = '.';
5845#endif
5846 }
5847#endif
5848
5849 /*
5850 * Check that, after appending the extension, the file name is really
5851 * different.
5852 */
5853 if (fname != NULL && STRCMP(fname, retval) == 0)
5854 {
5855 /* we search for a character that can be replaced by '_' */
5856 while (--s >= ptr)
5857 {
5858 if (*s != '_')
5859 {
5860 *s = '_';
5861 break;
5862 }
5863 }
5864 if (s < ptr) /* fname was "________.<ext>", how tricky! */
5865 *ptr = 'v';
5866 }
5867 return retval;
5868}
5869
5870/*
5871 * Like fgets(), but if the file line is too long, it is truncated and the
5872 * rest of the line is thrown away. Returns TRUE for end-of-file.
5873 */
5874 int
5875vim_fgets(buf, size, fp)
5876 char_u *buf;
5877 int size;
5878 FILE *fp;
5879{
5880 char *eof;
5881#define FGETS_SIZE 200
5882 char tbuf[FGETS_SIZE];
5883
5884 buf[size - 2] = NUL;
5885#ifdef USE_CR
5886 eof = fgets_cr((char *)buf, size, fp);
5887#else
5888 eof = fgets((char *)buf, size, fp);
5889#endif
5890 if (buf[size - 2] != NUL && buf[size - 2] != '\n')
5891 {
5892 buf[size - 1] = NUL; /* Truncate the line */
5893
5894 /* Now throw away the rest of the line: */
5895 do
5896 {
5897 tbuf[FGETS_SIZE - 2] = NUL;
5898#ifdef USE_CR
5899 fgets_cr((char *)tbuf, FGETS_SIZE, fp);
5900#else
5901 fgets((char *)tbuf, FGETS_SIZE, fp);
5902#endif
5903 } while (tbuf[FGETS_SIZE - 2] != NUL && tbuf[FGETS_SIZE - 2] != '\n');
5904 }
5905 return (eof == NULL);
5906}
5907
5908#if defined(USE_CR) || defined(PROTO)
5909/*
5910 * Like vim_fgets(), but accept any line terminator: CR, CR-LF or LF.
5911 * Returns TRUE for end-of-file.
5912 * Only used for the Mac, because it's much slower than vim_fgets().
5913 */
5914 int
5915tag_fgets(buf, size, fp)
5916 char_u *buf;
5917 int size;
5918 FILE *fp;
5919{
5920 int i = 0;
5921 int c;
5922 int eof = FALSE;
5923
5924 for (;;)
5925 {
5926 c = fgetc(fp);
5927 if (c == EOF)
5928 {
5929 eof = TRUE;
5930 break;
5931 }
5932 if (c == '\r')
5933 {
5934 /* Always store a NL for end-of-line. */
5935 if (i < size - 1)
5936 buf[i++] = '\n';
5937 c = fgetc(fp);
5938 if (c != '\n') /* Macintosh format: single CR. */
5939 ungetc(c, fp);
5940 break;
5941 }
5942 if (i < size - 1)
5943 buf[i++] = c;
5944 if (c == '\n')
5945 break;
5946 }
5947 buf[i] = NUL;
5948 return eof;
5949}
5950#endif
5951
5952/*
5953 * rename() only works if both files are on the same file system, this
5954 * function will (attempts to?) copy the file across if rename fails -- webb
5955 * Return -1 for failure, 0 for success.
5956 */
5957 int
5958vim_rename(from, to)
5959 char_u *from;
5960 char_u *to;
5961{
5962 int fd_in;
5963 int fd_out;
5964 int n;
5965 char *errmsg = NULL;
5966 char *buffer;
5967#ifdef AMIGA
5968 BPTR flock;
5969#endif
5970 struct stat st;
Bram Moolenaar9be038d2005-03-08 22:34:32 +00005971 long perm;
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00005972#ifdef HAVE_ACL
5973 vim_acl_T acl; /* ACL from original file */
5974#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975
5976 /*
5977 * When the names are identical, there is nothing to do.
5978 */
5979 if (fnamecmp(from, to) == 0)
5980 return 0;
5981
5982 /*
5983 * Fail if the "from" file doesn't exist. Avoids that "to" is deleted.
5984 */
5985 if (mch_stat((char *)from, &st) < 0)
5986 return -1;
5987
5988 /*
5989 * Delete the "to" file, this is required on some systems to make the
5990 * mch_rename() work, on other systems it makes sure that we don't have
5991 * two files when the mch_rename() fails.
5992 */
5993
5994#ifdef AMIGA
5995 /*
5996 * With MSDOS-compatible filesystems (crossdos, messydos) it is possible
5997 * that the name of the "to" file is the same as the "from" file, even
Bram Moolenaar7263a772007-05-10 17:35:54 +00005998 * though the names are different. To avoid the chance of accidentally
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999 * deleting the "from" file (horror!) we lock it during the remove.
6000 *
6001 * When used for making a backup before writing the file: This should not
6002 * happen with ":w", because startscript() should detect this problem and
6003 * set buf->b_shortname, causing modname() to return a correct ".bak" file
6004 * name. This problem does exist with ":w filename", but then the
6005 * original file will be somewhere else so the backup isn't really
6006 * important. If autoscripting is off the rename may fail.
6007 */
6008 flock = Lock((UBYTE *)from, (long)ACCESS_READ);
6009#endif
6010 mch_remove(to);
6011#ifdef AMIGA
6012 if (flock)
6013 UnLock(flock);
6014#endif
6015
6016 /*
6017 * First try a normal rename, return if it works.
6018 */
6019 if (mch_rename((char *)from, (char *)to) == 0)
6020 return 0;
6021
6022 /*
6023 * Rename() failed, try copying the file.
6024 */
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006025 perm = mch_getperm(from);
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006026#ifdef HAVE_ACL
6027 /* For systems that support ACL: get the ACL from the original file. */
6028 acl = mch_get_acl(from);
6029#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030 fd_in = mch_open((char *)from, O_RDONLY|O_EXTRA, 0);
6031 if (fd_in == -1)
6032 return -1;
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006033
6034 /* Create the new file with same permissions as the original. */
Bram Moolenaara5792f52005-11-23 21:25:05 +00006035 fd_out = mch_open((char *)to,
6036 O_CREAT|O_EXCL|O_WRONLY|O_EXTRA|O_NOFOLLOW, (int)perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037 if (fd_out == -1)
6038 {
6039 close(fd_in);
6040 return -1;
6041 }
6042
6043 buffer = (char *)alloc(BUFSIZE);
6044 if (buffer == NULL)
6045 {
6046 close(fd_in);
6047 close(fd_out);
6048 return -1;
6049 }
6050
6051 while ((n = vim_read(fd_in, buffer, BUFSIZE)) > 0)
6052 if (vim_write(fd_out, buffer, n) != n)
6053 {
6054 errmsg = _("E208: Error writing to \"%s\"");
6055 break;
6056 }
6057
6058 vim_free(buffer);
6059 close(fd_in);
6060 if (close(fd_out) < 0)
6061 errmsg = _("E209: Error closing \"%s\"");
6062 if (n < 0)
6063 {
6064 errmsg = _("E210: Error reading \"%s\"");
6065 to = from;
6066 }
Bram Moolenaar7263a772007-05-10 17:35:54 +00006067#ifndef UNIX /* for Unix mch_open() already set the permission */
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006068 mch_setperm(to, perm);
Bram Moolenaarc6039d82005-12-02 00:44:04 +00006069#endif
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006070#ifdef HAVE_ACL
6071 mch_set_acl(to, acl);
6072#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073 if (errmsg != NULL)
6074 {
6075 EMSG2(errmsg, to);
6076 return -1;
6077 }
6078 mch_remove(from);
6079 return 0;
6080}
6081
6082static int already_warned = FALSE;
6083
6084/*
6085 * Check if any not hidden buffer has been changed.
6086 * Postpone the check if there are characters in the stuff buffer, a global
6087 * command is being executed, a mapping is being executed or an autocommand is
6088 * busy.
6089 * Returns TRUE if some message was written (screen should be redrawn and
6090 * cursor positioned).
6091 */
6092 int
6093check_timestamps(focus)
6094 int focus; /* called for GUI focus event */
6095{
6096 buf_T *buf;
6097 int didit = 0;
6098 int n;
6099
6100 /* Don't check timestamps while system() or another low-level function may
6101 * cause us to lose and gain focus. */
6102 if (no_check_timestamps > 0)
6103 return FALSE;
6104
6105 /* Avoid doing a check twice. The OK/Reload dialog can cause a focus
6106 * event and we would keep on checking if the file is steadily growing.
6107 * Do check again after typing something. */
6108 if (focus && did_check_timestamps)
6109 {
6110 need_check_timestamps = TRUE;
6111 return FALSE;
6112 }
6113
6114 if (!stuff_empty() || global_busy || !typebuf_typed()
6115#ifdef FEAT_AUTOCMD
Bram Moolenaar5555acc2006-04-07 21:33:12 +00006116 || autocmd_busy || curbuf_lock > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117#endif
6118 )
6119 need_check_timestamps = TRUE; /* check later */
6120 else
6121 {
6122 ++no_wait_return;
6123 did_check_timestamps = TRUE;
6124 already_warned = FALSE;
6125 for (buf = firstbuf; buf != NULL; )
6126 {
6127 /* Only check buffers in a window. */
6128 if (buf->b_nwindows > 0)
6129 {
6130 n = buf_check_timestamp(buf, focus);
6131 if (didit < n)
6132 didit = n;
6133 if (n > 0 && !buf_valid(buf))
6134 {
6135 /* Autocommands have removed the buffer, start at the
6136 * first one again. */
6137 buf = firstbuf;
6138 continue;
6139 }
6140 }
6141 buf = buf->b_next;
6142 }
6143 --no_wait_return;
6144 need_check_timestamps = FALSE;
6145 if (need_wait_return && didit == 2)
6146 {
6147 /* make sure msg isn't overwritten */
6148 msg_puts((char_u *)"\n");
6149 out_flush();
6150 }
6151 }
6152 return didit;
6153}
6154
6155/*
6156 * Move all the lines from buffer "frombuf" to buffer "tobuf".
6157 * Return OK or FAIL. When FAIL "tobuf" is incomplete and/or "frombuf" is not
6158 * empty.
6159 */
6160 static int
6161move_lines(frombuf, tobuf)
6162 buf_T *frombuf;
6163 buf_T *tobuf;
6164{
6165 buf_T *tbuf = curbuf;
6166 int retval = OK;
6167 linenr_T lnum;
6168 char_u *p;
6169
6170 /* Copy the lines in "frombuf" to "tobuf". */
6171 curbuf = tobuf;
6172 for (lnum = 1; lnum <= frombuf->b_ml.ml_line_count; ++lnum)
6173 {
6174 p = vim_strsave(ml_get_buf(frombuf, lnum, FALSE));
6175 if (p == NULL || ml_append(lnum - 1, p, 0, FALSE) == FAIL)
6176 {
6177 vim_free(p);
6178 retval = FAIL;
6179 break;
6180 }
6181 vim_free(p);
6182 }
6183
6184 /* Delete all the lines in "frombuf". */
6185 if (retval != FAIL)
6186 {
6187 curbuf = frombuf;
Bram Moolenaar9460b9d2007-01-09 14:37:01 +00006188 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0; --lnum)
6189 if (ml_delete(lnum, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190 {
6191 /* Oops! We could try putting back the saved lines, but that
6192 * might fail again... */
6193 retval = FAIL;
6194 break;
6195 }
6196 }
6197
6198 curbuf = tbuf;
6199 return retval;
6200}
6201
6202/*
6203 * Check if buffer "buf" has been changed.
6204 * Also check if the file for a new buffer unexpectedly appeared.
6205 * return 1 if a changed buffer was found.
6206 * return 2 if a message has been displayed.
6207 * return 0 otherwise.
6208 */
6209/*ARGSUSED*/
6210 int
6211buf_check_timestamp(buf, focus)
6212 buf_T *buf;
6213 int focus; /* called for GUI focus event */
6214{
6215 struct stat st;
6216 int stat_res;
6217 int retval = 0;
6218 char_u *path;
6219 char_u *tbuf;
6220 char *mesg = NULL;
Bram Moolenaar44ecf652005-03-07 23:09:59 +00006221 char *mesg2 = "";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006222 int helpmesg = FALSE;
6223 int reload = FALSE;
6224#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6225 int can_reload = FALSE;
6226#endif
6227 size_t orig_size = buf->b_orig_size;
6228 int orig_mode = buf->b_orig_mode;
6229#ifdef FEAT_GUI
6230 int save_mouse_correct = need_mouse_correct;
6231#endif
6232#ifdef FEAT_AUTOCMD
6233 static int busy = FALSE;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006234 int n;
6235 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006236#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006237 char *reason;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238
6239 /* If there is no file name, the buffer is not loaded, 'buftype' is
6240 * set, we are in the middle of a save or being called recursively: ignore
6241 * this buffer. */
6242 if (buf->b_ffname == NULL
6243 || buf->b_ml.ml_mfp == NULL
6244#if defined(FEAT_QUICKFIX)
6245 || *buf->b_p_bt != NUL
6246#endif
6247 || buf->b_saving
6248#ifdef FEAT_AUTOCMD
6249 || busy
6250#endif
Bram Moolenaar009b2592004-10-24 19:18:58 +00006251#ifdef FEAT_NETBEANS_INTG
6252 || isNetbeansBuffer(buf)
6253#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254 )
6255 return 0;
6256
6257 if ( !(buf->b_flags & BF_NOTEDITED)
6258 && buf->b_mtime != 0
6259 && ((stat_res = mch_stat((char *)buf->b_ffname, &st)) < 0
6260 || time_differs((long)st.st_mtime, buf->b_mtime)
6261#ifdef HAVE_ST_MODE
6262 || (int)st.st_mode != buf->b_orig_mode
6263#else
6264 || mch_getperm(buf->b_ffname) != buf->b_orig_mode
6265#endif
6266 ))
6267 {
6268 retval = 1;
6269
Bram Moolenaar316059c2006-01-14 21:18:42 +00006270 /* set b_mtime to stop further warnings (e.g., when executing
6271 * FileChangedShell autocmd) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006272 if (stat_res < 0)
6273 {
6274 buf->b_mtime = 0;
6275 buf->b_orig_size = 0;
6276 buf->b_orig_mode = 0;
6277 }
6278 else
6279 buf_store_time(buf, &st, buf->b_ffname);
6280
6281 /* Don't do anything for a directory. Might contain the file
6282 * explorer. */
6283 if (mch_isdir(buf->b_fname))
6284 ;
6285
6286 /*
6287 * If 'autoread' is set, the buffer has no changes and the file still
6288 * exists, reload the buffer. Use the buffer-local option value if it
6289 * was set, the global option value otherwise.
6290 */
6291 else if ((buf->b_p_ar >= 0 ? buf->b_p_ar : p_ar)
6292 && !bufIsChanged(buf) && stat_res >= 0)
6293 reload = TRUE;
6294 else
6295 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006296 if (stat_res < 0)
6297 reason = "deleted";
6298 else if (bufIsChanged(buf))
6299 reason = "conflict";
6300 else if (orig_size != buf->b_orig_size || buf_contents_changed(buf))
6301 reason = "changed";
6302 else if (orig_mode != buf->b_orig_mode)
6303 reason = "mode";
6304 else
6305 reason = "time";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006306
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006307#ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006308 /*
6309 * Only give the warning if there are no FileChangedShell
6310 * autocommands.
6311 * Avoid being called recursively by setting "busy".
6312 */
6313 busy = TRUE;
Bram Moolenaar1e015462005-09-25 22:16:38 +00006314# ifdef FEAT_EVAL
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006315 set_vim_var_string(VV_FCS_REASON, (char_u *)reason, -1);
6316 set_vim_var_string(VV_FCS_CHOICE, (char_u *)"", -1);
Bram Moolenaar1e015462005-09-25 22:16:38 +00006317# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318 n = apply_autocmds(EVENT_FILECHANGEDSHELL,
6319 buf->b_fname, buf->b_fname, FALSE, buf);
6320 busy = FALSE;
6321 if (n)
6322 {
6323 if (!buf_valid(buf))
6324 EMSG(_("E246: FileChangedShell autocommand deleted buffer"));
Bram Moolenaar1e015462005-09-25 22:16:38 +00006325# ifdef FEAT_EVAL
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006326 s = get_vim_var_str(VV_FCS_CHOICE);
6327 if (STRCMP(s, "reload") == 0 && *reason != 'd')
6328 reload = TRUE;
6329 else if (STRCMP(s, "ask") == 0)
6330 n = FALSE;
6331 else
Bram Moolenaar1e015462005-09-25 22:16:38 +00006332# endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006333 return 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006334 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006335 if (!n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336#endif
6337 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006338 if (*reason == 'd')
6339 mesg = _("E211: File \"%s\" no longer available");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340 else
6341 {
6342 helpmesg = TRUE;
6343#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6344 can_reload = TRUE;
6345#endif
6346 /*
6347 * Check if the file contents really changed to avoid
6348 * giving a warning when only the timestamp was set (e.g.,
6349 * checked out of CVS). Always warn when the buffer was
6350 * changed.
6351 */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006352 if (reason[2] == 'n')
6353 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006354 mesg = _("W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as well");
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006355 mesg2 = _("See \":help W12\" for more info.");
6356 }
6357 else if (reason[1] == 'h')
6358 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006359 mesg = _("W11: Warning: File \"%s\" has changed since editing started");
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006360 mesg2 = _("See \":help W11\" for more info.");
6361 }
6362 else if (*reason == 'm')
6363 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006364 mesg = _("W16: Warning: Mode of file \"%s\" has changed since editing started");
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006365 mesg2 = _("See \":help W16\" for more info.");
6366 }
6367 /* Else: only timestamp changed, ignored */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368 }
6369 }
6370 }
6371
6372 }
6373 else if ((buf->b_flags & BF_NEW) && !(buf->b_flags & BF_NEW_W)
6374 && vim_fexists(buf->b_ffname))
6375 {
6376 retval = 1;
6377 mesg = _("W13: Warning: File \"%s\" has been created after editing started");
6378 buf->b_flags |= BF_NEW_W;
6379#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6380 can_reload = TRUE;
6381#endif
6382 }
6383
6384 if (mesg != NULL)
6385 {
6386 path = home_replace_save(buf, buf->b_fname);
6387 if (path != NULL)
6388 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006389 if (!helpmesg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390 mesg2 = "";
6391 tbuf = alloc((unsigned)(STRLEN(path) + STRLEN(mesg)
6392 + STRLEN(mesg2) + 2));
6393 sprintf((char *)tbuf, mesg, path);
6394#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6395 if (can_reload)
6396 {
6397 if (*mesg2 != NUL)
6398 {
6399 STRCAT(tbuf, "\n");
6400 STRCAT(tbuf, mesg2);
6401 }
6402 if (do_dialog(VIM_WARNING, (char_u *)_("Warning"), tbuf,
6403 (char_u *)_("&OK\n&Load File"), 1, NULL) == 2)
6404 reload = TRUE;
6405 }
6406 else
6407#endif
6408 if (State > NORMAL_BUSY || (State & CMDLINE) || already_warned)
6409 {
6410 if (*mesg2 != NUL)
6411 {
6412 STRCAT(tbuf, "; ");
6413 STRCAT(tbuf, mesg2);
6414 }
6415 EMSG(tbuf);
6416 retval = 2;
6417 }
6418 else
6419 {
Bram Moolenaared203462004-06-16 11:19:22 +00006420# ifdef FEAT_AUTOCMD
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421 if (!autocmd_busy)
Bram Moolenaared203462004-06-16 11:19:22 +00006422# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423 {
6424 msg_start();
6425 msg_puts_attr(tbuf, hl_attr(HLF_E) + MSG_HIST);
6426 if (*mesg2 != NUL)
6427 msg_puts_attr((char_u *)mesg2,
6428 hl_attr(HLF_W) + MSG_HIST);
6429 msg_clr_eos();
6430 (void)msg_end();
6431 if (emsg_silent == 0)
6432 {
6433 out_flush();
Bram Moolenaared203462004-06-16 11:19:22 +00006434# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00006435 if (!focus)
Bram Moolenaared203462004-06-16 11:19:22 +00006436# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006437 /* give the user some time to think about it */
6438 ui_delay(1000L, TRUE);
6439
6440 /* don't redraw and erase the message */
6441 redraw_cmdline = FALSE;
6442 }
6443 }
6444 already_warned = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445 }
6446
6447 vim_free(path);
6448 vim_free(tbuf);
6449 }
6450 }
6451
6452 if (reload)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006453 /* Reload the buffer. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006454 buf_reload(buf, orig_mode);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455
Bram Moolenaar56718732006-03-15 22:53:57 +00006456#ifdef FEAT_AUTOCMD
6457 if (buf_valid(buf))
6458 (void)apply_autocmds(EVENT_FILECHANGEDSHELLPOST,
6459 buf->b_fname, buf->b_fname, FALSE, buf);
6460#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461#ifdef FEAT_GUI
6462 /* restore this in case an autocommand has set it; it would break
6463 * 'mousefocus' */
6464 need_mouse_correct = save_mouse_correct;
6465#endif
6466
6467 return retval;
6468}
6469
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006470/*
6471 * Reload a buffer that is already loaded.
6472 * Used when the file was changed outside of Vim.
Bram Moolenaar316059c2006-01-14 21:18:42 +00006473 * "orig_mode" is buf->b_orig_mode before the need for reloading was detected.
6474 * buf->b_orig_mode may have been reset already.
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006475 */
6476 void
Bram Moolenaar316059c2006-01-14 21:18:42 +00006477buf_reload(buf, orig_mode)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006478 buf_T *buf;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006479 int orig_mode;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006480{
6481 exarg_T ea;
6482 pos_T old_cursor;
6483 linenr_T old_topline;
6484 int old_ro = buf->b_p_ro;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006485 buf_T *savebuf;
6486 int saved = OK;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006487 aco_save_T aco;
6488
6489 /* set curwin/curbuf for "buf" and save some things */
6490 aucmd_prepbuf(&aco, buf);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006491
6492 /* We only want to read the text from the file, not reset the syntax
6493 * highlighting, clear marks, diff status, etc. Force the fileformat
6494 * and encoding to be the same. */
6495 if (prep_exarg(&ea, buf) == OK)
6496 {
6497 old_cursor = curwin->w_cursor;
6498 old_topline = curwin->w_topline;
6499
6500 /*
6501 * To behave like when a new file is edited (matters for
6502 * BufReadPost autocommands) we first need to delete the current
6503 * buffer contents. But if reading the file fails we should keep
6504 * the old contents. Can't use memory only, the file might be
6505 * too big. Use a hidden buffer to move the buffer contents to.
6506 */
6507 if (bufempty())
6508 savebuf = NULL;
6509 else
6510 {
6511 /* Allocate a buffer without putting it in the buffer list. */
6512 savebuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
Bram Moolenaar8424a622006-04-19 21:23:36 +00006513 if (savebuf != NULL && buf == curbuf)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006514 {
6515 /* Open the memline. */
6516 curbuf = savebuf;
6517 curwin->w_buffer = savebuf;
Bram Moolenaar4770d092006-01-12 23:22:24 +00006518 saved = ml_open(curbuf);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006519 curbuf = buf;
6520 curwin->w_buffer = buf;
6521 }
Bram Moolenaar8424a622006-04-19 21:23:36 +00006522 if (savebuf == NULL || saved == FAIL || buf != curbuf
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006523 || move_lines(buf, savebuf) == FAIL)
6524 {
6525 EMSG2(_("E462: Could not prepare for reloading \"%s\""),
6526 buf->b_fname);
6527 saved = FAIL;
6528 }
6529 }
6530
6531 if (saved == OK)
6532 {
6533 curbuf->b_flags |= BF_CHECK_RO; /* check for RO again */
6534#ifdef FEAT_AUTOCMD
6535 keep_filetype = TRUE; /* don't detect 'filetype' */
6536#endif
6537 if (readfile(buf->b_ffname, buf->b_fname, (linenr_T)0,
6538 (linenr_T)0,
6539 (linenr_T)MAXLNUM, &ea, READ_NEW) == FAIL)
6540 {
6541#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6542 if (!aborting())
6543#endif
6544 EMSG2(_("E321: Could not reload \"%s\""), buf->b_fname);
Bram Moolenaar8424a622006-04-19 21:23:36 +00006545 if (savebuf != NULL && buf_valid(savebuf) && buf == curbuf)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006546 {
6547 /* Put the text back from the save buffer. First
6548 * delete any lines that readfile() added. */
6549 while (!bufempty())
Bram Moolenaar8424a622006-04-19 21:23:36 +00006550 if (ml_delete(buf->b_ml.ml_line_count, FALSE) == FAIL)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006551 break;
6552 (void)move_lines(savebuf, buf);
6553 }
6554 }
Bram Moolenaar8424a622006-04-19 21:23:36 +00006555 else if (buf == curbuf)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006556 {
6557 /* Mark the buffer as unmodified and free undo info. */
6558 unchanged(buf, TRUE);
6559 u_blockfree(buf);
6560 u_clearall(buf);
6561 }
6562 }
6563 vim_free(ea.cmd);
6564
Bram Moolenaar8424a622006-04-19 21:23:36 +00006565 if (savebuf != NULL && buf_valid(savebuf))
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006566 wipe_buffer(savebuf, FALSE);
6567
6568#ifdef FEAT_DIFF
6569 /* Invalidate diff info if necessary. */
Bram Moolenaar8424a622006-04-19 21:23:36 +00006570 diff_invalidate(curbuf);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006571#endif
6572
6573 /* Restore the topline and cursor position and check it (lines may
6574 * have been removed). */
6575 if (old_topline > curbuf->b_ml.ml_line_count)
6576 curwin->w_topline = curbuf->b_ml.ml_line_count;
6577 else
6578 curwin->w_topline = old_topline;
6579 curwin->w_cursor = old_cursor;
6580 check_cursor();
6581 update_topline();
6582#ifdef FEAT_AUTOCMD
6583 keep_filetype = FALSE;
6584#endif
6585#ifdef FEAT_FOLDING
6586 {
6587 win_T *wp;
6588
6589 /* Update folds unless they are defined manually. */
6590 FOR_ALL_WINDOWS(wp)
6591 if (wp->w_buffer == curwin->w_buffer
6592 && !foldmethodIsManual(wp))
6593 foldUpdateAll(wp);
6594 }
6595#endif
6596 /* If the mode didn't change and 'readonly' was set, keep the old
6597 * value; the user probably used the ":view" command. But don't
6598 * reset it, might have had a read error. */
6599 if (orig_mode == curbuf->b_orig_mode)
6600 curbuf->b_p_ro |= old_ro;
6601 }
6602
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006603 /* restore curwin/curbuf and a few other things */
6604 aucmd_restbuf(&aco);
6605 /* Careful: autocommands may have made "buf" invalid! */
Bram Moolenaar631d6f62005-06-07 21:02:10 +00006606}
6607
Bram Moolenaar071d4272004-06-13 20:20:40 +00006608/*ARGSUSED*/
6609 void
6610buf_store_time(buf, st, fname)
6611 buf_T *buf;
6612 struct stat *st;
6613 char_u *fname;
6614{
6615 buf->b_mtime = (long)st->st_mtime;
6616 buf->b_orig_size = (size_t)st->st_size;
6617#ifdef HAVE_ST_MODE
6618 buf->b_orig_mode = (int)st->st_mode;
6619#else
6620 buf->b_orig_mode = mch_getperm(fname);
6621#endif
6622}
6623
6624/*
6625 * Adjust the line with missing eol, used for the next write.
6626 * Used for do_filter(), when the input lines for the filter are deleted.
6627 */
6628 void
6629write_lnum_adjust(offset)
6630 linenr_T offset;
6631{
Bram Moolenaardf177f62005-02-22 08:39:57 +00006632 if (write_no_eol_lnum != 0) /* only if there is a missing eol */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006633 write_no_eol_lnum += offset;
6634}
6635
6636#if defined(TEMPDIRNAMES) || defined(PROTO)
6637static long temp_count = 0; /* Temp filename counter. */
6638
6639/*
6640 * Delete the temp directory and all files it contains.
6641 */
6642 void
6643vim_deltempdir()
6644{
6645 char_u **files;
6646 int file_count;
6647 int i;
6648
6649 if (vim_tempdir != NULL)
6650 {
6651 sprintf((char *)NameBuff, "%s*", vim_tempdir);
6652 if (gen_expand_wildcards(1, &NameBuff, &file_count, &files,
6653 EW_DIR|EW_FILE|EW_SILENT) == OK)
6654 {
6655 for (i = 0; i < file_count; ++i)
6656 mch_remove(files[i]);
6657 FreeWild(file_count, files);
6658 }
6659 gettail(NameBuff)[-1] = NUL;
6660 (void)mch_rmdir(NameBuff);
6661
6662 vim_free(vim_tempdir);
6663 vim_tempdir = NULL;
6664 }
6665}
6666#endif
6667
6668/*
6669 * vim_tempname(): Return a unique name that can be used for a temp file.
6670 *
6671 * The temp file is NOT created.
6672 *
6673 * The returned pointer is to allocated memory.
6674 * The returned pointer is NULL if no valid name was found.
6675 */
6676/*ARGSUSED*/
6677 char_u *
6678vim_tempname(extra_char)
6679 int extra_char; /* character to use in the name instead of '?' */
6680{
6681#ifdef USE_TMPNAM
6682 char_u itmp[L_tmpnam]; /* use tmpnam() */
6683#else
6684 char_u itmp[TEMPNAMELEN];
6685#endif
6686
6687#ifdef TEMPDIRNAMES
6688 static char *(tempdirs[]) = {TEMPDIRNAMES};
6689 int i;
6690 long nr;
6691 long off;
6692# ifndef EEXIST
6693 struct stat st;
6694# endif
6695
6696 /*
6697 * This will create a directory for private use by this instance of Vim.
6698 * This is done once, and the same directory is used for all temp files.
6699 * This method avoids security problems because of symlink attacks et al.
6700 * It's also a bit faster, because we only need to check for an existing
6701 * file when creating the directory and not for each temp file.
6702 */
6703 if (vim_tempdir == NULL)
6704 {
6705 /*
6706 * Try the entries in TEMPDIRNAMES to create the temp directory.
6707 */
6708 for (i = 0; i < sizeof(tempdirs) / sizeof(char *); ++i)
6709 {
6710 /* expand $TMP, leave room for "/v1100000/999999999" */
6711 expand_env((char_u *)tempdirs[i], itmp, TEMPNAMELEN - 20);
6712 if (mch_isdir(itmp)) /* directory exists */
6713 {
6714# ifdef __EMX__
6715 /* If $TMP contains a forward slash (perhaps using bash or
6716 * tcsh), don't add a backslash, use a forward slash!
6717 * Adding 2 backslashes didn't work. */
6718 if (vim_strchr(itmp, '/') != NULL)
6719 STRCAT(itmp, "/");
6720 else
6721# endif
6722 add_pathsep(itmp);
6723
6724 /* Get an arbitrary number of up to 6 digits. When it's
6725 * unlikely that it already exists it will be faster,
6726 * otherwise it doesn't matter. The use of mkdir() avoids any
6727 * security problems because of the predictable number. */
6728 nr = (mch_get_pid() + (long)time(NULL)) % 1000000L;
6729
6730 /* Try up to 10000 different values until we find a name that
6731 * doesn't exist. */
6732 for (off = 0; off < 10000L; ++off)
6733 {
6734 int r;
6735#if defined(UNIX) || defined(VMS)
6736 mode_t umask_save;
6737#endif
6738
6739 sprintf((char *)itmp + STRLEN(itmp), "v%ld", nr + off);
6740# ifndef EEXIST
6741 /* If mkdir() does not set errno to EEXIST, check for
6742 * existing file here. There is a race condition then,
6743 * although it's fail-safe. */
6744 if (mch_stat((char *)itmp, &st) >= 0)
6745 continue;
6746# endif
6747#if defined(UNIX) || defined(VMS)
6748 /* Make sure the umask doesn't remove the executable bit.
6749 * "repl" has been reported to use "177". */
6750 umask_save = umask(077);
6751#endif
6752 r = vim_mkdir(itmp, 0700);
6753#if defined(UNIX) || defined(VMS)
6754 (void)umask(umask_save);
6755#endif
6756 if (r == 0)
6757 {
6758 char_u *buf;
6759
6760 /* Directory was created, use this name.
6761 * Expand to full path; When using the current
6762 * directory a ":cd" would confuse us. */
6763 buf = alloc((unsigned)MAXPATHL + 1);
6764 if (buf != NULL)
6765 {
6766 if (vim_FullName(itmp, buf, MAXPATHL, FALSE)
6767 == FAIL)
6768 STRCPY(buf, itmp);
6769# ifdef __EMX__
6770 if (vim_strchr(buf, '/') != NULL)
6771 STRCAT(buf, "/");
6772 else
6773# endif
6774 add_pathsep(buf);
6775 vim_tempdir = vim_strsave(buf);
6776 vim_free(buf);
6777 }
6778 break;
6779 }
6780# ifdef EEXIST
6781 /* If the mkdir() didn't fail because the file/dir exists,
6782 * we probably can't create any dir here, try another
6783 * place. */
6784 if (errno != EEXIST)
6785# endif
6786 break;
6787 }
6788 if (vim_tempdir != NULL)
6789 break;
6790 }
6791 }
6792 }
6793
6794 if (vim_tempdir != NULL)
6795 {
6796 /* There is no need to check if the file exists, because we own the
6797 * directory and nobody else creates a file in it. */
6798 sprintf((char *)itmp, "%s%ld", vim_tempdir, temp_count++);
6799 return vim_strsave(itmp);
6800 }
6801
6802 return NULL;
6803
6804#else /* TEMPDIRNAMES */
6805
6806# ifdef WIN3264
6807 char szTempFile[_MAX_PATH + 1];
6808 char buf4[4];
6809 char_u *retval;
6810 char_u *p;
6811
6812 STRCPY(itmp, "");
6813 if (GetTempPath(_MAX_PATH, szTempFile) == 0)
6814 szTempFile[0] = NUL; /* GetTempPath() failed, use current dir */
6815 strcpy(buf4, "VIM");
6816 buf4[2] = extra_char; /* make it "VIa", "VIb", etc. */
6817 if (GetTempFileName(szTempFile, buf4, 0, itmp) == 0)
6818 return NULL;
6819 /* GetTempFileName() will create the file, we don't want that */
6820 (void)DeleteFile(itmp);
6821
6822 /* Backslashes in a temp file name cause problems when filtering with
6823 * "sh". NOTE: This also checks 'shellcmdflag' to help those people who
6824 * didn't set 'shellslash'. */
6825 retval = vim_strsave(itmp);
6826 if (*p_shcf == '-' || p_ssl)
6827 for (p = retval; *p; ++p)
6828 if (*p == '\\')
6829 *p = '/';
6830 return retval;
6831
6832# else /* WIN3264 */
6833
6834# ifdef USE_TMPNAM
6835 /* tmpnam() will make its own name */
6836 if (*tmpnam((char *)itmp) == NUL)
6837 return NULL;
6838# else
6839 char_u *p;
6840
6841# ifdef VMS_TEMPNAM
6842 /* mktemp() is not working on VMS. It seems to be
6843 * a do-nothing function. Therefore we use tempnam().
6844 */
6845 sprintf((char *)itmp, "VIM%c", extra_char);
6846 p = (char_u *)tempnam("tmp:", (char *)itmp);
6847 if (p != NULL)
6848 {
6849 /* VMS will use '.LOG' if we don't explicitly specify an extension,
6850 * and VIM will then be unable to find the file later */
6851 STRCPY(itmp, p);
6852 STRCAT(itmp, ".txt");
6853 free(p);
6854 }
6855 else
6856 return NULL;
6857# else
6858 STRCPY(itmp, TEMPNAME);
6859 if ((p = vim_strchr(itmp, '?')) != NULL)
6860 *p = extra_char;
6861 if (mktemp((char *)itmp) == NULL)
6862 return NULL;
6863# endif
6864# endif
6865
6866 return vim_strsave(itmp);
6867# endif /* WIN3264 */
6868#endif /* TEMPDIRNAMES */
6869}
6870
6871#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6872/*
6873 * Convert all backslashes in fname to forward slashes in-place.
6874 */
6875 void
6876forward_slash(fname)
6877 char_u *fname;
6878{
6879 char_u *p;
6880
6881 for (p = fname; *p != NUL; ++p)
6882# ifdef FEAT_MBYTE
6883 /* The Big5 encoding can have '\' in the trail byte. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006884 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885 ++p;
6886 else
6887# endif
6888 if (*p == '\\')
6889 *p = '/';
6890}
6891#endif
6892
6893
6894/*
6895 * Code for automatic commands.
6896 *
6897 * Only included when "FEAT_AUTOCMD" has been defined.
6898 */
6899
6900#if defined(FEAT_AUTOCMD) || defined(PROTO)
6901
6902/*
6903 * The autocommands are stored in a list for each event.
6904 * Autocommands for the same pattern, that are consecutive, are joined
6905 * together, to avoid having to match the pattern too often.
6906 * The result is an array of Autopat lists, which point to AutoCmd lists:
6907 *
6908 * first_autopat[0] --> Autopat.next --> Autopat.next --> NULL
6909 * Autopat.cmds Autopat.cmds
6910 * | |
6911 * V V
6912 * AutoCmd.next AutoCmd.next
6913 * | |
6914 * V V
6915 * AutoCmd.next NULL
6916 * |
6917 * V
6918 * NULL
6919 *
6920 * first_autopat[1] --> Autopat.next --> NULL
6921 * Autopat.cmds
6922 * |
6923 * V
6924 * AutoCmd.next
6925 * |
6926 * V
6927 * NULL
6928 * etc.
6929 *
6930 * The order of AutoCmds is important, this is the order in which they were
6931 * defined and will have to be executed.
6932 */
6933typedef struct AutoCmd
6934{
6935 char_u *cmd; /* The command to be executed (NULL
6936 when command has been removed) */
6937 char nested; /* If autocommands nest here */
6938 char last; /* last command in list */
6939#ifdef FEAT_EVAL
6940 scid_T scriptID; /* script ID where defined */
6941#endif
6942 struct AutoCmd *next; /* Next AutoCmd in list */
6943} AutoCmd;
6944
6945typedef struct AutoPat
6946{
6947 int group; /* group ID */
6948 char_u *pat; /* pattern as typed (NULL when pattern
6949 has been removed) */
6950 int patlen; /* strlen() of pat */
Bram Moolenaar748bf032005-02-02 23:04:36 +00006951 regprog_T *reg_prog; /* compiled regprog for pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006952 char allow_dirs; /* Pattern may match whole path */
6953 char last; /* last pattern for apply_autocmds() */
6954 AutoCmd *cmds; /* list of commands to do */
6955 struct AutoPat *next; /* next AutoPat in AutoPat list */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006956 int buflocal_nr; /* !=0 for buffer-local AutoPat */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006957} AutoPat;
6958
6959static struct event_name
6960{
6961 char *name; /* event name */
Bram Moolenaar754b5602006-02-09 23:53:20 +00006962 event_T event; /* event number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963} event_names[] =
6964{
6965 {"BufAdd", EVENT_BUFADD},
6966 {"BufCreate", EVENT_BUFADD},
6967 {"BufDelete", EVENT_BUFDELETE},
6968 {"BufEnter", EVENT_BUFENTER},
6969 {"BufFilePost", EVENT_BUFFILEPOST},
6970 {"BufFilePre", EVENT_BUFFILEPRE},
6971 {"BufHidden", EVENT_BUFHIDDEN},
6972 {"BufLeave", EVENT_BUFLEAVE},
6973 {"BufNew", EVENT_BUFNEW},
6974 {"BufNewFile", EVENT_BUFNEWFILE},
6975 {"BufRead", EVENT_BUFREADPOST},
6976 {"BufReadCmd", EVENT_BUFREADCMD},
6977 {"BufReadPost", EVENT_BUFREADPOST},
6978 {"BufReadPre", EVENT_BUFREADPRE},
6979 {"BufUnload", EVENT_BUFUNLOAD},
6980 {"BufWinEnter", EVENT_BUFWINENTER},
6981 {"BufWinLeave", EVENT_BUFWINLEAVE},
6982 {"BufWipeout", EVENT_BUFWIPEOUT},
6983 {"BufWrite", EVENT_BUFWRITEPRE},
6984 {"BufWritePost", EVENT_BUFWRITEPOST},
6985 {"BufWritePre", EVENT_BUFWRITEPRE},
6986 {"BufWriteCmd", EVENT_BUFWRITECMD},
6987 {"CmdwinEnter", EVENT_CMDWINENTER},
6988 {"CmdwinLeave", EVENT_CMDWINLEAVE},
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006989 {"ColorScheme", EVENT_COLORSCHEME},
Bram Moolenaar754b5602006-02-09 23:53:20 +00006990 {"CursorHold", EVENT_CURSORHOLD},
6991 {"CursorHoldI", EVENT_CURSORHOLDI},
6992 {"CursorMoved", EVENT_CURSORMOVED},
6993 {"CursorMovedI", EVENT_CURSORMOVEDI},
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994 {"EncodingChanged", EVENT_ENCODINGCHANGED},
6995 {"FileEncoding", EVENT_ENCODINGCHANGED},
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996 {"FileAppendPost", EVENT_FILEAPPENDPOST},
6997 {"FileAppendPre", EVENT_FILEAPPENDPRE},
6998 {"FileAppendCmd", EVENT_FILEAPPENDCMD},
6999 {"FileChangedShell",EVENT_FILECHANGEDSHELL},
Bram Moolenaar56718732006-03-15 22:53:57 +00007000 {"FileChangedShellPost",EVENT_FILECHANGEDSHELLPOST},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007001 {"FileChangedRO", EVENT_FILECHANGEDRO},
7002 {"FileReadPost", EVENT_FILEREADPOST},
7003 {"FileReadPre", EVENT_FILEREADPRE},
7004 {"FileReadCmd", EVENT_FILEREADCMD},
7005 {"FileType", EVENT_FILETYPE},
7006 {"FileWritePost", EVENT_FILEWRITEPOST},
7007 {"FileWritePre", EVENT_FILEWRITEPRE},
7008 {"FileWriteCmd", EVENT_FILEWRITECMD},
7009 {"FilterReadPost", EVENT_FILTERREADPOST},
7010 {"FilterReadPre", EVENT_FILTERREADPRE},
7011 {"FilterWritePost", EVENT_FILTERWRITEPOST},
7012 {"FilterWritePre", EVENT_FILTERWRITEPRE},
7013 {"FocusGained", EVENT_FOCUSGAINED},
7014 {"FocusLost", EVENT_FOCUSLOST},
7015 {"FuncUndefined", EVENT_FUNCUNDEFINED},
7016 {"GUIEnter", EVENT_GUIENTER},
Bram Moolenaar265e5072006-08-29 16:13:22 +00007017 {"GUIFailed", EVENT_GUIFAILED},
Bram Moolenaar843ee412004-06-30 16:16:41 +00007018 {"InsertChange", EVENT_INSERTCHANGE},
7019 {"InsertEnter", EVENT_INSERTENTER},
7020 {"InsertLeave", EVENT_INSERTLEAVE},
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00007021 {"MenuPopup", EVENT_MENUPOPUP},
Bram Moolenaar7c626922005-02-07 22:01:03 +00007022 {"QuickFixCmdPost", EVENT_QUICKFIXCMDPOST},
7023 {"QuickFixCmdPre", EVENT_QUICKFIXCMDPRE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007024 {"RemoteReply", EVENT_REMOTEREPLY},
Bram Moolenaar9372a112005-12-06 19:59:18 +00007025 {"SessionLoadPost", EVENT_SESSIONLOADPOST},
Bram Moolenaar5c4bab02006-03-10 21:37:46 +00007026 {"ShellCmdPost", EVENT_SHELLCMDPOST},
7027 {"ShellFilterPost", EVENT_SHELLFILTERPOST},
Bram Moolenaara2031822006-03-07 22:29:51 +00007028 {"SourcePre", EVENT_SOURCEPRE},
Bram Moolenaar8dd1aa52007-01-16 20:33:19 +00007029 {"SourceCmd", EVENT_SOURCECMD},
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00007030 {"SpellFileMissing",EVENT_SPELLFILEMISSING},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031 {"StdinReadPost", EVENT_STDINREADPOST},
7032 {"StdinReadPre", EVENT_STDINREADPRE},
Bram Moolenaarb815dac2005-12-07 20:59:24 +00007033 {"SwapExists", EVENT_SWAPEXISTS},
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007034 {"Syntax", EVENT_SYNTAX},
Bram Moolenaar70836c82006-02-20 21:28:49 +00007035 {"TabEnter", EVENT_TABENTER},
7036 {"TabLeave", EVENT_TABLEAVE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037 {"TermChanged", EVENT_TERMCHANGED},
7038 {"TermResponse", EVENT_TERMRESPONSE},
7039 {"User", EVENT_USER},
7040 {"VimEnter", EVENT_VIMENTER},
7041 {"VimLeave", EVENT_VIMLEAVE},
7042 {"VimLeavePre", EVENT_VIMLEAVEPRE},
7043 {"WinEnter", EVENT_WINENTER},
7044 {"WinLeave", EVENT_WINLEAVE},
Bram Moolenaar56718732006-03-15 22:53:57 +00007045 {"VimResized", EVENT_VIMRESIZED},
Bram Moolenaar754b5602006-02-09 23:53:20 +00007046 {NULL, (event_T)0}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047};
7048
7049static AutoPat *first_autopat[NUM_EVENTS] =
7050{
7051 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7052 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7053 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7054 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007055 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7056 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057};
7058
7059/*
7060 * struct used to keep status while executing autocommands for an event.
7061 */
7062typedef struct AutoPatCmd
7063{
7064 AutoPat *curpat; /* next AutoPat to examine */
7065 AutoCmd *nextcmd; /* next AutoCmd to execute */
7066 int group; /* group being used */
7067 char_u *fname; /* fname to match with */
7068 char_u *sfname; /* sfname to match with */
7069 char_u *tail; /* tail of fname */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007070 event_T event; /* current event */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007071 int arg_bufnr; /* initially equal to <abuf>, set to zero when
7072 buf is deleted */
7073 struct AutoPatCmd *next; /* chain of active apc-s for auto-invalidation*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00007074} AutoPatCmd;
7075
Bram Moolenaard6f676d2005-06-01 21:51:55 +00007076static AutoPatCmd *active_apc_list = NULL; /* stack of active autocommands */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007077
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078/*
7079 * augroups stores a list of autocmd group names.
7080 */
Bram Moolenaard6f676d2005-06-01 21:51:55 +00007081static garray_T augroups = {0, 0, sizeof(char_u *), 10, NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082#define AUGROUP_NAME(i) (((char_u **)augroups.ga_data)[i])
7083
7084/*
7085 * The ID of the current group. Group 0 is the default one.
7086 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007087static int current_augroup = AUGROUP_DEFAULT;
7088
7089static int au_need_clean = FALSE; /* need to delete marked patterns */
7090
Bram Moolenaar754b5602006-02-09 23:53:20 +00007091static void show_autocmd __ARGS((AutoPat *ap, event_T event));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092static void au_remove_pat __ARGS((AutoPat *ap));
7093static void au_remove_cmds __ARGS((AutoPat *ap));
7094static void au_cleanup __ARGS((void));
7095static int au_new_group __ARGS((char_u *name));
7096static void au_del_group __ARGS((char_u *name));
Bram Moolenaar754b5602006-02-09 23:53:20 +00007097static event_T event_name2nr __ARGS((char_u *start, char_u **end));
7098static char_u *event_nr2name __ARGS((event_T event));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007099static char_u *find_end_event __ARGS((char_u *arg, int have_group));
Bram Moolenaar754b5602006-02-09 23:53:20 +00007100static int event_ignored __ARGS((event_T event));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007101static int au_get_grouparg __ARGS((char_u **argp));
Bram Moolenaar754b5602006-02-09 23:53:20 +00007102static 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 +00007103static char_u *getnextac __ARGS((int c, void *cookie, int indent));
Bram Moolenaar754b5602006-02-09 23:53:20 +00007104static 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 +00007105static void auto_next_pat __ARGS((AutoPatCmd *apc, int stop_at_last));
7106
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007107
Bram Moolenaar754b5602006-02-09 23:53:20 +00007108static event_T last_event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109static int last_group;
7110
7111/*
7112 * Show the autocommands for one AutoPat.
7113 */
7114 static void
7115show_autocmd(ap, event)
7116 AutoPat *ap;
Bram Moolenaar754b5602006-02-09 23:53:20 +00007117 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007118{
7119 AutoCmd *ac;
7120
7121 /* Check for "got_int" (here and at various places below), which is set
7122 * when "q" has been hit for the "--more--" prompt */
7123 if (got_int)
7124 return;
7125 if (ap->pat == NULL) /* pattern has been removed */
7126 return;
7127
7128 msg_putchar('\n');
7129 if (got_int)
7130 return;
7131 if (event != last_event || ap->group != last_group)
7132 {
7133 if (ap->group != AUGROUP_DEFAULT)
7134 {
7135 if (AUGROUP_NAME(ap->group) == NULL)
7136 msg_puts_attr((char_u *)_("--Deleted--"), hl_attr(HLF_E));
7137 else
7138 msg_puts_attr(AUGROUP_NAME(ap->group), hl_attr(HLF_T));
7139 msg_puts((char_u *)" ");
7140 }
7141 msg_puts_attr(event_nr2name(event), hl_attr(HLF_T));
7142 last_event = event;
7143 last_group = ap->group;
7144 msg_putchar('\n');
7145 if (got_int)
7146 return;
7147 }
7148 msg_col = 4;
7149 msg_outtrans(ap->pat);
7150
7151 for (ac = ap->cmds; ac != NULL; ac = ac->next)
7152 {
7153 if (ac->cmd != NULL) /* skip removed commands */
7154 {
7155 if (msg_col >= 14)
7156 msg_putchar('\n');
7157 msg_col = 14;
7158 if (got_int)
7159 return;
7160 msg_outtrans(ac->cmd);
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00007161#ifdef FEAT_EVAL
7162 if (p_verbose > 0)
7163 last_set_msg(ac->scriptID);
7164#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007165 if (got_int)
7166 return;
7167 if (ac->next != NULL)
7168 {
7169 msg_putchar('\n');
7170 if (got_int)
7171 return;
7172 }
7173 }
7174 }
7175}
7176
7177/*
7178 * Mark an autocommand pattern for deletion.
7179 */
7180 static void
7181au_remove_pat(ap)
7182 AutoPat *ap;
7183{
7184 vim_free(ap->pat);
7185 ap->pat = NULL;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007186 ap->buflocal_nr = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007187 au_need_clean = TRUE;
7188}
7189
7190/*
7191 * Mark all commands for a pattern for deletion.
7192 */
7193 static void
7194au_remove_cmds(ap)
7195 AutoPat *ap;
7196{
7197 AutoCmd *ac;
7198
7199 for (ac = ap->cmds; ac != NULL; ac = ac->next)
7200 {
7201 vim_free(ac->cmd);
7202 ac->cmd = NULL;
7203 }
7204 au_need_clean = TRUE;
7205}
7206
7207/*
7208 * Cleanup autocommands and patterns that have been deleted.
7209 * This is only done when not executing autocommands.
7210 */
7211 static void
7212au_cleanup()
7213{
7214 AutoPat *ap, **prev_ap;
7215 AutoCmd *ac, **prev_ac;
Bram Moolenaar754b5602006-02-09 23:53:20 +00007216 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007217
7218 if (autocmd_busy || !au_need_clean)
7219 return;
7220
7221 /* loop over all events */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007222 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
7223 event = (event_T)((int)event + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007224 {
7225 /* loop over all autocommand patterns */
7226 prev_ap = &(first_autopat[(int)event]);
7227 for (ap = *prev_ap; ap != NULL; ap = *prev_ap)
7228 {
7229 /* loop over all commands for this pattern */
7230 prev_ac = &(ap->cmds);
7231 for (ac = *prev_ac; ac != NULL; ac = *prev_ac)
7232 {
7233 /* remove the command if the pattern is to be deleted or when
7234 * the command has been marked for deletion */
7235 if (ap->pat == NULL || ac->cmd == NULL)
7236 {
7237 *prev_ac = ac->next;
7238 vim_free(ac->cmd);
7239 vim_free(ac);
7240 }
7241 else
7242 prev_ac = &(ac->next);
7243 }
7244
7245 /* remove the pattern if it has been marked for deletion */
7246 if (ap->pat == NULL)
7247 {
7248 *prev_ap = ap->next;
Bram Moolenaar748bf032005-02-02 23:04:36 +00007249 vim_free(ap->reg_prog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250 vim_free(ap);
7251 }
7252 else
7253 prev_ap = &(ap->next);
7254 }
7255 }
7256
7257 au_need_clean = FALSE;
7258}
7259
7260/*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007261 * Called when buffer is freed, to remove/invalidate related buffer-local
7262 * autocmds.
7263 */
7264 void
7265aubuflocal_remove(buf)
7266 buf_T *buf;
7267{
7268 AutoPat *ap;
Bram Moolenaar754b5602006-02-09 23:53:20 +00007269 event_T event;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007270 AutoPatCmd *apc;
7271
7272 /* invalidate currently executing autocommands */
7273 for (apc = active_apc_list; apc; apc = apc->next)
7274 if (buf->b_fnum == apc->arg_bufnr)
7275 apc->arg_bufnr = 0;
7276
7277 /* invalidate buflocals looping through events */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007278 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
7279 event = (event_T)((int)event + 1))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007280 /* loop over all autocommand patterns */
7281 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
7282 if (ap->buflocal_nr == buf->b_fnum)
7283 {
7284 au_remove_pat(ap);
7285 if (p_verbose >= 6)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007286 {
7287 verbose_enter();
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007288 smsg((char_u *)
7289 _("auto-removing autocommand: %s <buffer=%d>"),
7290 event_nr2name(event), buf->b_fnum);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007291 verbose_leave();
7292 }
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007293 }
7294 au_cleanup();
7295}
7296
7297/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007298 * Add an autocmd group name.
7299 * Return it's ID. Returns AUGROUP_ERROR (< 0) for error.
7300 */
7301 static int
7302au_new_group(name)
7303 char_u *name;
7304{
7305 int i;
7306
7307 i = au_find_group(name);
7308 if (i == AUGROUP_ERROR) /* the group doesn't exist yet, add it */
7309 {
7310 /* First try using a free entry. */
7311 for (i = 0; i < augroups.ga_len; ++i)
7312 if (AUGROUP_NAME(i) == NULL)
7313 break;
7314 if (i == augroups.ga_len && ga_grow(&augroups, 1) == FAIL)
7315 return AUGROUP_ERROR;
7316
7317 AUGROUP_NAME(i) = vim_strsave(name);
7318 if (AUGROUP_NAME(i) == NULL)
7319 return AUGROUP_ERROR;
7320 if (i == augroups.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007321 ++augroups.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007322 }
7323
7324 return i;
7325}
7326
7327 static void
7328au_del_group(name)
7329 char_u *name;
7330{
7331 int i;
7332
7333 i = au_find_group(name);
7334 if (i == AUGROUP_ERROR) /* the group doesn't exist */
7335 EMSG2(_("E367: No such group: \"%s\""), name);
7336 else
7337 {
7338 vim_free(AUGROUP_NAME(i));
7339 AUGROUP_NAME(i) = NULL;
7340 }
7341}
7342
7343/*
7344 * Find the ID of an autocmd group name.
7345 * Return it's ID. Returns AUGROUP_ERROR (< 0) for error.
7346 */
7347 static int
7348au_find_group(name)
7349 char_u *name;
7350{
7351 int i;
7352
7353 for (i = 0; i < augroups.ga_len; ++i)
7354 if (AUGROUP_NAME(i) != NULL && STRCMP(AUGROUP_NAME(i), name) == 0)
7355 return i;
7356 return AUGROUP_ERROR;
7357}
7358
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007359/*
7360 * Return TRUE if augroup "name" exists.
7361 */
7362 int
7363au_has_group(name)
7364 char_u *name;
7365{
7366 return au_find_group(name) != AUGROUP_ERROR;
7367}
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00007368
Bram Moolenaar071d4272004-06-13 20:20:40 +00007369/*
7370 * ":augroup {name}".
7371 */
7372 void
7373do_augroup(arg, del_group)
7374 char_u *arg;
7375 int del_group;
7376{
7377 int i;
7378
7379 if (del_group)
7380 {
7381 if (*arg == NUL)
7382 EMSG(_(e_argreq));
7383 else
7384 au_del_group(arg);
7385 }
7386 else if (STRICMP(arg, "end") == 0) /* ":aug end": back to group 0 */
7387 current_augroup = AUGROUP_DEFAULT;
7388 else if (*arg) /* ":aug xxx": switch to group xxx */
7389 {
7390 i = au_new_group(arg);
7391 if (i != AUGROUP_ERROR)
7392 current_augroup = i;
7393 }
7394 else /* ":aug": list the group names */
7395 {
7396 msg_start();
7397 for (i = 0; i < augroups.ga_len; ++i)
7398 {
7399 if (AUGROUP_NAME(i) != NULL)
7400 {
7401 msg_puts(AUGROUP_NAME(i));
7402 msg_puts((char_u *)" ");
7403 }
7404 }
7405 msg_clr_eos();
7406 msg_end();
7407 }
7408}
7409
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00007410#if defined(EXITFREE) || defined(PROTO)
7411 void
7412free_all_autocmds()
7413{
7414 for (current_augroup = -1; current_augroup < augroups.ga_len;
7415 ++current_augroup)
7416 do_autocmd((char_u *)"", TRUE);
7417 ga_clear_strings(&augroups);
7418}
7419#endif
7420
Bram Moolenaar071d4272004-06-13 20:20:40 +00007421/*
7422 * Return the event number for event name "start".
7423 * Return NUM_EVENTS if the event name was not found.
7424 * Return a pointer to the next event name in "end".
7425 */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007426 static event_T
Bram Moolenaar071d4272004-06-13 20:20:40 +00007427event_name2nr(start, end)
7428 char_u *start;
7429 char_u **end;
7430{
7431 char_u *p;
7432 int i;
7433 int len;
7434
7435 /* the event name ends with end of line, a blank or a comma */
7436 for (p = start; *p && !vim_iswhite(*p) && *p != ','; ++p)
7437 ;
7438 for (i = 0; event_names[i].name != NULL; ++i)
7439 {
7440 len = (int)STRLEN(event_names[i].name);
7441 if (len == p - start && STRNICMP(event_names[i].name, start, len) == 0)
7442 break;
7443 }
7444 if (*p == ',')
7445 ++p;
7446 *end = p;
7447 if (event_names[i].name == NULL)
7448 return NUM_EVENTS;
7449 return event_names[i].event;
7450}
7451
7452/*
7453 * Return the name for event "event".
7454 */
7455 static char_u *
7456event_nr2name(event)
Bram Moolenaar754b5602006-02-09 23:53:20 +00007457 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007458{
7459 int i;
7460
7461 for (i = 0; event_names[i].name != NULL; ++i)
7462 if (event_names[i].event == event)
7463 return (char_u *)event_names[i].name;
7464 return (char_u *)"Unknown";
7465}
7466
7467/*
7468 * Scan over the events. "*" stands for all events.
7469 */
7470 static char_u *
7471find_end_event(arg, have_group)
7472 char_u *arg;
7473 int have_group; /* TRUE when group name was found */
7474{
7475 char_u *pat;
7476 char_u *p;
7477
7478 if (*arg == '*')
7479 {
7480 if (arg[1] && !vim_iswhite(arg[1]))
7481 {
7482 EMSG2(_("E215: Illegal character after *: %s"), arg);
7483 return NULL;
7484 }
7485 pat = arg + 1;
7486 }
7487 else
7488 {
7489 for (pat = arg; *pat && !vim_iswhite(*pat); pat = p)
7490 {
7491 if ((int)event_name2nr(pat, &p) >= (int)NUM_EVENTS)
7492 {
7493 if (have_group)
7494 EMSG2(_("E216: No such event: %s"), pat);
7495 else
7496 EMSG2(_("E216: No such group or event: %s"), pat);
7497 return NULL;
7498 }
7499 }
7500 }
7501 return pat;
7502}
7503
7504/*
7505 * Return TRUE if "event" is included in 'eventignore'.
7506 */
7507 static int
7508event_ignored(event)
Bram Moolenaar754b5602006-02-09 23:53:20 +00007509 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007510{
7511 char_u *p = p_ei;
7512
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007513 while (*p != NUL)
7514 {
7515 if (STRNICMP(p, "all", 3) == 0 && (p[3] == NUL || p[3] == ','))
7516 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007517 if (event_name2nr(p, &p) == event)
7518 return TRUE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007519 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007520
7521 return FALSE;
7522}
7523
7524/*
7525 * Return OK when the contents of p_ei is valid, FAIL otherwise.
7526 */
7527 int
7528check_ei()
7529{
7530 char_u *p = p_ei;
7531
Bram Moolenaar071d4272004-06-13 20:20:40 +00007532 while (*p)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007533 {
7534 if (STRNICMP(p, "all", 3) == 0 && (p[3] == NUL || p[3] == ','))
7535 {
7536 p += 3;
7537 if (*p == ',')
7538 ++p;
7539 }
7540 else if (event_name2nr(p, &p) == NUM_EVENTS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007541 return FAIL;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00007542 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007543
7544 return OK;
7545}
7546
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00007547# if defined(FEAT_SYN_HL) || defined(PROTO)
7548
7549/*
7550 * Add "what" to 'eventignore' to skip loading syntax highlighting for every
7551 * buffer loaded into the window. "what" must start with a comma.
7552 * Returns the old value of 'eventignore' in allocated memory.
7553 */
7554 char_u *
7555au_event_disable(what)
7556 char *what;
7557{
7558 char_u *new_ei;
7559 char_u *save_ei;
7560
7561 save_ei = vim_strsave(p_ei);
7562 if (save_ei != NULL)
7563 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00007564 new_ei = vim_strnsave(p_ei, (int)(STRLEN(p_ei) + STRLEN(what)));
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00007565 if (new_ei != NULL)
7566 {
7567 STRCAT(new_ei, what);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007568 set_string_option_direct((char_u *)"ei", -1, new_ei,
7569 OPT_FREE, SID_NONE);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00007570 vim_free(new_ei);
7571 }
7572 }
7573 return save_ei;
7574}
7575
7576 void
7577au_event_restore(old_ei)
7578 char_u *old_ei;
7579{
7580 if (old_ei != NULL)
7581 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00007582 set_string_option_direct((char_u *)"ei", -1, old_ei,
7583 OPT_FREE, SID_NONE);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00007584 vim_free(old_ei);
7585 }
7586}
7587# endif /* FEAT_SYN_HL */
7588
Bram Moolenaar071d4272004-06-13 20:20:40 +00007589/*
7590 * do_autocmd() -- implements the :autocmd command. Can be used in the
7591 * following ways:
7592 *
7593 * :autocmd <event> <pat> <cmd> Add <cmd> to the list of commands that
7594 * will be automatically executed for <event>
7595 * when editing a file matching <pat>, in
7596 * the current group.
7597 * :autocmd <event> <pat> Show the auto-commands associated with
7598 * <event> and <pat>.
7599 * :autocmd <event> Show the auto-commands associated with
7600 * <event>.
7601 * :autocmd Show all auto-commands.
7602 * :autocmd! <event> <pat> <cmd> Remove all auto-commands associated with
7603 * <event> and <pat>, and add the command
7604 * <cmd>, for the current group.
7605 * :autocmd! <event> <pat> Remove all auto-commands associated with
7606 * <event> and <pat> for the current group.
7607 * :autocmd! <event> Remove all auto-commands associated with
7608 * <event> for the current group.
7609 * :autocmd! Remove ALL auto-commands for the current
7610 * group.
7611 *
7612 * Multiple events and patterns may be given separated by commas. Here are
7613 * some examples:
7614 * :autocmd bufread,bufenter *.c,*.h set tw=0 smartindent noic
7615 * :autocmd bufleave * set tw=79 nosmartindent ic infercase
7616 *
7617 * :autocmd * *.c show all autocommands for *.c files.
Bram Moolenaard35f9712005-12-18 22:02:33 +00007618 *
7619 * Mostly a {group} argument can optionally appear before <event>.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007620 */
7621 void
7622do_autocmd(arg, forceit)
7623 char_u *arg;
7624 int forceit;
7625{
7626 char_u *pat;
7627 char_u *envpat = NULL;
7628 char_u *cmd;
Bram Moolenaar754b5602006-02-09 23:53:20 +00007629 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007630 int need_free = FALSE;
7631 int nested = FALSE;
7632 int group;
7633
7634 /*
7635 * Check for a legal group name. If not, use AUGROUP_ALL.
7636 */
7637 group = au_get_grouparg(&arg);
7638 if (arg == NULL) /* out of memory */
7639 return;
7640
7641 /*
7642 * Scan over the events.
7643 * If we find an illegal name, return here, don't do anything.
7644 */
7645 pat = find_end_event(arg, group != AUGROUP_ALL);
7646 if (pat == NULL)
7647 return;
7648
7649 /*
7650 * Scan over the pattern. Put a NUL at the end.
7651 */
7652 pat = skipwhite(pat);
7653 cmd = pat;
7654 while (*cmd && (!vim_iswhite(*cmd) || cmd[-1] == '\\'))
7655 cmd++;
7656 if (*cmd)
7657 *cmd++ = NUL;
7658
7659 /* Expand environment variables in the pattern. Set 'shellslash', we want
7660 * forward slashes here. */
7661 if (vim_strchr(pat, '$') != NULL || vim_strchr(pat, '~') != NULL)
7662 {
7663#ifdef BACKSLASH_IN_FILENAME
7664 int p_ssl_save = p_ssl;
7665
7666 p_ssl = TRUE;
7667#endif
7668 envpat = expand_env_save(pat);
7669#ifdef BACKSLASH_IN_FILENAME
7670 p_ssl = p_ssl_save;
7671#endif
7672 if (envpat != NULL)
7673 pat = envpat;
7674 }
7675
7676 /*
7677 * Check for "nested" flag.
7678 */
7679 cmd = skipwhite(cmd);
7680 if (*cmd != NUL && STRNCMP(cmd, "nested", 6) == 0 && vim_iswhite(cmd[6]))
7681 {
7682 nested = TRUE;
7683 cmd = skipwhite(cmd + 6);
7684 }
7685
7686 /*
7687 * Find the start of the commands.
7688 * Expand <sfile> in it.
7689 */
7690 if (*cmd != NUL)
7691 {
7692 cmd = expand_sfile(cmd);
7693 if (cmd == NULL) /* some error */
7694 return;
7695 need_free = TRUE;
7696 }
7697
7698 /*
7699 * Print header when showing autocommands.
7700 */
7701 if (!forceit && *cmd == NUL)
7702 {
7703 /* Highlight title */
7704 MSG_PUTS_TITLE(_("\n--- Auto-Commands ---"));
7705 }
7706
7707 /*
7708 * Loop over the events.
7709 */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007710 last_event = (event_T)-1; /* for listing the event name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007711 last_group = AUGROUP_ERROR; /* for listing the group name */
7712 if (*arg == '*' || *arg == NUL)
7713 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00007714 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
7715 event = (event_T)((int)event + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007716 if (do_autocmd_event(event, pat,
7717 nested, cmd, forceit, group) == FAIL)
7718 break;
7719 }
7720 else
7721 {
7722 while (*arg && !vim_iswhite(*arg))
7723 if (do_autocmd_event(event_name2nr(arg, &arg), pat,
7724 nested, cmd, forceit, group) == FAIL)
7725 break;
7726 }
7727
7728 if (need_free)
7729 vim_free(cmd);
7730 vim_free(envpat);
7731}
7732
7733/*
7734 * Find the group ID in a ":autocmd" or ":doautocmd" argument.
7735 * The "argp" argument is advanced to the following argument.
7736 *
7737 * Returns the group ID, AUGROUP_ERROR for error (out of memory).
7738 */
7739 static int
7740au_get_grouparg(argp)
7741 char_u **argp;
7742{
7743 char_u *group_name;
7744 char_u *p;
7745 char_u *arg = *argp;
7746 int group = AUGROUP_ALL;
7747
7748 p = skiptowhite(arg);
7749 if (p > arg)
7750 {
7751 group_name = vim_strnsave(arg, (int)(p - arg));
7752 if (group_name == NULL) /* out of memory */
7753 return AUGROUP_ERROR;
7754 group = au_find_group(group_name);
7755 if (group == AUGROUP_ERROR)
7756 group = AUGROUP_ALL; /* no match, use all groups */
7757 else
7758 *argp = skipwhite(p); /* match, skip over group name */
7759 vim_free(group_name);
7760 }
7761 return group;
7762}
7763
7764/*
7765 * do_autocmd() for one event.
7766 * If *pat == NUL do for all patterns.
7767 * If *cmd == NUL show entries.
7768 * If forceit == TRUE delete entries.
7769 * If group is not AUGROUP_ALL, only use this group.
7770 */
7771 static int
7772do_autocmd_event(event, pat, nested, cmd, forceit, group)
Bram Moolenaar754b5602006-02-09 23:53:20 +00007773 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007774 char_u *pat;
7775 int nested;
7776 char_u *cmd;
7777 int forceit;
7778 int group;
7779{
7780 AutoPat *ap;
7781 AutoPat **prev_ap;
7782 AutoCmd *ac;
7783 AutoCmd **prev_ac;
7784 int brace_level;
7785 char_u *endpat;
7786 int findgroup;
7787 int allgroups;
7788 int patlen;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00007789 int is_buflocal;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007790 int buflocal_nr;
7791 char_u buflocal_pat[25]; /* for "<buffer=X>" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007792
7793 if (group == AUGROUP_ALL)
7794 findgroup = current_augroup;
7795 else
7796 findgroup = group;
7797 allgroups = (group == AUGROUP_ALL && !forceit && *cmd == NUL);
7798
7799 /*
7800 * Show or delete all patterns for an event.
7801 */
7802 if (*pat == NUL)
7803 {
7804 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
7805 {
7806 if (forceit) /* delete the AutoPat, if it's in the current group */
7807 {
7808 if (ap->group == findgroup)
7809 au_remove_pat(ap);
7810 }
7811 else if (group == AUGROUP_ALL || ap->group == group)
7812 show_autocmd(ap, event);
7813 }
7814 }
7815
7816 /*
7817 * Loop through all the specified patterns.
7818 */
7819 for ( ; *pat; pat = (*endpat == ',' ? endpat + 1 : endpat))
7820 {
7821 /*
7822 * Find end of the pattern.
7823 * Watch out for a comma in braces, like "*.\{obj,o\}".
7824 */
7825 brace_level = 0;
7826 for (endpat = pat; *endpat && (*endpat != ',' || brace_level
7827 || endpat[-1] == '\\'); ++endpat)
7828 {
7829 if (*endpat == '{')
7830 brace_level++;
7831 else if (*endpat == '}')
7832 brace_level--;
7833 }
7834 if (pat == endpat) /* ignore single comma */
7835 continue;
7836 patlen = (int)(endpat - pat);
7837
7838 /*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007839 * detect special <buflocal[=X]> buffer-local patterns
7840 */
7841 is_buflocal = FALSE;
7842 buflocal_nr = 0;
7843
7844 if (patlen >= 7 && STRNCMP(pat, "<buffer", 7) == 0
7845 && pat[patlen - 1] == '>')
7846 {
7847 /* Error will be printed only for addition. printing and removing
7848 * will proceed silently. */
7849 is_buflocal = TRUE;
7850 if (patlen == 8)
7851 buflocal_nr = curbuf->b_fnum;
7852 else if (patlen > 9 && pat[7] == '=')
7853 {
7854 /* <buffer=abuf> */
7855 if (patlen == 13 && STRNICMP(pat, "<buffer=abuf>", 13))
7856 buflocal_nr = autocmd_bufnr;
7857 /* <buffer=123> */
7858 else if (skipdigits(pat + 8) == pat + patlen - 1)
7859 buflocal_nr = atoi((char *)pat + 8);
7860 }
7861 }
7862
7863 if (is_buflocal)
7864 {
7865 /* normalize pat into standard "<buffer>#N" form */
7866 sprintf((char *)buflocal_pat, "<buffer=%d>", buflocal_nr);
7867 pat = buflocal_pat; /* can modify pat and patlen */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007868 patlen = (int)STRLEN(buflocal_pat); /* but not endpat */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007869 }
7870
7871 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007872 * Find AutoPat entries with this pattern.
7873 */
7874 prev_ap = &first_autopat[(int)event];
7875 while ((ap = *prev_ap) != NULL)
7876 {
7877 if (ap->pat != NULL)
7878 {
7879 /* Accept a pattern when:
7880 * - a group was specified and it's that group, or a group was
7881 * not specified and it's the current group, or a group was
7882 * not specified and we are listing
7883 * - the length of the pattern matches
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007884 * - the pattern matches.
7885 * For <buffer[=X]>, this condition works because we normalize
7886 * all buffer-local patterns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007887 */
7888 if ((allgroups || ap->group == findgroup)
7889 && ap->patlen == patlen
7890 && STRNCMP(pat, ap->pat, patlen) == 0)
7891 {
7892 /*
7893 * Remove existing autocommands.
7894 * If adding any new autocmd's for this AutoPat, don't
7895 * delete the pattern from the autopat list, append to
7896 * this list.
7897 */
7898 if (forceit)
7899 {
7900 if (*cmd != NUL && ap->next == NULL)
7901 {
7902 au_remove_cmds(ap);
7903 break;
7904 }
7905 au_remove_pat(ap);
7906 }
7907
7908 /*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007909 * Show autocmd's for this autopat, or buflocals <buffer=X>
Bram Moolenaar071d4272004-06-13 20:20:40 +00007910 */
7911 else if (*cmd == NUL)
7912 show_autocmd(ap, event);
7913
7914 /*
7915 * Add autocmd to this autopat, if it's the last one.
7916 */
7917 else if (ap->next == NULL)
7918 break;
7919 }
7920 }
7921 prev_ap = &ap->next;
7922 }
7923
7924 /*
7925 * Add a new command.
7926 */
7927 if (*cmd != NUL)
7928 {
7929 /*
7930 * If the pattern we want to add a command to does appear at the
7931 * end of the list (or not is not in the list at all), add the
7932 * pattern at the end of the list.
7933 */
7934 if (ap == NULL)
7935 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007936 /* refuse to add buffer-local ap if buffer number is invalid */
7937 if (is_buflocal && (buflocal_nr == 0
7938 || buflist_findnr(buflocal_nr) == NULL))
7939 {
7940 EMSGN(_("E680: <buffer=%d>: invalid buffer number "),
7941 buflocal_nr);
7942 return FAIL;
7943 }
7944
Bram Moolenaar071d4272004-06-13 20:20:40 +00007945 ap = (AutoPat *)alloc((unsigned)sizeof(AutoPat));
7946 if (ap == NULL)
7947 return FAIL;
7948 ap->pat = vim_strnsave(pat, patlen);
7949 ap->patlen = patlen;
7950 if (ap->pat == NULL)
7951 {
7952 vim_free(ap);
7953 return FAIL;
7954 }
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007955
7956 if (is_buflocal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007957 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007958 ap->buflocal_nr = buflocal_nr;
Bram Moolenaar748bf032005-02-02 23:04:36 +00007959 ap->reg_prog = NULL;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007960 }
7961 else
7962 {
Bram Moolenaar748bf032005-02-02 23:04:36 +00007963 char_u *reg_pat;
7964
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007965 ap->buflocal_nr = 0;
Bram Moolenaar748bf032005-02-02 23:04:36 +00007966 reg_pat = file_pat_to_reg_pat(pat, endpat,
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007967 &ap->allow_dirs, TRUE);
Bram Moolenaar748bf032005-02-02 23:04:36 +00007968 if (reg_pat != NULL)
7969 ap->reg_prog = vim_regcomp(reg_pat, RE_MAGIC);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00007970 vim_free(reg_pat);
Bram Moolenaar748bf032005-02-02 23:04:36 +00007971 if (reg_pat == NULL || ap->reg_prog == NULL)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007972 {
7973 vim_free(ap->pat);
7974 vim_free(ap);
7975 return FAIL;
7976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007977 }
7978 ap->cmds = NULL;
7979 *prev_ap = ap;
7980 ap->next = NULL;
7981 if (group == AUGROUP_ALL)
7982 ap->group = current_augroup;
7983 else
7984 ap->group = group;
7985 }
7986
7987 /*
7988 * Add the autocmd at the end of the AutoCmd list.
7989 */
7990 prev_ac = &(ap->cmds);
7991 while ((ac = *prev_ac) != NULL)
7992 prev_ac = &ac->next;
7993 ac = (AutoCmd *)alloc((unsigned)sizeof(AutoCmd));
7994 if (ac == NULL)
7995 return FAIL;
7996 ac->cmd = vim_strsave(cmd);
7997#ifdef FEAT_EVAL
7998 ac->scriptID = current_SID;
7999#endif
8000 if (ac->cmd == NULL)
8001 {
8002 vim_free(ac);
8003 return FAIL;
8004 }
8005 ac->next = NULL;
8006 *prev_ac = ac;
8007 ac->nested = nested;
8008 }
8009 }
8010
8011 au_cleanup(); /* may really delete removed patterns/commands now */
8012 return OK;
8013}
8014
8015/*
8016 * Implementation of ":doautocmd [group] event [fname]".
8017 * Return OK for success, FAIL for failure;
8018 */
8019 int
8020do_doautocmd(arg, do_msg)
8021 char_u *arg;
8022 int do_msg; /* give message for no matching autocmds? */
8023{
8024 char_u *fname;
8025 int nothing_done = TRUE;
8026 int group;
8027
8028 /*
8029 * Check for a legal group name. If not, use AUGROUP_ALL.
8030 */
8031 group = au_get_grouparg(&arg);
8032 if (arg == NULL) /* out of memory */
8033 return FAIL;
8034
8035 if (*arg == '*')
8036 {
8037 EMSG(_("E217: Can't execute autocommands for ALL events"));
8038 return FAIL;
8039 }
8040
8041 /*
8042 * Scan over the events.
8043 * If we find an illegal name, return here, don't do anything.
8044 */
8045 fname = find_end_event(arg, group != AUGROUP_ALL);
8046 if (fname == NULL)
8047 return FAIL;
8048
8049 fname = skipwhite(fname);
8050
8051 /*
8052 * Loop over the events.
8053 */
8054 while (*arg && !vim_iswhite(*arg))
8055 if (apply_autocmds_group(event_name2nr(arg, &arg),
8056 fname, NULL, TRUE, group, curbuf, NULL))
8057 nothing_done = FALSE;
8058
8059 if (nothing_done && do_msg)
8060 MSG(_("No matching autocommands"));
8061
8062#ifdef FEAT_EVAL
8063 return aborting() ? FAIL : OK;
8064#else
8065 return OK;
8066#endif
8067}
8068
8069/*
8070 * ":doautoall": execute autocommands for each loaded buffer.
8071 */
8072 void
8073ex_doautoall(eap)
8074 exarg_T *eap;
8075{
8076 int retval;
8077 aco_save_T aco;
8078 buf_T *buf;
8079
8080 /*
8081 * This is a bit tricky: For some commands curwin->w_buffer needs to be
8082 * equal to curbuf, but for some buffers there may not be a window.
8083 * So we change the buffer for the current window for a moment. This
8084 * gives problems when the autocommands make changes to the list of
8085 * buffers or windows...
8086 */
8087 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8088 {
8089 if (curbuf->b_ml.ml_mfp != NULL)
8090 {
8091 /* find a window for this buffer and save some values */
8092 aucmd_prepbuf(&aco, buf);
8093
8094 /* execute the autocommands for this buffer */
8095 retval = do_doautocmd(eap->arg, FALSE);
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008096
8097 /* Execute the modeline settings, but don't set window-local
8098 * options if we are using the current window for another buffer. */
8099 do_modelines(aco.save_curwin == NULL ? OPT_NOWIN : 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008100
8101 /* restore the current window */
8102 aucmd_restbuf(&aco);
8103
8104 /* stop if there is some error or buffer was deleted */
8105 if (retval == FAIL || !buf_valid(buf))
8106 break;
8107 }
8108 }
8109
8110 check_cursor(); /* just in case lines got deleted */
8111}
8112
8113/*
8114 * Prepare for executing autocommands for (hidden) buffer "buf".
8115 * Search a window for the current buffer. Save the cursor position and
8116 * screen offset.
8117 * Set "curbuf" and "curwin" to match "buf".
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00008118 * When FEAT_AUTOCMD is not defined another version is used, see below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008119 */
8120 void
8121aucmd_prepbuf(aco, buf)
8122 aco_save_T *aco; /* structure to save values in */
8123 buf_T *buf; /* new curbuf */
8124{
8125 win_T *win;
8126
8127 aco->new_curbuf = buf;
8128
8129 /* Find a window that is for the new buffer */
8130 if (buf == curbuf) /* be quick when buf is curbuf */
8131 win = curwin;
8132 else
8133#ifdef FEAT_WINDOWS
8134 for (win = firstwin; win != NULL; win = win->w_next)
8135 if (win->w_buffer == buf)
8136 break;
8137#else
8138 win = NULL;
8139#endif
8140
8141 /*
8142 * Prefer to use an existing window for the buffer, it has the least side
8143 * effects (esp. if "buf" is curbuf).
8144 * Otherwise, use curwin for "buf". It might make some items in the
8145 * window invalid. At least save the cursor and topline.
8146 */
8147 if (win != NULL)
8148 {
8149 /* there is a window for "buf", make it the curwin */
8150 aco->save_curwin = curwin;
8151 curwin = win;
8152 aco->save_buf = win->w_buffer;
8153 aco->new_curwin = win;
8154 }
8155 else
8156 {
8157 /* there is no window for "buf", use curwin */
8158 aco->save_curwin = NULL;
8159 aco->save_buf = curbuf;
8160 --curbuf->b_nwindows;
8161 curwin->w_buffer = buf;
8162 ++buf->b_nwindows;
8163
8164 /* save cursor and topline, set them to safe values */
8165 aco->save_cursor = curwin->w_cursor;
8166 curwin->w_cursor.lnum = 1;
8167 curwin->w_cursor.col = 0;
8168 aco->save_topline = curwin->w_topline;
8169 curwin->w_topline = 1;
8170#ifdef FEAT_DIFF
8171 aco->save_topfill = curwin->w_topfill;
8172 curwin->w_topfill = 0;
8173#endif
8174 }
8175
8176 curbuf = buf;
8177}
8178
8179/*
8180 * Cleanup after executing autocommands for a (hidden) buffer.
8181 * Restore the window as it was (if possible).
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00008182 * When FEAT_AUTOCMD is not defined another version is used, see below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008183 */
8184 void
8185aucmd_restbuf(aco)
8186 aco_save_T *aco; /* structure holding saved values */
8187{
8188 if (aco->save_curwin != NULL)
8189 {
8190 /* restore curwin */
8191#ifdef FEAT_WINDOWS
8192 if (win_valid(aco->save_curwin))
8193#endif
8194 {
8195 /* restore the buffer which was previously edited by curwin, if
8196 * it's still the same window and it's valid */
8197 if (curwin == aco->new_curwin
8198 && buf_valid(aco->save_buf)
8199 && aco->save_buf->b_ml.ml_mfp != NULL)
8200 {
8201 --curbuf->b_nwindows;
8202 curbuf = aco->save_buf;
8203 curwin->w_buffer = curbuf;
8204 ++curbuf->b_nwindows;
8205 }
8206
8207 curwin = aco->save_curwin;
8208 curbuf = curwin->w_buffer;
8209 }
8210 }
8211 else
8212 {
8213 /* restore buffer for curwin if it still exists and is loaded */
8214 if (buf_valid(aco->save_buf) && aco->save_buf->b_ml.ml_mfp != NULL)
8215 {
8216 --curbuf->b_nwindows;
8217 curbuf = aco->save_buf;
8218 curwin->w_buffer = curbuf;
8219 ++curbuf->b_nwindows;
8220 curwin->w_cursor = aco->save_cursor;
8221 check_cursor();
8222 /* check topline < line_count, in case lines got deleted */
8223 if (aco->save_topline <= curbuf->b_ml.ml_line_count)
8224 {
8225 curwin->w_topline = aco->save_topline;
8226#ifdef FEAT_DIFF
8227 curwin->w_topfill = aco->save_topfill;
8228#endif
8229 }
8230 else
8231 {
8232 curwin->w_topline = curbuf->b_ml.ml_line_count;
8233#ifdef FEAT_DIFF
8234 curwin->w_topfill = 0;
8235#endif
8236 }
8237 }
8238 }
8239}
8240
8241static int autocmd_nested = FALSE;
8242
8243/*
8244 * Execute autocommands for "event" and file name "fname".
8245 * Return TRUE if some commands were executed.
8246 */
8247 int
8248apply_autocmds(event, fname, fname_io, force, buf)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008249 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008250 char_u *fname; /* NULL or empty means use actual file name */
8251 char_u *fname_io; /* fname to use for <afile> on cmdline */
8252 int force; /* when TRUE, ignore autocmd_busy */
8253 buf_T *buf; /* buffer for <abuf> */
8254{
8255 return apply_autocmds_group(event, fname, fname_io, force,
8256 AUGROUP_ALL, buf, NULL);
8257}
8258
8259/*
8260 * Like apply_autocmds(), but with extra "eap" argument. This takes care of
8261 * setting v:filearg.
8262 */
8263 static int
8264apply_autocmds_exarg(event, fname, fname_io, force, buf, eap)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008265 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008266 char_u *fname;
8267 char_u *fname_io;
8268 int force;
8269 buf_T *buf;
8270 exarg_T *eap;
8271{
8272 return apply_autocmds_group(event, fname, fname_io, force,
8273 AUGROUP_ALL, buf, eap);
8274}
8275
8276/*
8277 * Like apply_autocmds(), but handles the caller's retval. If the script
8278 * processing is being aborted or if retval is FAIL when inside a try
8279 * conditional, no autocommands are executed. If otherwise the autocommands
8280 * cause the script to be aborted, retval is set to FAIL.
8281 */
8282 int
8283apply_autocmds_retval(event, fname, fname_io, force, buf, retval)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008284 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008285 char_u *fname; /* NULL or empty means use actual file name */
8286 char_u *fname_io; /* fname to use for <afile> on cmdline */
8287 int force; /* when TRUE, ignore autocmd_busy */
8288 buf_T *buf; /* buffer for <abuf> */
8289 int *retval; /* pointer to caller's retval */
8290{
8291 int did_cmd;
8292
Bram Moolenaar1e015462005-09-25 22:16:38 +00008293#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00008294 if (should_abort(*retval))
8295 return FALSE;
Bram Moolenaar1e015462005-09-25 22:16:38 +00008296#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008297
8298 did_cmd = apply_autocmds_group(event, fname, fname_io, force,
8299 AUGROUP_ALL, buf, NULL);
Bram Moolenaar1e015462005-09-25 22:16:38 +00008300 if (did_cmd
8301#ifdef FEAT_EVAL
8302 && aborting()
8303#endif
8304 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00008305 *retval = FAIL;
8306 return did_cmd;
8307}
8308
Bram Moolenaard35f9712005-12-18 22:02:33 +00008309/*
8310 * Return TRUE when there is a CursorHold autocommand defined.
8311 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008312 int
8313has_cursorhold()
8314{
Bram Moolenaar754b5602006-02-09 23:53:20 +00008315 return (first_autopat[(int)(get_real_state() == NORMAL_BUSY
8316 ? EVENT_CURSORHOLD : EVENT_CURSORHOLDI)] != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008317}
Bram Moolenaard35f9712005-12-18 22:02:33 +00008318
8319/*
8320 * Return TRUE if the CursorHold event can be triggered.
8321 */
8322 int
8323trigger_cursorhold()
8324{
Bram Moolenaar754b5602006-02-09 23:53:20 +00008325 int state;
8326
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00008327 if (!did_cursorhold && has_cursorhold() && !Recording
8328#ifdef FEAT_INS_EXPAND
8329 && !ins_compl_active()
8330#endif
8331 )
Bram Moolenaar754b5602006-02-09 23:53:20 +00008332 {
8333 state = get_real_state();
8334 if (state == NORMAL_BUSY || (state & INSERT) != 0)
8335 return TRUE;
8336 }
8337 return FALSE;
Bram Moolenaard35f9712005-12-18 22:02:33 +00008338}
Bram Moolenaar754b5602006-02-09 23:53:20 +00008339
8340/*
8341 * Return TRUE when there is a CursorMoved autocommand defined.
8342 */
8343 int
8344has_cursormoved()
8345{
8346 return (first_autopat[(int)EVENT_CURSORMOVED] != NULL);
8347}
8348
8349/*
8350 * Return TRUE when there is a CursorMovedI autocommand defined.
8351 */
8352 int
8353has_cursormovedI()
8354{
8355 return (first_autopat[(int)EVENT_CURSORMOVEDI] != NULL);
8356}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008357
8358 static int
8359apply_autocmds_group(event, fname, fname_io, force, group, buf, eap)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008360 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008361 char_u *fname; /* NULL or empty means use actual file name */
8362 char_u *fname_io; /* fname to use for <afile> on cmdline, NULL means
8363 use fname */
8364 int force; /* when TRUE, ignore autocmd_busy */
8365 int group; /* group ID, or AUGROUP_ALL */
8366 buf_T *buf; /* buffer for <abuf> */
8367 exarg_T *eap; /* command arguments */
8368{
8369 char_u *sfname = NULL; /* short file name */
8370 char_u *tail;
8371 int save_changed;
8372 buf_T *old_curbuf;
8373 int retval = FALSE;
8374 char_u *save_sourcing_name;
8375 linenr_T save_sourcing_lnum;
8376 char_u *save_autocmd_fname;
8377 int save_autocmd_bufnr;
8378 char_u *save_autocmd_match;
8379 int save_autocmd_busy;
8380 int save_autocmd_nested;
8381 static int nesting = 0;
8382 AutoPatCmd patcmd;
8383 AutoPat *ap;
8384#ifdef FEAT_EVAL
8385 scid_T save_current_SID;
8386 void *save_funccalp;
8387 char_u *save_cmdarg;
8388 long save_cmdbang;
8389#endif
8390 static int filechangeshell_busy = FALSE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00008391#ifdef FEAT_PROFILE
8392 proftime_T wait_time;
8393#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008394
8395 /*
8396 * Quickly return if there are no autocommands for this event or
8397 * autocommands are blocked.
8398 */
8399 if (first_autopat[(int)event] == NULL || autocmd_block > 0)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008400 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008401
8402 /*
8403 * When autocommands are busy, new autocommands are only executed when
8404 * explicitly enabled with the "nested" flag.
8405 */
8406 if (autocmd_busy && !(force || autocmd_nested))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008407 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008408
8409#ifdef FEAT_EVAL
8410 /*
Bram Moolenaar7263a772007-05-10 17:35:54 +00008411 * Quickly return when immediately aborting on error, or when an interrupt
Bram Moolenaar071d4272004-06-13 20:20:40 +00008412 * occurred or an exception was thrown but not caught.
8413 */
8414 if (aborting())
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008415 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008416#endif
8417
8418 /*
8419 * FileChangedShell never nests, because it can create an endless loop.
8420 */
Bram Moolenaar56718732006-03-15 22:53:57 +00008421 if (filechangeshell_busy && (event == EVENT_FILECHANGEDSHELL
8422 || event == EVENT_FILECHANGEDSHELLPOST))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008423 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008424
8425 /*
8426 * Ignore events in 'eventignore'.
8427 */
8428 if (event_ignored(event))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008429 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008430
8431 /*
8432 * Allow nesting of autocommands, but restrict the depth, because it's
8433 * possible to create an endless loop.
8434 */
8435 if (nesting == 10)
8436 {
8437 EMSG(_("E218: autocommand nesting too deep"));
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008438 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008439 }
8440
8441 /*
8442 * Check if these autocommands are disabled. Used when doing ":all" or
8443 * ":ball".
8444 */
8445 if ( (autocmd_no_enter
8446 && (event == EVENT_WINENTER || event == EVENT_BUFENTER))
8447 || (autocmd_no_leave
8448 && (event == EVENT_WINLEAVE || event == EVENT_BUFLEAVE)))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008449 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008450
8451 /*
8452 * Save the autocmd_* variables and info about the current buffer.
8453 */
8454 save_autocmd_fname = autocmd_fname;
8455 save_autocmd_bufnr = autocmd_bufnr;
8456 save_autocmd_match = autocmd_match;
8457 save_autocmd_busy = autocmd_busy;
8458 save_autocmd_nested = autocmd_nested;
8459 save_changed = curbuf->b_changed;
8460 old_curbuf = curbuf;
8461
8462 /*
8463 * Set the file name to be used for <afile>.
8464 */
8465 if (fname_io == NULL)
8466 {
8467 if (fname != NULL && *fname != NUL)
8468 autocmd_fname = fname;
8469 else if (buf != NULL)
8470 autocmd_fname = buf->b_fname;
8471 else
8472 autocmd_fname = NULL;
8473 }
8474 else
8475 autocmd_fname = fname_io;
8476
8477 /*
8478 * Set the buffer number to be used for <abuf>.
8479 */
8480 if (buf == NULL)
8481 autocmd_bufnr = 0;
8482 else
8483 autocmd_bufnr = buf->b_fnum;
8484
8485 /*
8486 * When the file name is NULL or empty, use the file name of buffer "buf".
8487 * Always use the full path of the file name to match with, in case
8488 * "allow_dirs" is set.
8489 */
8490 if (fname == NULL || *fname == NUL)
8491 {
8492 if (buf == NULL)
8493 fname = NULL;
8494 else
8495 {
8496#ifdef FEAT_SYN_HL
8497 if (event == EVENT_SYNTAX)
8498 fname = buf->b_p_syn;
8499 else
8500#endif
8501 if (event == EVENT_FILETYPE)
8502 fname = buf->b_p_ft;
8503 else
8504 {
8505 if (buf->b_sfname != NULL)
8506 sfname = vim_strsave(buf->b_sfname);
8507 fname = buf->b_ffname;
8508 }
8509 }
8510 if (fname == NULL)
8511 fname = (char_u *)"";
8512 fname = vim_strsave(fname); /* make a copy, so we can change it */
8513 }
8514 else
8515 {
8516 sfname = vim_strsave(fname);
Bram Moolenaar7c626922005-02-07 22:01:03 +00008517 /* Don't try expanding FileType, Syntax, WindowID or QuickFixCmd* */
8518 if (event == EVENT_FILETYPE
8519 || event == EVENT_SYNTAX
8520 || event == EVENT_REMOTEREPLY
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00008521 || event == EVENT_SPELLFILEMISSING
Bram Moolenaar7c626922005-02-07 22:01:03 +00008522 || event == EVENT_QUICKFIXCMDPRE
8523 || event == EVENT_QUICKFIXCMDPOST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008524 fname = vim_strsave(fname);
8525 else
8526 fname = FullName_save(fname, FALSE);
8527 }
8528 if (fname == NULL) /* out of memory */
8529 {
8530 vim_free(sfname);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008531 retval = FALSE;
8532 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008533 }
8534
8535#ifdef BACKSLASH_IN_FILENAME
8536 /*
8537 * Replace all backslashes with forward slashes. This makes the
8538 * autocommand patterns portable between Unix and MS-DOS.
8539 */
8540 if (sfname != NULL)
8541 forward_slash(sfname);
8542 forward_slash(fname);
8543#endif
8544
8545#ifdef VMS
8546 /* remove version for correct match */
8547 if (sfname != NULL)
8548 vms_remove_version(sfname);
8549 vms_remove_version(fname);
8550#endif
8551
8552 /*
8553 * Set the name to be used for <amatch>.
8554 */
8555 autocmd_match = fname;
8556
8557
8558 /* Don't redraw while doing auto commands. */
8559 ++RedrawingDisabled;
8560 save_sourcing_name = sourcing_name;
8561 sourcing_name = NULL; /* don't free this one */
8562 save_sourcing_lnum = sourcing_lnum;
8563 sourcing_lnum = 0; /* no line number here */
8564
8565#ifdef FEAT_EVAL
8566 save_current_SID = current_SID;
8567
Bram Moolenaar05159a02005-02-26 23:04:13 +00008568# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +00008569 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00008570 prof_child_enter(&wait_time); /* doesn't count for the caller itself */
8571# endif
8572
Bram Moolenaar071d4272004-06-13 20:20:40 +00008573 /* Don't use local function variables, if called from a function */
8574 save_funccalp = save_funccal();
8575#endif
8576
8577 /*
8578 * When starting to execute autocommands, save the search patterns.
8579 */
8580 if (!autocmd_busy)
8581 {
8582 save_search_patterns();
8583 saveRedobuff();
8584 did_filetype = keep_filetype;
8585 }
8586
8587 /*
8588 * Note that we are applying autocmds. Some commands need to know.
8589 */
8590 autocmd_busy = TRUE;
8591 filechangeshell_busy = (event == EVENT_FILECHANGEDSHELL);
8592 ++nesting; /* see matching decrement below */
8593
8594 /* Remember that FileType was triggered. Used for did_filetype(). */
8595 if (event == EVENT_FILETYPE)
8596 did_filetype = TRUE;
8597
8598 tail = gettail(fname);
8599
8600 /* Find first autocommand that matches */
8601 patcmd.curpat = first_autopat[(int)event];
8602 patcmd.nextcmd = NULL;
8603 patcmd.group = group;
8604 patcmd.fname = fname;
8605 patcmd.sfname = sfname;
8606 patcmd.tail = tail;
8607 patcmd.event = event;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008608 patcmd.arg_bufnr = autocmd_bufnr;
8609 patcmd.next = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008610 auto_next_pat(&patcmd, FALSE);
8611
8612 /* found one, start executing the autocommands */
8613 if (patcmd.curpat != NULL)
8614 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008615 /* add to active_apc_list */
8616 patcmd.next = active_apc_list;
8617 active_apc_list = &patcmd;
8618
Bram Moolenaar071d4272004-06-13 20:20:40 +00008619#ifdef FEAT_EVAL
8620 /* set v:cmdarg (only when there is a matching pattern) */
8621 save_cmdbang = get_vim_var_nr(VV_CMDBANG);
8622 if (eap != NULL)
8623 {
8624 save_cmdarg = set_cmdarg(eap, NULL);
8625 set_vim_var_nr(VV_CMDBANG, (long)eap->forceit);
8626 }
8627 else
8628 save_cmdarg = NULL; /* avoid gcc warning */
8629#endif
8630 retval = TRUE;
8631 /* mark the last pattern, to avoid an endless loop when more patterns
8632 * are added when executing autocommands */
8633 for (ap = patcmd.curpat; ap->next != NULL; ap = ap->next)
8634 ap->last = FALSE;
8635 ap->last = TRUE;
8636 check_lnums(TRUE); /* make sure cursor and topline are valid */
8637 do_cmdline(NULL, getnextac, (void *)&patcmd,
8638 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
8639#ifdef FEAT_EVAL
8640 if (eap != NULL)
8641 {
8642 (void)set_cmdarg(NULL, save_cmdarg);
8643 set_vim_var_nr(VV_CMDBANG, save_cmdbang);
8644 }
8645#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008646 /* delete from active_apc_list */
8647 if (active_apc_list == &patcmd) /* just in case */
8648 active_apc_list = patcmd.next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008649 }
8650
8651 --RedrawingDisabled;
8652 autocmd_busy = save_autocmd_busy;
8653 filechangeshell_busy = FALSE;
8654 autocmd_nested = save_autocmd_nested;
8655 vim_free(sourcing_name);
8656 sourcing_name = save_sourcing_name;
8657 sourcing_lnum = save_sourcing_lnum;
8658 autocmd_fname = save_autocmd_fname;
8659 autocmd_bufnr = save_autocmd_bufnr;
8660 autocmd_match = save_autocmd_match;
8661#ifdef FEAT_EVAL
8662 current_SID = save_current_SID;
8663 restore_funccal(save_funccalp);
Bram Moolenaar05159a02005-02-26 23:04:13 +00008664# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +00008665 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00008666 prof_child_exit(&wait_time);
8667# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008668#endif
8669 vim_free(fname);
8670 vim_free(sfname);
8671 --nesting; /* see matching increment above */
8672
8673 /*
8674 * When stopping to execute autocommands, restore the search patterns and
8675 * the redo buffer.
8676 */
8677 if (!autocmd_busy)
8678 {
8679 restore_search_patterns();
8680 restoreRedobuff();
8681 did_filetype = FALSE;
8682 }
8683
8684 /*
8685 * Some events don't set or reset the Changed flag.
8686 * Check if still in the same buffer!
8687 */
8688 if (curbuf == old_curbuf
8689 && (event == EVENT_BUFREADPOST
8690 || event == EVENT_BUFWRITEPOST
8691 || event == EVENT_FILEAPPENDPOST
8692 || event == EVENT_VIMLEAVE
8693 || event == EVENT_VIMLEAVEPRE))
8694 {
8695#ifdef FEAT_TITLE
8696 if (curbuf->b_changed != save_changed)
8697 need_maketitle = TRUE;
8698#endif
8699 curbuf->b_changed = save_changed;
8700 }
8701
8702 au_cleanup(); /* may really delete removed patterns/commands now */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008703
8704BYPASS_AU:
8705 /* When wiping out a buffer make sure all its buffer-local autocommands
8706 * are deleted. */
8707 if (event == EVENT_BUFWIPEOUT && buf != NULL)
8708 aubuflocal_remove(buf);
8709
Bram Moolenaar071d4272004-06-13 20:20:40 +00008710 return retval;
8711}
8712
8713/*
8714 * Find next autocommand pattern that matches.
8715 */
8716 static void
8717auto_next_pat(apc, stop_at_last)
8718 AutoPatCmd *apc;
8719 int stop_at_last; /* stop when 'last' flag is set */
8720{
8721 AutoPat *ap;
8722 AutoCmd *cp;
8723 char_u *name;
8724 char *s;
8725
8726 vim_free(sourcing_name);
8727 sourcing_name = NULL;
8728
8729 for (ap = apc->curpat; ap != NULL && !got_int; ap = ap->next)
8730 {
8731 apc->curpat = NULL;
8732
8733 /* only use a pattern when it has not been removed, has commands and
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008734 * the group matches. For buffer-local autocommands only check the
8735 * buffer number. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008736 if (ap->pat != NULL && ap->cmds != NULL
8737 && (apc->group == AUGROUP_ALL || apc->group == ap->group))
8738 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008739 /* execution-condition */
8740 if (ap->buflocal_nr == 0
Bram Moolenaar748bf032005-02-02 23:04:36 +00008741 ? (match_file_pat(NULL, ap->reg_prog, apc->fname,
8742 apc->sfname, apc->tail, ap->allow_dirs))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008743 : ap->buflocal_nr == apc->arg_bufnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008744 {
8745 name = event_nr2name(apc->event);
8746 s = _("%s Auto commands for \"%s\"");
8747 sourcing_name = alloc((unsigned)(STRLEN(s)
8748 + STRLEN(name) + ap->patlen + 1));
8749 if (sourcing_name != NULL)
8750 {
8751 sprintf((char *)sourcing_name, s,
8752 (char *)name, (char *)ap->pat);
8753 if (p_verbose >= 8)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00008754 {
8755 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00008756 smsg((char_u *)_("Executing %s"), sourcing_name);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00008757 verbose_leave();
8758 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008759 }
8760
8761 apc->curpat = ap;
8762 apc->nextcmd = ap->cmds;
8763 /* mark last command */
8764 for (cp = ap->cmds; cp->next != NULL; cp = cp->next)
8765 cp->last = FALSE;
8766 cp->last = TRUE;
8767 }
8768 line_breakcheck();
8769 if (apc->curpat != NULL) /* found a match */
8770 break;
8771 }
8772 if (stop_at_last && ap->last)
8773 break;
8774 }
8775}
8776
8777/*
8778 * Get next autocommand command.
8779 * Called by do_cmdline() to get the next line for ":if".
8780 * Returns allocated string, or NULL for end of autocommands.
8781 */
8782/* ARGSUSED */
8783 static char_u *
8784getnextac(c, cookie, indent)
8785 int c; /* not used */
8786 void *cookie;
8787 int indent; /* not used */
8788{
8789 AutoPatCmd *acp = (AutoPatCmd *)cookie;
8790 char_u *retval;
8791 AutoCmd *ac;
8792
8793 /* Can be called again after returning the last line. */
8794 if (acp->curpat == NULL)
8795 return NULL;
8796
8797 /* repeat until we find an autocommand to execute */
8798 for (;;)
8799 {
8800 /* skip removed commands */
8801 while (acp->nextcmd != NULL && acp->nextcmd->cmd == NULL)
8802 if (acp->nextcmd->last)
8803 acp->nextcmd = NULL;
8804 else
8805 acp->nextcmd = acp->nextcmd->next;
8806
8807 if (acp->nextcmd != NULL)
8808 break;
8809
8810 /* at end of commands, find next pattern that matches */
8811 if (acp->curpat->last)
8812 acp->curpat = NULL;
8813 else
8814 acp->curpat = acp->curpat->next;
8815 if (acp->curpat != NULL)
8816 auto_next_pat(acp, TRUE);
8817 if (acp->curpat == NULL)
8818 return NULL;
8819 }
8820
8821 ac = acp->nextcmd;
8822
8823 if (p_verbose >= 9)
8824 {
Bram Moolenaara04f10b2005-05-31 22:09:46 +00008825 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00008826 smsg((char_u *)_("autocommand %s"), ac->cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008827 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaara04f10b2005-05-31 22:09:46 +00008828 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00008829 }
8830 retval = vim_strsave(ac->cmd);
8831 autocmd_nested = ac->nested;
8832#ifdef FEAT_EVAL
8833 current_SID = ac->scriptID;
8834#endif
8835 if (ac->last)
8836 acp->nextcmd = NULL;
8837 else
8838 acp->nextcmd = ac->next;
8839 return retval;
8840}
8841
8842/*
8843 * Return TRUE if there is a matching autocommand for "fname".
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008844 * To account for buffer-local autocommands, function needs to know
8845 * in which buffer the file will be opened.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008846 */
8847 int
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008848has_autocmd(event, sfname, buf)
Bram Moolenaar754b5602006-02-09 23:53:20 +00008849 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008850 char_u *sfname;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008851 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008852{
8853 AutoPat *ap;
8854 char_u *fname;
8855 char_u *tail = gettail(sfname);
8856 int retval = FALSE;
8857
8858 fname = FullName_save(sfname, FALSE);
8859 if (fname == NULL)
8860 return FALSE;
8861
8862#ifdef BACKSLASH_IN_FILENAME
8863 /*
8864 * Replace all backslashes with forward slashes. This makes the
8865 * autocommand patterns portable between Unix and MS-DOS.
8866 */
8867 sfname = vim_strsave(sfname);
8868 if (sfname != NULL)
8869 forward_slash(sfname);
8870 forward_slash(fname);
8871#endif
8872
8873 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
8874 if (ap->pat != NULL && ap->cmds != NULL
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008875 && (ap->buflocal_nr == 0
Bram Moolenaar748bf032005-02-02 23:04:36 +00008876 ? match_file_pat(NULL, ap->reg_prog,
8877 fname, sfname, tail, ap->allow_dirs)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008878 : buf != NULL && ap->buflocal_nr == buf->b_fnum
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008879 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008880 {
8881 retval = TRUE;
8882 break;
8883 }
8884
8885 vim_free(fname);
8886#ifdef BACKSLASH_IN_FILENAME
8887 vim_free(sfname);
8888#endif
8889
8890 return retval;
8891}
8892
8893#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
8894/*
8895 * Function given to ExpandGeneric() to obtain the list of autocommand group
8896 * names.
8897 */
8898/*ARGSUSED*/
8899 char_u *
8900get_augroup_name(xp, idx)
8901 expand_T *xp;
8902 int idx;
8903{
8904 if (idx == augroups.ga_len) /* add "END" add the end */
8905 return (char_u *)"END";
8906 if (idx >= augroups.ga_len) /* end of list */
8907 return NULL;
8908 if (AUGROUP_NAME(idx) == NULL) /* skip deleted entries */
8909 return (char_u *)"";
8910 return AUGROUP_NAME(idx); /* return a name */
8911}
8912
8913static int include_groups = FALSE;
8914
8915 char_u *
8916set_context_in_autocmd(xp, arg, doautocmd)
8917 expand_T *xp;
8918 char_u *arg;
8919 int doautocmd; /* TRUE for :doautocmd, FALSE for :autocmd */
8920{
8921 char_u *p;
8922 int group;
8923
8924 /* check for a group name, skip it if present */
8925 include_groups = FALSE;
8926 p = arg;
8927 group = au_get_grouparg(&arg);
8928 if (group == AUGROUP_ERROR)
8929 return NULL;
8930 /* If there only is a group name that's what we expand. */
8931 if (*arg == NUL && group != AUGROUP_ALL && !vim_iswhite(arg[-1]))
8932 {
8933 arg = p;
8934 group = AUGROUP_ALL;
8935 }
8936
8937 /* skip over event name */
8938 for (p = arg; *p != NUL && !vim_iswhite(*p); ++p)
8939 if (*p == ',')
8940 arg = p + 1;
8941 if (*p == NUL)
8942 {
8943 if (group == AUGROUP_ALL)
8944 include_groups = TRUE;
8945 xp->xp_context = EXPAND_EVENTS; /* expand event name */
8946 xp->xp_pattern = arg;
8947 return NULL;
8948 }
8949
8950 /* skip over pattern */
8951 arg = skipwhite(p);
8952 while (*arg && (!vim_iswhite(*arg) || arg[-1] == '\\'))
8953 arg++;
8954 if (*arg)
8955 return arg; /* expand (next) command */
8956
8957 if (doautocmd)
8958 xp->xp_context = EXPAND_FILES; /* expand file names */
8959 else
8960 xp->xp_context = EXPAND_NOTHING; /* pattern is not expanded */
8961 return NULL;
8962}
8963
8964/*
8965 * Function given to ExpandGeneric() to obtain the list of event names.
8966 */
8967/*ARGSUSED*/
8968 char_u *
8969get_event_name(xp, idx)
8970 expand_T *xp;
8971 int idx;
8972{
8973 if (idx < augroups.ga_len) /* First list group names, if wanted */
8974 {
8975 if (!include_groups || AUGROUP_NAME(idx) == NULL)
8976 return (char_u *)""; /* skip deleted entries */
8977 return AUGROUP_NAME(idx); /* return a name */
8978 }
8979 return (char_u *)event_names[idx - augroups.ga_len].name;
8980}
8981
8982#endif /* FEAT_CMDL_COMPL */
8983
8984/*
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00008985 * Return TRUE if autocmd is supported.
8986 */
8987 int
8988autocmd_supported(name)
8989 char_u *name;
8990{
8991 char_u *p;
8992
8993 return (event_name2nr(name, &p) != NUM_EVENTS);
8994}
8995
8996/*
Bram Moolenaar195d6352005-12-19 22:08:24 +00008997 * Return TRUE if an autocommand is defined for a group, event and
8998 * pattern: The group can be omitted to accept any group. "event" and "pattern"
8999 * can be NULL to accept any event and pattern. "pattern" can be NULL to accept
9000 * any pattern. Buffer-local patterns <buffer> or <buffer=N> are accepted.
9001 * Used for:
9002 * exists("#Group") or
9003 * exists("#Group#Event") or
9004 * exists("#Group#Event#pat") or
9005 * exists("#Event") or
9006 * exists("#Event#pat")
Bram Moolenaar071d4272004-06-13 20:20:40 +00009007 */
9008 int
Bram Moolenaar195d6352005-12-19 22:08:24 +00009009au_exists(arg)
9010 char_u *arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009011{
Bram Moolenaar195d6352005-12-19 22:08:24 +00009012 char_u *arg_save;
9013 char_u *pattern = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009014 char_u *event_name;
9015 char_u *p;
Bram Moolenaar754b5602006-02-09 23:53:20 +00009016 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009017 AutoPat *ap;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009018 buf_T *buflocal_buf = NULL;
Bram Moolenaar195d6352005-12-19 22:08:24 +00009019 int group;
9020 int retval = FALSE;
9021
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009022 /* Make a copy so that we can change the '#' chars to a NUL. */
Bram Moolenaar195d6352005-12-19 22:08:24 +00009023 arg_save = vim_strsave(arg);
9024 if (arg_save == NULL)
9025 return FALSE;
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +00009026 p = vim_strchr(arg_save, '#');
Bram Moolenaar195d6352005-12-19 22:08:24 +00009027 if (p != NULL)
9028 *p++ = NUL;
9029
9030 /* First, look for an autocmd group name */
9031 group = au_find_group(arg_save);
9032 if (group == AUGROUP_ERROR)
9033 {
9034 /* Didn't match a group name, assume the first argument is an event. */
9035 group = AUGROUP_ALL;
9036 event_name = arg_save;
9037 }
9038 else
9039 {
9040 if (p == NULL)
9041 {
9042 /* "Group": group name is present and it's recognized */
9043 retval = TRUE;
9044 goto theend;
9045 }
9046
9047 /* Must be "Group#Event" or "Group#Event#pat". */
9048 event_name = p;
9049 p = vim_strchr(event_name, '#');
9050 if (p != NULL)
9051 *p++ = NUL; /* "Group#Event#pat" */
9052 }
9053
9054 pattern = p; /* "pattern" is NULL when there is no pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009055
9056 /* find the index (enum) for the event name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009057 event = event_name2nr(event_name, &p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009058
9059 /* return FALSE if the event name is not recognized */
Bram Moolenaar195d6352005-12-19 22:08:24 +00009060 if (event == NUM_EVENTS)
9061 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009062
9063 /* Find the first autocommand for this event.
9064 * If there isn't any, return FALSE;
9065 * If there is one and no pattern given, return TRUE; */
9066 ap = first_autopat[(int)event];
9067 if (ap == NULL)
Bram Moolenaar195d6352005-12-19 22:08:24 +00009068 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009069 if (pattern == NULL)
Bram Moolenaar195d6352005-12-19 22:08:24 +00009070 {
9071 retval = TRUE;
9072 goto theend;
9073 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009074
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009075 /* if pattern is "<buffer>", special handling is needed which uses curbuf */
9076 /* for pattern "<buffer=N>, fnamecmp() will work fine */
9077 if (STRICMP(pattern, "<buffer>") == 0)
9078 buflocal_buf = curbuf;
9079
Bram Moolenaar071d4272004-06-13 20:20:40 +00009080 /* Check if there is an autocommand with the given pattern. */
9081 for ( ; ap != NULL; ap = ap->next)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009082 /* only use a pattern when it has not been removed and has commands. */
9083 /* For buffer-local autocommands, fnamecmp() works fine. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009084 if (ap->pat != NULL && ap->cmds != NULL
Bram Moolenaar195d6352005-12-19 22:08:24 +00009085 && (group == AUGROUP_ALL || ap->group == group)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009086 && (buflocal_buf == NULL
9087 ? fnamecmp(ap->pat, pattern) == 0
9088 : ap->buflocal_nr == buflocal_buf->b_fnum))
Bram Moolenaar195d6352005-12-19 22:08:24 +00009089 {
9090 retval = TRUE;
9091 break;
9092 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009093
Bram Moolenaar195d6352005-12-19 22:08:24 +00009094theend:
9095 vim_free(arg_save);
9096 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009097}
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009098
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009099#else /* FEAT_AUTOCMD */
9100
9101/*
9102 * Prepare for executing commands for (hidden) buffer "buf".
9103 * This is the non-autocommand version, it simply saves "curbuf" and sets
9104 * "curbuf" and "curwin" to match "buf".
9105 */
9106 void
9107aucmd_prepbuf(aco, buf)
9108 aco_save_T *aco; /* structure to save values in */
9109 buf_T *buf; /* new curbuf */
9110{
9111 aco->save_buf = buf;
9112 curbuf = buf;
9113 curwin->w_buffer = buf;
9114}
9115
9116/*
9117 * Restore after executing commands for a (hidden) buffer.
9118 * This is the non-autocommand version.
9119 */
9120 void
9121aucmd_restbuf(aco)
9122 aco_save_T *aco; /* structure holding saved values */
9123{
9124 curbuf = aco->save_buf;
9125 curwin->w_buffer = curbuf;
9126}
9127
Bram Moolenaar071d4272004-06-13 20:20:40 +00009128#endif /* FEAT_AUTOCMD */
9129
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00009130
Bram Moolenaar071d4272004-06-13 20:20:40 +00009131#if defined(FEAT_AUTOCMD) || defined(FEAT_WILDIGN) || defined(PROTO)
9132/*
Bram Moolenaar748bf032005-02-02 23:04:36 +00009133 * Try matching a filename with a "pattern" ("prog" is NULL), or use the
9134 * precompiled regprog "prog" ("pattern" is NULL). That avoids calling
9135 * vim_regcomp() often.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009136 * Used for autocommands and 'wildignore'.
9137 * Returns TRUE if there is a match, FALSE otherwise.
9138 */
9139 int
Bram Moolenaar748bf032005-02-02 23:04:36 +00009140match_file_pat(pattern, prog, fname, sfname, tail, allow_dirs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009141 char_u *pattern; /* pattern to match with */
Bram Moolenaar748bf032005-02-02 23:04:36 +00009142 regprog_T *prog; /* pre-compiled regprog or NULL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009143 char_u *fname; /* full path of file name */
9144 char_u *sfname; /* short file name or NULL */
9145 char_u *tail; /* tail of path */
9146 int allow_dirs; /* allow matching with dir */
9147{
9148 regmatch_T regmatch;
9149 int result = FALSE;
9150#ifdef FEAT_OSFILETYPE
9151 int no_pattern = FALSE; /* TRUE if check is filetype only */
9152 char_u *type_start;
9153 char_u c;
9154 int match = FALSE;
9155#endif
9156
9157#ifdef CASE_INSENSITIVE_FILENAME
9158 regmatch.rm_ic = TRUE; /* Always ignore case */
9159#else
9160 regmatch.rm_ic = FALSE; /* Don't ever ignore case */
9161#endif
9162#ifdef FEAT_OSFILETYPE
9163 if (*pattern == '<')
9164 {
9165 /* There is a filetype condition specified with this pattern.
9166 * Check the filetype matches first. If not, don't bother with the
9167 * pattern (set regprog to NULL).
9168 * Always use magic for the regexp.
9169 */
9170
9171 for (type_start = pattern + 1; (c = *pattern); pattern++)
9172 {
9173 if ((c == ';' || c == '>') && match == FALSE)
9174 {
9175 *pattern = NUL; /* Terminate the string */
9176 match = mch_check_filetype(fname, type_start);
9177 *pattern = c; /* Restore the terminator */
9178 type_start = pattern + 1;
9179 }
9180 if (c == '>')
9181 break;
9182 }
9183
9184 /* (c should never be NUL, but check anyway) */
9185 if (match == FALSE || c == NUL)
9186 regmatch.regprog = NULL; /* Doesn't match - don't check pat. */
9187 else if (*pattern == NUL)
9188 {
9189 regmatch.regprog = NULL; /* Vim will try to free regprog later */
9190 no_pattern = TRUE; /* Always matches - don't check pat. */
9191 }
9192 else
9193 regmatch.regprog = vim_regcomp(pattern + 1, RE_MAGIC);
9194 }
9195 else
9196#endif
Bram Moolenaar748bf032005-02-02 23:04:36 +00009197 {
9198 if (prog != NULL)
9199 regmatch.regprog = prog;
9200 else
9201 regmatch.regprog = vim_regcomp(pattern, RE_MAGIC);
9202 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009203
9204 /*
9205 * Try for a match with the pattern with:
9206 * 1. the full file name, when the pattern has a '/'.
9207 * 2. the short file name, when the pattern has a '/'.
9208 * 3. the tail of the file name, when the pattern has no '/'.
9209 */
9210 if (
9211#ifdef FEAT_OSFILETYPE
9212 /* If the check is for a filetype only and we don't care
9213 * about the path then skip all the regexp stuff.
9214 */
9215 no_pattern ||
9216#endif
9217 (regmatch.regprog != NULL
9218 && ((allow_dirs
9219 && (vim_regexec(&regmatch, fname, (colnr_T)0)
9220 || (sfname != NULL
9221 && vim_regexec(&regmatch, sfname, (colnr_T)0))))
9222 || (!allow_dirs && vim_regexec(&regmatch, tail, (colnr_T)0)))))
9223 result = TRUE;
9224
Bram Moolenaar748bf032005-02-02 23:04:36 +00009225 if (prog == NULL)
9226 vim_free(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009227 return result;
9228}
9229#endif
9230
9231#if defined(FEAT_WILDIGN) || defined(PROTO)
9232/*
9233 * Return TRUE if a file matches with a pattern in "list".
9234 * "list" is a comma-separated list of patterns, like 'wildignore'.
9235 * "sfname" is the short file name or NULL, "ffname" the long file name.
9236 */
9237 int
9238match_file_list(list, sfname, ffname)
9239 char_u *list;
9240 char_u *sfname;
9241 char_u *ffname;
9242{
9243 char_u buf[100];
9244 char_u *tail;
9245 char_u *regpat;
9246 char allow_dirs;
9247 int match;
9248 char_u *p;
9249
9250 tail = gettail(sfname);
9251
9252 /* try all patterns in 'wildignore' */
9253 p = list;
9254 while (*p)
9255 {
9256 copy_option_part(&p, buf, 100, ",");
9257 regpat = file_pat_to_reg_pat(buf, NULL, &allow_dirs, FALSE);
9258 if (regpat == NULL)
9259 break;
Bram Moolenaar748bf032005-02-02 23:04:36 +00009260 match = match_file_pat(regpat, NULL, ffname, sfname,
9261 tail, (int)allow_dirs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009262 vim_free(regpat);
9263 if (match)
9264 return TRUE;
9265 }
9266 return FALSE;
9267}
9268#endif
9269
9270/*
9271 * Convert the given pattern "pat" which has shell style wildcards in it, into
9272 * a regular expression, and return the result in allocated memory. If there
9273 * is a directory path separator to be matched, then TRUE is put in
9274 * allow_dirs, otherwise FALSE is put there -- webb.
9275 * Handle backslashes before special characters, like "\*" and "\ ".
9276 *
9277 * If FEAT_OSFILETYPE defined then pass initial <type> through unchanged. Eg:
9278 * '<html>myfile' becomes '<html>^myfile$' -- leonard.
9279 *
9280 * Returns NULL when out of memory.
9281 */
9282/*ARGSUSED*/
9283 char_u *
9284file_pat_to_reg_pat(pat, pat_end, allow_dirs, no_bslash)
9285 char_u *pat;
9286 char_u *pat_end; /* first char after pattern or NULL */
9287 char *allow_dirs; /* Result passed back out in here */
9288 int no_bslash; /* Don't use a backward slash as pathsep */
9289{
9290 int size;
9291 char_u *endp;
9292 char_u *reg_pat;
9293 char_u *p;
9294 int i;
9295 int nested = 0;
9296 int add_dollar = TRUE;
9297#ifdef FEAT_OSFILETYPE
9298 int check_length = 0;
9299#endif
9300
9301 if (allow_dirs != NULL)
9302 *allow_dirs = FALSE;
9303 if (pat_end == NULL)
9304 pat_end = pat + STRLEN(pat);
9305
9306#ifdef FEAT_OSFILETYPE
9307 /* Find out how much of the string is the filetype check */
9308 if (*pat == '<')
9309 {
9310 /* Count chars until the next '>' */
9311 for (p = pat + 1; p < pat_end && *p != '>'; p++)
9312 ;
9313 if (p < pat_end)
9314 {
9315 /* Pattern is of the form <.*>.* */
9316 check_length = p - pat + 1;
9317 if (p + 1 >= pat_end)
9318 {
9319 /* The 'pattern' is a filetype check ONLY */
9320 reg_pat = (char_u *)alloc(check_length + 1);
9321 if (reg_pat != NULL)
9322 {
9323 mch_memmove(reg_pat, pat, (size_t)check_length);
9324 reg_pat[check_length] = NUL;
9325 }
9326 return reg_pat;
9327 }
9328 }
9329 /* else: there was no closing '>' - assume it was a normal pattern */
9330
9331 }
9332 pat += check_length;
9333 size = 2 + check_length;
9334#else
9335 size = 2; /* '^' at start, '$' at end */
9336#endif
9337
9338 for (p = pat; p < pat_end; p++)
9339 {
9340 switch (*p)
9341 {
9342 case '*':
9343 case '.':
9344 case ',':
9345 case '{':
9346 case '}':
9347 case '~':
9348 size += 2; /* extra backslash */
9349 break;
9350#ifdef BACKSLASH_IN_FILENAME
9351 case '\\':
9352 case '/':
9353 size += 4; /* could become "[\/]" */
9354 break;
9355#endif
9356 default:
9357 size++;
9358# ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009359 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009360 {
9361 ++p;
9362 ++size;
9363 }
9364# endif
9365 break;
9366 }
9367 }
9368 reg_pat = alloc(size + 1);
9369 if (reg_pat == NULL)
9370 return NULL;
9371
9372#ifdef FEAT_OSFILETYPE
9373 /* Copy the type check in to the start. */
9374 if (check_length)
9375 mch_memmove(reg_pat, pat - check_length, (size_t)check_length);
9376 i = check_length;
9377#else
9378 i = 0;
9379#endif
9380
9381 if (pat[0] == '*')
9382 while (pat[0] == '*' && pat < pat_end - 1)
9383 pat++;
9384 else
9385 reg_pat[i++] = '^';
9386 endp = pat_end - 1;
9387 if (*endp == '*')
9388 {
9389 while (endp - pat > 0 && *endp == '*')
9390 endp--;
9391 add_dollar = FALSE;
9392 }
9393 for (p = pat; *p && nested >= 0 && p <= endp; p++)
9394 {
9395 switch (*p)
9396 {
9397 case '*':
9398 reg_pat[i++] = '.';
9399 reg_pat[i++] = '*';
Bram Moolenaar02743632005-07-25 20:42:36 +00009400 while (p[1] == '*') /* "**" matches like "*" */
9401 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009402 break;
9403 case '.':
9404#ifdef RISCOS
9405 if (allow_dirs != NULL)
9406 *allow_dirs = TRUE;
9407 /* FALLTHROUGH */
9408#endif
9409 case '~':
9410 reg_pat[i++] = '\\';
9411 reg_pat[i++] = *p;
9412 break;
9413 case '?':
9414#ifdef RISCOS
9415 case '#':
9416#endif
9417 reg_pat[i++] = '.';
9418 break;
9419 case '\\':
9420 if (p[1] == NUL)
9421 break;
9422#ifdef BACKSLASH_IN_FILENAME
9423 if (!no_bslash)
9424 {
9425 /* translate:
9426 * "\x" to "\\x" e.g., "dir\file"
9427 * "\*" to "\\.*" e.g., "dir\*.c"
9428 * "\?" to "\\." e.g., "dir\??.c"
9429 * "\+" to "\+" e.g., "fileX\+.c"
9430 */
9431 if ((vim_isfilec(p[1]) || p[1] == '*' || p[1] == '?')
9432 && p[1] != '+')
9433 {
9434 reg_pat[i++] = '[';
9435 reg_pat[i++] = '\\';
9436 reg_pat[i++] = '/';
9437 reg_pat[i++] = ']';
9438 if (allow_dirs != NULL)
9439 *allow_dirs = TRUE;
9440 break;
9441 }
9442 }
9443#endif
9444 if (*++p == '?'
9445#ifdef BACKSLASH_IN_FILENAME
9446 && no_bslash
9447#endif
9448 )
9449 reg_pat[i++] = '?';
9450 else
9451 if (*p == ',')
9452 reg_pat[i++] = ',';
9453 else
9454 {
9455 if (allow_dirs != NULL && vim_ispathsep(*p)
9456#ifdef BACKSLASH_IN_FILENAME
9457 && (!no_bslash || *p != '\\')
9458#endif
9459 )
9460 *allow_dirs = TRUE;
9461 reg_pat[i++] = '\\';
9462 reg_pat[i++] = *p;
9463 }
9464 break;
9465#ifdef BACKSLASH_IN_FILENAME
9466 case '/':
9467 reg_pat[i++] = '[';
9468 reg_pat[i++] = '\\';
9469 reg_pat[i++] = '/';
9470 reg_pat[i++] = ']';
9471 if (allow_dirs != NULL)
9472 *allow_dirs = TRUE;
9473 break;
9474#endif
9475 case '{':
9476 reg_pat[i++] = '\\';
9477 reg_pat[i++] = '(';
9478 nested++;
9479 break;
9480 case '}':
9481 reg_pat[i++] = '\\';
9482 reg_pat[i++] = ')';
9483 --nested;
9484 break;
9485 case ',':
9486 if (nested)
9487 {
9488 reg_pat[i++] = '\\';
9489 reg_pat[i++] = '|';
9490 }
9491 else
9492 reg_pat[i++] = ',';
9493 break;
9494 default:
9495# ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00009496 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009497 reg_pat[i++] = *p++;
9498 else
9499# endif
9500 if (allow_dirs != NULL && vim_ispathsep(*p))
9501 *allow_dirs = TRUE;
9502 reg_pat[i++] = *p;
9503 break;
9504 }
9505 }
9506 if (add_dollar)
9507 reg_pat[i++] = '$';
9508 reg_pat[i] = NUL;
9509 if (nested != 0)
9510 {
9511 if (nested < 0)
9512 EMSG(_("E219: Missing {."));
9513 else
9514 EMSG(_("E220: Missing }."));
9515 vim_free(reg_pat);
9516 reg_pat = NULL;
9517 }
9518 return reg_pat;
9519}