Merge branch 'vim'
[MacVim.git] / src / fileio.c
blob25a63f81d04b5a23caa459e2ed3f54eed90f9d85
1 /* vi:set ts=8 sts=4 sw=4:
3 * VIM - Vi IMproved by Bram Moolenaar
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 */
11 * fileio.c: read from and write to a file
14 #if defined(MSDOS) || defined(WIN16) || defined(WIN32) || defined(_WIN64)
15 # include "vimio.h" /* for lseek(), must be before vim.h */
16 #endif
18 #if defined __EMX__
19 # include "vimio.h" /* for mktemp(), CJW 1997-12-03 */
20 #endif
22 #include "vim.h"
24 #ifdef HAVE_FCNTL_H
25 # include <fcntl.h>
26 #endif
28 #ifdef __TANDEM
29 # include <limits.h> /* for SSIZE_MAX */
30 #endif
32 #if defined(HAVE_UTIME) && defined(HAVE_UTIME_H)
33 # include <utime.h> /* for struct utimbuf */
34 #endif
36 #define BUFSIZE 8192 /* size of normal write buffer */
37 #define SMBUFSIZE 256 /* size of emergency write buffer */
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
44 /* Is there any system that doesn't have access()? */
45 #define USE_MCH_ACCESS
47 #if defined(sun) && defined(S_ISCHR)
48 # define OPEN_CHR_FILES
49 static int is_dev_fd_file(char_u *fname);
50 #endif
51 #ifdef FEAT_MBYTE
52 static char_u *next_fenc __ARGS((char_u **pp));
53 # ifdef FEAT_EVAL
54 static char_u *readfile_charconvert __ARGS((char_u *fname, char_u *fenc, int *fdp));
55 # endif
56 #endif
57 #ifdef FEAT_VIMINFO
58 static void check_marks_read __ARGS((void));
59 #endif
60 #ifdef FEAT_CRYPT
61 static char_u *check_for_cryptkey __ARGS((char_u *cryptkey, char_u *ptr, long *sizep, long *filesizep, int newfile));
62 #endif
63 #ifdef UNIX
64 static void set_file_time __ARGS((char_u *fname, time_t atime, time_t mtime));
65 #endif
66 static int set_rw_fname __ARGS((char_u *fname, char_u *sfname));
67 static int msg_add_fileformat __ARGS((int eol_type));
68 static void msg_add_eol __ARGS((void));
69 static int check_mtime __ARGS((buf_T *buf, struct stat *s));
70 static int time_differs __ARGS((long t1, long t2));
71 #ifdef FEAT_AUTOCMD
72 static int apply_autocmds_exarg __ARGS((event_T event, char_u *fname, char_u *fname_io, int force, buf_T *buf, exarg_T *eap));
73 static int au_find_group __ARGS((char_u *name));
75 # define AUGROUP_DEFAULT -1 /* default autocmd group */
76 # define AUGROUP_ERROR -2 /* errornouse autocmd group */
77 # define AUGROUP_ALL -3 /* all autocmd groups */
78 #endif
80 #if defined(FEAT_CRYPT) || defined(FEAT_MBYTE)
81 # define HAS_BW_FLAGS
82 # define FIO_LATIN1 0x01 /* convert Latin1 */
83 # define FIO_UTF8 0x02 /* convert UTF-8 */
84 # define FIO_UCS2 0x04 /* convert UCS-2 */
85 # define FIO_UCS4 0x08 /* convert UCS-4 */
86 # define FIO_UTF16 0x10 /* convert UTF-16 */
87 # ifdef WIN3264
88 # define FIO_CODEPAGE 0x20 /* convert MS-Windows codepage */
89 # define FIO_PUT_CP(x) (((x) & 0xffff) << 16) /* put codepage in top word */
90 # define FIO_GET_CP(x) (((x)>>16) & 0xffff) /* get codepage from top word */
91 # endif
92 # ifdef MACOS_X
93 # define FIO_MACROMAN 0x20 /* convert MacRoman */
94 # endif
95 # define FIO_ENDIAN_L 0x80 /* little endian */
96 # define FIO_ENCRYPTED 0x1000 /* encrypt written bytes */
97 # define FIO_NOCONVERT 0x2000 /* skip encoding conversion */
98 # define FIO_UCSBOM 0x4000 /* check for BOM at start of file */
99 # define FIO_ALL -1 /* allow all formats */
100 #endif
102 /* When converting, a read() or write() may leave some bytes to be converted
103 * for the next call. The value is guessed... */
104 #define CONV_RESTLEN 30
106 /* We have to guess how much a sequence of bytes may expand when converting
107 * with iconv() to be able to allocate a buffer. */
108 #define ICONV_MULT 8
111 * Structure to pass arguments from buf_write() to buf_write_bytes().
113 struct bw_info
115 int bw_fd; /* file descriptor */
116 char_u *bw_buf; /* buffer with data to be written */
117 int bw_len; /* length of data */
118 #ifdef HAS_BW_FLAGS
119 int bw_flags; /* FIO_ flags */
120 #endif
121 #ifdef FEAT_MBYTE
122 char_u bw_rest[CONV_RESTLEN]; /* not converted bytes */
123 int bw_restlen; /* nr of bytes in bw_rest[] */
124 int bw_first; /* first write call */
125 char_u *bw_conv_buf; /* buffer for writing converted chars */
126 int bw_conv_buflen; /* size of bw_conv_buf */
127 int bw_conv_error; /* set for conversion error */
128 # ifdef USE_ICONV
129 iconv_t bw_iconv_fd; /* descriptor for iconv() or -1 */
130 # endif
131 #endif
134 static int buf_write_bytes __ARGS((struct bw_info *ip));
136 #ifdef FEAT_MBYTE
137 static linenr_T readfile_linenr __ARGS((linenr_T linecnt, char_u *p, char_u *endp));
138 static int ucs2bytes __ARGS((unsigned c, char_u **pp, int flags));
139 static int same_encoding __ARGS((char_u *a, char_u *b));
140 static int get_fio_flags __ARGS((char_u *ptr));
141 static char_u *check_for_bom __ARGS((char_u *p, long size, int *lenp, int flags));
142 static int make_bom __ARGS((char_u *buf, char_u *name));
143 # ifdef WIN3264
144 static int get_win_fio_flags __ARGS((char_u *ptr));
145 # endif
146 # ifdef MACOS_X
147 static int get_mac_fio_flags __ARGS((char_u *ptr));
148 # endif
149 #endif
150 static int move_lines __ARGS((buf_T *frombuf, buf_T *tobuf));
153 void
154 filemess(buf, name, s, attr)
155 buf_T *buf;
156 char_u *name;
157 char_u *s;
158 int attr;
160 int msg_scroll_save;
162 if (msg_silent != 0)
163 return;
164 msg_add_fname(buf, name); /* put file name in IObuff with quotes */
165 /* If it's extremely long, truncate it. */
166 if (STRLEN(IObuff) > IOSIZE - 80)
167 IObuff[IOSIZE - 80] = NUL;
168 STRCAT(IObuff, s);
170 * For the first message may have to start a new line.
171 * For further ones overwrite the previous one, reset msg_scroll before
172 * calling filemess().
174 msg_scroll_save = msg_scroll;
175 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
176 msg_scroll = FALSE;
177 if (!msg_scroll) /* wait a bit when overwriting an error msg */
178 check_for_delay(FALSE);
179 msg_start();
180 msg_scroll = msg_scroll_save;
181 msg_scrolled_ign = TRUE;
182 /* may truncate the message to avoid a hit-return prompt */
183 msg_outtrans_attr(msg_may_trunc(FALSE, IObuff), attr);
184 msg_clr_eos();
185 out_flush();
186 msg_scrolled_ign = FALSE;
190 * Read lines from file "fname" into the buffer after line "from".
192 * 1. We allocate blocks with lalloc, as big as possible.
193 * 2. Each block is filled with characters from the file with a single read().
194 * 3. The lines are inserted in the buffer with ml_append().
196 * (caller must check that fname != NULL, unless READ_STDIN is used)
198 * "lines_to_skip" is the number of lines that must be skipped
199 * "lines_to_read" is the number of lines that are appended
200 * When not recovering lines_to_skip is 0 and lines_to_read MAXLNUM.
202 * flags:
203 * READ_NEW starting to edit a new buffer
204 * READ_FILTER reading filter output
205 * READ_STDIN read from stdin instead of a file
206 * READ_BUFFER read from curbuf instead of a file (converting after reading
207 * stdin)
208 * READ_DUMMY read into a dummy buffer (to check if file contents changed)
210 * return FAIL for failure, OK otherwise
213 readfile(fname, sfname, from, lines_to_skip, lines_to_read, eap, flags)
214 char_u *fname;
215 char_u *sfname;
216 linenr_T from;
217 linenr_T lines_to_skip;
218 linenr_T lines_to_read;
219 exarg_T *eap; /* can be NULL! */
220 int flags;
222 int fd = 0;
223 int newfile = (flags & READ_NEW);
224 int check_readonly;
225 int filtering = (flags & READ_FILTER);
226 int read_stdin = (flags & READ_STDIN);
227 int read_buffer = (flags & READ_BUFFER);
228 int set_options = newfile || read_buffer
229 || (eap != NULL && eap->read_edit);
230 linenr_T read_buf_lnum = 1; /* next line to read from curbuf */
231 colnr_T read_buf_col = 0; /* next char to read from this line */
232 char_u c;
233 linenr_T lnum = from;
234 char_u *ptr = NULL; /* pointer into read buffer */
235 char_u *buffer = NULL; /* read buffer */
236 char_u *new_buffer = NULL; /* init to shut up gcc */
237 char_u *line_start = NULL; /* init to shut up gcc */
238 int wasempty; /* buffer was empty before reading */
239 colnr_T len;
240 long size = 0;
241 char_u *p;
242 long filesize = 0;
243 int skip_read = FALSE;
244 #ifdef FEAT_CRYPT
245 char_u *cryptkey = NULL;
246 #endif
247 int split = 0; /* number of split lines */
248 #define UNKNOWN 0x0fffffff /* file size is unknown */
249 linenr_T linecnt;
250 int error = FALSE; /* errors encountered */
251 int ff_error = EOL_UNKNOWN; /* file format with errors */
252 long linerest = 0; /* remaining chars in line */
253 #ifdef UNIX
254 int perm = 0;
255 int swap_mode = -1; /* protection bits for swap file */
256 #else
257 int perm;
258 #endif
259 int fileformat = 0; /* end-of-line format */
260 int keep_fileformat = FALSE;
261 struct stat st;
262 int file_readonly;
263 linenr_T skip_count = 0;
264 linenr_T read_count = 0;
265 int msg_save = msg_scroll;
266 linenr_T read_no_eol_lnum = 0; /* non-zero lnum when last line of
267 * last read was missing the eol */
268 int try_mac = (vim_strchr(p_ffs, 'm') != NULL);
269 int try_dos = (vim_strchr(p_ffs, 'd') != NULL);
270 int try_unix = (vim_strchr(p_ffs, 'x') != NULL);
271 int file_rewind = FALSE;
272 #ifdef FEAT_MBYTE
273 int can_retry;
274 linenr_T conv_error = 0; /* line nr with conversion error */
275 linenr_T illegal_byte = 0; /* line nr with illegal byte */
276 int keep_dest_enc = FALSE; /* don't retry when char doesn't fit
277 in destination encoding */
278 int bad_char_behavior = BAD_REPLACE;
279 /* BAD_KEEP, BAD_DROP or character to
280 * replace with */
281 char_u *tmpname = NULL; /* name of 'charconvert' output file */
282 int fio_flags = 0;
283 char_u *fenc; /* fileencoding to use */
284 int fenc_alloced; /* fenc_next is in allocated memory */
285 char_u *fenc_next = NULL; /* next item in 'fencs' or NULL */
286 int advance_fenc = FALSE;
287 long real_size = 0;
288 # ifdef USE_ICONV
289 iconv_t iconv_fd = (iconv_t)-1; /* descriptor for iconv() or -1 */
290 # ifdef FEAT_EVAL
291 int did_iconv = FALSE; /* TRUE when iconv() failed and trying
292 'charconvert' next */
293 # endif
294 # endif
295 int converted = FALSE; /* TRUE if conversion done */
296 int notconverted = FALSE; /* TRUE if conversion wanted but it
297 wasn't possible */
298 char_u conv_rest[CONV_RESTLEN];
299 int conv_restlen = 0; /* nr of bytes in conv_rest[] */
300 #endif
302 write_no_eol_lnum = 0; /* in case it was set by the previous read */
305 * If there is no file name yet, use the one for the read file.
306 * BF_NOTEDITED is set to reflect this.
307 * Don't do this for a read from a filter.
308 * Only do this when 'cpoptions' contains the 'f' flag.
310 if (curbuf->b_ffname == NULL
311 && !filtering
312 && fname != NULL
313 && vim_strchr(p_cpo, CPO_FNAMER) != NULL
314 && !(flags & READ_DUMMY))
316 if (set_rw_fname(fname, sfname) == FAIL)
317 return FAIL;
320 /* After reading a file the cursor line changes but we don't want to
321 * display the line. */
322 ex_no_reprint = TRUE;
324 /* don't display the file info for another buffer now */
325 need_fileinfo = FALSE;
328 * For Unix: Use the short file name whenever possible.
329 * Avoids problems with networks and when directory names are changed.
330 * Don't do this for MS-DOS, a "cd" in a sub-shell may have moved us to
331 * another directory, which we don't detect.
333 if (sfname == NULL)
334 sfname = fname;
335 #if defined(UNIX) || defined(__EMX__)
336 fname = sfname;
337 #endif
339 #ifdef FEAT_AUTOCMD
341 * The BufReadCmd and FileReadCmd events intercept the reading process by
342 * executing the associated commands instead.
344 if (!filtering && !read_stdin && !read_buffer)
346 pos_T pos;
348 pos = curbuf->b_op_start;
350 /* Set '[ mark to the line above where the lines go (line 1 if zero). */
351 curbuf->b_op_start.lnum = ((from == 0) ? 1 : from);
352 curbuf->b_op_start.col = 0;
354 if (newfile)
356 if (apply_autocmds_exarg(EVENT_BUFREADCMD, NULL, sfname,
357 FALSE, curbuf, eap))
358 #ifdef FEAT_EVAL
359 return aborting() ? FAIL : OK;
360 #else
361 return OK;
362 #endif
364 else if (apply_autocmds_exarg(EVENT_FILEREADCMD, sfname, sfname,
365 FALSE, NULL, eap))
366 #ifdef FEAT_EVAL
367 return aborting() ? FAIL : OK;
368 #else
369 return OK;
370 #endif
372 curbuf->b_op_start = pos;
374 #endif
376 if ((shortmess(SHM_OVER) || curbuf->b_help) && p_verbose == 0)
377 msg_scroll = FALSE; /* overwrite previous file message */
378 else
379 msg_scroll = TRUE; /* don't overwrite previous file message */
382 * If the name ends in a path separator, we can't open it. Check here,
383 * because reading the file may actually work, but then creating the swap
384 * file may destroy it! Reported on MS-DOS and Win 95.
385 * If the name is too long we might crash further on, quit here.
387 if (fname != NULL && *fname != NUL)
389 p = fname + STRLEN(fname);
390 if (after_pathsep(fname, p) || STRLEN(fname) >= MAXPATHL)
392 filemess(curbuf, fname, (char_u *)_("Illegal file name"), 0);
393 msg_end();
394 msg_scroll = msg_save;
395 return FAIL;
399 #ifdef UNIX
401 * On Unix it is possible to read a directory, so we have to
402 * check for it before the mch_open().
404 if (!read_stdin && !read_buffer)
406 perm = mch_getperm(fname);
407 if (perm >= 0 && !S_ISREG(perm) /* not a regular file ... */
408 # ifdef S_ISFIFO
409 && !S_ISFIFO(perm) /* ... or fifo */
410 # endif
411 # ifdef S_ISSOCK
412 && !S_ISSOCK(perm) /* ... or socket */
413 # endif
414 # ifdef OPEN_CHR_FILES
415 && !(S_ISCHR(perm) && is_dev_fd_file(fname))
416 /* ... or a character special file named /dev/fd/<n> */
417 # endif
420 if (S_ISDIR(perm))
421 filemess(curbuf, fname, (char_u *)_("is a directory"), 0);
422 else
423 filemess(curbuf, fname, (char_u *)_("is not a file"), 0);
424 msg_end();
425 msg_scroll = msg_save;
426 return FAIL;
429 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
431 * MS-Windows allows opening a device, but we will probably get stuck
432 * trying to read it.
434 if (!p_odev && mch_nodetype(fname) == NODE_WRITABLE)
436 filemess(curbuf, fname, (char_u *)_("is a device (disabled with 'opendevice' option)"), 0);
437 msg_end();
438 msg_scroll = msg_save;
439 return FAIL;
441 # endif
443 #endif
445 /* set default 'fileformat' */
446 if (set_options)
448 if (eap != NULL && eap->force_ff != 0)
449 set_fileformat(get_fileformat_force(curbuf, eap), OPT_LOCAL);
450 else if (*p_ffs != NUL)
451 set_fileformat(default_fileformat(), OPT_LOCAL);
454 /* set or reset 'binary' */
455 if (eap != NULL && eap->force_bin != 0)
457 int oldval = curbuf->b_p_bin;
459 curbuf->b_p_bin = (eap->force_bin == FORCE_BIN);
460 set_options_bin(oldval, curbuf->b_p_bin, OPT_LOCAL);
464 * When opening a new file we take the readonly flag from the file.
465 * Default is r/w, can be set to r/o below.
466 * Don't reset it when in readonly mode
467 * Only set/reset b_p_ro when BF_CHECK_RO is set.
469 check_readonly = (newfile && (curbuf->b_flags & BF_CHECK_RO));
470 if (check_readonly && !readonlymode)
471 curbuf->b_p_ro = FALSE;
473 if (newfile && !read_stdin && !read_buffer)
475 /* Remember time of file.
476 * For RISCOS, also remember the filetype.
478 if (mch_stat((char *)fname, &st) >= 0)
480 buf_store_time(curbuf, &st, fname);
481 curbuf->b_mtime_read = curbuf->b_mtime;
483 #if defined(RISCOS) && defined(FEAT_OSFILETYPE)
484 /* Read the filetype into the buffer local filetype option. */
485 mch_read_filetype(fname);
486 #endif
487 #ifdef UNIX
489 * Use the protection bits of the original file for the swap file.
490 * This makes it possible for others to read the name of the
491 * edited file from the swapfile, but only if they can read the
492 * edited file.
493 * Remove the "write" and "execute" bits for group and others
494 * (they must not write the swapfile).
495 * Add the "read" and "write" bits for the user, otherwise we may
496 * not be able to write to the file ourselves.
497 * Setting the bits is done below, after creating the swap file.
499 swap_mode = (st.st_mode & 0644) | 0600;
500 #endif
501 #ifdef FEAT_CW_EDITOR
502 /* Get the FSSpec on MacOS
503 * TODO: Update it properly when the buffer name changes
505 (void)GetFSSpecFromPath(curbuf->b_ffname, &curbuf->b_FSSpec);
506 #endif
507 #ifdef VMS
508 curbuf->b_fab_rfm = st.st_fab_rfm;
509 curbuf->b_fab_rat = st.st_fab_rat;
510 curbuf->b_fab_mrs = st.st_fab_mrs;
511 #endif
513 else
515 curbuf->b_mtime = 0;
516 curbuf->b_mtime_read = 0;
517 curbuf->b_orig_size = 0;
518 curbuf->b_orig_mode = 0;
521 /* Reset the "new file" flag. It will be set again below when the
522 * file doesn't exist. */
523 curbuf->b_flags &= ~(BF_NEW | BF_NEW_W);
527 * for UNIX: check readonly with perm and mch_access()
528 * for RISCOS: same as Unix, otherwise file gets re-datestamped!
529 * for MSDOS and Amiga: check readonly by trying to open the file for writing
531 file_readonly = FALSE;
532 if (read_stdin)
534 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
535 /* Force binary I/O on stdin to avoid CR-LF -> LF conversion. */
536 setmode(0, O_BINARY);
537 #endif
539 else if (!read_buffer)
541 #ifdef USE_MCH_ACCESS
542 if (
543 # ifdef UNIX
544 !(perm & 0222) ||
545 # endif
546 mch_access((char *)fname, W_OK))
547 file_readonly = TRUE;
548 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
549 #else
550 if (!newfile
551 || readonlymode
552 || (fd = mch_open((char *)fname, O_RDWR | O_EXTRA, 0)) < 0)
554 file_readonly = TRUE;
555 /* try to open ro */
556 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
558 #endif
561 if (fd < 0) /* cannot open at all */
563 #ifndef UNIX
564 int isdir_f;
565 #endif
566 msg_scroll = msg_save;
567 #ifndef UNIX
569 * On MSDOS and Amiga we can't open a directory, check here.
571 isdir_f = (mch_isdir(fname));
572 perm = mch_getperm(fname); /* check if the file exists */
573 if (isdir_f)
575 filemess(curbuf, sfname, (char_u *)_("is a directory"), 0);
576 curbuf->b_p_ro = TRUE; /* must use "w!" now */
578 else
579 #endif
580 if (newfile)
582 if (perm < 0)
585 * Set the 'new-file' flag, so that when the file has
586 * been created by someone else, a ":w" will complain.
588 curbuf->b_flags |= BF_NEW;
590 /* Create a swap file now, so that other Vims are warned
591 * that we are editing this file. Don't do this for a
592 * "nofile" or "nowrite" buffer type. */
593 #ifdef FEAT_QUICKFIX
594 if (!bt_dontwrite(curbuf))
595 #endif
596 check_need_swap(newfile);
597 if (dir_of_file_exists(fname))
598 filemess(curbuf, sfname, (char_u *)_("[New File]"), 0);
599 else
600 filemess(curbuf, sfname,
601 (char_u *)_("[New DIRECTORY]"), 0);
602 #ifdef FEAT_VIMINFO
603 /* Even though this is a new file, it might have been
604 * edited before and deleted. Get the old marks. */
605 check_marks_read();
606 #endif
607 #ifdef FEAT_MBYTE
608 if (eap != NULL && eap->force_enc != 0)
610 /* set forced 'fileencoding' */
611 fenc = enc_canonize(eap->cmd + eap->force_enc);
612 if (fenc != NULL)
613 set_string_option_direct((char_u *)"fenc", -1,
614 fenc, OPT_FREE|OPT_LOCAL, 0);
615 vim_free(fenc);
617 #endif
618 #ifdef FEAT_AUTOCMD
619 apply_autocmds_exarg(EVENT_BUFNEWFILE, sfname, sfname,
620 FALSE, curbuf, eap);
621 #endif
622 /* remember the current fileformat */
623 save_file_ff(curbuf);
625 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
626 if (aborting()) /* autocmds may abort script processing */
627 return FAIL;
628 #endif
629 return OK; /* a new file is not an error */
631 else
633 filemess(curbuf, sfname, (char_u *)(
634 # ifdef EFBIG
635 (errno == EFBIG) ? _("[File too big]") :
636 # endif
637 _("[Permission Denied]")), 0);
638 curbuf->b_p_ro = TRUE; /* must use "w!" now */
642 return FAIL;
646 * Only set the 'ro' flag for readonly files the first time they are
647 * loaded. Help files always get readonly mode
649 if ((check_readonly && file_readonly) || curbuf->b_help)
650 curbuf->b_p_ro = TRUE;
652 if (set_options)
654 /* Don't change 'eol' if reading from buffer as it will already be
655 * correctly set when reading stdin. */
656 if (!read_buffer)
658 curbuf->b_p_eol = TRUE;
659 curbuf->b_start_eol = TRUE;
661 #ifdef FEAT_MBYTE
662 curbuf->b_p_bomb = FALSE;
663 curbuf->b_start_bomb = FALSE;
664 #endif
667 /* Create a swap file now, so that other Vims are warned that we are
668 * editing this file.
669 * Don't do this for a "nofile" or "nowrite" buffer type. */
670 #ifdef FEAT_QUICKFIX
671 if (!bt_dontwrite(curbuf))
672 #endif
674 check_need_swap(newfile);
675 #ifdef UNIX
676 /* Set swap file protection bits after creating it. */
677 if (swap_mode > 0 && curbuf->b_ml.ml_mfp->mf_fname != NULL)
678 (void)mch_setperm(curbuf->b_ml.ml_mfp->mf_fname, (long)swap_mode);
679 #endif
682 #if defined(HAS_SWAP_EXISTS_ACTION)
683 /* If "Quit" selected at ATTENTION dialog, don't load the file */
684 if (swap_exists_action == SEA_QUIT)
686 if (!read_buffer && !read_stdin)
687 close(fd);
688 return FAIL;
690 #endif
692 ++no_wait_return; /* don't wait for return yet */
695 * Set '[ mark to the line above where the lines go (line 1 if zero).
697 curbuf->b_op_start.lnum = ((from == 0) ? 1 : from);
698 curbuf->b_op_start.col = 0;
700 #ifdef FEAT_AUTOCMD
701 if (!read_buffer)
703 int m = msg_scroll;
704 int n = msg_scrolled;
705 buf_T *old_curbuf = curbuf;
708 * The file must be closed again, the autocommands may want to change
709 * the file before reading it.
711 if (!read_stdin)
712 close(fd); /* ignore errors */
715 * The output from the autocommands should not overwrite anything and
716 * should not be overwritten: Set msg_scroll, restore its value if no
717 * output was done.
719 msg_scroll = TRUE;
720 if (filtering)
721 apply_autocmds_exarg(EVENT_FILTERREADPRE, NULL, sfname,
722 FALSE, curbuf, eap);
723 else if (read_stdin)
724 apply_autocmds_exarg(EVENT_STDINREADPRE, NULL, sfname,
725 FALSE, curbuf, eap);
726 else if (newfile)
727 apply_autocmds_exarg(EVENT_BUFREADPRE, NULL, sfname,
728 FALSE, curbuf, eap);
729 else
730 apply_autocmds_exarg(EVENT_FILEREADPRE, sfname, sfname,
731 FALSE, NULL, eap);
732 if (msg_scrolled == n)
733 msg_scroll = m;
735 #ifdef FEAT_EVAL
736 if (aborting()) /* autocmds may abort script processing */
738 --no_wait_return;
739 msg_scroll = msg_save;
740 curbuf->b_p_ro = TRUE; /* must use "w!" now */
741 return FAIL;
743 #endif
745 * Don't allow the autocommands to change the current buffer.
746 * Try to re-open the file.
748 if (!read_stdin && (curbuf != old_curbuf
749 || (fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) < 0))
751 --no_wait_return;
752 msg_scroll = msg_save;
753 if (fd < 0)
754 EMSG(_("E200: *ReadPre autocommands made the file unreadable"));
755 else
756 EMSG(_("E201: *ReadPre autocommands must not change current buffer"));
757 curbuf->b_p_ro = TRUE; /* must use "w!" now */
758 return FAIL;
761 #endif /* FEAT_AUTOCMD */
763 /* Autocommands may add lines to the file, need to check if it is empty */
764 wasempty = (curbuf->b_ml.ml_flags & ML_EMPTY);
766 if (!recoverymode && !filtering && !(flags & READ_DUMMY))
769 * Show the user that we are busy reading the input. Sometimes this
770 * may take a while. When reading from stdin another program may
771 * still be running, don't move the cursor to the last line, unless
772 * always using the GUI.
774 if (read_stdin)
776 #ifndef ALWAYS_USE_GUI
777 mch_msg(_("Vim: Reading from stdin...\n"));
778 #endif
779 #ifdef FEAT_GUI
780 /* Also write a message in the GUI window, if there is one. */
781 if (gui.in_use && !gui.dying && !gui.starting)
783 p = (char_u *)_("Reading from stdin...");
784 gui_write(p, (int)STRLEN(p));
786 #endif
788 else if (!read_buffer)
789 filemess(curbuf, sfname, (char_u *)"", 0);
792 msg_scroll = FALSE; /* overwrite the file message */
795 * Set linecnt now, before the "retry" caused by a wrong guess for
796 * fileformat, and after the autocommands, which may change them.
798 linecnt = curbuf->b_ml.ml_line_count;
800 #ifdef FEAT_MBYTE
801 /* "++bad=" argument. */
802 if (eap != NULL && eap->bad_char != 0)
804 bad_char_behavior = eap->bad_char;
805 if (set_options)
806 curbuf->b_bad_char = eap->bad_char;
808 else
809 curbuf->b_bad_char = 0;
812 * Decide which 'encoding' to use or use first.
814 if (eap != NULL && eap->force_enc != 0)
816 fenc = enc_canonize(eap->cmd + eap->force_enc);
817 fenc_alloced = TRUE;
818 keep_dest_enc = TRUE;
820 else if (curbuf->b_p_bin)
822 fenc = (char_u *)""; /* binary: don't convert */
823 fenc_alloced = FALSE;
825 else if (curbuf->b_help)
827 char_u firstline[80];
828 int fc;
830 /* Help files are either utf-8 or latin1. Try utf-8 first, if this
831 * fails it must be latin1.
832 * Always do this when 'encoding' is "utf-8". Otherwise only do
833 * this when needed to avoid [converted] remarks all the time.
834 * It is needed when the first line contains non-ASCII characters.
835 * That is only in *.??x files. */
836 fenc = (char_u *)"latin1";
837 c = enc_utf8;
838 if (!c && !read_stdin)
840 fc = fname[STRLEN(fname) - 1];
841 if (TOLOWER_ASC(fc) == 'x')
843 /* Read the first line (and a bit more). Immediately rewind to
844 * the start of the file. If the read() fails "len" is -1. */
845 len = vim_read(fd, firstline, 80);
846 lseek(fd, (off_t)0L, SEEK_SET);
847 for (p = firstline; p < firstline + len; ++p)
848 if (*p >= 0x80)
850 c = TRUE;
851 break;
856 if (c)
858 fenc_next = fenc;
859 fenc = (char_u *)"utf-8";
861 /* When the file is utf-8 but a character doesn't fit in
862 * 'encoding' don't retry. In help text editing utf-8 bytes
863 * doesn't make sense. */
864 if (!enc_utf8)
865 keep_dest_enc = TRUE;
867 fenc_alloced = FALSE;
869 else if (*p_fencs == NUL)
871 fenc = curbuf->b_p_fenc; /* use format from buffer */
872 fenc_alloced = FALSE;
874 else
876 fenc_next = p_fencs; /* try items in 'fileencodings' */
877 fenc = next_fenc(&fenc_next);
878 fenc_alloced = TRUE;
880 #endif
883 * Jump back here to retry reading the file in different ways.
884 * Reasons to retry:
885 * - encoding conversion failed: try another one from "fenc_next"
886 * - BOM detected and fenc was set, need to setup conversion
887 * - "fileformat" check failed: try another
889 * Variables set for special retry actions:
890 * "file_rewind" Rewind the file to start reading it again.
891 * "advance_fenc" Advance "fenc" using "fenc_next".
892 * "skip_read" Re-use already read bytes (BOM detected).
893 * "did_iconv" iconv() conversion failed, try 'charconvert'.
894 * "keep_fileformat" Don't reset "fileformat".
896 * Other status indicators:
897 * "tmpname" When != NULL did conversion with 'charconvert'.
898 * Output file has to be deleted afterwards.
899 * "iconv_fd" When != -1 did conversion with iconv().
901 retry:
903 if (file_rewind)
905 if (read_buffer)
907 read_buf_lnum = 1;
908 read_buf_col = 0;
910 else if (read_stdin || lseek(fd, (off_t)0L, SEEK_SET) != 0)
912 /* Can't rewind the file, give up. */
913 error = TRUE;
914 goto failed;
916 /* Delete the previously read lines. */
917 while (lnum > from)
918 ml_delete(lnum--, FALSE);
919 file_rewind = FALSE;
920 #ifdef FEAT_MBYTE
921 if (set_options)
923 curbuf->b_p_bomb = FALSE;
924 curbuf->b_start_bomb = FALSE;
926 conv_error = 0;
927 #endif
931 * When retrying with another "fenc" and the first time "fileformat"
932 * will be reset.
934 if (keep_fileformat)
935 keep_fileformat = FALSE;
936 else
938 if (eap != NULL && eap->force_ff != 0)
939 fileformat = get_fileformat_force(curbuf, eap);
940 else if (curbuf->b_p_bin)
941 fileformat = EOL_UNIX; /* binary: use Unix format */
942 else if (*p_ffs == NUL)
943 fileformat = get_fileformat(curbuf);/* use format from buffer */
944 else
945 fileformat = EOL_UNKNOWN; /* detect from file */
948 #ifdef FEAT_MBYTE
949 # ifdef USE_ICONV
950 if (iconv_fd != (iconv_t)-1)
952 /* aborted conversion with iconv(), close the descriptor */
953 iconv_close(iconv_fd);
954 iconv_fd = (iconv_t)-1;
956 # endif
958 if (advance_fenc)
961 * Try the next entry in 'fileencodings'.
963 advance_fenc = FALSE;
965 if (eap != NULL && eap->force_enc != 0)
967 /* Conversion given with "++cc=" wasn't possible, read
968 * without conversion. */
969 notconverted = TRUE;
970 conv_error = 0;
971 if (fenc_alloced)
972 vim_free(fenc);
973 fenc = (char_u *)"";
974 fenc_alloced = FALSE;
976 else
978 if (fenc_alloced)
979 vim_free(fenc);
980 if (fenc_next != NULL)
982 fenc = next_fenc(&fenc_next);
983 fenc_alloced = (fenc_next != NULL);
985 else
987 fenc = (char_u *)"";
988 fenc_alloced = FALSE;
991 if (tmpname != NULL)
993 mch_remove(tmpname); /* delete converted file */
994 vim_free(tmpname);
995 tmpname = NULL;
1000 * Conversion is required when the encoding of the file is different
1001 * from 'encoding' or 'encoding' is UTF-16, UCS-2 or UCS-4 (requires
1002 * conversion to UTF-8).
1004 fio_flags = 0;
1005 converted = (*fenc != NUL && !same_encoding(p_enc, fenc));
1006 if (converted || enc_unicode != 0)
1009 /* "ucs-bom" means we need to check the first bytes of the file
1010 * for a BOM. */
1011 if (STRCMP(fenc, ENC_UCSBOM) == 0)
1012 fio_flags = FIO_UCSBOM;
1015 * Check if UCS-2/4 or Latin1 to UTF-8 conversion needs to be
1016 * done. This is handled below after read(). Prepare the
1017 * fio_flags to avoid having to parse the string each time.
1018 * Also check for Unicode to Latin1 conversion, because iconv()
1019 * appears not to handle this correctly. This works just like
1020 * conversion to UTF-8 except how the resulting character is put in
1021 * the buffer.
1023 else if (enc_utf8 || STRCMP(p_enc, "latin1") == 0)
1024 fio_flags = get_fio_flags(fenc);
1026 # ifdef WIN3264
1028 * Conversion from an MS-Windows codepage to UTF-8 or another codepage
1029 * is handled with MultiByteToWideChar().
1031 if (fio_flags == 0)
1032 fio_flags = get_win_fio_flags(fenc);
1033 # endif
1035 # ifdef MACOS_X
1036 /* Conversion from Apple MacRoman to latin1 or UTF-8 */
1037 if (fio_flags == 0)
1038 fio_flags = get_mac_fio_flags(fenc);
1039 # endif
1041 # ifdef USE_ICONV
1043 * Try using iconv() if we can't convert internally.
1045 if (fio_flags == 0
1046 # ifdef FEAT_EVAL
1047 && !did_iconv
1048 # endif
1050 iconv_fd = (iconv_t)my_iconv_open(
1051 enc_utf8 ? (char_u *)"utf-8" : p_enc, fenc);
1052 # endif
1054 # ifdef FEAT_EVAL
1056 * Use the 'charconvert' expression when conversion is required
1057 * and we can't do it internally or with iconv().
1059 if (fio_flags == 0 && !read_stdin && !read_buffer && *p_ccv != NUL
1060 # ifdef USE_ICONV
1061 && iconv_fd == (iconv_t)-1
1062 # endif
1065 # ifdef USE_ICONV
1066 did_iconv = FALSE;
1067 # endif
1068 /* Skip conversion when it's already done (retry for wrong
1069 * "fileformat"). */
1070 if (tmpname == NULL)
1072 tmpname = readfile_charconvert(fname, fenc, &fd);
1073 if (tmpname == NULL)
1075 /* Conversion failed. Try another one. */
1076 advance_fenc = TRUE;
1077 if (fd < 0)
1079 /* Re-opening the original file failed! */
1080 EMSG(_("E202: Conversion made file unreadable!"));
1081 error = TRUE;
1082 goto failed;
1084 goto retry;
1088 else
1089 # endif
1091 if (fio_flags == 0
1092 # ifdef USE_ICONV
1093 && iconv_fd == (iconv_t)-1
1094 # endif
1097 /* Conversion wanted but we can't.
1098 * Try the next conversion in 'fileencodings' */
1099 advance_fenc = TRUE;
1100 goto retry;
1105 /* Set "can_retry" when it's possible to rewind the file and try with
1106 * another "fenc" value. It's FALSE when no other "fenc" to try, reading
1107 * stdin or fixed at a specific encoding. */
1108 can_retry = (*fenc != NUL && !read_stdin && !keep_dest_enc);
1109 #endif
1111 if (!skip_read)
1113 linerest = 0;
1114 filesize = 0;
1115 skip_count = lines_to_skip;
1116 read_count = lines_to_read;
1117 #ifdef FEAT_MBYTE
1118 conv_restlen = 0;
1119 #endif
1122 while (!error && !got_int)
1125 * We allocate as much space for the file as we can get, plus
1126 * space for the old line plus room for one terminating NUL.
1127 * The amount is limited by the fact that read() only can read
1128 * upto max_unsigned characters (and other things).
1130 #if SIZEOF_INT <= 2
1131 if (linerest >= 0x7ff0)
1133 ++split;
1134 *ptr = NL; /* split line by inserting a NL */
1135 size = 1;
1137 else
1138 #endif
1140 if (!skip_read)
1142 #if SIZEOF_INT > 2
1143 # if defined(SSIZE_MAX) && (SSIZE_MAX < 0x10000L)
1144 size = SSIZE_MAX; /* use max I/O size, 52K */
1145 # else
1146 size = 0x10000L; /* use buffer >= 64K */
1147 # endif
1148 #else
1149 size = 0x7ff0L - linerest; /* limit buffer to 32K */
1150 #endif
1152 for ( ; size >= 10; size = (long)((long_u)size >> 1))
1154 if ((new_buffer = lalloc((long_u)(size + linerest + 1),
1155 FALSE)) != NULL)
1156 break;
1158 if (new_buffer == NULL)
1160 do_outofmem_msg((long_u)(size * 2 + linerest + 1));
1161 error = TRUE;
1162 break;
1164 if (linerest) /* copy characters from the previous buffer */
1165 mch_memmove(new_buffer, ptr - linerest, (size_t)linerest);
1166 vim_free(buffer);
1167 buffer = new_buffer;
1168 ptr = buffer + linerest;
1169 line_start = buffer;
1171 #ifdef FEAT_MBYTE
1172 /* May need room to translate into.
1173 * For iconv() we don't really know the required space, use a
1174 * factor ICONV_MULT.
1175 * latin1 to utf-8: 1 byte becomes up to 2 bytes
1176 * utf-16 to utf-8: 2 bytes become up to 3 bytes, 4 bytes
1177 * become up to 4 bytes, size must be multiple of 2
1178 * ucs-2 to utf-8: 2 bytes become up to 3 bytes, size must be
1179 * multiple of 2
1180 * ucs-4 to utf-8: 4 bytes become up to 6 bytes, size must be
1181 * multiple of 4 */
1182 real_size = (int)size;
1183 # ifdef USE_ICONV
1184 if (iconv_fd != (iconv_t)-1)
1185 size = size / ICONV_MULT;
1186 else
1187 # endif
1188 if (fio_flags & FIO_LATIN1)
1189 size = size / 2;
1190 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1191 size = (size * 2 / 3) & ~1;
1192 else if (fio_flags & FIO_UCS4)
1193 size = (size * 2 / 3) & ~3;
1194 else if (fio_flags == FIO_UCSBOM)
1195 size = size / ICONV_MULT; /* worst case */
1196 # ifdef WIN3264
1197 else if (fio_flags & FIO_CODEPAGE)
1198 size = size / ICONV_MULT; /* also worst case */
1199 # endif
1200 # ifdef MACOS_X
1201 else if (fio_flags & FIO_MACROMAN)
1202 size = size / ICONV_MULT; /* also worst case */
1203 # endif
1204 #endif
1206 #ifdef FEAT_MBYTE
1207 if (conv_restlen > 0)
1209 /* Insert unconverted bytes from previous line. */
1210 mch_memmove(ptr, conv_rest, conv_restlen);
1211 ptr += conv_restlen;
1212 size -= conv_restlen;
1214 #endif
1216 if (read_buffer)
1219 * Read bytes from curbuf. Used for converting text read
1220 * from stdin.
1222 if (read_buf_lnum > from)
1223 size = 0;
1224 else
1226 int n, ni;
1227 long tlen;
1229 tlen = 0;
1230 for (;;)
1232 p = ml_get(read_buf_lnum) + read_buf_col;
1233 n = (int)STRLEN(p);
1234 if ((int)tlen + n + 1 > size)
1236 /* Filled up to "size", append partial line.
1237 * Change NL to NUL to reverse the effect done
1238 * below. */
1239 n = (int)(size - tlen);
1240 for (ni = 0; ni < n; ++ni)
1242 if (p[ni] == NL)
1243 ptr[tlen++] = NUL;
1244 else
1245 ptr[tlen++] = p[ni];
1247 read_buf_col += n;
1248 break;
1250 else
1252 /* Append whole line and new-line. Change NL
1253 * to NUL to reverse the effect done below. */
1254 for (ni = 0; ni < n; ++ni)
1256 if (p[ni] == NL)
1257 ptr[tlen++] = NUL;
1258 else
1259 ptr[tlen++] = p[ni];
1261 ptr[tlen++] = NL;
1262 read_buf_col = 0;
1263 if (++read_buf_lnum > from)
1265 /* When the last line didn't have an
1266 * end-of-line don't add it now either. */
1267 if (!curbuf->b_p_eol)
1268 --tlen;
1269 size = tlen;
1270 break;
1276 else
1279 * Read bytes from the file.
1281 size = vim_read(fd, ptr, size);
1284 if (size <= 0)
1286 if (size < 0) /* read error */
1287 error = TRUE;
1288 #ifdef FEAT_MBYTE
1289 else if (conv_restlen > 0)
1291 /* Reached end-of-file but some trailing bytes could
1292 * not be converted. Truncated file? */
1293 if (conv_error == 0)
1294 conv_error = linecnt;
1295 if (bad_char_behavior != BAD_DROP)
1297 fio_flags = 0; /* don't convert this */
1298 # ifdef USE_ICONV
1299 if (iconv_fd != (iconv_t)-1)
1301 iconv_close(iconv_fd);
1302 iconv_fd = (iconv_t)-1;
1304 # endif
1305 if (bad_char_behavior == BAD_KEEP)
1307 /* Keep the trailing bytes as-is. */
1308 size = conv_restlen;
1309 ptr -= conv_restlen;
1311 else
1313 /* Replace the trailing bytes with the
1314 * replacement character. */
1315 size = 1;
1316 *--ptr = bad_char_behavior;
1318 conv_restlen = 0;
1321 #endif
1324 #ifdef FEAT_CRYPT
1326 * At start of file: Check for magic number of encryption.
1328 if (filesize == 0)
1329 cryptkey = check_for_cryptkey(cryptkey, ptr, &size,
1330 &filesize, newfile);
1332 * Decrypt the read bytes.
1334 if (cryptkey != NULL && size > 0)
1335 for (p = ptr; p < ptr + size; ++p)
1336 ZDECODE(*p);
1337 #endif
1339 skip_read = FALSE;
1341 #ifdef FEAT_MBYTE
1343 * At start of file (or after crypt magic number): Check for BOM.
1344 * Also check for a BOM for other Unicode encodings, but not after
1345 * converting with 'charconvert' or when a BOM has already been
1346 * found.
1348 if ((filesize == 0
1349 # ifdef FEAT_CRYPT
1350 || (filesize == CRYPT_MAGIC_LEN && cryptkey != NULL)
1351 # endif
1353 && (fio_flags == FIO_UCSBOM
1354 || (!curbuf->b_p_bomb
1355 && tmpname == NULL
1356 && (*fenc == 'u' || (*fenc == NUL && enc_utf8)))))
1358 char_u *ccname;
1359 int blen;
1361 /* no BOM detection in a short file or in binary mode */
1362 if (size < 2 || curbuf->b_p_bin)
1363 ccname = NULL;
1364 else
1365 ccname = check_for_bom(ptr, size, &blen,
1366 fio_flags == FIO_UCSBOM ? FIO_ALL : get_fio_flags(fenc));
1367 if (ccname != NULL)
1369 /* Remove BOM from the text */
1370 filesize += blen;
1371 size -= blen;
1372 mch_memmove(ptr, ptr + blen, (size_t)size);
1373 if (set_options)
1375 curbuf->b_p_bomb = TRUE;
1376 curbuf->b_start_bomb = TRUE;
1380 if (fio_flags == FIO_UCSBOM)
1382 if (ccname == NULL)
1384 /* No BOM detected: retry with next encoding. */
1385 advance_fenc = TRUE;
1387 else
1389 /* BOM detected: set "fenc" and jump back */
1390 if (fenc_alloced)
1391 vim_free(fenc);
1392 fenc = ccname;
1393 fenc_alloced = FALSE;
1395 /* retry reading without getting new bytes or rewinding */
1396 skip_read = TRUE;
1397 goto retry;
1400 #endif
1402 * Break here for a read error or end-of-file.
1404 if (size <= 0)
1405 break;
1407 #ifdef FEAT_MBYTE
1409 /* Include not converted bytes. */
1410 ptr -= conv_restlen;
1411 size += conv_restlen;
1412 conv_restlen = 0;
1414 # ifdef USE_ICONV
1415 if (iconv_fd != (iconv_t)-1)
1418 * Attempt conversion of the read bytes to 'encoding' using
1419 * iconv().
1421 const char *fromp;
1422 char *top;
1423 size_t from_size;
1424 size_t to_size;
1426 fromp = (char *)ptr;
1427 from_size = size;
1428 ptr += size;
1429 top = (char *)ptr;
1430 to_size = real_size - size;
1433 * If there is conversion error or not enough room try using
1434 * another conversion. Except for when there is no
1435 * alternative (help files).
1437 while ((iconv(iconv_fd, (void *)&fromp, &from_size,
1438 &top, &to_size)
1439 == (size_t)-1 && ICONV_ERRNO != ICONV_EINVAL)
1440 || from_size > CONV_RESTLEN)
1442 if (can_retry)
1443 goto rewind_retry;
1444 if (conv_error == 0)
1445 conv_error = readfile_linenr(linecnt,
1446 ptr, (char_u *)top);
1448 /* Deal with a bad byte and continue with the next. */
1449 ++fromp;
1450 --from_size;
1451 if (bad_char_behavior == BAD_KEEP)
1453 *top++ = *(fromp - 1);
1454 --to_size;
1456 else if (bad_char_behavior != BAD_DROP)
1458 *top++ = bad_char_behavior;
1459 --to_size;
1463 if (from_size > 0)
1465 /* Some remaining characters, keep them for the next
1466 * round. */
1467 mch_memmove(conv_rest, (char_u *)fromp, from_size);
1468 conv_restlen = (int)from_size;
1471 /* move the linerest to before the converted characters */
1472 line_start = ptr - linerest;
1473 mch_memmove(line_start, buffer, (size_t)linerest);
1474 size = (long)((char_u *)top - ptr);
1476 # endif
1478 # ifdef WIN3264
1479 if (fio_flags & FIO_CODEPAGE)
1481 char_u *src, *dst;
1482 WCHAR ucs2buf[3];
1483 int ucs2len;
1484 int codepage = FIO_GET_CP(fio_flags);
1485 int bytelen;
1486 int found_bad;
1487 char replstr[2];
1490 * Conversion from an MS-Windows codepage or UTF-8 to UTF-8 or
1491 * a codepage, using standard MS-Windows functions. This
1492 * requires two steps:
1493 * 1. convert from 'fileencoding' to ucs-2
1494 * 2. convert from ucs-2 to 'encoding'
1496 * Because there may be illegal bytes AND an incomplete byte
1497 * sequence at the end, we may have to do the conversion one
1498 * character at a time to get it right.
1501 /* Replacement string for WideCharToMultiByte(). */
1502 if (bad_char_behavior > 0)
1503 replstr[0] = bad_char_behavior;
1504 else
1505 replstr[0] = '?';
1506 replstr[1] = NUL;
1509 * Move the bytes to the end of the buffer, so that we have
1510 * room to put the result at the start.
1512 src = ptr + real_size - size;
1513 mch_memmove(src, ptr, size);
1516 * Do the conversion.
1518 dst = ptr;
1519 size = size;
1520 while (size > 0)
1522 found_bad = FALSE;
1524 # ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
1525 if (codepage == CP_UTF8)
1527 /* Handle CP_UTF8 input ourselves to be able to handle
1528 * trailing bytes properly.
1529 * Get one UTF-8 character from src. */
1530 bytelen = (int)utf_ptr2len_len(src, size);
1531 if (bytelen > size)
1533 /* Only got some bytes of a character. Normally
1534 * it's put in "conv_rest", but if it's too long
1535 * deal with it as if they were illegal bytes. */
1536 if (bytelen <= CONV_RESTLEN)
1537 break;
1539 /* weird overlong byte sequence */
1540 bytelen = size;
1541 found_bad = TRUE;
1543 else
1545 int u8c = utf_ptr2char(src);
1547 if (u8c > 0xffff || (*src >= 0x80 && bytelen == 1))
1548 found_bad = TRUE;
1549 ucs2buf[0] = u8c;
1550 ucs2len = 1;
1553 else
1554 # endif
1556 /* We don't know how long the byte sequence is, try
1557 * from one to three bytes. */
1558 for (bytelen = 1; bytelen <= size && bytelen <= 3;
1559 ++bytelen)
1561 ucs2len = MultiByteToWideChar(codepage,
1562 MB_ERR_INVALID_CHARS,
1563 (LPCSTR)src, bytelen,
1564 ucs2buf, 3);
1565 if (ucs2len > 0)
1566 break;
1568 if (ucs2len == 0)
1570 /* If we have only one byte then it's probably an
1571 * incomplete byte sequence. Otherwise discard
1572 * one byte as a bad character. */
1573 if (size == 1)
1574 break;
1575 found_bad = TRUE;
1576 bytelen = 1;
1580 if (!found_bad)
1582 int i;
1584 /* Convert "ucs2buf[ucs2len]" to 'enc' in "dst". */
1585 if (enc_utf8)
1587 /* From UCS-2 to UTF-8. Cannot fail. */
1588 for (i = 0; i < ucs2len; ++i)
1589 dst += utf_char2bytes(ucs2buf[i], dst);
1591 else
1593 BOOL bad = FALSE;
1594 int dstlen;
1596 /* From UCS-2 to "enc_codepage". If the
1597 * conversion uses the default character "?",
1598 * the data doesn't fit in this encoding. */
1599 dstlen = WideCharToMultiByte(enc_codepage, 0,
1600 (LPCWSTR)ucs2buf, ucs2len,
1601 (LPSTR)dst, (int)(src - dst),
1602 replstr, &bad);
1603 if (bad)
1604 found_bad = TRUE;
1605 else
1606 dst += dstlen;
1610 if (found_bad)
1612 /* Deal with bytes we can't convert. */
1613 if (can_retry)
1614 goto rewind_retry;
1615 if (conv_error == 0)
1616 conv_error = readfile_linenr(linecnt, ptr, dst);
1617 if (bad_char_behavior != BAD_DROP)
1619 if (bad_char_behavior == BAD_KEEP)
1621 mch_memmove(dst, src, bytelen);
1622 dst += bytelen;
1624 else
1625 *dst++ = bad_char_behavior;
1629 src += bytelen;
1630 size -= bytelen;
1633 if (size > 0)
1635 /* An incomplete byte sequence remaining. */
1636 mch_memmove(conv_rest, src, size);
1637 conv_restlen = size;
1640 /* The new size is equal to how much "dst" was advanced. */
1641 size = (long)(dst - ptr);
1643 else
1644 # endif
1645 # ifdef MACOS_CONVERT
1646 if (fio_flags & FIO_MACROMAN)
1649 * Conversion from Apple MacRoman char encoding to UTF-8 or
1650 * latin1. This is in os_mac_conv.c.
1652 if (macroman2enc(ptr, &size, real_size) == FAIL)
1653 goto rewind_retry;
1655 else
1656 # endif
1657 if (fio_flags != 0)
1659 int u8c;
1660 char_u *dest;
1661 char_u *tail = NULL;
1664 * "enc_utf8" set: Convert Unicode or Latin1 to UTF-8.
1665 * "enc_utf8" not set: Convert Unicode to Latin1.
1666 * Go from end to start through the buffer, because the number
1667 * of bytes may increase.
1668 * "dest" points to after where the UTF-8 bytes go, "p" points
1669 * to after the next character to convert.
1671 dest = ptr + real_size;
1672 if (fio_flags == FIO_LATIN1 || fio_flags == FIO_UTF8)
1674 p = ptr + size;
1675 if (fio_flags == FIO_UTF8)
1677 /* Check for a trailing incomplete UTF-8 sequence */
1678 tail = ptr + size - 1;
1679 while (tail > ptr && (*tail & 0xc0) == 0x80)
1680 --tail;
1681 if (tail + utf_byte2len(*tail) <= ptr + size)
1682 tail = NULL;
1683 else
1684 p = tail;
1687 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1689 /* Check for a trailing byte */
1690 p = ptr + (size & ~1);
1691 if (size & 1)
1692 tail = p;
1693 if ((fio_flags & FIO_UTF16) && p > ptr)
1695 /* Check for a trailing leading word */
1696 if (fio_flags & FIO_ENDIAN_L)
1698 u8c = (*--p << 8);
1699 u8c += *--p;
1701 else
1703 u8c = *--p;
1704 u8c += (*--p << 8);
1706 if (u8c >= 0xd800 && u8c <= 0xdbff)
1707 tail = p;
1708 else
1709 p += 2;
1712 else /* FIO_UCS4 */
1714 /* Check for trailing 1, 2 or 3 bytes */
1715 p = ptr + (size & ~3);
1716 if (size & 3)
1717 tail = p;
1720 /* If there is a trailing incomplete sequence move it to
1721 * conv_rest[]. */
1722 if (tail != NULL)
1724 conv_restlen = (int)((ptr + size) - tail);
1725 mch_memmove(conv_rest, (char_u *)tail, conv_restlen);
1726 size -= conv_restlen;
1730 while (p > ptr)
1732 if (fio_flags & FIO_LATIN1)
1733 u8c = *--p;
1734 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1736 if (fio_flags & FIO_ENDIAN_L)
1738 u8c = (*--p << 8);
1739 u8c += *--p;
1741 else
1743 u8c = *--p;
1744 u8c += (*--p << 8);
1746 if ((fio_flags & FIO_UTF16)
1747 && u8c >= 0xdc00 && u8c <= 0xdfff)
1749 int u16c;
1751 if (p == ptr)
1753 /* Missing leading word. */
1754 if (can_retry)
1755 goto rewind_retry;
1756 if (conv_error == 0)
1757 conv_error = readfile_linenr(linecnt,
1758 ptr, p);
1759 if (bad_char_behavior == BAD_DROP)
1760 continue;
1761 if (bad_char_behavior != BAD_KEEP)
1762 u8c = bad_char_behavior;
1765 /* found second word of double-word, get the first
1766 * word and compute the resulting character */
1767 if (fio_flags & FIO_ENDIAN_L)
1769 u16c = (*--p << 8);
1770 u16c += *--p;
1772 else
1774 u16c = *--p;
1775 u16c += (*--p << 8);
1777 u8c = 0x10000 + ((u16c & 0x3ff) << 10)
1778 + (u8c & 0x3ff);
1780 /* Check if the word is indeed a leading word. */
1781 if (u16c < 0xd800 || u16c > 0xdbff)
1783 if (can_retry)
1784 goto rewind_retry;
1785 if (conv_error == 0)
1786 conv_error = readfile_linenr(linecnt,
1787 ptr, p);
1788 if (bad_char_behavior == BAD_DROP)
1789 continue;
1790 if (bad_char_behavior != BAD_KEEP)
1791 u8c = bad_char_behavior;
1795 else if (fio_flags & FIO_UCS4)
1797 if (fio_flags & FIO_ENDIAN_L)
1799 u8c = (*--p << 24);
1800 u8c += (*--p << 16);
1801 u8c += (*--p << 8);
1802 u8c += *--p;
1804 else /* big endian */
1806 u8c = *--p;
1807 u8c += (*--p << 8);
1808 u8c += (*--p << 16);
1809 u8c += (*--p << 24);
1812 else /* UTF-8 */
1814 if (*--p < 0x80)
1815 u8c = *p;
1816 else
1818 len = utf_head_off(ptr, p);
1819 p -= len;
1820 u8c = utf_ptr2char(p);
1821 if (len == 0)
1823 /* Not a valid UTF-8 character, retry with
1824 * another fenc when possible, otherwise just
1825 * report the error. */
1826 if (can_retry)
1827 goto rewind_retry;
1828 if (conv_error == 0)
1829 conv_error = readfile_linenr(linecnt,
1830 ptr, p);
1831 if (bad_char_behavior == BAD_DROP)
1832 continue;
1833 if (bad_char_behavior != BAD_KEEP)
1834 u8c = bad_char_behavior;
1838 if (enc_utf8) /* produce UTF-8 */
1840 dest -= utf_char2len(u8c);
1841 (void)utf_char2bytes(u8c, dest);
1843 else /* produce Latin1 */
1845 --dest;
1846 if (u8c >= 0x100)
1848 /* character doesn't fit in latin1, retry with
1849 * another fenc when possible, otherwise just
1850 * report the error. */
1851 if (can_retry)
1852 goto rewind_retry;
1853 if (conv_error == 0)
1854 conv_error = readfile_linenr(linecnt, ptr, p);
1855 if (bad_char_behavior == BAD_DROP)
1856 ++dest;
1857 else if (bad_char_behavior == BAD_KEEP)
1858 *dest = u8c;
1859 else if (eap != NULL && eap->bad_char != 0)
1860 *dest = bad_char_behavior;
1861 else
1862 *dest = 0xBF;
1864 else
1865 *dest = u8c;
1869 /* move the linerest to before the converted characters */
1870 line_start = dest - linerest;
1871 mch_memmove(line_start, buffer, (size_t)linerest);
1872 size = (long)((ptr + real_size) - dest);
1873 ptr = dest;
1875 else if (enc_utf8 && conv_error == 0 && !curbuf->b_p_bin)
1877 /* Reading UTF-8: Check if the bytes are valid UTF-8.
1878 * Need to start before "ptr" when part of the character was
1879 * read in the previous read() call. */
1880 for (p = ptr - utf_head_off(buffer, ptr); ; ++p)
1882 int todo = (int)((ptr + size) - p);
1883 int l;
1885 if (todo <= 0)
1886 break;
1887 if (*p >= 0x80)
1889 /* A length of 1 means it's an illegal byte. Accept
1890 * an incomplete character at the end though, the next
1891 * read() will get the next bytes, we'll check it
1892 * then. */
1893 l = utf_ptr2len_len(p, todo);
1894 if (l > todo)
1896 /* Incomplete byte sequence, the next read()
1897 * should get them and check the bytes. */
1898 p += todo;
1899 break;
1901 if (l == 1)
1903 /* Illegal byte. If we can try another encoding
1904 * do that. */
1905 if (can_retry)
1906 break;
1908 /* Remember the first linenr with an illegal byte */
1909 if (illegal_byte == 0)
1910 illegal_byte = readfile_linenr(linecnt, ptr, p);
1911 # ifdef USE_ICONV
1912 /* When we did a conversion report an error. */
1913 if (iconv_fd != (iconv_t)-1 && conv_error == 0)
1914 conv_error = readfile_linenr(linecnt, ptr, p);
1915 # endif
1917 /* Drop, keep or replace the bad byte. */
1918 if (bad_char_behavior == BAD_DROP)
1920 mch_memmove(p, p+1, todo - 1);
1921 --p;
1922 --size;
1924 else if (bad_char_behavior != BAD_KEEP)
1925 *p = bad_char_behavior;
1927 p += l - 1;
1930 if (p < ptr + size)
1932 /* Detected a UTF-8 error. */
1933 rewind_retry:
1934 /* Retry reading with another conversion. */
1935 # if defined(FEAT_EVAL) && defined(USE_ICONV)
1936 if (*p_ccv != NUL && iconv_fd != (iconv_t)-1)
1937 /* iconv() failed, try 'charconvert' */
1938 did_iconv = TRUE;
1939 else
1940 # endif
1941 /* use next item from 'fileencodings' */
1942 advance_fenc = TRUE;
1943 file_rewind = TRUE;
1944 goto retry;
1947 #endif
1949 /* count the number of characters (after conversion!) */
1950 filesize += size;
1953 * when reading the first part of a file: guess EOL type
1955 if (fileformat == EOL_UNKNOWN)
1957 /* First try finding a NL, for Dos and Unix */
1958 if (try_dos || try_unix)
1960 for (p = ptr; p < ptr + size; ++p)
1962 if (*p == NL)
1964 if (!try_unix
1965 || (try_dos && p > ptr && p[-1] == CAR))
1966 fileformat = EOL_DOS;
1967 else
1968 fileformat = EOL_UNIX;
1969 break;
1973 /* Don't give in to EOL_UNIX if EOL_MAC is more likely */
1974 if (fileformat == EOL_UNIX && try_mac)
1976 /* Need to reset the counters when retrying fenc. */
1977 try_mac = 1;
1978 try_unix = 1;
1979 for (; p >= ptr && *p != CAR; p--)
1981 if (p >= ptr)
1983 for (p = ptr; p < ptr + size; ++p)
1985 if (*p == NL)
1986 try_unix++;
1987 else if (*p == CAR)
1988 try_mac++;
1990 if (try_mac > try_unix)
1991 fileformat = EOL_MAC;
1996 /* No NL found: may use Mac format */
1997 if (fileformat == EOL_UNKNOWN && try_mac)
1998 fileformat = EOL_MAC;
2000 /* Still nothing found? Use first format in 'ffs' */
2001 if (fileformat == EOL_UNKNOWN)
2002 fileformat = default_fileformat();
2004 /* if editing a new file: may set p_tx and p_ff */
2005 if (set_options)
2006 set_fileformat(fileformat, OPT_LOCAL);
2011 * This loop is executed once for every character read.
2012 * Keep it fast!
2014 if (fileformat == EOL_MAC)
2016 --ptr;
2017 while (++ptr, --size >= 0)
2019 /* catch most common case first */
2020 if ((c = *ptr) != NUL && c != CAR && c != NL)
2021 continue;
2022 if (c == NUL)
2023 *ptr = NL; /* NULs are replaced by newlines! */
2024 else if (c == NL)
2025 *ptr = CAR; /* NLs are replaced by CRs! */
2026 else
2028 if (skip_count == 0)
2030 *ptr = NUL; /* end of line */
2031 len = (colnr_T) (ptr - line_start + 1);
2032 if (ml_append(lnum, line_start, len, newfile) == FAIL)
2034 error = TRUE;
2035 break;
2037 ++lnum;
2038 if (--read_count == 0)
2040 error = TRUE; /* break loop */
2041 line_start = ptr; /* nothing left to write */
2042 break;
2045 else
2046 --skip_count;
2047 line_start = ptr + 1;
2051 else
2053 --ptr;
2054 while (++ptr, --size >= 0)
2056 if ((c = *ptr) != NUL && c != NL) /* catch most common case */
2057 continue;
2058 if (c == NUL)
2059 *ptr = NL; /* NULs are replaced by newlines! */
2060 else
2062 if (skip_count == 0)
2064 *ptr = NUL; /* end of line */
2065 len = (colnr_T)(ptr - line_start + 1);
2066 if (fileformat == EOL_DOS)
2068 if (ptr[-1] == CAR) /* remove CR */
2070 ptr[-1] = NUL;
2071 --len;
2074 * Reading in Dos format, but no CR-LF found!
2075 * When 'fileformats' includes "unix", delete all
2076 * the lines read so far and start all over again.
2077 * Otherwise give an error message later.
2079 else if (ff_error != EOL_DOS)
2081 if ( try_unix
2082 && !read_stdin
2083 && (read_buffer
2084 || lseek(fd, (off_t)0L, SEEK_SET) == 0))
2086 fileformat = EOL_UNIX;
2087 if (set_options)
2088 set_fileformat(EOL_UNIX, OPT_LOCAL);
2089 file_rewind = TRUE;
2090 keep_fileformat = TRUE;
2091 goto retry;
2093 ff_error = EOL_DOS;
2096 if (ml_append(lnum, line_start, len, newfile) == FAIL)
2098 error = TRUE;
2099 break;
2101 ++lnum;
2102 if (--read_count == 0)
2104 error = TRUE; /* break loop */
2105 line_start = ptr; /* nothing left to write */
2106 break;
2109 else
2110 --skip_count;
2111 line_start = ptr + 1;
2115 linerest = (long)(ptr - line_start);
2116 ui_breakcheck();
2119 failed:
2120 /* not an error, max. number of lines reached */
2121 if (error && read_count == 0)
2122 error = FALSE;
2125 * If we get EOF in the middle of a line, note the fact and
2126 * complete the line ourselves.
2127 * In Dos format ignore a trailing CTRL-Z, unless 'binary' set.
2129 if (!error
2130 && !got_int
2131 && linerest != 0
2132 && !(!curbuf->b_p_bin
2133 && fileformat == EOL_DOS
2134 && *line_start == Ctrl_Z
2135 && ptr == line_start + 1))
2137 /* remember for when writing */
2138 if (set_options)
2139 curbuf->b_p_eol = FALSE;
2140 *ptr = NUL;
2141 if (ml_append(lnum, line_start,
2142 (colnr_T)(ptr - line_start + 1), newfile) == FAIL)
2143 error = TRUE;
2144 else
2145 read_no_eol_lnum = ++lnum;
2148 if (set_options)
2149 save_file_ff(curbuf); /* remember the current file format */
2151 #ifdef FEAT_CRYPT
2152 if (cryptkey != curbuf->b_p_key)
2153 vim_free(cryptkey);
2154 #endif
2156 #ifdef FEAT_MBYTE
2157 /* If editing a new file: set 'fenc' for the current buffer.
2158 * Also for ":read ++edit file". */
2159 if (set_options)
2160 set_string_option_direct((char_u *)"fenc", -1, fenc,
2161 OPT_FREE|OPT_LOCAL, 0);
2162 if (fenc_alloced)
2163 vim_free(fenc);
2164 # ifdef USE_ICONV
2165 if (iconv_fd != (iconv_t)-1)
2167 iconv_close(iconv_fd);
2168 iconv_fd = (iconv_t)-1;
2170 # endif
2171 #endif
2173 if (!read_buffer && !read_stdin)
2174 close(fd); /* errors are ignored */
2175 vim_free(buffer);
2177 #ifdef HAVE_DUP
2178 if (read_stdin)
2180 /* Use stderr for stdin, makes shell commands work. */
2181 close(0);
2182 dup(2);
2184 #endif
2186 #ifdef FEAT_MBYTE
2187 if (tmpname != NULL)
2189 mch_remove(tmpname); /* delete converted file */
2190 vim_free(tmpname);
2192 #endif
2193 --no_wait_return; /* may wait for return now */
2196 * In recovery mode everything but autocommands is skipped.
2198 if (!recoverymode)
2200 /* need to delete the last line, which comes from the empty buffer */
2201 if (newfile && wasempty && !(curbuf->b_ml.ml_flags & ML_EMPTY))
2203 #ifdef FEAT_NETBEANS_INTG
2204 netbeansFireChanges = 0;
2205 #endif
2206 ml_delete(curbuf->b_ml.ml_line_count, FALSE);
2207 #ifdef FEAT_NETBEANS_INTG
2208 netbeansFireChanges = 1;
2209 #endif
2210 --linecnt;
2212 linecnt = curbuf->b_ml.ml_line_count - linecnt;
2213 if (filesize == 0)
2214 linecnt = 0;
2215 if (newfile || read_buffer)
2217 redraw_curbuf_later(NOT_VALID);
2218 #ifdef FEAT_DIFF
2219 /* After reading the text into the buffer the diff info needs to
2220 * be updated. */
2221 diff_invalidate(curbuf);
2222 #endif
2223 #ifdef FEAT_FOLDING
2224 /* All folds in the window are invalid now. Mark them for update
2225 * before triggering autocommands. */
2226 foldUpdateAll(curwin);
2227 #endif
2229 else if (linecnt) /* appended at least one line */
2230 appended_lines_mark(from, linecnt);
2232 #ifndef ALWAYS_USE_GUI
2234 * If we were reading from the same terminal as where messages go,
2235 * the screen will have been messed up.
2236 * Switch on raw mode now and clear the screen.
2238 if (read_stdin)
2240 settmode(TMODE_RAW); /* set to raw mode */
2241 starttermcap();
2242 screenclear();
2244 #endif
2246 if (got_int)
2248 if (!(flags & READ_DUMMY))
2250 filemess(curbuf, sfname, (char_u *)_(e_interr), 0);
2251 if (newfile)
2252 curbuf->b_p_ro = TRUE; /* must use "w!" now */
2254 msg_scroll = msg_save;
2255 #ifdef FEAT_VIMINFO
2256 check_marks_read();
2257 #endif
2258 return OK; /* an interrupt isn't really an error */
2261 if (!filtering && !(flags & READ_DUMMY))
2263 msg_add_fname(curbuf, sfname); /* fname in IObuff with quotes */
2264 c = FALSE;
2266 #ifdef UNIX
2267 # ifdef S_ISFIFO
2268 if (S_ISFIFO(perm)) /* fifo or socket */
2270 STRCAT(IObuff, _("[fifo/socket]"));
2271 c = TRUE;
2273 # else
2274 # ifdef S_IFIFO
2275 if ((perm & S_IFMT) == S_IFIFO) /* fifo */
2277 STRCAT(IObuff, _("[fifo]"));
2278 c = TRUE;
2280 # endif
2281 # ifdef S_IFSOCK
2282 if ((perm & S_IFMT) == S_IFSOCK) /* or socket */
2284 STRCAT(IObuff, _("[socket]"));
2285 c = TRUE;
2287 # endif
2288 # endif
2289 # ifdef OPEN_CHR_FILES
2290 if (S_ISCHR(perm)) /* or character special */
2292 STRCAT(IObuff, _("[character special]"));
2293 c = TRUE;
2295 # endif
2296 #endif
2297 if (curbuf->b_p_ro)
2299 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
2300 c = TRUE;
2302 if (read_no_eol_lnum)
2304 msg_add_eol();
2305 c = TRUE;
2307 if (ff_error == EOL_DOS)
2309 STRCAT(IObuff, _("[CR missing]"));
2310 c = TRUE;
2312 if (ff_error == EOL_MAC)
2314 STRCAT(IObuff, _("[NL found]"));
2315 c = TRUE;
2317 if (split)
2319 STRCAT(IObuff, _("[long lines split]"));
2320 c = TRUE;
2322 #ifdef FEAT_MBYTE
2323 if (notconverted)
2325 STRCAT(IObuff, _("[NOT converted]"));
2326 c = TRUE;
2328 else if (converted)
2330 STRCAT(IObuff, _("[converted]"));
2331 c = TRUE;
2333 #endif
2334 #ifdef FEAT_CRYPT
2335 if (cryptkey != NULL)
2337 STRCAT(IObuff, _("[crypted]"));
2338 c = TRUE;
2340 #endif
2341 #ifdef FEAT_MBYTE
2342 if (conv_error != 0)
2344 sprintf((char *)IObuff + STRLEN(IObuff),
2345 _("[CONVERSION ERROR in line %ld]"), (long)conv_error);
2346 c = TRUE;
2348 else if (illegal_byte > 0)
2350 sprintf((char *)IObuff + STRLEN(IObuff),
2351 _("[ILLEGAL BYTE in line %ld]"), (long)illegal_byte);
2352 c = TRUE;
2354 else
2355 #endif
2356 if (error)
2358 STRCAT(IObuff, _("[READ ERRORS]"));
2359 c = TRUE;
2361 if (msg_add_fileformat(fileformat))
2362 c = TRUE;
2363 #ifdef FEAT_CRYPT
2364 if (cryptkey != NULL)
2365 msg_add_lines(c, (long)linecnt, filesize - CRYPT_MAGIC_LEN);
2366 else
2367 #endif
2368 msg_add_lines(c, (long)linecnt, filesize);
2370 vim_free(keep_msg);
2371 keep_msg = NULL;
2372 msg_scrolled_ign = TRUE;
2373 #ifdef ALWAYS_USE_GUI
2374 /* Don't show the message when reading stdin, it would end up in a
2375 * message box (which might be shown when exiting!) */
2376 if (read_stdin || read_buffer)
2377 p = msg_may_trunc(FALSE, IObuff);
2378 else
2379 #endif
2380 p = msg_trunc_attr(IObuff, FALSE, 0);
2381 if (read_stdin || read_buffer || restart_edit != 0
2382 || (msg_scrolled != 0 && !need_wait_return))
2383 /* Need to repeat the message after redrawing when:
2384 * - When reading from stdin (the screen will be cleared next).
2385 * - When restart_edit is set (otherwise there will be a delay
2386 * before redrawing).
2387 * - When the screen was scrolled but there is no wait-return
2388 * prompt. */
2389 set_keep_msg(p, 0);
2390 msg_scrolled_ign = FALSE;
2393 /* with errors writing the file requires ":w!" */
2394 if (newfile && (error
2395 #ifdef FEAT_MBYTE
2396 || conv_error != 0
2397 || (illegal_byte > 0 && bad_char_behavior != BAD_KEEP)
2398 #endif
2400 curbuf->b_p_ro = TRUE;
2402 u_clearline(); /* cannot use "U" command after adding lines */
2405 * In Ex mode: cursor at last new line.
2406 * Otherwise: cursor at first new line.
2408 if (exmode_active)
2409 curwin->w_cursor.lnum = from + linecnt;
2410 else
2411 curwin->w_cursor.lnum = from + 1;
2412 check_cursor_lnum();
2413 beginline(BL_WHITE | BL_FIX); /* on first non-blank */
2416 * Set '[ and '] marks to the newly read lines.
2418 curbuf->b_op_start.lnum = from + 1;
2419 curbuf->b_op_start.col = 0;
2420 curbuf->b_op_end.lnum = from + linecnt;
2421 curbuf->b_op_end.col = 0;
2423 #ifdef WIN32
2425 * Work around a weird problem: When a file has two links (only
2426 * possible on NTFS) and we write through one link, then stat() it
2427 * throught the other link, the timestamp information may be wrong.
2428 * It's correct again after reading the file, thus reset the timestamp
2429 * here.
2431 if (newfile && !read_stdin && !read_buffer
2432 && mch_stat((char *)fname, &st) >= 0)
2434 buf_store_time(curbuf, &st, fname);
2435 curbuf->b_mtime_read = curbuf->b_mtime;
2437 #endif
2439 msg_scroll = msg_save;
2441 #ifdef FEAT_VIMINFO
2443 * Get the marks before executing autocommands, so they can be used there.
2445 check_marks_read();
2446 #endif
2449 * Trick: We remember if the last line of the read didn't have
2450 * an eol for when writing it again. This is required for
2451 * ":autocmd FileReadPost *.gz set bin|'[,']!gunzip" to work.
2453 write_no_eol_lnum = read_no_eol_lnum;
2455 #ifdef FEAT_AUTOCMD
2456 if (!read_stdin && !read_buffer)
2458 int m = msg_scroll;
2459 int n = msg_scrolled;
2461 /* Save the fileformat now, otherwise the buffer will be considered
2462 * modified if the format/encoding was automatically detected. */
2463 if (set_options)
2464 save_file_ff(curbuf);
2467 * The output from the autocommands should not overwrite anything and
2468 * should not be overwritten: Set msg_scroll, restore its value if no
2469 * output was done.
2471 msg_scroll = TRUE;
2472 if (filtering)
2473 apply_autocmds_exarg(EVENT_FILTERREADPOST, NULL, sfname,
2474 FALSE, curbuf, eap);
2475 else if (newfile)
2476 apply_autocmds_exarg(EVENT_BUFREADPOST, NULL, sfname,
2477 FALSE, curbuf, eap);
2478 else
2479 apply_autocmds_exarg(EVENT_FILEREADPOST, sfname, sfname,
2480 FALSE, NULL, eap);
2481 if (msg_scrolled == n)
2482 msg_scroll = m;
2483 #ifdef FEAT_EVAL
2484 if (aborting()) /* autocmds may abort script processing */
2485 return FAIL;
2486 #endif
2488 #endif
2490 if (recoverymode && error)
2491 return FAIL;
2492 return OK;
2495 #ifdef OPEN_CHR_FILES
2497 * Returns TRUE if the file name argument is of the form "/dev/fd/\d\+",
2498 * which is the name of files used for process substitution output by
2499 * some shells on some operating systems, e.g., bash on SunOS.
2500 * Do not accept "/dev/fd/[012]", opening these may hang Vim.
2502 static int
2503 is_dev_fd_file(fname)
2504 char_u *fname;
2506 return (STRNCMP(fname, "/dev/fd/", 8) == 0
2507 && VIM_ISDIGIT(fname[8])
2508 && *skipdigits(fname + 9) == NUL
2509 && (fname[9] != NUL
2510 || (fname[8] != '0' && fname[8] != '1' && fname[8] != '2')));
2512 #endif
2514 #ifdef FEAT_MBYTE
2517 * From the current line count and characters read after that, estimate the
2518 * line number where we are now.
2519 * Used for error messages that include a line number.
2521 static linenr_T
2522 readfile_linenr(linecnt, p, endp)
2523 linenr_T linecnt; /* line count before reading more bytes */
2524 char_u *p; /* start of more bytes read */
2525 char_u *endp; /* end of more bytes read */
2527 char_u *s;
2528 linenr_T lnum;
2530 lnum = curbuf->b_ml.ml_line_count - linecnt + 1;
2531 for (s = p; s < endp; ++s)
2532 if (*s == '\n')
2533 ++lnum;
2534 return lnum;
2536 #endif
2539 * Fill "*eap" to force the 'fileencoding', 'fileformat' and 'binary to be
2540 * equal to the buffer "buf". Used for calling readfile().
2541 * Returns OK or FAIL.
2544 prep_exarg(eap, buf)
2545 exarg_T *eap;
2546 buf_T *buf;
2548 eap->cmd = alloc((unsigned)(STRLEN(buf->b_p_ff)
2549 #ifdef FEAT_MBYTE
2550 + STRLEN(buf->b_p_fenc)
2551 #endif
2552 + 15));
2553 if (eap->cmd == NULL)
2554 return FAIL;
2556 #ifdef FEAT_MBYTE
2557 sprintf((char *)eap->cmd, "e ++ff=%s ++enc=%s", buf->b_p_ff, buf->b_p_fenc);
2558 eap->force_enc = 14 + (int)STRLEN(buf->b_p_ff);
2559 eap->bad_char = buf->b_bad_char;
2560 #else
2561 sprintf((char *)eap->cmd, "e ++ff=%s", buf->b_p_ff);
2562 #endif
2563 eap->force_ff = 7;
2565 eap->force_bin = buf->b_p_bin ? FORCE_BIN : FORCE_NOBIN;
2566 eap->read_edit = FALSE;
2567 eap->forceit = FALSE;
2568 return OK;
2571 #ifdef FEAT_MBYTE
2573 * Find next fileencoding to use from 'fileencodings'.
2574 * "pp" points to fenc_next. It's advanced to the next item.
2575 * When there are no more items, an empty string is returned and *pp is set to
2576 * NULL.
2577 * When *pp is not set to NULL, the result is in allocated memory.
2579 static char_u *
2580 next_fenc(pp)
2581 char_u **pp;
2583 char_u *p;
2584 char_u *r;
2586 if (**pp == NUL)
2588 *pp = NULL;
2589 return (char_u *)"";
2591 p = vim_strchr(*pp, ',');
2592 if (p == NULL)
2594 r = enc_canonize(*pp);
2595 *pp += STRLEN(*pp);
2597 else
2599 r = vim_strnsave(*pp, (int)(p - *pp));
2600 *pp = p + 1;
2601 if (r != NULL)
2603 p = enc_canonize(r);
2604 vim_free(r);
2605 r = p;
2608 if (r == NULL) /* out of memory */
2610 r = (char_u *)"";
2611 *pp = NULL;
2613 return r;
2616 # ifdef FEAT_EVAL
2618 * Convert a file with the 'charconvert' expression.
2619 * This closes the file which is to be read, converts it and opens the
2620 * resulting file for reading.
2621 * Returns name of the resulting converted file (the caller should delete it
2622 * after reading it).
2623 * Returns NULL if the conversion failed ("*fdp" is not set) .
2625 static char_u *
2626 readfile_charconvert(fname, fenc, fdp)
2627 char_u *fname; /* name of input file */
2628 char_u *fenc; /* converted from */
2629 int *fdp; /* in/out: file descriptor of file */
2631 char_u *tmpname;
2632 char_u *errmsg = NULL;
2634 tmpname = vim_tempname('r');
2635 if (tmpname == NULL)
2636 errmsg = (char_u *)_("Can't find temp file for conversion");
2637 else
2639 close(*fdp); /* close the input file, ignore errors */
2640 *fdp = -1;
2641 if (eval_charconvert(fenc, enc_utf8 ? (char_u *)"utf-8" : p_enc,
2642 fname, tmpname) == FAIL)
2643 errmsg = (char_u *)_("Conversion with 'charconvert' failed");
2644 if (errmsg == NULL && (*fdp = mch_open((char *)tmpname,
2645 O_RDONLY | O_EXTRA, 0)) < 0)
2646 errmsg = (char_u *)_("can't read output of 'charconvert'");
2649 if (errmsg != NULL)
2651 /* Don't use emsg(), it breaks mappings, the retry with
2652 * another type of conversion might still work. */
2653 MSG(errmsg);
2654 if (tmpname != NULL)
2656 mch_remove(tmpname); /* delete converted file */
2657 vim_free(tmpname);
2658 tmpname = NULL;
2662 /* If the input file is closed, open it (caller should check for error). */
2663 if (*fdp < 0)
2664 *fdp = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2666 return tmpname;
2668 # endif
2670 #endif
2672 #ifdef FEAT_VIMINFO
2674 * Read marks for the current buffer from the viminfo file, when we support
2675 * buffer marks and the buffer has a name.
2677 static void
2678 check_marks_read()
2680 if (!curbuf->b_marks_read && get_viminfo_parameter('\'') > 0
2681 && curbuf->b_ffname != NULL)
2682 read_viminfo(NULL, FALSE, TRUE, FALSE);
2684 /* Always set b_marks_read; needed when 'viminfo' is changed to include
2685 * the ' parameter after opening a buffer. */
2686 curbuf->b_marks_read = TRUE;
2688 #endif
2690 #ifdef FEAT_CRYPT
2692 * Check for magic number used for encryption.
2693 * If found, the magic number is removed from ptr[*sizep] and *sizep and
2694 * *filesizep are updated.
2695 * Return the (new) encryption key, NULL for no encryption.
2697 static char_u *
2698 check_for_cryptkey(cryptkey, ptr, sizep, filesizep, newfile)
2699 char_u *cryptkey; /* previous encryption key or NULL */
2700 char_u *ptr; /* pointer to read bytes */
2701 long *sizep; /* length of read bytes */
2702 long *filesizep; /* nr of bytes used from file */
2703 int newfile; /* editing a new buffer */
2705 if (*sizep >= CRYPT_MAGIC_LEN
2706 && STRNCMP(ptr, CRYPT_MAGIC, CRYPT_MAGIC_LEN) == 0)
2708 if (cryptkey == NULL)
2710 if (*curbuf->b_p_key)
2711 cryptkey = curbuf->b_p_key;
2712 else
2714 /* When newfile is TRUE, store the typed key
2715 * in the 'key' option and don't free it. */
2716 cryptkey = get_crypt_key(newfile, FALSE);
2717 /* check if empty key entered */
2718 if (cryptkey != NULL && *cryptkey == NUL)
2720 if (cryptkey != curbuf->b_p_key)
2721 vim_free(cryptkey);
2722 cryptkey = NULL;
2727 if (cryptkey != NULL)
2729 crypt_init_keys(cryptkey);
2731 /* Remove magic number from the text */
2732 *filesizep += CRYPT_MAGIC_LEN;
2733 *sizep -= CRYPT_MAGIC_LEN;
2734 mch_memmove(ptr, ptr + CRYPT_MAGIC_LEN, (size_t)*sizep);
2737 /* When starting to edit a new file which does not have
2738 * encryption, clear the 'key' option, except when
2739 * starting up (called with -x argument) */
2740 else if (newfile && *curbuf->b_p_key && !starting)
2741 set_option_value((char_u *)"key", 0L, (char_u *)"", OPT_LOCAL);
2743 return cryptkey;
2745 #endif
2747 #ifdef UNIX
2748 static void
2749 set_file_time(fname, atime, mtime)
2750 char_u *fname;
2751 time_t atime; /* access time */
2752 time_t mtime; /* modification time */
2754 # if defined(HAVE_UTIME) && defined(HAVE_UTIME_H)
2755 struct utimbuf buf;
2757 buf.actime = atime;
2758 buf.modtime = mtime;
2759 (void)utime((char *)fname, &buf);
2760 # else
2761 # if defined(HAVE_UTIMES)
2762 struct timeval tvp[2];
2764 tvp[0].tv_sec = atime;
2765 tvp[0].tv_usec = 0;
2766 tvp[1].tv_sec = mtime;
2767 tvp[1].tv_usec = 0;
2768 # ifdef NeXT
2769 (void)utimes((char *)fname, tvp);
2770 # else
2771 (void)utimes((char *)fname, (const struct timeval *)&tvp);
2772 # endif
2773 # endif
2774 # endif
2776 #endif /* UNIX */
2778 #if defined(VMS) && !defined(MIN)
2779 /* Older DECC compiler for VAX doesn't define MIN() */
2780 # define MIN(a, b) ((a) < (b) ? (a) : (b))
2781 #endif
2784 * Return TRUE if a file appears to be read-only from the file permissions.
2787 check_file_readonly(fname, perm)
2788 char_u *fname; /* full path to file */
2789 int perm; /* known permissions on file */
2791 #ifndef USE_MCH_ACCESS
2792 int fd = 0;
2793 #endif
2795 return (
2796 #ifdef USE_MCH_ACCESS
2797 # ifdef UNIX
2798 (perm & 0222) == 0 ||
2799 # endif
2800 mch_access((char *)fname, W_OK)
2801 #else
2802 (fd = mch_open((char *)fname, O_RDWR | O_EXTRA, 0)) < 0
2803 ? TRUE : (close(fd), FALSE)
2804 #endif
2810 * buf_write() - write to file "fname" lines "start" through "end"
2812 * We do our own buffering here because fwrite() is so slow.
2814 * If "forceit" is true, we don't care for errors when attempting backups.
2815 * In case of an error everything possible is done to restore the original
2816 * file. But when "forceit" is TRUE, we risk loosing it.
2818 * When "reset_changed" is TRUE and "append" == FALSE and "start" == 1 and
2819 * "end" == curbuf->b_ml.ml_line_count, reset curbuf->b_changed.
2821 * This function must NOT use NameBuff (because it's called by autowrite()).
2823 * return FAIL for failure, OK otherwise
2826 buf_write(buf, fname, sfname, start, end, eap, append, forceit,
2827 reset_changed, filtering)
2828 buf_T *buf;
2829 char_u *fname;
2830 char_u *sfname;
2831 linenr_T start, end;
2832 exarg_T *eap; /* for forced 'ff' and 'fenc', can be
2833 NULL! */
2834 int append; /* append to the file */
2835 int forceit;
2836 int reset_changed;
2837 int filtering;
2839 int fd;
2840 char_u *backup = NULL;
2841 int backup_copy = FALSE; /* copy the original file? */
2842 int dobackup;
2843 char_u *ffname;
2844 char_u *wfname = NULL; /* name of file to write to */
2845 char_u *s;
2846 char_u *ptr;
2847 char_u c;
2848 int len;
2849 linenr_T lnum;
2850 long nchars;
2851 char_u *errmsg = NULL;
2852 char_u *errnum = NULL;
2853 char_u *buffer;
2854 char_u smallbuf[SMBUFSIZE];
2855 char_u *backup_ext;
2856 int bufsize;
2857 long perm; /* file permissions */
2858 int retval = OK;
2859 int newfile = FALSE; /* TRUE if file doesn't exist yet */
2860 int msg_save = msg_scroll;
2861 int overwriting; /* TRUE if writing over original */
2862 int no_eol = FALSE; /* no end-of-line written */
2863 int device = FALSE; /* writing to a device */
2864 struct stat st_old;
2865 int prev_got_int = got_int;
2866 int file_readonly = FALSE; /* overwritten file is read-only */
2867 static char *err_readonly = "is read-only (cannot override: \"W\" in 'cpoptions')";
2868 #if defined(UNIX) || defined(__EMX__XX) /*XXX fix me sometime? */
2869 int made_writable = FALSE; /* 'w' bit has been set */
2870 #endif
2871 /* writing everything */
2872 int whole = (start == 1 && end == buf->b_ml.ml_line_count);
2873 #ifdef FEAT_AUTOCMD
2874 linenr_T old_line_count = buf->b_ml.ml_line_count;
2875 #endif
2876 int attr;
2877 int fileformat;
2878 int write_bin;
2879 struct bw_info write_info; /* info for buf_write_bytes() */
2880 #ifdef FEAT_MBYTE
2881 int converted = FALSE;
2882 int notconverted = FALSE;
2883 char_u *fenc; /* effective 'fileencoding' */
2884 char_u *fenc_tofree = NULL; /* allocated "fenc" */
2885 #endif
2886 #ifdef HAS_BW_FLAGS
2887 int wb_flags = 0;
2888 #endif
2889 #ifdef HAVE_ACL
2890 vim_acl_T acl = NULL; /* ACL copied from original file to
2891 backup or new file */
2892 #endif
2894 if (fname == NULL || *fname == NUL) /* safety check */
2895 return FAIL;
2898 * Disallow writing from .exrc and .vimrc in current directory for
2899 * security reasons.
2901 if (check_secure())
2902 return FAIL;
2904 /* Avoid a crash for a long name. */
2905 if (STRLEN(fname) >= MAXPATHL)
2907 EMSG(_(e_longname));
2908 return FAIL;
2911 #ifdef FEAT_MBYTE
2912 /* must init bw_conv_buf and bw_iconv_fd before jumping to "fail" */
2913 write_info.bw_conv_buf = NULL;
2914 write_info.bw_conv_error = FALSE;
2915 write_info.bw_restlen = 0;
2916 # ifdef USE_ICONV
2917 write_info.bw_iconv_fd = (iconv_t)-1;
2918 # endif
2919 #endif
2921 /* After writing a file changedtick changes but we don't want to display
2922 * the line. */
2923 ex_no_reprint = TRUE;
2926 * If there is no file name yet, use the one for the written file.
2927 * BF_NOTEDITED is set to reflect this (in case the write fails).
2928 * Don't do this when the write is for a filter command.
2929 * Don't do this when appending.
2930 * Only do this when 'cpoptions' contains the 'F' flag.
2932 if (buf->b_ffname == NULL
2933 && reset_changed
2934 && whole
2935 && buf == curbuf
2936 #ifdef FEAT_QUICKFIX
2937 && !bt_nofile(buf)
2938 #endif
2939 && !filtering
2940 && (!append || vim_strchr(p_cpo, CPO_FNAMEAPP) != NULL)
2941 && vim_strchr(p_cpo, CPO_FNAMEW) != NULL)
2943 if (set_rw_fname(fname, sfname) == FAIL)
2944 return FAIL;
2945 buf = curbuf; /* just in case autocmds made "buf" invalid */
2948 if (sfname == NULL)
2949 sfname = fname;
2951 * For Unix: Use the short file name whenever possible.
2952 * Avoids problems with networks and when directory names are changed.
2953 * Don't do this for MS-DOS, a "cd" in a sub-shell may have moved us to
2954 * another directory, which we don't detect
2956 ffname = fname; /* remember full fname */
2957 #ifdef UNIX
2958 fname = sfname;
2959 #endif
2961 if (buf->b_ffname != NULL && fnamecmp(ffname, buf->b_ffname) == 0)
2962 overwriting = TRUE;
2963 else
2964 overwriting = FALSE;
2966 if (exiting)
2967 settmode(TMODE_COOK); /* when exiting allow typahead now */
2969 ++no_wait_return; /* don't wait for return yet */
2972 * Set '[ and '] marks to the lines to be written.
2974 buf->b_op_start.lnum = start;
2975 buf->b_op_start.col = 0;
2976 buf->b_op_end.lnum = end;
2977 buf->b_op_end.col = 0;
2979 #ifdef FEAT_AUTOCMD
2981 aco_save_T aco;
2982 int buf_ffname = FALSE;
2983 int buf_sfname = FALSE;
2984 int buf_fname_f = FALSE;
2985 int buf_fname_s = FALSE;
2986 int did_cmd = FALSE;
2987 int nofile_err = FALSE;
2988 int empty_memline = (buf->b_ml.ml_mfp == NULL);
2991 * Apply PRE aucocommands.
2992 * Set curbuf to the buffer to be written.
2993 * Careful: The autocommands may call buf_write() recursively!
2995 if (ffname == buf->b_ffname)
2996 buf_ffname = TRUE;
2997 if (sfname == buf->b_sfname)
2998 buf_sfname = TRUE;
2999 if (fname == buf->b_ffname)
3000 buf_fname_f = TRUE;
3001 if (fname == buf->b_sfname)
3002 buf_fname_s = TRUE;
3004 /* set curwin/curbuf to buf and save a few things */
3005 aucmd_prepbuf(&aco, buf);
3007 if (append)
3009 if (!(did_cmd = apply_autocmds_exarg(EVENT_FILEAPPENDCMD,
3010 sfname, sfname, FALSE, curbuf, eap)))
3012 #ifdef FEAT_QUICKFIX
3013 if (overwriting && bt_nofile(curbuf))
3014 nofile_err = TRUE;
3015 else
3016 #endif
3017 apply_autocmds_exarg(EVENT_FILEAPPENDPRE,
3018 sfname, sfname, FALSE, curbuf, eap);
3021 else if (filtering)
3023 apply_autocmds_exarg(EVENT_FILTERWRITEPRE,
3024 NULL, sfname, FALSE, curbuf, eap);
3026 else if (reset_changed && whole)
3028 if (!(did_cmd = apply_autocmds_exarg(EVENT_BUFWRITECMD,
3029 sfname, sfname, FALSE, curbuf, eap)))
3031 #ifdef FEAT_QUICKFIX
3032 if (overwriting && bt_nofile(curbuf))
3033 nofile_err = TRUE;
3034 else
3035 #endif
3036 apply_autocmds_exarg(EVENT_BUFWRITEPRE,
3037 sfname, sfname, FALSE, curbuf, eap);
3040 else
3042 if (!(did_cmd = apply_autocmds_exarg(EVENT_FILEWRITECMD,
3043 sfname, sfname, FALSE, curbuf, eap)))
3045 #ifdef FEAT_QUICKFIX
3046 if (overwriting && bt_nofile(curbuf))
3047 nofile_err = TRUE;
3048 else
3049 #endif
3050 apply_autocmds_exarg(EVENT_FILEWRITEPRE,
3051 sfname, sfname, FALSE, curbuf, eap);
3055 /* restore curwin/curbuf and a few other things */
3056 aucmd_restbuf(&aco);
3059 * In three situations we return here and don't write the file:
3060 * 1. the autocommands deleted or unloaded the buffer.
3061 * 2. The autocommands abort script processing.
3062 * 3. If one of the "Cmd" autocommands was executed.
3064 if (!buf_valid(buf))
3065 buf = NULL;
3066 if (buf == NULL || (buf->b_ml.ml_mfp == NULL && !empty_memline)
3067 || did_cmd || nofile_err
3068 #ifdef FEAT_EVAL
3069 || aborting()
3070 #endif
3073 --no_wait_return;
3074 msg_scroll = msg_save;
3075 if (nofile_err)
3076 EMSG(_("E676: No matching autocommands for acwrite buffer"));
3078 if (nofile_err
3079 #ifdef FEAT_EVAL
3080 || aborting()
3081 #endif
3083 /* An aborting error, interrupt or exception in the
3084 * autocommands. */
3085 return FAIL;
3086 if (did_cmd)
3088 if (buf == NULL)
3089 /* The buffer was deleted. We assume it was written
3090 * (can't retry anyway). */
3091 return OK;
3092 if (overwriting)
3094 /* Assume the buffer was written, update the timestamp. */
3095 ml_timestamp(buf);
3096 if (append)
3097 buf->b_flags &= ~BF_NEW;
3098 else
3099 buf->b_flags &= ~BF_WRITE_MASK;
3101 if (reset_changed && buf->b_changed && !append
3102 && (overwriting || vim_strchr(p_cpo, CPO_PLUS) != NULL))
3103 /* Buffer still changed, the autocommands didn't work
3104 * properly. */
3105 return FAIL;
3106 return OK;
3108 #ifdef FEAT_EVAL
3109 if (!aborting())
3110 #endif
3111 EMSG(_("E203: Autocommands deleted or unloaded buffer to be written"));
3112 return FAIL;
3116 * The autocommands may have changed the number of lines in the file.
3117 * When writing the whole file, adjust the end.
3118 * When writing part of the file, assume that the autocommands only
3119 * changed the number of lines that are to be written (tricky!).
3121 if (buf->b_ml.ml_line_count != old_line_count)
3123 if (whole) /* write all */
3124 end = buf->b_ml.ml_line_count;
3125 else if (buf->b_ml.ml_line_count > old_line_count) /* more lines */
3126 end += buf->b_ml.ml_line_count - old_line_count;
3127 else /* less lines */
3129 end -= old_line_count - buf->b_ml.ml_line_count;
3130 if (end < start)
3132 --no_wait_return;
3133 msg_scroll = msg_save;
3134 EMSG(_("E204: Autocommand changed number of lines in unexpected way"));
3135 return FAIL;
3141 * The autocommands may have changed the name of the buffer, which may
3142 * be kept in fname, ffname and sfname.
3144 if (buf_ffname)
3145 ffname = buf->b_ffname;
3146 if (buf_sfname)
3147 sfname = buf->b_sfname;
3148 if (buf_fname_f)
3149 fname = buf->b_ffname;
3150 if (buf_fname_s)
3151 fname = buf->b_sfname;
3153 #endif
3155 #ifdef FEAT_NETBEANS_INTG
3156 if (usingNetbeans && isNetbeansBuffer(buf))
3158 if (whole)
3161 * b_changed can be 0 after an undo, but we still need to write
3162 * the buffer to NetBeans.
3164 if (buf->b_changed || isNetbeansModified(buf))
3166 --no_wait_return; /* may wait for return now */
3167 msg_scroll = msg_save;
3168 netbeans_save_buffer(buf); /* no error checking... */
3169 return retval;
3171 else
3173 errnum = (char_u *)"E656: ";
3174 errmsg = (char_u *)_("NetBeans dissallows writes of unmodified buffers");
3175 buffer = NULL;
3176 goto fail;
3179 else
3181 errnum = (char_u *)"E657: ";
3182 errmsg = (char_u *)_("Partial writes disallowed for NetBeans buffers");
3183 buffer = NULL;
3184 goto fail;
3187 #endif
3189 if (shortmess(SHM_OVER) && !exiting)
3190 msg_scroll = FALSE; /* overwrite previous file message */
3191 else
3192 msg_scroll = TRUE; /* don't overwrite previous file message */
3193 if (!filtering)
3194 filemess(buf,
3195 #ifndef UNIX
3196 sfname,
3197 #else
3198 fname,
3199 #endif
3200 (char_u *)"", 0); /* show that we are busy */
3201 msg_scroll = FALSE; /* always overwrite the file message now */
3203 buffer = alloc(BUFSIZE);
3204 if (buffer == NULL) /* can't allocate big buffer, use small
3205 * one (to be able to write when out of
3206 * memory) */
3208 buffer = smallbuf;
3209 bufsize = SMBUFSIZE;
3211 else
3212 bufsize = BUFSIZE;
3215 * Get information about original file (if there is one).
3217 #if defined(UNIX) && !defined(ARCHIE)
3218 st_old.st_dev = 0;
3219 st_old.st_ino = 0;
3220 perm = -1;
3221 if (mch_stat((char *)fname, &st_old) < 0)
3222 newfile = TRUE;
3223 else
3225 perm = st_old.st_mode;
3226 if (!S_ISREG(st_old.st_mode)) /* not a file */
3228 if (S_ISDIR(st_old.st_mode))
3230 errnum = (char_u *)"E502: ";
3231 errmsg = (char_u *)_("is a directory");
3232 goto fail;
3234 if (mch_nodetype(fname) != NODE_WRITABLE)
3236 errnum = (char_u *)"E503: ";
3237 errmsg = (char_u *)_("is not a file or writable device");
3238 goto fail;
3240 /* It's a device of some kind (or a fifo) which we can write to
3241 * but for which we can't make a backup. */
3242 device = TRUE;
3243 newfile = TRUE;
3244 perm = -1;
3247 #else /* !UNIX */
3249 * Check for a writable device name.
3251 c = mch_nodetype(fname);
3252 if (c == NODE_OTHER)
3254 errnum = (char_u *)"E503: ";
3255 errmsg = (char_u *)_("is not a file or writable device");
3256 goto fail;
3258 if (c == NODE_WRITABLE)
3260 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3261 /* MS-Windows allows opening a device, but we will probably get stuck
3262 * trying to write to it. */
3263 if (!p_odev)
3265 errnum = (char_u *)"E796: ";
3266 errmsg = (char_u *)_("writing to device disabled with 'opendevice' option");
3267 goto fail;
3269 # endif
3270 device = TRUE;
3271 newfile = TRUE;
3272 perm = -1;
3274 else
3276 perm = mch_getperm(fname);
3277 if (perm < 0)
3278 newfile = TRUE;
3279 else if (mch_isdir(fname))
3281 errnum = (char_u *)"E502: ";
3282 errmsg = (char_u *)_("is a directory");
3283 goto fail;
3285 if (overwriting)
3286 (void)mch_stat((char *)fname, &st_old);
3288 #endif /* !UNIX */
3290 if (!device && !newfile)
3293 * Check if the file is really writable (when renaming the file to
3294 * make a backup we won't discover it later).
3296 file_readonly = check_file_readonly(fname, (int)perm);
3298 if (!forceit && file_readonly)
3300 if (vim_strchr(p_cpo, CPO_FWRITE) != NULL)
3302 errnum = (char_u *)"E504: ";
3303 errmsg = (char_u *)_(err_readonly);
3305 else
3307 errnum = (char_u *)"E505: ";
3308 errmsg = (char_u *)_("is read-only (add ! to override)");
3310 goto fail;
3314 * Check if the timestamp hasn't changed since reading the file.
3316 if (overwriting)
3318 retval = check_mtime(buf, &st_old);
3319 if (retval == FAIL)
3320 goto fail;
3324 #ifdef HAVE_ACL
3326 * For systems that support ACL: get the ACL from the original file.
3328 if (!newfile)
3329 acl = mch_get_acl(fname);
3330 #endif
3333 * If 'backupskip' is not empty, don't make a backup for some files.
3335 dobackup = (p_wb || p_bk || *p_pm != NUL);
3336 #ifdef FEAT_WILDIGN
3337 if (dobackup && *p_bsk != NUL && match_file_list(p_bsk, sfname, ffname))
3338 dobackup = FALSE;
3339 #endif
3342 * Save the value of got_int and reset it. We don't want a previous
3343 * interruption cancel writing, only hitting CTRL-C while writing should
3344 * abort it.
3346 prev_got_int = got_int;
3347 got_int = FALSE;
3349 /* Mark the buffer as 'being saved' to prevent changed buffer warnings */
3350 buf->b_saving = TRUE;
3353 * If we are not appending or filtering, the file exists, and the
3354 * 'writebackup', 'backup' or 'patchmode' option is set, need a backup.
3355 * When 'patchmode' is set also make a backup when appending.
3357 * Do not make any backup, if 'writebackup' and 'backup' are both switched
3358 * off. This helps when editing large files on almost-full disks.
3360 if (!(append && *p_pm == NUL) && !filtering && perm >= 0 && dobackup)
3362 #if defined(UNIX) || defined(WIN32)
3363 struct stat st;
3364 #endif
3366 if ((bkc_flags & BKC_YES) || append) /* "yes" */
3367 backup_copy = TRUE;
3368 #if defined(UNIX) || defined(WIN32)
3369 else if ((bkc_flags & BKC_AUTO)) /* "auto" */
3371 int i;
3373 # ifdef UNIX
3375 * Don't rename the file when:
3376 * - it's a hard link
3377 * - it's a symbolic link
3378 * - we don't have write permission in the directory
3379 * - we can't set the owner/group of the new file
3381 if (st_old.st_nlink > 1
3382 || mch_lstat((char *)fname, &st) < 0
3383 || st.st_dev != st_old.st_dev
3384 || st.st_ino != st_old.st_ino
3385 # ifndef HAVE_FCHOWN
3386 || st.st_uid != st_old.st_uid
3387 || st.st_gid != st_old.st_gid
3388 # endif
3390 backup_copy = TRUE;
3391 else
3392 # else
3393 # ifdef WIN32
3394 /* On NTFS file systems hard links are possible. */
3395 if (mch_is_linked(fname))
3396 backup_copy = TRUE;
3397 else
3398 # endif
3399 # endif
3402 * Check if we can create a file and set the owner/group to
3403 * the ones from the original file.
3404 * First find a file name that doesn't exist yet (use some
3405 * arbitrary numbers).
3407 STRCPY(IObuff, fname);
3408 for (i = 4913; ; i += 123)
3410 sprintf((char *)gettail(IObuff), "%d", i);
3411 if (mch_lstat((char *)IObuff, &st) < 0)
3412 break;
3414 fd = mch_open((char *)IObuff,
3415 O_CREAT|O_WRONLY|O_EXCL|O_NOFOLLOW, perm);
3416 if (fd < 0) /* can't write in directory */
3417 backup_copy = TRUE;
3418 else
3420 # ifdef UNIX
3421 # ifdef HAVE_FCHOWN
3422 fchown(fd, st_old.st_uid, st_old.st_gid);
3423 # endif
3424 if (mch_stat((char *)IObuff, &st) < 0
3425 || st.st_uid != st_old.st_uid
3426 || st.st_gid != st_old.st_gid
3427 || st.st_mode != perm)
3428 backup_copy = TRUE;
3429 # endif
3430 /* Close the file before removing it, on MS-Windows we
3431 * can't delete an open file. */
3432 close(fd);
3433 mch_remove(IObuff);
3438 # ifdef UNIX
3440 * Break symlinks and/or hardlinks if we've been asked to.
3442 if ((bkc_flags & BKC_BREAKSYMLINK) || (bkc_flags & BKC_BREAKHARDLINK))
3444 int lstat_res;
3446 lstat_res = mch_lstat((char *)fname, &st);
3448 /* Symlinks. */
3449 if ((bkc_flags & BKC_BREAKSYMLINK)
3450 && lstat_res == 0
3451 && st.st_ino != st_old.st_ino)
3452 backup_copy = FALSE;
3454 /* Hardlinks. */
3455 if ((bkc_flags & BKC_BREAKHARDLINK)
3456 && st_old.st_nlink > 1
3457 && (lstat_res != 0 || st.st_ino == st_old.st_ino))
3458 backup_copy = FALSE;
3460 #endif
3462 #endif
3464 /* make sure we have a valid backup extension to use */
3465 if (*p_bex == NUL)
3467 #ifdef RISCOS
3468 backup_ext = (char_u *)"/bak";
3469 #else
3470 backup_ext = (char_u *)".bak";
3471 #endif
3473 else
3474 backup_ext = p_bex;
3476 if (backup_copy
3477 && (fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
3479 int bfd;
3480 char_u *copybuf, *wp;
3481 int some_error = FALSE;
3482 struct stat st_new;
3483 char_u *dirp;
3484 char_u *rootname;
3485 #if defined(UNIX) && !defined(SHORT_FNAME)
3486 int did_set_shortname;
3487 #endif
3489 copybuf = alloc(BUFSIZE + 1);
3490 if (copybuf == NULL)
3492 some_error = TRUE; /* out of memory */
3493 goto nobackup;
3497 * Try to make the backup in each directory in the 'bdir' option.
3499 * Unix semantics has it, that we may have a writable file,
3500 * that cannot be recreated with a simple open(..., O_CREAT, ) e.g:
3501 * - the directory is not writable,
3502 * - the file may be a symbolic link,
3503 * - the file may belong to another user/group, etc.
3505 * For these reasons, the existing writable file must be truncated
3506 * and reused. Creation of a backup COPY will be attempted.
3508 dirp = p_bdir;
3509 while (*dirp)
3511 #ifdef UNIX
3512 st_new.st_ino = 0;
3513 st_new.st_dev = 0;
3514 st_new.st_gid = 0;
3515 #endif
3518 * Isolate one directory name, using an entry in 'bdir'.
3520 (void)copy_option_part(&dirp, copybuf, BUFSIZE, ",");
3521 rootname = get_file_in_dir(fname, copybuf);
3522 if (rootname == NULL)
3524 some_error = TRUE; /* out of memory */
3525 goto nobackup;
3528 #if defined(UNIX) && !defined(SHORT_FNAME)
3529 did_set_shortname = FALSE;
3530 #endif
3533 * May try twice if 'shortname' not set.
3535 for (;;)
3538 * Make backup file name.
3540 backup = buf_modname(
3541 #ifdef SHORT_FNAME
3542 TRUE,
3543 #else
3544 (buf->b_p_sn || buf->b_shortname),
3545 #endif
3546 rootname, backup_ext, FALSE);
3547 if (backup == NULL)
3549 vim_free(rootname);
3550 some_error = TRUE; /* out of memory */
3551 goto nobackup;
3555 * Check if backup file already exists.
3557 if (mch_stat((char *)backup, &st_new) >= 0)
3559 #ifdef UNIX
3561 * Check if backup file is same as original file.
3562 * May happen when modname() gave the same file back.
3563 * E.g. silly link, or file name-length reached.
3564 * If we don't check here, we either ruin the file
3565 * when copying or erase it after writing. jw.
3567 if (st_new.st_dev == st_old.st_dev
3568 && st_new.st_ino == st_old.st_ino)
3570 vim_free(backup);
3571 backup = NULL; /* no backup file to delete */
3572 # ifndef SHORT_FNAME
3574 * may try again with 'shortname' set
3576 if (!(buf->b_shortname || buf->b_p_sn))
3578 buf->b_shortname = TRUE;
3579 did_set_shortname = TRUE;
3580 continue;
3582 /* setting shortname didn't help */
3583 if (did_set_shortname)
3584 buf->b_shortname = FALSE;
3585 # endif
3586 break;
3588 #endif
3591 * If we are not going to keep the backup file, don't
3592 * delete an existing one, try to use another name.
3593 * Change one character, just before the extension.
3595 if (!p_bk)
3597 wp = backup + STRLEN(backup) - 1
3598 - STRLEN(backup_ext);
3599 if (wp < backup) /* empty file name ??? */
3600 wp = backup;
3601 *wp = 'z';
3602 while (*wp > 'a'
3603 && mch_stat((char *)backup, &st_new) >= 0)
3604 --*wp;
3605 /* They all exist??? Must be something wrong. */
3606 if (*wp == 'a')
3608 vim_free(backup);
3609 backup = NULL;
3613 break;
3615 vim_free(rootname);
3618 * Try to create the backup file
3620 if (backup != NULL)
3622 /* remove old backup, if present */
3623 mch_remove(backup);
3624 /* Open with O_EXCL to avoid the file being created while
3625 * we were sleeping (symlink hacker attack?) */
3626 bfd = mch_open((char *)backup,
3627 O_WRONLY|O_CREAT|O_EXTRA|O_EXCL|O_NOFOLLOW,
3628 perm & 0777);
3629 if (bfd < 0)
3631 vim_free(backup);
3632 backup = NULL;
3634 else
3636 /* set file protection same as original file, but
3637 * strip s-bit */
3638 (void)mch_setperm(backup, perm & 0777);
3640 #ifdef UNIX
3642 * Try to set the group of the backup same as the
3643 * original file. If this fails, set the protection
3644 * bits for the group same as the protection bits for
3645 * others.
3647 if (st_new.st_gid != st_old.st_gid
3648 # ifdef HAVE_FCHOWN /* sequent-ptx lacks fchown() */
3649 && fchown(bfd, (uid_t)-1, st_old.st_gid) != 0
3650 # endif
3652 mch_setperm(backup,
3653 (perm & 0707) | ((perm & 07) << 3));
3654 #endif
3657 * copy the file.
3659 write_info.bw_fd = bfd;
3660 write_info.bw_buf = copybuf;
3661 #ifdef HAS_BW_FLAGS
3662 write_info.bw_flags = FIO_NOCONVERT;
3663 #endif
3664 while ((write_info.bw_len = vim_read(fd, copybuf,
3665 BUFSIZE)) > 0)
3667 if (buf_write_bytes(&write_info) == FAIL)
3669 errmsg = (char_u *)_("E506: Can't write to backup file (add ! to override)");
3670 break;
3672 ui_breakcheck();
3673 if (got_int)
3675 errmsg = (char_u *)_(e_interr);
3676 break;
3680 if (close(bfd) < 0 && errmsg == NULL)
3681 errmsg = (char_u *)_("E507: Close error for backup file (add ! to override)");
3682 if (write_info.bw_len < 0)
3683 errmsg = (char_u *)_("E508: Can't read file for backup (add ! to override)");
3684 #ifdef UNIX
3685 set_file_time(backup, st_old.st_atime, st_old.st_mtime);
3686 #endif
3687 #ifdef HAVE_ACL
3688 mch_set_acl(backup, acl);
3689 #endif
3690 break;
3694 nobackup:
3695 close(fd); /* ignore errors for closing read file */
3696 vim_free(copybuf);
3698 if (backup == NULL && errmsg == NULL)
3699 errmsg = (char_u *)_("E509: Cannot create backup file (add ! to override)");
3700 /* ignore errors when forceit is TRUE */
3701 if ((some_error || errmsg != NULL) && !forceit)
3703 retval = FAIL;
3704 goto fail;
3706 errmsg = NULL;
3708 else
3710 char_u *dirp;
3711 char_u *p;
3712 char_u *rootname;
3715 * Make a backup by renaming the original file.
3718 * If 'cpoptions' includes the "W" flag, we don't want to
3719 * overwrite a read-only file. But rename may be possible
3720 * anyway, thus we need an extra check here.
3722 if (file_readonly && vim_strchr(p_cpo, CPO_FWRITE) != NULL)
3724 errnum = (char_u *)"E504: ";
3725 errmsg = (char_u *)_(err_readonly);
3726 goto fail;
3731 * Form the backup file name - change path/fo.o.h to
3732 * path/fo.o.h.bak Try all directories in 'backupdir', first one
3733 * that works is used.
3735 dirp = p_bdir;
3736 while (*dirp)
3739 * Isolate one directory name and make the backup file name.
3741 (void)copy_option_part(&dirp, IObuff, IOSIZE, ",");
3742 rootname = get_file_in_dir(fname, IObuff);
3743 if (rootname == NULL)
3744 backup = NULL;
3745 else
3747 backup = buf_modname(
3748 #ifdef SHORT_FNAME
3749 TRUE,
3750 #else
3751 (buf->b_p_sn || buf->b_shortname),
3752 #endif
3753 rootname, backup_ext, FALSE);
3754 vim_free(rootname);
3757 if (backup != NULL)
3760 * If we are not going to keep the backup file, don't
3761 * delete an existing one, try to use another name.
3762 * Change one character, just before the extension.
3764 if (!p_bk && mch_getperm(backup) >= 0)
3766 p = backup + STRLEN(backup) - 1 - STRLEN(backup_ext);
3767 if (p < backup) /* empty file name ??? */
3768 p = backup;
3769 *p = 'z';
3770 while (*p > 'a' && mch_getperm(backup) >= 0)
3771 --*p;
3772 /* They all exist??? Must be something wrong! */
3773 if (*p == 'a')
3775 vim_free(backup);
3776 backup = NULL;
3780 if (backup != NULL)
3783 * Delete any existing backup and move the current version
3784 * to the backup. For safety, we don't remove the backup
3785 * until the write has finished successfully. And if the
3786 * 'backup' option is set, leave it around.
3789 * If the renaming of the original file to the backup file
3790 * works, quit here.
3792 if (vim_rename(fname, backup) == 0)
3793 break;
3795 vim_free(backup); /* don't do the rename below */
3796 backup = NULL;
3799 if (backup == NULL && !forceit)
3801 errmsg = (char_u *)_("E510: Can't make backup file (add ! to override)");
3802 goto fail;
3807 #if defined(UNIX) && !defined(ARCHIE)
3808 /* When using ":w!" and the file was read-only: make it writable */
3809 if (forceit && perm >= 0 && !(perm & 0200) && st_old.st_uid == getuid()
3810 && vim_strchr(p_cpo, CPO_FWRITE) == NULL)
3812 perm |= 0200;
3813 (void)mch_setperm(fname, perm);
3814 made_writable = TRUE;
3816 #endif
3818 /* When using ":w!" and writing to the current file, 'readonly' makes no
3819 * sense, reset it, unless 'Z' appears in 'cpoptions'. */
3820 if (forceit && overwriting && vim_strchr(p_cpo, CPO_KEEPRO) == NULL)
3822 buf->b_p_ro = FALSE;
3823 #ifdef FEAT_TITLE
3824 need_maketitle = TRUE; /* set window title later */
3825 #endif
3826 #ifdef FEAT_WINDOWS
3827 status_redraw_all(); /* redraw status lines later */
3828 #endif
3831 if (end > buf->b_ml.ml_line_count)
3832 end = buf->b_ml.ml_line_count;
3833 if (buf->b_ml.ml_flags & ML_EMPTY)
3834 start = end + 1;
3837 * If the original file is being overwritten, there is a small chance that
3838 * we crash in the middle of writing. Therefore the file is preserved now.
3839 * This makes all block numbers positive so that recovery does not need
3840 * the original file.
3841 * Don't do this if there is a backup file and we are exiting.
3843 if (reset_changed && !newfile && overwriting
3844 && !(exiting && backup != NULL))
3846 ml_preserve(buf, FALSE);
3847 if (got_int)
3849 errmsg = (char_u *)_(e_interr);
3850 goto restore_backup;
3854 #ifdef MACOS_CLASSIC /* TODO: Is it need for MACOS_X? (Dany) */
3856 * Before risking to lose the original file verify if there's
3857 * a resource fork to preserve, and if cannot be done warn
3858 * the users. This happens when overwriting without backups.
3860 if (backup == NULL && overwriting && !append)
3861 if (mch_has_resource_fork(fname))
3863 errmsg = (char_u *)_("E460: The resource fork would be lost (add ! to override)");
3864 goto restore_backup;
3866 #endif
3868 #ifdef VMS
3869 vms_remove_version(fname); /* remove version */
3870 #endif
3871 /* Default: write the the file directly. May write to a temp file for
3872 * multi-byte conversion. */
3873 wfname = fname;
3875 #ifdef FEAT_MBYTE
3876 /* Check for forced 'fileencoding' from "++opt=val" argument. */
3877 if (eap != NULL && eap->force_enc != 0)
3879 fenc = eap->cmd + eap->force_enc;
3880 fenc = enc_canonize(fenc);
3881 fenc_tofree = fenc;
3883 else
3884 fenc = buf->b_p_fenc;
3887 * The file needs to be converted when 'fileencoding' is set and
3888 * 'fileencoding' differs from 'encoding'.
3890 converted = (*fenc != NUL && !same_encoding(p_enc, fenc));
3893 * Check if UTF-8 to UCS-2/4 or Latin1 conversion needs to be done. Or
3894 * Latin1 to Unicode conversion. This is handled in buf_write_bytes().
3895 * Prepare the flags for it and allocate bw_conv_buf when needed.
3897 if (converted && (enc_utf8 || STRCMP(p_enc, "latin1") == 0))
3899 wb_flags = get_fio_flags(fenc);
3900 if (wb_flags & (FIO_UCS2 | FIO_UCS4 | FIO_UTF16 | FIO_UTF8))
3902 /* Need to allocate a buffer to translate into. */
3903 if (wb_flags & (FIO_UCS2 | FIO_UTF16 | FIO_UTF8))
3904 write_info.bw_conv_buflen = bufsize * 2;
3905 else /* FIO_UCS4 */
3906 write_info.bw_conv_buflen = bufsize * 4;
3907 write_info.bw_conv_buf
3908 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
3909 if (write_info.bw_conv_buf == NULL)
3910 end = 0;
3914 # ifdef WIN3264
3915 if (converted && wb_flags == 0 && (wb_flags = get_win_fio_flags(fenc)) != 0)
3917 /* Convert UTF-8 -> UCS-2 and UCS-2 -> DBCS. Worst-case * 4: */
3918 write_info.bw_conv_buflen = bufsize * 4;
3919 write_info.bw_conv_buf
3920 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
3921 if (write_info.bw_conv_buf == NULL)
3922 end = 0;
3924 # endif
3926 # ifdef MACOS_X
3927 if (converted && wb_flags == 0 && (wb_flags = get_mac_fio_flags(fenc)) != 0)
3929 write_info.bw_conv_buflen = bufsize * 3;
3930 write_info.bw_conv_buf
3931 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
3932 if (write_info.bw_conv_buf == NULL)
3933 end = 0;
3935 # endif
3937 # if defined(FEAT_EVAL) || defined(USE_ICONV)
3938 if (converted && wb_flags == 0)
3940 # ifdef USE_ICONV
3942 * Use iconv() conversion when conversion is needed and it's not done
3943 * internally.
3945 write_info.bw_iconv_fd = (iconv_t)my_iconv_open(fenc,
3946 enc_utf8 ? (char_u *)"utf-8" : p_enc);
3947 if (write_info.bw_iconv_fd != (iconv_t)-1)
3949 /* We're going to use iconv(), allocate a buffer to convert in. */
3950 write_info.bw_conv_buflen = bufsize * ICONV_MULT;
3951 write_info.bw_conv_buf
3952 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
3953 if (write_info.bw_conv_buf == NULL)
3954 end = 0;
3955 write_info.bw_first = TRUE;
3957 # ifdef FEAT_EVAL
3958 else
3959 # endif
3960 # endif
3962 # ifdef FEAT_EVAL
3964 * When the file needs to be converted with 'charconvert' after
3965 * writing, write to a temp file instead and let the conversion
3966 * overwrite the original file.
3968 if (*p_ccv != NUL)
3970 wfname = vim_tempname('w');
3971 if (wfname == NULL) /* Can't write without a tempfile! */
3973 errmsg = (char_u *)_("E214: Can't find temp file for writing");
3974 goto restore_backup;
3977 # endif
3979 # endif
3980 if (converted && wb_flags == 0
3981 # ifdef USE_ICONV
3982 && write_info.bw_iconv_fd == (iconv_t)-1
3983 # endif
3984 # ifdef FEAT_EVAL
3985 && wfname == fname
3986 # endif
3989 if (!forceit)
3991 errmsg = (char_u *)_("E213: Cannot convert (add ! to write without conversion)");
3992 goto restore_backup;
3994 notconverted = TRUE;
3996 #endif
3999 * Open the file "wfname" for writing.
4000 * We may try to open the file twice: If we can't write to the
4001 * file and forceit is TRUE we delete the existing file and try to create
4002 * a new one. If this still fails we may have lost the original file!
4003 * (this may happen when the user reached his quotum for number of files).
4004 * Appending will fail if the file does not exist and forceit is FALSE.
4006 while ((fd = mch_open((char *)wfname, O_WRONLY | O_EXTRA | (append
4007 ? (forceit ? (O_APPEND | O_CREAT) : O_APPEND)
4008 : (O_CREAT | O_TRUNC))
4009 , perm < 0 ? 0666 : (perm & 0777))) < 0)
4012 * A forced write will try to create a new file if the old one is
4013 * still readonly. This may also happen when the directory is
4014 * read-only. In that case the mch_remove() will fail.
4016 if (errmsg == NULL)
4018 #ifdef UNIX
4019 struct stat st;
4021 /* Don't delete the file when it's a hard or symbolic link. */
4022 if ((!newfile && st_old.st_nlink > 1)
4023 || (mch_lstat((char *)fname, &st) == 0
4024 && (st.st_dev != st_old.st_dev
4025 || st.st_ino != st_old.st_ino)))
4026 errmsg = (char_u *)_("E166: Can't open linked file for writing");
4027 else
4028 #endif
4030 errmsg = (char_u *)_("E212: Can't open file for writing");
4031 if (forceit && vim_strchr(p_cpo, CPO_FWRITE) == NULL
4032 && perm >= 0)
4034 #ifdef UNIX
4035 /* we write to the file, thus it should be marked
4036 writable after all */
4037 if (!(perm & 0200))
4038 made_writable = TRUE;
4039 perm |= 0200;
4040 if (st_old.st_uid != getuid() || st_old.st_gid != getgid())
4041 perm &= 0777;
4042 #endif
4043 if (!append) /* don't remove when appending */
4044 mch_remove(wfname);
4045 continue;
4050 restore_backup:
4052 struct stat st;
4055 * If we failed to open the file, we don't need a backup. Throw it
4056 * away. If we moved or removed the original file try to put the
4057 * backup in its place.
4059 if (backup != NULL && wfname == fname)
4061 if (backup_copy)
4064 * There is a small chance that we removed the original,
4065 * try to move the copy in its place.
4066 * This may not work if the vim_rename() fails.
4067 * In that case we leave the copy around.
4069 /* If file does not exist, put the copy in its place */
4070 if (mch_stat((char *)fname, &st) < 0)
4071 vim_rename(backup, fname);
4072 /* if original file does exist throw away the copy */
4073 if (mch_stat((char *)fname, &st) >= 0)
4074 mch_remove(backup);
4076 else
4078 /* try to put the original file back */
4079 vim_rename(backup, fname);
4083 /* if original file no longer exists give an extra warning */
4084 if (!newfile && mch_stat((char *)fname, &st) < 0)
4085 end = 0;
4088 #ifdef FEAT_MBYTE
4089 if (wfname != fname)
4090 vim_free(wfname);
4091 #endif
4092 goto fail;
4094 errmsg = NULL;
4096 #if defined(MACOS_CLASSIC) || defined(WIN3264)
4097 /* TODO: Is it need for MACOS_X? (Dany) */
4099 * On macintosh copy the original files attributes (i.e. the backup)
4100 * This is done in order to preserve the resource fork and the
4101 * Finder attribute (label, comments, custom icons, file creator)
4103 if (backup != NULL && overwriting && !append)
4105 if (backup_copy)
4106 (void)mch_copy_file_attribute(wfname, backup);
4107 else
4108 (void)mch_copy_file_attribute(backup, wfname);
4111 if (!overwriting && !append)
4113 if (buf->b_ffname != NULL)
4114 (void)mch_copy_file_attribute(buf->b_ffname, wfname);
4115 /* Should copy resource fork */
4117 #endif
4119 write_info.bw_fd = fd;
4121 #ifdef FEAT_CRYPT
4122 if (*buf->b_p_key && !filtering)
4124 crypt_init_keys(buf->b_p_key);
4125 /* Write magic number, so that Vim knows that this file is encrypted
4126 * when reading it again. This also undergoes utf-8 to ucs-2/4
4127 * conversion when needed. */
4128 write_info.bw_buf = (char_u *)CRYPT_MAGIC;
4129 write_info.bw_len = CRYPT_MAGIC_LEN;
4130 write_info.bw_flags = FIO_NOCONVERT;
4131 if (buf_write_bytes(&write_info) == FAIL)
4132 end = 0;
4133 wb_flags |= FIO_ENCRYPTED;
4135 #endif
4137 write_info.bw_buf = buffer;
4138 nchars = 0;
4140 /* use "++bin", "++nobin" or 'binary' */
4141 if (eap != NULL && eap->force_bin != 0)
4142 write_bin = (eap->force_bin == FORCE_BIN);
4143 else
4144 write_bin = buf->b_p_bin;
4146 #ifdef FEAT_MBYTE
4148 * The BOM is written just after the encryption magic number.
4149 * Skip it when appending and the file already existed, the BOM only makes
4150 * sense at the start of the file.
4152 if (buf->b_p_bomb && !write_bin && (!append || perm < 0))
4154 write_info.bw_len = make_bom(buffer, fenc);
4155 if (write_info.bw_len > 0)
4157 /* don't convert, do encryption */
4158 write_info.bw_flags = FIO_NOCONVERT | wb_flags;
4159 if (buf_write_bytes(&write_info) == FAIL)
4160 end = 0;
4161 else
4162 nchars += write_info.bw_len;
4165 #endif
4167 write_info.bw_len = bufsize;
4168 #ifdef HAS_BW_FLAGS
4169 write_info.bw_flags = wb_flags;
4170 #endif
4171 fileformat = get_fileformat_force(buf, eap);
4172 s = buffer;
4173 len = 0;
4174 for (lnum = start; lnum <= end; ++lnum)
4177 * The next while loop is done once for each character written.
4178 * Keep it fast!
4180 ptr = ml_get_buf(buf, lnum, FALSE) - 1;
4181 while ((c = *++ptr) != NUL)
4183 if (c == NL)
4184 *s = NUL; /* replace newlines with NULs */
4185 else if (c == CAR && fileformat == EOL_MAC)
4186 *s = NL; /* Mac: replace CRs with NLs */
4187 else
4188 *s = c;
4189 ++s;
4190 if (++len != bufsize)
4191 continue;
4192 if (buf_write_bytes(&write_info) == FAIL)
4194 end = 0; /* write error: break loop */
4195 break;
4197 nchars += bufsize;
4198 s = buffer;
4199 len = 0;
4201 /* write failed or last line has no EOL: stop here */
4202 if (end == 0
4203 || (lnum == end
4204 && write_bin
4205 && (lnum == write_no_eol_lnum
4206 || (lnum == buf->b_ml.ml_line_count && !buf->b_p_eol))))
4208 ++lnum; /* written the line, count it */
4209 no_eol = TRUE;
4210 break;
4212 if (fileformat == EOL_UNIX)
4213 *s++ = NL;
4214 else
4216 *s++ = CAR; /* EOL_MAC or EOL_DOS: write CR */
4217 if (fileformat == EOL_DOS) /* write CR-NL */
4219 if (++len == bufsize)
4221 if (buf_write_bytes(&write_info) == FAIL)
4223 end = 0; /* write error: break loop */
4224 break;
4226 nchars += bufsize;
4227 s = buffer;
4228 len = 0;
4230 *s++ = NL;
4233 if (++len == bufsize && end)
4235 if (buf_write_bytes(&write_info) == FAIL)
4237 end = 0; /* write error: break loop */
4238 break;
4240 nchars += bufsize;
4241 s = buffer;
4242 len = 0;
4244 ui_breakcheck();
4245 if (got_int)
4247 end = 0; /* Interrupted, break loop */
4248 break;
4251 #ifdef VMS
4253 * On VMS there is a problem: newlines get added when writing blocks
4254 * at a time. Fix it by writing a line at a time.
4255 * This is much slower!
4256 * Explanation: VAX/DECC RTL insists that records in some RMS
4257 * structures end with a newline (carriage return) character, and if
4258 * they don't it adds one.
4259 * With other RMS structures it works perfect without this fix.
4261 if (buf->b_fab_rfm == FAB$C_VFC
4262 || ((buf->b_fab_rat & (FAB$M_FTN | FAB$M_CR)) != 0))
4264 int b2write;
4266 buf->b_fab_mrs = (buf->b_fab_mrs == 0
4267 ? MIN(4096, bufsize)
4268 : MIN(buf->b_fab_mrs, bufsize));
4270 b2write = len;
4271 while (b2write > 0)
4273 write_info.bw_len = MIN(b2write, buf->b_fab_mrs);
4274 if (buf_write_bytes(&write_info) == FAIL)
4276 end = 0;
4277 break;
4279 b2write -= MIN(b2write, buf->b_fab_mrs);
4281 write_info.bw_len = bufsize;
4282 nchars += len;
4283 s = buffer;
4284 len = 0;
4286 #endif
4288 if (len > 0 && end > 0)
4290 write_info.bw_len = len;
4291 if (buf_write_bytes(&write_info) == FAIL)
4292 end = 0; /* write error */
4293 nchars += len;
4296 #if defined(UNIX) && defined(HAVE_FSYNC)
4297 /* On many journalling file systems there is a bug that causes both the
4298 * original and the backup file to be lost when halting the system right
4299 * after writing the file. That's because only the meta-data is
4300 * journalled. Syncing the file slows down the system, but assures it has
4301 * been written to disk and we don't lose it.
4302 * For a device do try the fsync() but don't complain if it does not work
4303 * (could be a pipe).
4304 * If the 'fsync' option is FALSE, don't fsync(). Useful for laptops. */
4305 if (p_fs && fsync(fd) != 0 && !device)
4307 errmsg = (char_u *)_("E667: Fsync failed");
4308 end = 0;
4310 #endif
4312 #ifdef UNIX
4313 /* When creating a new file, set its owner/group to that of the original
4314 * file. Get the new device and inode number. */
4315 if (backup != NULL && !backup_copy)
4317 # ifdef HAVE_FCHOWN
4318 struct stat st;
4320 /* don't change the owner when it's already OK, some systems remove
4321 * permission or ACL stuff */
4322 if (mch_stat((char *)wfname, &st) < 0
4323 || st.st_uid != st_old.st_uid
4324 || st.st_gid != st_old.st_gid)
4326 fchown(fd, st_old.st_uid, st_old.st_gid);
4327 if (perm >= 0) /* set permission again, may have changed */
4328 (void)mch_setperm(wfname, perm);
4330 # endif
4331 buf_setino(buf);
4333 else if (buf->b_dev < 0)
4334 /* Set the inode when creating a new file. */
4335 buf_setino(buf);
4336 #endif
4338 if (close(fd) != 0)
4340 errmsg = (char_u *)_("E512: Close failed");
4341 end = 0;
4344 #ifdef UNIX
4345 if (made_writable)
4346 perm &= ~0200; /* reset 'w' bit for security reasons */
4347 #endif
4348 if (perm >= 0) /* set perm. of new file same as old file */
4349 (void)mch_setperm(wfname, perm);
4350 #ifdef RISCOS
4351 if (!append && !filtering)
4352 /* Set the filetype after writing the file. */
4353 mch_set_filetype(wfname, buf->b_p_oft);
4354 #endif
4355 #ifdef HAVE_ACL
4356 /* Probably need to set the ACL before changing the user (can't set the
4357 * ACL on a file the user doesn't own). */
4358 if (!backup_copy)
4359 mch_set_acl(wfname, acl);
4360 #endif
4363 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
4364 if (wfname != fname)
4367 * The file was written to a temp file, now it needs to be converted
4368 * with 'charconvert' to (overwrite) the output file.
4370 if (end != 0)
4372 if (eval_charconvert(enc_utf8 ? (char_u *)"utf-8" : p_enc, fenc,
4373 wfname, fname) == FAIL)
4375 write_info.bw_conv_error = TRUE;
4376 end = 0;
4379 mch_remove(wfname);
4380 vim_free(wfname);
4382 #endif
4384 if (end == 0)
4386 if (errmsg == NULL)
4388 #ifdef FEAT_MBYTE
4389 if (write_info.bw_conv_error)
4390 errmsg = (char_u *)_("E513: write error, conversion failed (make 'fenc' empty to override)");
4391 else
4392 #endif
4393 if (got_int)
4394 errmsg = (char_u *)_(e_interr);
4395 else
4396 errmsg = (char_u *)_("E514: write error (file system full?)");
4400 * If we have a backup file, try to put it in place of the new file,
4401 * because the new file is probably corrupt. This avoids loosing the
4402 * original file when trying to make a backup when writing the file a
4403 * second time.
4404 * When "backup_copy" is set we need to copy the backup over the new
4405 * file. Otherwise rename the backup file.
4406 * If this is OK, don't give the extra warning message.
4408 if (backup != NULL)
4410 if (backup_copy)
4412 /* This may take a while, if we were interrupted let the user
4413 * know we got the message. */
4414 if (got_int)
4416 MSG(_(e_interr));
4417 out_flush();
4419 if ((fd = mch_open((char *)backup, O_RDONLY | O_EXTRA, 0)) >= 0)
4421 if ((write_info.bw_fd = mch_open((char *)fname,
4422 O_WRONLY | O_CREAT | O_TRUNC | O_EXTRA,
4423 perm & 0777)) >= 0)
4425 /* copy the file. */
4426 write_info.bw_buf = smallbuf;
4427 #ifdef HAS_BW_FLAGS
4428 write_info.bw_flags = FIO_NOCONVERT;
4429 #endif
4430 while ((write_info.bw_len = vim_read(fd, smallbuf,
4431 SMBUFSIZE)) > 0)
4432 if (buf_write_bytes(&write_info) == FAIL)
4433 break;
4435 if (close(write_info.bw_fd) >= 0
4436 && write_info.bw_len == 0)
4437 end = 1; /* success */
4439 close(fd); /* ignore errors for closing read file */
4442 else
4444 if (vim_rename(backup, fname) == 0)
4445 end = 1;
4448 goto fail;
4451 lnum -= start; /* compute number of written lines */
4452 --no_wait_return; /* may wait for return now */
4454 #if !(defined(UNIX) || defined(VMS))
4455 fname = sfname; /* use shortname now, for the messages */
4456 #endif
4457 if (!filtering)
4459 msg_add_fname(buf, fname); /* put fname in IObuff with quotes */
4460 c = FALSE;
4461 #ifdef FEAT_MBYTE
4462 if (write_info.bw_conv_error)
4464 STRCAT(IObuff, _(" CONVERSION ERROR"));
4465 c = TRUE;
4467 else if (notconverted)
4469 STRCAT(IObuff, _("[NOT converted]"));
4470 c = TRUE;
4472 else if (converted)
4474 STRCAT(IObuff, _("[converted]"));
4475 c = TRUE;
4477 #endif
4478 if (device)
4480 STRCAT(IObuff, _("[Device]"));
4481 c = TRUE;
4483 else if (newfile)
4485 STRCAT(IObuff, shortmess(SHM_NEW) ? _("[New]") : _("[New File]"));
4486 c = TRUE;
4488 if (no_eol)
4490 msg_add_eol();
4491 c = TRUE;
4493 /* may add [unix/dos/mac] */
4494 if (msg_add_fileformat(fileformat))
4495 c = TRUE;
4496 #ifdef FEAT_CRYPT
4497 if (wb_flags & FIO_ENCRYPTED)
4499 STRCAT(IObuff, _("[crypted]"));
4500 c = TRUE;
4502 #endif
4503 msg_add_lines(c, (long)lnum, nchars); /* add line/char count */
4504 if (!shortmess(SHM_WRITE))
4506 if (append)
4507 STRCAT(IObuff, shortmess(SHM_WRI) ? _(" [a]") : _(" appended"));
4508 else
4509 STRCAT(IObuff, shortmess(SHM_WRI) ? _(" [w]") : _(" written"));
4512 set_keep_msg(msg_trunc_attr(IObuff, FALSE, 0), 0);
4515 /* When written everything correctly: reset 'modified'. Unless not
4516 * writing to the original file and '+' is not in 'cpoptions'. */
4517 if (reset_changed && whole && !append
4518 #ifdef FEAT_MBYTE
4519 && !write_info.bw_conv_error
4520 #endif
4521 && (overwriting || vim_strchr(p_cpo, CPO_PLUS) != NULL)
4524 unchanged(buf, TRUE);
4525 u_unchanged(buf);
4529 * If written to the current file, update the timestamp of the swap file
4530 * and reset the BF_WRITE_MASK flags. Also sets buf->b_mtime.
4532 if (overwriting)
4534 ml_timestamp(buf);
4535 if (append)
4536 buf->b_flags &= ~BF_NEW;
4537 else
4538 buf->b_flags &= ~BF_WRITE_MASK;
4542 * If we kept a backup until now, and we are in patch mode, then we make
4543 * the backup file our 'original' file.
4545 if (*p_pm && dobackup)
4547 char *org = (char *)buf_modname(
4548 #ifdef SHORT_FNAME
4549 TRUE,
4550 #else
4551 (buf->b_p_sn || buf->b_shortname),
4552 #endif
4553 fname, p_pm, FALSE);
4555 if (backup != NULL)
4557 struct stat st;
4560 * If the original file does not exist yet
4561 * the current backup file becomes the original file
4563 if (org == NULL)
4564 EMSG(_("E205: Patchmode: can't save original file"));
4565 else if (mch_stat(org, &st) < 0)
4567 vim_rename(backup, (char_u *)org);
4568 vim_free(backup); /* don't delete the file */
4569 backup = NULL;
4570 #ifdef UNIX
4571 set_file_time((char_u *)org, st_old.st_atime, st_old.st_mtime);
4572 #endif
4576 * If there is no backup file, remember that a (new) file was
4577 * created.
4579 else
4581 int empty_fd;
4583 if (org == NULL
4584 || (empty_fd = mch_open(org,
4585 O_CREAT | O_EXTRA | O_EXCL | O_NOFOLLOW,
4586 perm < 0 ? 0666 : (perm & 0777))) < 0)
4587 EMSG(_("E206: patchmode: can't touch empty original file"));
4588 else
4589 close(empty_fd);
4591 if (org != NULL)
4593 mch_setperm((char_u *)org, mch_getperm(fname) & 0777);
4594 vim_free(org);
4599 * Remove the backup unless 'backup' option is set
4601 if (!p_bk && backup != NULL && mch_remove(backup) != 0)
4602 EMSG(_("E207: Can't delete backup file"));
4604 #ifdef FEAT_SUN_WORKSHOP
4605 if (usingSunWorkShop)
4606 workshop_file_saved((char *) ffname);
4607 #endif
4609 goto nofail;
4612 * Finish up. We get here either after failure or success.
4614 fail:
4615 --no_wait_return; /* may wait for return now */
4616 nofail:
4618 /* Done saving, we accept changed buffer warnings again */
4619 buf->b_saving = FALSE;
4621 vim_free(backup);
4622 if (buffer != smallbuf)
4623 vim_free(buffer);
4624 #ifdef FEAT_MBYTE
4625 vim_free(fenc_tofree);
4626 vim_free(write_info.bw_conv_buf);
4627 # ifdef USE_ICONV
4628 if (write_info.bw_iconv_fd != (iconv_t)-1)
4630 iconv_close(write_info.bw_iconv_fd);
4631 write_info.bw_iconv_fd = (iconv_t)-1;
4633 # endif
4634 #endif
4635 #ifdef HAVE_ACL
4636 mch_free_acl(acl);
4637 #endif
4639 if (errmsg != NULL)
4641 int numlen = errnum != NULL ? (int)STRLEN(errnum) : 0;
4643 attr = hl_attr(HLF_E); /* set highlight for error messages */
4644 msg_add_fname(buf,
4645 #ifndef UNIX
4646 sfname
4647 #else
4648 fname
4649 #endif
4650 ); /* put file name in IObuff with quotes */
4651 if (STRLEN(IObuff) + STRLEN(errmsg) + numlen >= IOSIZE)
4652 IObuff[IOSIZE - STRLEN(errmsg) - numlen - 1] = NUL;
4653 /* If the error message has the form "is ...", put the error number in
4654 * front of the file name. */
4655 if (errnum != NULL)
4657 mch_memmove(IObuff + numlen, IObuff, STRLEN(IObuff) + 1);
4658 mch_memmove(IObuff, errnum, (size_t)numlen);
4660 STRCAT(IObuff, errmsg);
4661 emsg(IObuff);
4663 retval = FAIL;
4664 if (end == 0)
4666 MSG_PUTS_ATTR(_("\nWARNING: Original file may be lost or damaged\n"),
4667 attr | MSG_HIST);
4668 MSG_PUTS_ATTR(_("don't quit the editor until the file is successfully written!"),
4669 attr | MSG_HIST);
4671 /* Update the timestamp to avoid an "overwrite changed file"
4672 * prompt when writing again. */
4673 if (mch_stat((char *)fname, &st_old) >= 0)
4675 buf_store_time(buf, &st_old, fname);
4676 buf->b_mtime_read = buf->b_mtime;
4680 msg_scroll = msg_save;
4682 #ifdef FEAT_AUTOCMD
4683 #ifdef FEAT_EVAL
4684 if (!should_abort(retval))
4685 #else
4686 if (!got_int)
4687 #endif
4689 aco_save_T aco;
4691 write_no_eol_lnum = 0; /* in case it was set by the previous read */
4694 * Apply POST autocommands.
4695 * Careful: The autocommands may call buf_write() recursively!
4697 aucmd_prepbuf(&aco, buf);
4699 if (append)
4700 apply_autocmds_exarg(EVENT_FILEAPPENDPOST, fname, fname,
4701 FALSE, curbuf, eap);
4702 else if (filtering)
4703 apply_autocmds_exarg(EVENT_FILTERWRITEPOST, NULL, fname,
4704 FALSE, curbuf, eap);
4705 else if (reset_changed && whole)
4706 apply_autocmds_exarg(EVENT_BUFWRITEPOST, fname, fname,
4707 FALSE, curbuf, eap);
4708 else
4709 apply_autocmds_exarg(EVENT_FILEWRITEPOST, fname, fname,
4710 FALSE, curbuf, eap);
4712 /* restore curwin/curbuf and a few other things */
4713 aucmd_restbuf(&aco);
4715 #ifdef FEAT_EVAL
4716 if (aborting()) /* autocmds may abort script processing */
4717 retval = FALSE;
4718 #endif
4720 #endif
4722 got_int |= prev_got_int;
4724 #ifdef MACOS_CLASSIC /* TODO: Is it need for MACOS_X? (Dany) */
4725 /* Update machine specific information. */
4726 mch_post_buffer_write(buf);
4727 #endif
4728 #ifdef FEAT_ODB_EDITOR
4729 odb_post_buffer_write(buf);
4730 #endif
4732 return retval;
4736 * Set the name of the current buffer. Use when the buffer doesn't have a
4737 * name and a ":r" or ":w" command with a file name is used.
4739 static int
4740 set_rw_fname(fname, sfname)
4741 char_u *fname;
4742 char_u *sfname;
4744 #ifdef FEAT_AUTOCMD
4745 /* It's like the unnamed buffer is deleted.... */
4746 if (curbuf->b_p_bl)
4747 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
4748 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
4749 # ifdef FEAT_EVAL
4750 if (aborting()) /* autocmds may abort script processing */
4751 return FAIL;
4752 # endif
4753 #endif
4755 if (setfname(curbuf, fname, sfname, FALSE) == OK)
4756 curbuf->b_flags |= BF_NOTEDITED;
4758 #ifdef FEAT_AUTOCMD
4759 /* ....and a new named one is created */
4760 apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, curbuf);
4761 if (curbuf->b_p_bl)
4762 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
4763 # ifdef FEAT_EVAL
4764 if (aborting()) /* autocmds may abort script processing */
4765 return FAIL;
4766 # endif
4768 /* Do filetype detection now if 'filetype' is empty. */
4769 if (*curbuf->b_p_ft == NUL)
4771 if (au_has_group((char_u *)"filetypedetect"))
4772 (void)do_doautocmd((char_u *)"filetypedetect BufRead", FALSE);
4773 do_modelines(0);
4775 #endif
4777 return OK;
4781 * Put file name into IObuff with quotes.
4783 void
4784 msg_add_fname(buf, fname)
4785 buf_T *buf;
4786 char_u *fname;
4788 if (fname == NULL)
4789 fname = (char_u *)"-stdin-";
4790 home_replace(buf, fname, IObuff + 1, IOSIZE - 4, TRUE);
4791 IObuff[0] = '"';
4792 STRCAT(IObuff, "\" ");
4796 * Append message for text mode to IObuff.
4797 * Return TRUE if something appended.
4799 static int
4800 msg_add_fileformat(eol_type)
4801 int eol_type;
4803 #ifndef USE_CRNL
4804 if (eol_type == EOL_DOS)
4806 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[dos]") : _("[dos format]"));
4807 return TRUE;
4809 #endif
4810 #ifndef USE_CR
4811 if (eol_type == EOL_MAC)
4813 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[mac]") : _("[mac format]"));
4814 return TRUE;
4816 #endif
4817 #if defined(USE_CRNL) || defined(USE_CR)
4818 if (eol_type == EOL_UNIX)
4820 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[unix]") : _("[unix format]"));
4821 return TRUE;
4823 #endif
4824 return FALSE;
4828 * Append line and character count to IObuff.
4830 void
4831 msg_add_lines(insert_space, lnum, nchars)
4832 int insert_space;
4833 long lnum;
4834 long nchars;
4836 char_u *p;
4838 p = IObuff + STRLEN(IObuff);
4840 if (insert_space)
4841 *p++ = ' ';
4842 if (shortmess(SHM_LINES))
4843 sprintf((char *)p, "%ldL, %ldC", lnum, nchars);
4844 else
4846 if (lnum == 1)
4847 STRCPY(p, _("1 line, "));
4848 else
4849 sprintf((char *)p, _("%ld lines, "), lnum);
4850 p += STRLEN(p);
4851 if (nchars == 1)
4852 STRCPY(p, _("1 character"));
4853 else
4854 sprintf((char *)p, _("%ld characters"), nchars);
4859 * Append message for missing line separator to IObuff.
4861 static void
4862 msg_add_eol()
4864 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]") : _("[Incomplete last line]"));
4868 * Check modification time of file, before writing to it.
4869 * The size isn't checked, because using a tool like "gzip" takes care of
4870 * using the same timestamp but can't set the size.
4872 static int
4873 check_mtime(buf, st)
4874 buf_T *buf;
4875 struct stat *st;
4877 if (buf->b_mtime_read != 0
4878 && time_differs((long)st->st_mtime, buf->b_mtime_read))
4880 msg_scroll = TRUE; /* don't overwrite messages here */
4881 msg_silent = 0; /* must give this prompt */
4882 /* don't use emsg() here, don't want to flush the buffers */
4883 MSG_ATTR(_("WARNING: The file has been changed since reading it!!!"),
4884 hl_attr(HLF_E));
4885 if (ask_yesno((char_u *)_("Do you really want to write to it"),
4886 TRUE) == 'n')
4887 return FAIL;
4888 msg_scroll = FALSE; /* always overwrite the file message now */
4890 return OK;
4893 static int
4894 time_differs(t1, t2)
4895 long t1, t2;
4897 #if defined(__linux__) || defined(MSDOS) || defined(MSWIN)
4898 /* On a FAT filesystem, esp. under Linux, there are only 5 bits to store
4899 * the seconds. Since the roundoff is done when flushing the inode, the
4900 * time may change unexpectedly by one second!!! */
4901 return (t1 - t2 > 1 || t2 - t1 > 1);
4902 #else
4903 return (t1 != t2);
4904 #endif
4908 * Call write() to write a number of bytes to the file.
4909 * Also handles encryption and 'encoding' conversion.
4911 * Return FAIL for failure, OK otherwise.
4913 static int
4914 buf_write_bytes(ip)
4915 struct bw_info *ip;
4917 int wlen;
4918 char_u *buf = ip->bw_buf; /* data to write */
4919 int len = ip->bw_len; /* length of data */
4920 #ifdef HAS_BW_FLAGS
4921 int flags = ip->bw_flags; /* extra flags */
4922 #endif
4924 #ifdef FEAT_MBYTE
4926 * Skip conversion when writing the crypt magic number or the BOM.
4928 if (!(flags & FIO_NOCONVERT))
4930 char_u *p;
4931 unsigned c;
4932 int n;
4934 if (flags & FIO_UTF8)
4937 * Convert latin1 in the buffer to UTF-8 in the file.
4939 p = ip->bw_conv_buf; /* translate to buffer */
4940 for (wlen = 0; wlen < len; ++wlen)
4941 p += utf_char2bytes(buf[wlen], p);
4942 buf = ip->bw_conv_buf;
4943 len = (int)(p - ip->bw_conv_buf);
4945 else if (flags & (FIO_UCS4 | FIO_UTF16 | FIO_UCS2 | FIO_LATIN1))
4948 * Convert UTF-8 bytes in the buffer to UCS-2, UCS-4, UTF-16 or
4949 * Latin1 chars in the file.
4951 if (flags & FIO_LATIN1)
4952 p = buf; /* translate in-place (can only get shorter) */
4953 else
4954 p = ip->bw_conv_buf; /* translate to buffer */
4955 for (wlen = 0; wlen < len; wlen += n)
4957 if (wlen == 0 && ip->bw_restlen != 0)
4959 int l;
4961 /* Use remainder of previous call. Append the start of
4962 * buf[] to get a full sequence. Might still be too
4963 * short! */
4964 l = CONV_RESTLEN - ip->bw_restlen;
4965 if (l > len)
4966 l = len;
4967 mch_memmove(ip->bw_rest + ip->bw_restlen, buf, (size_t)l);
4968 n = utf_ptr2len_len(ip->bw_rest, ip->bw_restlen + l);
4969 if (n > ip->bw_restlen + len)
4971 /* We have an incomplete byte sequence at the end to
4972 * be written. We can't convert it without the
4973 * remaining bytes. Keep them for the next call. */
4974 if (ip->bw_restlen + len > CONV_RESTLEN)
4975 return FAIL;
4976 ip->bw_restlen += len;
4977 break;
4979 if (n > 1)
4980 c = utf_ptr2char(ip->bw_rest);
4981 else
4982 c = ip->bw_rest[0];
4983 if (n >= ip->bw_restlen)
4985 n -= ip->bw_restlen;
4986 ip->bw_restlen = 0;
4988 else
4990 ip->bw_restlen -= n;
4991 mch_memmove(ip->bw_rest, ip->bw_rest + n,
4992 (size_t)ip->bw_restlen);
4993 n = 0;
4996 else
4998 n = utf_ptr2len_len(buf + wlen, len - wlen);
4999 if (n > len - wlen)
5001 /* We have an incomplete byte sequence at the end to
5002 * be written. We can't convert it without the
5003 * remaining bytes. Keep them for the next call. */
5004 if (len - wlen > CONV_RESTLEN)
5005 return FAIL;
5006 ip->bw_restlen = len - wlen;
5007 mch_memmove(ip->bw_rest, buf + wlen,
5008 (size_t)ip->bw_restlen);
5009 break;
5011 if (n > 1)
5012 c = utf_ptr2char(buf + wlen);
5013 else
5014 c = buf[wlen];
5017 ip->bw_conv_error |= ucs2bytes(c, &p, flags);
5019 if (flags & FIO_LATIN1)
5020 len = (int)(p - buf);
5021 else
5023 buf = ip->bw_conv_buf;
5024 len = (int)(p - ip->bw_conv_buf);
5028 # ifdef WIN3264
5029 else if (flags & FIO_CODEPAGE)
5032 * Convert UTF-8 or codepage to UCS-2 and then to MS-Windows
5033 * codepage.
5035 char_u *from;
5036 size_t fromlen;
5037 char_u *to;
5038 int u8c;
5039 BOOL bad = FALSE;
5040 int needed;
5042 if (ip->bw_restlen > 0)
5044 /* Need to concatenate the remainder of the previous call and
5045 * the bytes of the current call. Use the end of the
5046 * conversion buffer for this. */
5047 fromlen = len + ip->bw_restlen;
5048 from = ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5049 mch_memmove(from, ip->bw_rest, (size_t)ip->bw_restlen);
5050 mch_memmove(from + ip->bw_restlen, buf, (size_t)len);
5052 else
5054 from = buf;
5055 fromlen = len;
5058 to = ip->bw_conv_buf;
5059 if (enc_utf8)
5061 /* Convert from UTF-8 to UCS-2, to the start of the buffer.
5062 * The buffer has been allocated to be big enough. */
5063 while (fromlen > 0)
5065 n = (int)utf_ptr2len_len(from, (int)fromlen);
5066 if (n > (int)fromlen) /* incomplete byte sequence */
5067 break;
5068 u8c = utf_ptr2char(from);
5069 *to++ = (u8c & 0xff);
5070 *to++ = (u8c >> 8);
5071 fromlen -= n;
5072 from += n;
5075 /* Copy remainder to ip->bw_rest[] to be used for the next
5076 * call. */
5077 if (fromlen > CONV_RESTLEN)
5079 /* weird overlong sequence */
5080 ip->bw_conv_error = TRUE;
5081 return FAIL;
5083 mch_memmove(ip->bw_rest, from, fromlen);
5084 ip->bw_restlen = (int)fromlen;
5086 else
5088 /* Convert from enc_codepage to UCS-2, to the start of the
5089 * buffer. The buffer has been allocated to be big enough. */
5090 ip->bw_restlen = 0;
5091 needed = MultiByteToWideChar(enc_codepage,
5092 MB_ERR_INVALID_CHARS, (LPCSTR)from, (int)fromlen,
5093 NULL, 0);
5094 if (needed == 0)
5096 /* When conversion fails there may be a trailing byte. */
5097 needed = MultiByteToWideChar(enc_codepage,
5098 MB_ERR_INVALID_CHARS, (LPCSTR)from, (int)fromlen - 1,
5099 NULL, 0);
5100 if (needed == 0)
5102 /* Conversion doesn't work. */
5103 ip->bw_conv_error = TRUE;
5104 return FAIL;
5106 /* Save the trailing byte for the next call. */
5107 ip->bw_rest[0] = from[fromlen - 1];
5108 ip->bw_restlen = 1;
5110 needed = MultiByteToWideChar(enc_codepage, MB_ERR_INVALID_CHARS,
5111 (LPCSTR)from, (int)(fromlen - ip->bw_restlen),
5112 (LPWSTR)to, needed);
5113 if (needed == 0)
5115 /* Safety check: Conversion doesn't work. */
5116 ip->bw_conv_error = TRUE;
5117 return FAIL;
5119 to += needed * 2;
5122 fromlen = to - ip->bw_conv_buf;
5123 buf = to;
5124 # ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
5125 if (FIO_GET_CP(flags) == CP_UTF8)
5127 /* Convert from UCS-2 to UTF-8, using the remainder of the
5128 * conversion buffer. Fails when out of space. */
5129 for (from = ip->bw_conv_buf; fromlen > 1; fromlen -= 2)
5131 u8c = *from++;
5132 u8c += (*from++ << 8);
5133 to += utf_char2bytes(u8c, to);
5134 if (to + 6 >= ip->bw_conv_buf + ip->bw_conv_buflen)
5136 ip->bw_conv_error = TRUE;
5137 return FAIL;
5140 len = (int)(to - buf);
5142 else
5143 #endif
5145 /* Convert from UCS-2 to the codepage, using the remainder of
5146 * the conversion buffer. If the conversion uses the default
5147 * character "0", the data doesn't fit in this encoding, so
5148 * fail. */
5149 len = WideCharToMultiByte(FIO_GET_CP(flags), 0,
5150 (LPCWSTR)ip->bw_conv_buf, (int)fromlen / sizeof(WCHAR),
5151 (LPSTR)to, (int)(ip->bw_conv_buflen - fromlen), 0,
5152 &bad);
5153 if (bad)
5155 ip->bw_conv_error = TRUE;
5156 return FAIL;
5160 # endif
5162 # ifdef MACOS_CONVERT
5163 else if (flags & FIO_MACROMAN)
5166 * Convert UTF-8 or latin1 to Apple MacRoman.
5168 char_u *from;
5169 size_t fromlen;
5171 if (ip->bw_restlen > 0)
5173 /* Need to concatenate the remainder of the previous call and
5174 * the bytes of the current call. Use the end of the
5175 * conversion buffer for this. */
5176 fromlen = len + ip->bw_restlen;
5177 from = ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5178 mch_memmove(from, ip->bw_rest, (size_t)ip->bw_restlen);
5179 mch_memmove(from + ip->bw_restlen, buf, (size_t)len);
5181 else
5183 from = buf;
5184 fromlen = len;
5187 if (enc2macroman(from, fromlen,
5188 ip->bw_conv_buf, &len, ip->bw_conv_buflen,
5189 ip->bw_rest, &ip->bw_restlen) == FAIL)
5191 ip->bw_conv_error = TRUE;
5192 return FAIL;
5194 buf = ip->bw_conv_buf;
5196 # endif
5198 # ifdef USE_ICONV
5199 if (ip->bw_iconv_fd != (iconv_t)-1)
5201 const char *from;
5202 size_t fromlen;
5203 char *to;
5204 size_t tolen;
5206 /* Convert with iconv(). */
5207 if (ip->bw_restlen > 0)
5209 /* Need to concatenate the remainder of the previous call and
5210 * the bytes of the current call. Use the end of the
5211 * conversion buffer for this. */
5212 fromlen = len + ip->bw_restlen;
5213 from = (char *)ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5214 mch_memmove((void *)from, ip->bw_rest, (size_t)ip->bw_restlen);
5215 mch_memmove((void *)(from + ip->bw_restlen), buf, (size_t)len);
5216 tolen = ip->bw_conv_buflen - fromlen;
5218 else
5220 from = (const char *)buf;
5221 fromlen = len;
5222 tolen = ip->bw_conv_buflen;
5224 to = (char *)ip->bw_conv_buf;
5226 if (ip->bw_first)
5228 size_t save_len = tolen;
5230 /* output the initial shift state sequence */
5231 (void)iconv(ip->bw_iconv_fd, NULL, NULL, &to, &tolen);
5233 /* There is a bug in iconv() on Linux (which appears to be
5234 * wide-spread) which sets "to" to NULL and messes up "tolen".
5236 if (to == NULL)
5238 to = (char *)ip->bw_conv_buf;
5239 tolen = save_len;
5241 ip->bw_first = FALSE;
5245 * If iconv() has an error or there is not enough room, fail.
5247 if ((iconv(ip->bw_iconv_fd, (void *)&from, &fromlen, &to, &tolen)
5248 == (size_t)-1 && ICONV_ERRNO != ICONV_EINVAL)
5249 || fromlen > CONV_RESTLEN)
5251 ip->bw_conv_error = TRUE;
5252 return FAIL;
5255 /* copy remainder to ip->bw_rest[] to be used for the next call. */
5256 if (fromlen > 0)
5257 mch_memmove(ip->bw_rest, (void *)from, fromlen);
5258 ip->bw_restlen = (int)fromlen;
5260 buf = ip->bw_conv_buf;
5261 len = (int)((char_u *)to - ip->bw_conv_buf);
5263 # endif
5265 #endif /* FEAT_MBYTE */
5267 #ifdef FEAT_CRYPT
5268 if (flags & FIO_ENCRYPTED) /* encrypt the data */
5270 int ztemp, t, i;
5272 for (i = 0; i < len; i++)
5274 ztemp = buf[i];
5275 buf[i] = ZENCODE(ztemp, t);
5278 #endif
5280 /* Repeat the write(), it may be interrupted by a signal. */
5281 while (len > 0)
5283 wlen = vim_write(ip->bw_fd, buf, len);
5284 if (wlen <= 0) /* error! */
5285 return FAIL;
5286 len -= wlen;
5287 buf += wlen;
5289 return OK;
5292 #ifdef FEAT_MBYTE
5294 * Convert a Unicode character to bytes.
5296 static int
5297 ucs2bytes(c, pp, flags)
5298 unsigned c; /* in: character */
5299 char_u **pp; /* in/out: pointer to result */
5300 int flags; /* FIO_ flags */
5302 char_u *p = *pp;
5303 int error = FALSE;
5304 int cc;
5307 if (flags & FIO_UCS4)
5309 if (flags & FIO_ENDIAN_L)
5311 *p++ = c;
5312 *p++ = (c >> 8);
5313 *p++ = (c >> 16);
5314 *p++ = (c >> 24);
5316 else
5318 *p++ = (c >> 24);
5319 *p++ = (c >> 16);
5320 *p++ = (c >> 8);
5321 *p++ = c;
5324 else if (flags & (FIO_UCS2 | FIO_UTF16))
5326 if (c >= 0x10000)
5328 if (flags & FIO_UTF16)
5330 /* Make two words, ten bits of the character in each. First
5331 * word is 0xd800 - 0xdbff, second one 0xdc00 - 0xdfff */
5332 c -= 0x10000;
5333 if (c >= 0x100000)
5334 error = TRUE;
5335 cc = ((c >> 10) & 0x3ff) + 0xd800;
5336 if (flags & FIO_ENDIAN_L)
5338 *p++ = cc;
5339 *p++ = ((unsigned)cc >> 8);
5341 else
5343 *p++ = ((unsigned)cc >> 8);
5344 *p++ = cc;
5346 c = (c & 0x3ff) + 0xdc00;
5348 else
5349 error = TRUE;
5351 if (flags & FIO_ENDIAN_L)
5353 *p++ = c;
5354 *p++ = (c >> 8);
5356 else
5358 *p++ = (c >> 8);
5359 *p++ = c;
5362 else /* Latin1 */
5364 if (c >= 0x100)
5366 error = TRUE;
5367 *p++ = 0xBF;
5369 else
5370 *p++ = c;
5373 *pp = p;
5374 return error;
5378 * Return TRUE if "a" and "b" are the same 'encoding'.
5379 * Ignores difference between "ansi" and "latin1", "ucs-4" and "ucs-4be", etc.
5381 static int
5382 same_encoding(a, b)
5383 char_u *a;
5384 char_u *b;
5386 int f;
5388 if (STRCMP(a, b) == 0)
5389 return TRUE;
5390 f = get_fio_flags(a);
5391 return (f != 0 && get_fio_flags(b) == f);
5395 * Check "ptr" for a unicode encoding and return the FIO_ flags needed for the
5396 * internal conversion.
5397 * if "ptr" is an empty string, use 'encoding'.
5399 static int
5400 get_fio_flags(ptr)
5401 char_u *ptr;
5403 int prop;
5405 if (*ptr == NUL)
5406 ptr = p_enc;
5408 prop = enc_canon_props(ptr);
5409 if (prop & ENC_UNICODE)
5411 if (prop & ENC_2BYTE)
5413 if (prop & ENC_ENDIAN_L)
5414 return FIO_UCS2 | FIO_ENDIAN_L;
5415 return FIO_UCS2;
5417 if (prop & ENC_4BYTE)
5419 if (prop & ENC_ENDIAN_L)
5420 return FIO_UCS4 | FIO_ENDIAN_L;
5421 return FIO_UCS4;
5423 if (prop & ENC_2WORD)
5425 if (prop & ENC_ENDIAN_L)
5426 return FIO_UTF16 | FIO_ENDIAN_L;
5427 return FIO_UTF16;
5429 return FIO_UTF8;
5431 if (prop & ENC_LATIN1)
5432 return FIO_LATIN1;
5433 /* must be ENC_DBCS, requires iconv() */
5434 return 0;
5437 #ifdef WIN3264
5439 * Check "ptr" for a MS-Windows codepage name and return the FIO_ flags needed
5440 * for the conversion MS-Windows can do for us. Also accept "utf-8".
5441 * Used for conversion between 'encoding' and 'fileencoding'.
5443 static int
5444 get_win_fio_flags(ptr)
5445 char_u *ptr;
5447 int cp;
5449 /* Cannot do this when 'encoding' is not utf-8 and not a codepage. */
5450 if (!enc_utf8 && enc_codepage <= 0)
5451 return 0;
5453 cp = encname2codepage(ptr);
5454 if (cp == 0)
5456 # ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
5457 if (STRCMP(ptr, "utf-8") == 0)
5458 cp = CP_UTF8;
5459 else
5460 # endif
5461 return 0;
5463 return FIO_PUT_CP(cp) | FIO_CODEPAGE;
5465 #endif
5467 #ifdef MACOS_X
5469 * Check "ptr" for a Carbon supported encoding and return the FIO_ flags
5470 * needed for the internal conversion to/from utf-8 or latin1.
5472 static int
5473 get_mac_fio_flags(ptr)
5474 char_u *ptr;
5476 if ((enc_utf8 || STRCMP(p_enc, "latin1") == 0)
5477 && (enc_canon_props(ptr) & ENC_MACROMAN))
5478 return FIO_MACROMAN;
5479 return 0;
5481 #endif
5484 * Check for a Unicode BOM (Byte Order Mark) at the start of p[size].
5485 * "size" must be at least 2.
5486 * Return the name of the encoding and set "*lenp" to the length.
5487 * Returns NULL when no BOM found.
5489 static char_u *
5490 check_for_bom(p, size, lenp, flags)
5491 char_u *p;
5492 long size;
5493 int *lenp;
5494 int flags;
5496 char *name = NULL;
5497 int len = 2;
5499 if (p[0] == 0xef && p[1] == 0xbb && size >= 3 && p[2] == 0xbf
5500 && (flags == FIO_ALL || flags == 0))
5502 name = "utf-8"; /* EF BB BF */
5503 len = 3;
5505 else if (p[0] == 0xff && p[1] == 0xfe)
5507 if (size >= 4 && p[2] == 0 && p[3] == 0
5508 && (flags == FIO_ALL || flags == (FIO_UCS4 | FIO_ENDIAN_L)))
5510 name = "ucs-4le"; /* FF FE 00 00 */
5511 len = 4;
5513 else if (flags == FIO_ALL || flags == (FIO_UCS2 | FIO_ENDIAN_L))
5514 name = "ucs-2le"; /* FF FE */
5515 else if (flags == (FIO_UTF16 | FIO_ENDIAN_L))
5516 name = "utf-16le"; /* FF FE */
5518 else if (p[0] == 0xfe && p[1] == 0xff
5519 && (flags == FIO_ALL || flags == FIO_UCS2 || flags == FIO_UTF16))
5521 /* Default to utf-16, it works also for ucs-2 text. */
5522 if (flags == FIO_UCS2)
5523 name = "ucs-2"; /* FE FF */
5524 else
5525 name = "utf-16"; /* FE FF */
5527 else if (size >= 4 && p[0] == 0 && p[1] == 0 && p[2] == 0xfe
5528 && p[3] == 0xff && (flags == FIO_ALL || flags == FIO_UCS4))
5530 name = "ucs-4"; /* 00 00 FE FF */
5531 len = 4;
5534 *lenp = len;
5535 return (char_u *)name;
5539 * Generate a BOM in "buf[4]" for encoding "name".
5540 * Return the length of the BOM (zero when no BOM).
5542 static int
5543 make_bom(buf, name)
5544 char_u *buf;
5545 char_u *name;
5547 int flags;
5548 char_u *p;
5550 flags = get_fio_flags(name);
5552 /* Can't put a BOM in a non-Unicode file. */
5553 if (flags == FIO_LATIN1 || flags == 0)
5554 return 0;
5556 if (flags == FIO_UTF8) /* UTF-8 */
5558 buf[0] = 0xef;
5559 buf[1] = 0xbb;
5560 buf[2] = 0xbf;
5561 return 3;
5563 p = buf;
5564 (void)ucs2bytes(0xfeff, &p, flags);
5565 return (int)(p - buf);
5567 #endif
5569 #if defined(FEAT_VIMINFO) || defined(FEAT_BROWSE) || \
5570 defined(FEAT_QUICKFIX) || defined(FEAT_AUTOCMD) || defined(PROTO)
5572 * Try to find a shortname by comparing the fullname with the current
5573 * directory.
5574 * Returns "full_path" or pointer into "full_path" if shortened.
5576 char_u *
5577 shorten_fname1(full_path)
5578 char_u *full_path;
5580 char_u dirname[MAXPATHL];
5581 char_u *p = full_path;
5583 if (mch_dirname(dirname, MAXPATHL) == OK)
5585 p = shorten_fname(full_path, dirname);
5586 if (p == NULL || *p == NUL)
5587 p = full_path;
5589 return p;
5591 #endif
5594 * Try to find a shortname by comparing the fullname with the current
5595 * directory.
5596 * Returns NULL if not shorter name possible, pointer into "full_path"
5597 * otherwise.
5599 char_u *
5600 shorten_fname(full_path, dir_name)
5601 char_u *full_path;
5602 char_u *dir_name;
5604 int len;
5605 char_u *p;
5607 if (full_path == NULL)
5608 return NULL;
5609 len = (int)STRLEN(dir_name);
5610 if (fnamencmp(dir_name, full_path, len) == 0)
5612 p = full_path + len;
5613 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
5615 * MSDOS: when a file is in the root directory, dir_name will end in a
5616 * slash, since C: by itself does not define a specific dir. In this
5617 * case p may already be correct. <negri>
5619 if (!((len > 2) && (*(p - 2) == ':')))
5620 #endif
5622 if (vim_ispathsep(*p))
5623 ++p;
5624 #ifndef VMS /* the path separator is always part of the path */
5625 else
5626 p = NULL;
5627 #endif
5630 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
5632 * When using a file in the current drive, remove the drive name:
5633 * "A:\dir\file" -> "\dir\file". This helps when moving a session file on
5634 * a floppy from "A:\dir" to "B:\dir".
5636 else if (len > 3
5637 && TOUPPER_LOC(full_path[0]) == TOUPPER_LOC(dir_name[0])
5638 && full_path[1] == ':'
5639 && vim_ispathsep(full_path[2]))
5640 p = full_path + 2;
5641 #endif
5642 else
5643 p = NULL;
5644 return p;
5648 * Shorten filenames for all buffers.
5649 * When "force" is TRUE: Use full path from now on for files currently being
5650 * edited, both for file name and swap file name. Try to shorten the file
5651 * names a bit, if safe to do so.
5652 * When "force" is FALSE: Only try to shorten absolute file names.
5653 * For buffers that have buftype "nofile" or "scratch": never change the file
5654 * name.
5656 void
5657 shorten_fnames(force)
5658 int force;
5660 char_u dirname[MAXPATHL];
5661 buf_T *buf;
5662 char_u *p;
5664 mch_dirname(dirname, MAXPATHL);
5665 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
5667 if (buf->b_fname != NULL
5668 #ifdef FEAT_QUICKFIX
5669 && !bt_nofile(buf)
5670 #endif
5671 && !path_with_url(buf->b_fname)
5672 && (force
5673 || buf->b_sfname == NULL
5674 || mch_isFullName(buf->b_sfname)))
5676 vim_free(buf->b_sfname);
5677 buf->b_sfname = NULL;
5678 p = shorten_fname(buf->b_ffname, dirname);
5679 if (p != NULL)
5681 buf->b_sfname = vim_strsave(p);
5682 buf->b_fname = buf->b_sfname;
5684 if (p == NULL || buf->b_fname == NULL)
5685 buf->b_fname = buf->b_ffname;
5688 /* Always make the swap file name a full path, a "nofile" buffer may
5689 * also have a swap file. */
5690 mf_fullname(buf->b_ml.ml_mfp);
5692 #ifdef FEAT_WINDOWS
5693 status_redraw_all();
5694 redraw_tabline = TRUE;
5695 #endif
5698 #if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \
5699 || defined(FEAT_GUI_MSWIN) \
5700 || defined(FEAT_GUI_MAC) \
5701 || defined(PROTO) \
5702 || defined(FEAT_GUI_MACVIM)
5704 * Shorten all filenames in "fnames[count]" by current directory.
5706 void
5707 shorten_filenames(fnames, count)
5708 char_u **fnames;
5709 int count;
5711 int i;
5712 char_u dirname[MAXPATHL];
5713 char_u *p;
5715 if (fnames == NULL || count < 1)
5716 return;
5717 mch_dirname(dirname, sizeof(dirname));
5718 for (i = 0; i < count; ++i)
5720 if ((p = shorten_fname(fnames[i], dirname)) != NULL)
5722 /* shorten_fname() returns pointer in given "fnames[i]". If free
5723 * "fnames[i]" first, "p" becomes invalid. So we need to copy
5724 * "p" first then free fnames[i]. */
5725 p = vim_strsave(p);
5726 vim_free(fnames[i]);
5727 fnames[i] = p;
5731 #endif
5734 * add extention to file name - change path/fo.o.h to path/fo.o.h.ext or
5735 * fo_o_h.ext for MSDOS or when shortname option set.
5737 * Assumed that fname is a valid name found in the filesystem we assure that
5738 * the return value is a different name and ends in 'ext'.
5739 * "ext" MUST be at most 4 characters long if it starts with a dot, 3
5740 * characters otherwise.
5741 * Space for the returned name is allocated, must be freed later.
5742 * Returns NULL when out of memory.
5744 char_u *
5745 modname(fname, ext, prepend_dot)
5746 char_u *fname, *ext;
5747 int prepend_dot; /* may prepend a '.' to file name */
5749 return buf_modname(
5750 #ifdef SHORT_FNAME
5751 TRUE,
5752 #else
5753 (curbuf->b_p_sn || curbuf->b_shortname),
5754 #endif
5755 fname, ext, prepend_dot);
5758 char_u *
5759 buf_modname(shortname, fname, ext, prepend_dot)
5760 int shortname; /* use 8.3 file name */
5761 char_u *fname, *ext;
5762 int prepend_dot; /* may prepend a '.' to file name */
5764 char_u *retval;
5765 char_u *s;
5766 char_u *e;
5767 char_u *ptr;
5768 int fnamelen, extlen;
5770 extlen = (int)STRLEN(ext);
5773 * If there is no file name we must get the name of the current directory
5774 * (we need the full path in case :cd is used).
5776 if (fname == NULL || *fname == NUL)
5778 retval = alloc((unsigned)(MAXPATHL + extlen + 3));
5779 if (retval == NULL)
5780 return NULL;
5781 if (mch_dirname(retval, MAXPATHL) == FAIL ||
5782 (fnamelen = (int)STRLEN(retval)) == 0)
5784 vim_free(retval);
5785 return NULL;
5787 if (!after_pathsep(retval, retval + fnamelen))
5789 retval[fnamelen++] = PATHSEP;
5790 retval[fnamelen] = NUL;
5792 #ifndef SHORT_FNAME
5793 prepend_dot = FALSE; /* nothing to prepend a dot to */
5794 #endif
5796 else
5798 fnamelen = (int)STRLEN(fname);
5799 retval = alloc((unsigned)(fnamelen + extlen + 3));
5800 if (retval == NULL)
5801 return NULL;
5802 STRCPY(retval, fname);
5803 #ifdef VMS
5804 vms_remove_version(retval); /* we do not need versions here */
5805 #endif
5809 * search backwards until we hit a '/', '\' or ':' replacing all '.'
5810 * by '_' for MSDOS or when shortname option set and ext starts with a dot.
5811 * Then truncate what is after the '/', '\' or ':' to 8 characters for
5812 * MSDOS and 26 characters for AMIGA, a lot more for UNIX.
5814 for (ptr = retval + fnamelen; ptr > retval; mb_ptr_back(retval, ptr))
5816 #ifndef RISCOS
5817 if (*ext == '.'
5818 # ifdef USE_LONG_FNAME
5819 && (!USE_LONG_FNAME || shortname)
5820 # else
5821 # ifndef SHORT_FNAME
5822 && shortname
5823 # endif
5824 # endif
5826 if (*ptr == '.') /* replace '.' by '_' */
5827 *ptr = '_';
5828 #endif
5829 if (vim_ispathsep(*ptr))
5831 ++ptr;
5832 break;
5836 /* the file name has at most BASENAMELEN characters. */
5837 #ifndef SHORT_FNAME
5838 if (STRLEN(ptr) > (unsigned)BASENAMELEN)
5839 ptr[BASENAMELEN] = '\0';
5840 #endif
5842 s = ptr + STRLEN(ptr);
5845 * For 8.3 file names we may have to reduce the length.
5847 #ifdef USE_LONG_FNAME
5848 if (!USE_LONG_FNAME || shortname)
5849 #else
5850 # ifndef SHORT_FNAME
5851 if (shortname)
5852 # endif
5853 #endif
5856 * If there is no file name, or the file name ends in '/', and the
5857 * extension starts with '.', put a '_' before the dot, because just
5858 * ".ext" is invalid.
5860 if (fname == NULL || *fname == NUL
5861 || vim_ispathsep(fname[STRLEN(fname) - 1]))
5863 #ifdef RISCOS
5864 if (*ext == '/')
5865 #else
5866 if (*ext == '.')
5867 #endif
5868 *s++ = '_';
5871 * If the extension starts with '.', truncate the base name at 8
5872 * characters
5874 #ifdef RISCOS
5875 /* We normally use '/', but swap files are '_' */
5876 else if (*ext == '/' || *ext == '_')
5877 #else
5878 else if (*ext == '.')
5879 #endif
5881 if (s - ptr > (size_t)8)
5883 s = ptr + 8;
5884 *s = '\0';
5888 * If the extension doesn't start with '.', and the file name
5889 * doesn't have an extension yet, append a '.'
5891 #ifdef RISCOS
5892 else if ((e = vim_strchr(ptr, '/')) == NULL)
5893 *s++ = '/';
5894 #else
5895 else if ((e = vim_strchr(ptr, '.')) == NULL)
5896 *s++ = '.';
5897 #endif
5899 * If the extension doesn't start with '.', and there already is an
5900 * extension, it may need to be truncated
5902 else if ((int)STRLEN(e) + extlen > 4)
5903 s = e + 4 - extlen;
5905 #if defined(OS2) || defined(USE_LONG_FNAME) || defined(WIN3264)
5907 * If there is no file name, and the extension starts with '.', put a
5908 * '_' before the dot, because just ".ext" may be invalid if it's on a
5909 * FAT partition, and on HPFS it doesn't matter.
5911 else if ((fname == NULL || *fname == NUL) && *ext == '.')
5912 *s++ = '_';
5913 #endif
5916 * Append the extention.
5917 * ext can start with '.' and cannot exceed 3 more characters.
5919 STRCPY(s, ext);
5921 #ifndef SHORT_FNAME
5923 * Prepend the dot.
5925 if (prepend_dot && !shortname && *(e = gettail(retval)) !=
5926 #ifdef RISCOS
5928 #else
5930 #endif
5931 #ifdef USE_LONG_FNAME
5932 && USE_LONG_FNAME
5933 #endif
5936 mch_memmove(e + 1, e, STRLEN(e) + 1);
5937 #ifdef RISCOS
5938 *e = '/';
5939 #else
5940 *e = '.';
5941 #endif
5943 #endif
5946 * Check that, after appending the extension, the file name is really
5947 * different.
5949 if (fname != NULL && STRCMP(fname, retval) == 0)
5951 /* we search for a character that can be replaced by '_' */
5952 while (--s >= ptr)
5954 if (*s != '_')
5956 *s = '_';
5957 break;
5960 if (s < ptr) /* fname was "________.<ext>", how tricky! */
5961 *ptr = 'v';
5963 return retval;
5967 * Like fgets(), but if the file line is too long, it is truncated and the
5968 * rest of the line is thrown away. Returns TRUE for end-of-file.
5971 vim_fgets(buf, size, fp)
5972 char_u *buf;
5973 int size;
5974 FILE *fp;
5976 char *eof;
5977 #define FGETS_SIZE 200
5978 char tbuf[FGETS_SIZE];
5980 buf[size - 2] = NUL;
5981 #ifdef USE_CR
5982 eof = fgets_cr((char *)buf, size, fp);
5983 #else
5984 eof = fgets((char *)buf, size, fp);
5985 #endif
5986 if (buf[size - 2] != NUL && buf[size - 2] != '\n')
5988 buf[size - 1] = NUL; /* Truncate the line */
5990 /* Now throw away the rest of the line: */
5993 tbuf[FGETS_SIZE - 2] = NUL;
5994 #ifdef USE_CR
5995 fgets_cr((char *)tbuf, FGETS_SIZE, fp);
5996 #else
5997 fgets((char *)tbuf, FGETS_SIZE, fp);
5998 #endif
5999 } while (tbuf[FGETS_SIZE - 2] != NUL && tbuf[FGETS_SIZE - 2] != '\n');
6001 return (eof == NULL);
6004 #if defined(USE_CR) || defined(PROTO)
6006 * Like vim_fgets(), but accept any line terminator: CR, CR-LF or LF.
6007 * Returns TRUE for end-of-file.
6008 * Only used for the Mac, because it's much slower than vim_fgets().
6011 tag_fgets(buf, size, fp)
6012 char_u *buf;
6013 int size;
6014 FILE *fp;
6016 int i = 0;
6017 int c;
6018 int eof = FALSE;
6020 for (;;)
6022 c = fgetc(fp);
6023 if (c == EOF)
6025 eof = TRUE;
6026 break;
6028 if (c == '\r')
6030 /* Always store a NL for end-of-line. */
6031 if (i < size - 1)
6032 buf[i++] = '\n';
6033 c = fgetc(fp);
6034 if (c != '\n') /* Macintosh format: single CR. */
6035 ungetc(c, fp);
6036 break;
6038 if (i < size - 1)
6039 buf[i++] = c;
6040 if (c == '\n')
6041 break;
6043 buf[i] = NUL;
6044 return eof;
6046 #endif
6049 * rename() only works if both files are on the same file system, this
6050 * function will (attempts to?) copy the file across if rename fails -- webb
6051 * Return -1 for failure, 0 for success.
6054 vim_rename(from, to)
6055 char_u *from;
6056 char_u *to;
6058 int fd_in;
6059 int fd_out;
6060 int n;
6061 char *errmsg = NULL;
6062 char *buffer;
6063 #ifdef AMIGA
6064 BPTR flock;
6065 #endif
6066 struct stat st;
6067 long perm;
6068 #ifdef HAVE_ACL
6069 vim_acl_T acl; /* ACL from original file */
6070 #endif
6073 * When the names are identical, there is nothing to do.
6075 if (fnamecmp(from, to) == 0)
6076 return 0;
6079 * Fail if the "from" file doesn't exist. Avoids that "to" is deleted.
6081 if (mch_stat((char *)from, &st) < 0)
6082 return -1;
6085 * Delete the "to" file, this is required on some systems to make the
6086 * mch_rename() work, on other systems it makes sure that we don't have
6087 * two files when the mch_rename() fails.
6090 #ifdef AMIGA
6092 * With MSDOS-compatible filesystems (crossdos, messydos) it is possible
6093 * that the name of the "to" file is the same as the "from" file, even
6094 * though the names are different. To avoid the chance of accidentally
6095 * deleting the "from" file (horror!) we lock it during the remove.
6097 * When used for making a backup before writing the file: This should not
6098 * happen with ":w", because startscript() should detect this problem and
6099 * set buf->b_shortname, causing modname() to return a correct ".bak" file
6100 * name. This problem does exist with ":w filename", but then the
6101 * original file will be somewhere else so the backup isn't really
6102 * important. If autoscripting is off the rename may fail.
6104 flock = Lock((UBYTE *)from, (long)ACCESS_READ);
6105 #endif
6106 mch_remove(to);
6107 #ifdef AMIGA
6108 if (flock)
6109 UnLock(flock);
6110 #endif
6113 * First try a normal rename, return if it works.
6115 if (mch_rename((char *)from, (char *)to) == 0)
6116 return 0;
6119 * Rename() failed, try copying the file.
6121 perm = mch_getperm(from);
6122 #ifdef HAVE_ACL
6123 /* For systems that support ACL: get the ACL from the original file. */
6124 acl = mch_get_acl(from);
6125 #endif
6126 fd_in = mch_open((char *)from, O_RDONLY|O_EXTRA, 0);
6127 if (fd_in == -1)
6128 return -1;
6130 /* Create the new file with same permissions as the original. */
6131 fd_out = mch_open((char *)to,
6132 O_CREAT|O_EXCL|O_WRONLY|O_EXTRA|O_NOFOLLOW, (int)perm);
6133 if (fd_out == -1)
6135 close(fd_in);
6136 return -1;
6139 buffer = (char *)alloc(BUFSIZE);
6140 if (buffer == NULL)
6142 close(fd_in);
6143 close(fd_out);
6144 return -1;
6147 while ((n = vim_read(fd_in, buffer, BUFSIZE)) > 0)
6148 if (vim_write(fd_out, buffer, n) != n)
6150 errmsg = _("E208: Error writing to \"%s\"");
6151 break;
6154 vim_free(buffer);
6155 close(fd_in);
6156 if (close(fd_out) < 0)
6157 errmsg = _("E209: Error closing \"%s\"");
6158 if (n < 0)
6160 errmsg = _("E210: Error reading \"%s\"");
6161 to = from;
6163 #ifndef UNIX /* for Unix mch_open() already set the permission */
6164 mch_setperm(to, perm);
6165 #endif
6166 #ifdef HAVE_ACL
6167 mch_set_acl(to, acl);
6168 #endif
6169 if (errmsg != NULL)
6171 EMSG2(errmsg, to);
6172 return -1;
6174 mch_remove(from);
6175 return 0;
6178 static int already_warned = FALSE;
6181 * Check if any not hidden buffer has been changed.
6182 * Postpone the check if there are characters in the stuff buffer, a global
6183 * command is being executed, a mapping is being executed or an autocommand is
6184 * busy.
6185 * Returns TRUE if some message was written (screen should be redrawn and
6186 * cursor positioned).
6189 check_timestamps(focus)
6190 int focus; /* called for GUI focus event */
6192 buf_T *buf;
6193 int didit = 0;
6194 int n;
6196 /* Don't check timestamps while system() or another low-level function may
6197 * cause us to lose and gain focus. */
6198 if (no_check_timestamps > 0)
6199 return FALSE;
6201 /* Avoid doing a check twice. The OK/Reload dialog can cause a focus
6202 * event and we would keep on checking if the file is steadily growing.
6203 * Do check again after typing something. */
6204 if (focus && did_check_timestamps)
6206 need_check_timestamps = TRUE;
6207 return FALSE;
6210 if (!stuff_empty() || global_busy || !typebuf_typed()
6211 #ifdef FEAT_AUTOCMD
6212 || autocmd_busy || curbuf_lock > 0
6213 #endif
6215 need_check_timestamps = TRUE; /* check later */
6216 else
6218 ++no_wait_return;
6219 did_check_timestamps = TRUE;
6220 already_warned = FALSE;
6221 for (buf = firstbuf; buf != NULL; )
6223 /* Only check buffers in a window. */
6224 if (buf->b_nwindows > 0)
6226 n = buf_check_timestamp(buf, focus);
6227 if (didit < n)
6228 didit = n;
6229 if (n > 0 && !buf_valid(buf))
6231 /* Autocommands have removed the buffer, start at the
6232 * first one again. */
6233 buf = firstbuf;
6234 continue;
6237 buf = buf->b_next;
6239 --no_wait_return;
6240 need_check_timestamps = FALSE;
6241 if (need_wait_return && didit == 2)
6243 /* make sure msg isn't overwritten */
6244 msg_puts((char_u *)"\n");
6245 out_flush();
6248 return didit;
6252 * Move all the lines from buffer "frombuf" to buffer "tobuf".
6253 * Return OK or FAIL. When FAIL "tobuf" is incomplete and/or "frombuf" is not
6254 * empty.
6256 static int
6257 move_lines(frombuf, tobuf)
6258 buf_T *frombuf;
6259 buf_T *tobuf;
6261 buf_T *tbuf = curbuf;
6262 int retval = OK;
6263 linenr_T lnum;
6264 char_u *p;
6266 /* Copy the lines in "frombuf" to "tobuf". */
6267 curbuf = tobuf;
6268 for (lnum = 1; lnum <= frombuf->b_ml.ml_line_count; ++lnum)
6270 p = vim_strsave(ml_get_buf(frombuf, lnum, FALSE));
6271 if (p == NULL || ml_append(lnum - 1, p, 0, FALSE) == FAIL)
6273 vim_free(p);
6274 retval = FAIL;
6275 break;
6277 vim_free(p);
6280 /* Delete all the lines in "frombuf". */
6281 if (retval != FAIL)
6283 curbuf = frombuf;
6284 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0; --lnum)
6285 if (ml_delete(lnum, FALSE) == FAIL)
6287 /* Oops! We could try putting back the saved lines, but that
6288 * might fail again... */
6289 retval = FAIL;
6290 break;
6294 curbuf = tbuf;
6295 return retval;
6299 * Check if buffer "buf" has been changed.
6300 * Also check if the file for a new buffer unexpectedly appeared.
6301 * return 1 if a changed buffer was found.
6302 * return 2 if a message has been displayed.
6303 * return 0 otherwise.
6305 /*ARGSUSED*/
6307 buf_check_timestamp(buf, focus)
6308 buf_T *buf;
6309 int focus; /* called for GUI focus event */
6311 struct stat st;
6312 int stat_res;
6313 int retval = 0;
6314 char_u *path;
6315 char_u *tbuf;
6316 char *mesg = NULL;
6317 char *mesg2 = "";
6318 int helpmesg = FALSE;
6319 int reload = FALSE;
6320 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6321 int can_reload = FALSE;
6322 #endif
6323 size_t orig_size = buf->b_orig_size;
6324 int orig_mode = buf->b_orig_mode;
6325 #ifdef FEAT_GUI
6326 int save_mouse_correct = need_mouse_correct;
6327 #endif
6328 #ifdef FEAT_AUTOCMD
6329 static int busy = FALSE;
6330 int n;
6331 char_u *s;
6332 #endif
6333 char *reason;
6335 /* If there is no file name, the buffer is not loaded, 'buftype' is
6336 * set, we are in the middle of a save or being called recursively: ignore
6337 * this buffer. */
6338 if (buf->b_ffname == NULL
6339 || buf->b_ml.ml_mfp == NULL
6340 #if defined(FEAT_QUICKFIX)
6341 || *buf->b_p_bt != NUL
6342 #endif
6343 || buf->b_saving
6344 #ifdef FEAT_AUTOCMD
6345 || busy
6346 #endif
6347 #ifdef FEAT_NETBEANS_INTG
6348 || isNetbeansBuffer(buf)
6349 #endif
6351 return 0;
6353 if ( !(buf->b_flags & BF_NOTEDITED)
6354 && buf->b_mtime != 0
6355 && ((stat_res = mch_stat((char *)buf->b_ffname, &st)) < 0
6356 || time_differs((long)st.st_mtime, buf->b_mtime)
6357 #ifdef HAVE_ST_MODE
6358 || (int)st.st_mode != buf->b_orig_mode
6359 #else
6360 || mch_getperm(buf->b_ffname) != buf->b_orig_mode
6361 #endif
6364 retval = 1;
6366 /* set b_mtime to stop further warnings (e.g., when executing
6367 * FileChangedShell autocmd) */
6368 if (stat_res < 0)
6370 buf->b_mtime = 0;
6371 buf->b_orig_size = 0;
6372 buf->b_orig_mode = 0;
6374 else
6375 buf_store_time(buf, &st, buf->b_ffname);
6377 /* Don't do anything for a directory. Might contain the file
6378 * explorer. */
6379 if (mch_isdir(buf->b_fname))
6383 * If 'autoread' is set, the buffer has no changes and the file still
6384 * exists, reload the buffer. Use the buffer-local option value if it
6385 * was set, the global option value otherwise.
6387 else if ((buf->b_p_ar >= 0 ? buf->b_p_ar : p_ar)
6388 && !bufIsChanged(buf) && stat_res >= 0)
6389 reload = TRUE;
6390 else
6392 if (stat_res < 0)
6393 reason = "deleted";
6394 else if (bufIsChanged(buf))
6395 reason = "conflict";
6396 else if (orig_size != buf->b_orig_size || buf_contents_changed(buf))
6397 reason = "changed";
6398 else if (orig_mode != buf->b_orig_mode)
6399 reason = "mode";
6400 else
6401 reason = "time";
6403 #ifdef FEAT_AUTOCMD
6405 * Only give the warning if there are no FileChangedShell
6406 * autocommands.
6407 * Avoid being called recursively by setting "busy".
6409 busy = TRUE;
6410 # ifdef FEAT_EVAL
6411 set_vim_var_string(VV_FCS_REASON, (char_u *)reason, -1);
6412 set_vim_var_string(VV_FCS_CHOICE, (char_u *)"", -1);
6413 # endif
6414 n = apply_autocmds(EVENT_FILECHANGEDSHELL,
6415 buf->b_fname, buf->b_fname, FALSE, buf);
6416 busy = FALSE;
6417 if (n)
6419 if (!buf_valid(buf))
6420 EMSG(_("E246: FileChangedShell autocommand deleted buffer"));
6421 # ifdef FEAT_EVAL
6422 s = get_vim_var_str(VV_FCS_CHOICE);
6423 if (STRCMP(s, "reload") == 0 && *reason != 'd')
6424 reload = TRUE;
6425 else if (STRCMP(s, "ask") == 0)
6426 n = FALSE;
6427 else
6428 # endif
6429 return 2;
6431 if (!n)
6432 #endif
6434 if (*reason == 'd')
6435 mesg = _("E211: File \"%s\" no longer available");
6436 else
6438 helpmesg = TRUE;
6439 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6440 can_reload = TRUE;
6441 #endif
6443 * Check if the file contents really changed to avoid
6444 * giving a warning when only the timestamp was set (e.g.,
6445 * checked out of CVS). Always warn when the buffer was
6446 * changed.
6448 if (reason[2] == 'n')
6450 mesg = _("W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as well");
6451 mesg2 = _("See \":help W12\" for more info.");
6453 else if (reason[1] == 'h')
6455 mesg = _("W11: Warning: File \"%s\" has changed since editing started");
6456 mesg2 = _("See \":help W11\" for more info.");
6458 else if (*reason == 'm')
6460 mesg = _("W16: Warning: Mode of file \"%s\" has changed since editing started");
6461 mesg2 = _("See \":help W16\" for more info.");
6463 /* Else: only timestamp changed, ignored */
6469 else if ((buf->b_flags & BF_NEW) && !(buf->b_flags & BF_NEW_W)
6470 && vim_fexists(buf->b_ffname))
6472 retval = 1;
6473 mesg = _("W13: Warning: File \"%s\" has been created after editing started");
6474 buf->b_flags |= BF_NEW_W;
6475 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6476 can_reload = TRUE;
6477 #endif
6480 if (mesg != NULL)
6482 path = home_replace_save(buf, buf->b_fname);
6483 if (path != NULL)
6485 if (!helpmesg)
6486 mesg2 = "";
6487 tbuf = alloc((unsigned)(STRLEN(path) + STRLEN(mesg)
6488 + STRLEN(mesg2) + 2));
6489 sprintf((char *)tbuf, mesg, path);
6490 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6491 if (can_reload)
6493 if (*mesg2 != NUL)
6495 STRCAT(tbuf, "\n");
6496 STRCAT(tbuf, mesg2);
6498 if (do_dialog(VIM_WARNING, (char_u *)_("Warning"), tbuf,
6499 (char_u *)_("&OK\n&Load File"), 1, NULL) == 2)
6500 reload = TRUE;
6502 else
6503 #endif
6504 if (State > NORMAL_BUSY || (State & CMDLINE) || already_warned)
6506 if (*mesg2 != NUL)
6508 STRCAT(tbuf, "; ");
6509 STRCAT(tbuf, mesg2);
6511 EMSG(tbuf);
6512 retval = 2;
6514 else
6516 # ifdef FEAT_AUTOCMD
6517 if (!autocmd_busy)
6518 # endif
6520 msg_start();
6521 msg_puts_attr(tbuf, hl_attr(HLF_E) + MSG_HIST);
6522 if (*mesg2 != NUL)
6523 msg_puts_attr((char_u *)mesg2,
6524 hl_attr(HLF_W) + MSG_HIST);
6525 msg_clr_eos();
6526 (void)msg_end();
6527 if (emsg_silent == 0)
6529 out_flush();
6530 # ifdef FEAT_GUI
6531 if (!focus)
6532 # endif
6533 /* give the user some time to think about it */
6534 ui_delay(1000L, TRUE);
6536 /* don't redraw and erase the message */
6537 redraw_cmdline = FALSE;
6540 already_warned = TRUE;
6543 vim_free(path);
6544 vim_free(tbuf);
6548 if (reload)
6549 /* Reload the buffer. */
6550 buf_reload(buf, orig_mode);
6552 #ifdef FEAT_AUTOCMD
6553 if (buf_valid(buf))
6554 (void)apply_autocmds(EVENT_FILECHANGEDSHELLPOST,
6555 buf->b_fname, buf->b_fname, FALSE, buf);
6556 #endif
6557 #ifdef FEAT_GUI
6558 /* restore this in case an autocommand has set it; it would break
6559 * 'mousefocus' */
6560 need_mouse_correct = save_mouse_correct;
6561 #endif
6563 return retval;
6567 * Reload a buffer that is already loaded.
6568 * Used when the file was changed outside of Vim.
6569 * "orig_mode" is buf->b_orig_mode before the need for reloading was detected.
6570 * buf->b_orig_mode may have been reset already.
6572 void
6573 buf_reload(buf, orig_mode)
6574 buf_T *buf;
6575 int orig_mode;
6577 exarg_T ea;
6578 pos_T old_cursor;
6579 linenr_T old_topline;
6580 int old_ro = buf->b_p_ro;
6581 buf_T *savebuf;
6582 int saved = OK;
6583 aco_save_T aco;
6585 /* set curwin/curbuf for "buf" and save some things */
6586 aucmd_prepbuf(&aco, buf);
6588 /* We only want to read the text from the file, not reset the syntax
6589 * highlighting, clear marks, diff status, etc. Force the fileformat
6590 * and encoding to be the same. */
6591 if (prep_exarg(&ea, buf) == OK)
6593 old_cursor = curwin->w_cursor;
6594 old_topline = curwin->w_topline;
6597 * To behave like when a new file is edited (matters for
6598 * BufReadPost autocommands) we first need to delete the current
6599 * buffer contents. But if reading the file fails we should keep
6600 * the old contents. Can't use memory only, the file might be
6601 * too big. Use a hidden buffer to move the buffer contents to.
6603 if (bufempty())
6604 savebuf = NULL;
6605 else
6607 /* Allocate a buffer without putting it in the buffer list. */
6608 savebuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
6609 if (savebuf != NULL && buf == curbuf)
6611 /* Open the memline. */
6612 curbuf = savebuf;
6613 curwin->w_buffer = savebuf;
6614 saved = ml_open(curbuf);
6615 curbuf = buf;
6616 curwin->w_buffer = buf;
6618 if (savebuf == NULL || saved == FAIL || buf != curbuf
6619 || move_lines(buf, savebuf) == FAIL)
6621 EMSG2(_("E462: Could not prepare for reloading \"%s\""),
6622 buf->b_fname);
6623 saved = FAIL;
6627 if (saved == OK)
6629 curbuf->b_flags |= BF_CHECK_RO; /* check for RO again */
6630 #ifdef FEAT_AUTOCMD
6631 keep_filetype = TRUE; /* don't detect 'filetype' */
6632 #endif
6633 if (readfile(buf->b_ffname, buf->b_fname, (linenr_T)0,
6634 (linenr_T)0,
6635 (linenr_T)MAXLNUM, &ea, READ_NEW) == FAIL)
6637 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6638 if (!aborting())
6639 #endif
6640 EMSG2(_("E321: Could not reload \"%s\""), buf->b_fname);
6641 if (savebuf != NULL && buf_valid(savebuf) && buf == curbuf)
6643 /* Put the text back from the save buffer. First
6644 * delete any lines that readfile() added. */
6645 while (!bufempty())
6646 if (ml_delete(buf->b_ml.ml_line_count, FALSE) == FAIL)
6647 break;
6648 (void)move_lines(savebuf, buf);
6651 else if (buf == curbuf)
6653 /* Mark the buffer as unmodified and free undo info. */
6654 unchanged(buf, TRUE);
6655 u_blockfree(buf);
6656 u_clearall(buf);
6659 vim_free(ea.cmd);
6661 if (savebuf != NULL && buf_valid(savebuf))
6662 wipe_buffer(savebuf, FALSE);
6664 #ifdef FEAT_DIFF
6665 /* Invalidate diff info if necessary. */
6666 diff_invalidate(curbuf);
6667 #endif
6669 /* Restore the topline and cursor position and check it (lines may
6670 * have been removed). */
6671 if (old_topline > curbuf->b_ml.ml_line_count)
6672 curwin->w_topline = curbuf->b_ml.ml_line_count;
6673 else
6674 curwin->w_topline = old_topline;
6675 curwin->w_cursor = old_cursor;
6676 check_cursor();
6677 update_topline();
6678 #ifdef FEAT_AUTOCMD
6679 keep_filetype = FALSE;
6680 #endif
6681 #ifdef FEAT_FOLDING
6683 win_T *wp;
6685 /* Update folds unless they are defined manually. */
6686 FOR_ALL_WINDOWS(wp)
6687 if (wp->w_buffer == curwin->w_buffer
6688 && !foldmethodIsManual(wp))
6689 foldUpdateAll(wp);
6691 #endif
6692 /* If the mode didn't change and 'readonly' was set, keep the old
6693 * value; the user probably used the ":view" command. But don't
6694 * reset it, might have had a read error. */
6695 if (orig_mode == curbuf->b_orig_mode)
6696 curbuf->b_p_ro |= old_ro;
6699 /* restore curwin/curbuf and a few other things */
6700 aucmd_restbuf(&aco);
6701 /* Careful: autocommands may have made "buf" invalid! */
6704 /*ARGSUSED*/
6705 void
6706 buf_store_time(buf, st, fname)
6707 buf_T *buf;
6708 struct stat *st;
6709 char_u *fname;
6711 buf->b_mtime = (long)st->st_mtime;
6712 buf->b_orig_size = (size_t)st->st_size;
6713 #ifdef HAVE_ST_MODE
6714 buf->b_orig_mode = (int)st->st_mode;
6715 #else
6716 buf->b_orig_mode = mch_getperm(fname);
6717 #endif
6721 * Adjust the line with missing eol, used for the next write.
6722 * Used for do_filter(), when the input lines for the filter are deleted.
6724 void
6725 write_lnum_adjust(offset)
6726 linenr_T offset;
6728 if (write_no_eol_lnum != 0) /* only if there is a missing eol */
6729 write_no_eol_lnum += offset;
6732 #if defined(TEMPDIRNAMES) || defined(PROTO)
6733 static long temp_count = 0; /* Temp filename counter. */
6736 * Delete the temp directory and all files it contains.
6738 void
6739 vim_deltempdir()
6741 char_u **files;
6742 int file_count;
6743 int i;
6745 if (vim_tempdir != NULL)
6747 sprintf((char *)NameBuff, "%s*", vim_tempdir);
6748 if (gen_expand_wildcards(1, &NameBuff, &file_count, &files,
6749 EW_DIR|EW_FILE|EW_SILENT) == OK)
6751 for (i = 0; i < file_count; ++i)
6752 mch_remove(files[i]);
6753 FreeWild(file_count, files);
6755 gettail(NameBuff)[-1] = NUL;
6756 (void)mch_rmdir(NameBuff);
6758 vim_free(vim_tempdir);
6759 vim_tempdir = NULL;
6762 #endif
6765 * vim_tempname(): Return a unique name that can be used for a temp file.
6767 * The temp file is NOT created.
6769 * The returned pointer is to allocated memory.
6770 * The returned pointer is NULL if no valid name was found.
6772 /*ARGSUSED*/
6773 char_u *
6774 vim_tempname(extra_char)
6775 int extra_char; /* character to use in the name instead of '?' */
6777 #ifdef USE_TMPNAM
6778 char_u itmp[L_tmpnam]; /* use tmpnam() */
6779 #else
6780 char_u itmp[TEMPNAMELEN];
6781 #endif
6783 #ifdef TEMPDIRNAMES
6784 static char *(tempdirs[]) = {TEMPDIRNAMES};
6785 int i;
6786 long nr;
6787 long off;
6788 # ifndef EEXIST
6789 struct stat st;
6790 # endif
6793 * This will create a directory for private use by this instance of Vim.
6794 * This is done once, and the same directory is used for all temp files.
6795 * This method avoids security problems because of symlink attacks et al.
6796 * It's also a bit faster, because we only need to check for an existing
6797 * file when creating the directory and not for each temp file.
6799 if (vim_tempdir == NULL)
6802 * Try the entries in TEMPDIRNAMES to create the temp directory.
6804 for (i = 0; i < sizeof(tempdirs) / sizeof(char *); ++i)
6806 /* expand $TMP, leave room for "/v1100000/999999999" */
6807 expand_env((char_u *)tempdirs[i], itmp, TEMPNAMELEN - 20);
6808 if (mch_isdir(itmp)) /* directory exists */
6810 # ifdef __EMX__
6811 /* If $TMP contains a forward slash (perhaps using bash or
6812 * tcsh), don't add a backslash, use a forward slash!
6813 * Adding 2 backslashes didn't work. */
6814 if (vim_strchr(itmp, '/') != NULL)
6815 STRCAT(itmp, "/");
6816 else
6817 # endif
6818 add_pathsep(itmp);
6820 /* Get an arbitrary number of up to 6 digits. When it's
6821 * unlikely that it already exists it will be faster,
6822 * otherwise it doesn't matter. The use of mkdir() avoids any
6823 * security problems because of the predictable number. */
6824 nr = (mch_get_pid() + (long)time(NULL)) % 1000000L;
6826 /* Try up to 10000 different values until we find a name that
6827 * doesn't exist. */
6828 for (off = 0; off < 10000L; ++off)
6830 int r;
6831 #if defined(UNIX) || defined(VMS)
6832 mode_t umask_save;
6833 #endif
6835 sprintf((char *)itmp + STRLEN(itmp), "v%ld", nr + off);
6836 # ifndef EEXIST
6837 /* If mkdir() does not set errno to EEXIST, check for
6838 * existing file here. There is a race condition then,
6839 * although it's fail-safe. */
6840 if (mch_stat((char *)itmp, &st) >= 0)
6841 continue;
6842 # endif
6843 #if defined(UNIX) || defined(VMS)
6844 /* Make sure the umask doesn't remove the executable bit.
6845 * "repl" has been reported to use "177". */
6846 umask_save = umask(077);
6847 #endif
6848 r = vim_mkdir(itmp, 0700);
6849 #if defined(UNIX) || defined(VMS)
6850 (void)umask(umask_save);
6851 #endif
6852 if (r == 0)
6854 char_u *buf;
6856 /* Directory was created, use this name.
6857 * Expand to full path; When using the current
6858 * directory a ":cd" would confuse us. */
6859 buf = alloc((unsigned)MAXPATHL + 1);
6860 if (buf != NULL)
6862 if (vim_FullName(itmp, buf, MAXPATHL, FALSE)
6863 == FAIL)
6864 STRCPY(buf, itmp);
6865 # ifdef __EMX__
6866 if (vim_strchr(buf, '/') != NULL)
6867 STRCAT(buf, "/");
6868 else
6869 # endif
6870 add_pathsep(buf);
6871 vim_tempdir = vim_strsave(buf);
6872 vim_free(buf);
6874 break;
6876 # ifdef EEXIST
6877 /* If the mkdir() didn't fail because the file/dir exists,
6878 * we probably can't create any dir here, try another
6879 * place. */
6880 if (errno != EEXIST)
6881 # endif
6882 break;
6884 if (vim_tempdir != NULL)
6885 break;
6890 if (vim_tempdir != NULL)
6892 /* There is no need to check if the file exists, because we own the
6893 * directory and nobody else creates a file in it. */
6894 sprintf((char *)itmp, "%s%ld", vim_tempdir, temp_count++);
6895 return vim_strsave(itmp);
6898 return NULL;
6900 #else /* TEMPDIRNAMES */
6902 # ifdef WIN3264
6903 char szTempFile[_MAX_PATH + 1];
6904 char buf4[4];
6905 char_u *retval;
6906 char_u *p;
6908 STRCPY(itmp, "");
6909 if (GetTempPath(_MAX_PATH, szTempFile) == 0)
6910 szTempFile[0] = NUL; /* GetTempPath() failed, use current dir */
6911 strcpy(buf4, "VIM");
6912 buf4[2] = extra_char; /* make it "VIa", "VIb", etc. */
6913 if (GetTempFileName(szTempFile, buf4, 0, itmp) == 0)
6914 return NULL;
6915 /* GetTempFileName() will create the file, we don't want that */
6916 (void)DeleteFile(itmp);
6918 /* Backslashes in a temp file name cause problems when filtering with
6919 * "sh". NOTE: This also checks 'shellcmdflag' to help those people who
6920 * didn't set 'shellslash'. */
6921 retval = vim_strsave(itmp);
6922 if (*p_shcf == '-' || p_ssl)
6923 for (p = retval; *p; ++p)
6924 if (*p == '\\')
6925 *p = '/';
6926 return retval;
6928 # else /* WIN3264 */
6930 # ifdef USE_TMPNAM
6931 /* tmpnam() will make its own name */
6932 if (*tmpnam((char *)itmp) == NUL)
6933 return NULL;
6934 # else
6935 char_u *p;
6937 # ifdef VMS_TEMPNAM
6938 /* mktemp() is not working on VMS. It seems to be
6939 * a do-nothing function. Therefore we use tempnam().
6941 sprintf((char *)itmp, "VIM%c", extra_char);
6942 p = (char_u *)tempnam("tmp:", (char *)itmp);
6943 if (p != NULL)
6945 /* VMS will use '.LOG' if we don't explicitly specify an extension,
6946 * and VIM will then be unable to find the file later */
6947 STRCPY(itmp, p);
6948 STRCAT(itmp, ".txt");
6949 free(p);
6951 else
6952 return NULL;
6953 # else
6954 STRCPY(itmp, TEMPNAME);
6955 if ((p = vim_strchr(itmp, '?')) != NULL)
6956 *p = extra_char;
6957 if (mktemp((char *)itmp) == NULL)
6958 return NULL;
6959 # endif
6960 # endif
6962 return vim_strsave(itmp);
6963 # endif /* WIN3264 */
6964 #endif /* TEMPDIRNAMES */
6967 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6969 * Convert all backslashes in fname to forward slashes in-place.
6971 void
6972 forward_slash(fname)
6973 char_u *fname;
6975 char_u *p;
6977 for (p = fname; *p != NUL; ++p)
6978 # ifdef FEAT_MBYTE
6979 /* The Big5 encoding can have '\' in the trail byte. */
6980 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
6981 ++p;
6982 else
6983 # endif
6984 if (*p == '\\')
6985 *p = '/';
6987 #endif
6991 * Code for automatic commands.
6993 * Only included when "FEAT_AUTOCMD" has been defined.
6996 #if defined(FEAT_AUTOCMD) || defined(PROTO)
6999 * The autocommands are stored in a list for each event.
7000 * Autocommands for the same pattern, that are consecutive, are joined
7001 * together, to avoid having to match the pattern too often.
7002 * The result is an array of Autopat lists, which point to AutoCmd lists:
7004 * first_autopat[0] --> Autopat.next --> Autopat.next --> NULL
7005 * Autopat.cmds Autopat.cmds
7006 * | |
7007 * V V
7008 * AutoCmd.next AutoCmd.next
7009 * | |
7010 * V V
7011 * AutoCmd.next NULL
7014 * NULL
7016 * first_autopat[1] --> Autopat.next --> NULL
7017 * Autopat.cmds
7020 * AutoCmd.next
7023 * NULL
7024 * etc.
7026 * The order of AutoCmds is important, this is the order in which they were
7027 * defined and will have to be executed.
7029 typedef struct AutoCmd
7031 char_u *cmd; /* The command to be executed (NULL
7032 when command has been removed) */
7033 char nested; /* If autocommands nest here */
7034 char last; /* last command in list */
7035 #ifdef FEAT_EVAL
7036 scid_T scriptID; /* script ID where defined */
7037 #endif
7038 struct AutoCmd *next; /* Next AutoCmd in list */
7039 } AutoCmd;
7041 typedef struct AutoPat
7043 int group; /* group ID */
7044 char_u *pat; /* pattern as typed (NULL when pattern
7045 has been removed) */
7046 int patlen; /* strlen() of pat */
7047 regprog_T *reg_prog; /* compiled regprog for pattern */
7048 char allow_dirs; /* Pattern may match whole path */
7049 char last; /* last pattern for apply_autocmds() */
7050 AutoCmd *cmds; /* list of commands to do */
7051 struct AutoPat *next; /* next AutoPat in AutoPat list */
7052 int buflocal_nr; /* !=0 for buffer-local AutoPat */
7053 } AutoPat;
7055 static struct event_name
7057 char *name; /* event name */
7058 event_T event; /* event number */
7059 } event_names[] =
7061 {"BufAdd", EVENT_BUFADD},
7062 {"BufCreate", EVENT_BUFADD},
7063 {"BufDelete", EVENT_BUFDELETE},
7064 {"BufEnter", EVENT_BUFENTER},
7065 {"BufFilePost", EVENT_BUFFILEPOST},
7066 {"BufFilePre", EVENT_BUFFILEPRE},
7067 {"BufHidden", EVENT_BUFHIDDEN},
7068 {"BufLeave", EVENT_BUFLEAVE},
7069 {"BufNew", EVENT_BUFNEW},
7070 {"BufNewFile", EVENT_BUFNEWFILE},
7071 {"BufRead", EVENT_BUFREADPOST},
7072 {"BufReadCmd", EVENT_BUFREADCMD},
7073 {"BufReadPost", EVENT_BUFREADPOST},
7074 {"BufReadPre", EVENT_BUFREADPRE},
7075 {"BufUnload", EVENT_BUFUNLOAD},
7076 {"BufWinEnter", EVENT_BUFWINENTER},
7077 {"BufWinLeave", EVENT_BUFWINLEAVE},
7078 {"BufWipeout", EVENT_BUFWIPEOUT},
7079 {"BufWrite", EVENT_BUFWRITEPRE},
7080 {"BufWritePost", EVENT_BUFWRITEPOST},
7081 {"BufWritePre", EVENT_BUFWRITEPRE},
7082 {"BufWriteCmd", EVENT_BUFWRITECMD},
7083 {"CmdwinEnter", EVENT_CMDWINENTER},
7084 {"CmdwinLeave", EVENT_CMDWINLEAVE},
7085 {"ColorScheme", EVENT_COLORSCHEME},
7086 {"CursorHold", EVENT_CURSORHOLD},
7087 {"CursorHoldI", EVENT_CURSORHOLDI},
7088 {"CursorMoved", EVENT_CURSORMOVED},
7089 {"CursorMovedI", EVENT_CURSORMOVEDI},
7090 {"EncodingChanged", EVENT_ENCODINGCHANGED},
7091 {"FileEncoding", EVENT_ENCODINGCHANGED},
7092 {"FileAppendPost", EVENT_FILEAPPENDPOST},
7093 {"FileAppendPre", EVENT_FILEAPPENDPRE},
7094 {"FileAppendCmd", EVENT_FILEAPPENDCMD},
7095 {"FileChangedShell",EVENT_FILECHANGEDSHELL},
7096 {"FileChangedShellPost",EVENT_FILECHANGEDSHELLPOST},
7097 {"FileChangedRO", EVENT_FILECHANGEDRO},
7098 {"FileReadPost", EVENT_FILEREADPOST},
7099 {"FileReadPre", EVENT_FILEREADPRE},
7100 {"FileReadCmd", EVENT_FILEREADCMD},
7101 {"FileType", EVENT_FILETYPE},
7102 {"FileWritePost", EVENT_FILEWRITEPOST},
7103 {"FileWritePre", EVENT_FILEWRITEPRE},
7104 {"FileWriteCmd", EVENT_FILEWRITECMD},
7105 {"FilterReadPost", EVENT_FILTERREADPOST},
7106 {"FilterReadPre", EVENT_FILTERREADPRE},
7107 {"FilterWritePost", EVENT_FILTERWRITEPOST},
7108 {"FilterWritePre", EVENT_FILTERWRITEPRE},
7109 {"FocusGained", EVENT_FOCUSGAINED},
7110 {"FocusLost", EVENT_FOCUSLOST},
7111 {"FuncUndefined", EVENT_FUNCUNDEFINED},
7112 {"GUIEnter", EVENT_GUIENTER},
7113 {"GUIFailed", EVENT_GUIFAILED},
7114 {"InsertChange", EVENT_INSERTCHANGE},
7115 {"InsertEnter", EVENT_INSERTENTER},
7116 {"InsertLeave", EVENT_INSERTLEAVE},
7117 {"MenuPopup", EVENT_MENUPOPUP},
7118 {"QuickFixCmdPost", EVENT_QUICKFIXCMDPOST},
7119 {"QuickFixCmdPre", EVENT_QUICKFIXCMDPRE},
7120 {"RemoteReply", EVENT_REMOTEREPLY},
7121 {"SessionLoadPost", EVENT_SESSIONLOADPOST},
7122 {"ShellCmdPost", EVENT_SHELLCMDPOST},
7123 {"ShellFilterPost", EVENT_SHELLFILTERPOST},
7124 {"SourcePre", EVENT_SOURCEPRE},
7125 {"SourceCmd", EVENT_SOURCECMD},
7126 {"SpellFileMissing",EVENT_SPELLFILEMISSING},
7127 {"StdinReadPost", EVENT_STDINREADPOST},
7128 {"StdinReadPre", EVENT_STDINREADPRE},
7129 {"SwapExists", EVENT_SWAPEXISTS},
7130 {"Syntax", EVENT_SYNTAX},
7131 {"TabEnter", EVENT_TABENTER},
7132 {"TabLeave", EVENT_TABLEAVE},
7133 {"TermChanged", EVENT_TERMCHANGED},
7134 {"TermResponse", EVENT_TERMRESPONSE},
7135 {"User", EVENT_USER},
7136 {"VimEnter", EVENT_VIMENTER},
7137 {"VimLeave", EVENT_VIMLEAVE},
7138 {"VimLeavePre", EVENT_VIMLEAVEPRE},
7139 {"WinEnter", EVENT_WINENTER},
7140 {"WinLeave", EVENT_WINLEAVE},
7141 {"VimResized", EVENT_VIMRESIZED},
7142 {NULL, (event_T)0}
7145 static AutoPat *first_autopat[NUM_EVENTS] =
7147 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7148 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7149 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7150 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7151 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7152 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
7156 * struct used to keep status while executing autocommands for an event.
7158 typedef struct AutoPatCmd
7160 AutoPat *curpat; /* next AutoPat to examine */
7161 AutoCmd *nextcmd; /* next AutoCmd to execute */
7162 int group; /* group being used */
7163 char_u *fname; /* fname to match with */
7164 char_u *sfname; /* sfname to match with */
7165 char_u *tail; /* tail of fname */
7166 event_T event; /* current event */
7167 int arg_bufnr; /* initially equal to <abuf>, set to zero when
7168 buf is deleted */
7169 struct AutoPatCmd *next; /* chain of active apc-s for auto-invalidation*/
7170 } AutoPatCmd;
7172 static AutoPatCmd *active_apc_list = NULL; /* stack of active autocommands */
7175 * augroups stores a list of autocmd group names.
7177 static garray_T augroups = {0, 0, sizeof(char_u *), 10, NULL};
7178 #define AUGROUP_NAME(i) (((char_u **)augroups.ga_data)[i])
7181 * The ID of the current group. Group 0 is the default one.
7183 static int current_augroup = AUGROUP_DEFAULT;
7185 static int au_need_clean = FALSE; /* need to delete marked patterns */
7187 static void show_autocmd __ARGS((AutoPat *ap, event_T event));
7188 static void au_remove_pat __ARGS((AutoPat *ap));
7189 static void au_remove_cmds __ARGS((AutoPat *ap));
7190 static void au_cleanup __ARGS((void));
7191 static int au_new_group __ARGS((char_u *name));
7192 static void au_del_group __ARGS((char_u *name));
7193 static event_T event_name2nr __ARGS((char_u *start, char_u **end));
7194 static char_u *event_nr2name __ARGS((event_T event));
7195 static char_u *find_end_event __ARGS((char_u *arg, int have_group));
7196 static int event_ignored __ARGS((event_T event));
7197 static int au_get_grouparg __ARGS((char_u **argp));
7198 static int do_autocmd_event __ARGS((event_T event, char_u *pat, int nested, char_u *cmd, int forceit, int group));
7199 static char_u *getnextac __ARGS((int c, void *cookie, int indent));
7200 static 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));
7201 static void auto_next_pat __ARGS((AutoPatCmd *apc, int stop_at_last));
7204 static event_T last_event;
7205 static int last_group;
7206 static int autocmd_blocked = 0; /* block all autocmds */
7209 * Show the autocommands for one AutoPat.
7211 static void
7212 show_autocmd(ap, event)
7213 AutoPat *ap;
7214 event_T event;
7216 AutoCmd *ac;
7218 /* Check for "got_int" (here and at various places below), which is set
7219 * when "q" has been hit for the "--more--" prompt */
7220 if (got_int)
7221 return;
7222 if (ap->pat == NULL) /* pattern has been removed */
7223 return;
7225 msg_putchar('\n');
7226 if (got_int)
7227 return;
7228 if (event != last_event || ap->group != last_group)
7230 if (ap->group != AUGROUP_DEFAULT)
7232 if (AUGROUP_NAME(ap->group) == NULL)
7233 msg_puts_attr((char_u *)_("--Deleted--"), hl_attr(HLF_E));
7234 else
7235 msg_puts_attr(AUGROUP_NAME(ap->group), hl_attr(HLF_T));
7236 msg_puts((char_u *)" ");
7238 msg_puts_attr(event_nr2name(event), hl_attr(HLF_T));
7239 last_event = event;
7240 last_group = ap->group;
7241 msg_putchar('\n');
7242 if (got_int)
7243 return;
7245 msg_col = 4;
7246 msg_outtrans(ap->pat);
7248 for (ac = ap->cmds; ac != NULL; ac = ac->next)
7250 if (ac->cmd != NULL) /* skip removed commands */
7252 if (msg_col >= 14)
7253 msg_putchar('\n');
7254 msg_col = 14;
7255 if (got_int)
7256 return;
7257 msg_outtrans(ac->cmd);
7258 #ifdef FEAT_EVAL
7259 if (p_verbose > 0)
7260 last_set_msg(ac->scriptID);
7261 #endif
7262 if (got_int)
7263 return;
7264 if (ac->next != NULL)
7266 msg_putchar('\n');
7267 if (got_int)
7268 return;
7275 * Mark an autocommand pattern for deletion.
7277 static void
7278 au_remove_pat(ap)
7279 AutoPat *ap;
7281 vim_free(ap->pat);
7282 ap->pat = NULL;
7283 ap->buflocal_nr = -1;
7284 au_need_clean = TRUE;
7288 * Mark all commands for a pattern for deletion.
7290 static void
7291 au_remove_cmds(ap)
7292 AutoPat *ap;
7294 AutoCmd *ac;
7296 for (ac = ap->cmds; ac != NULL; ac = ac->next)
7298 vim_free(ac->cmd);
7299 ac->cmd = NULL;
7301 au_need_clean = TRUE;
7305 * Cleanup autocommands and patterns that have been deleted.
7306 * This is only done when not executing autocommands.
7308 static void
7309 au_cleanup()
7311 AutoPat *ap, **prev_ap;
7312 AutoCmd *ac, **prev_ac;
7313 event_T event;
7315 if (autocmd_busy || !au_need_clean)
7316 return;
7318 /* loop over all events */
7319 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
7320 event = (event_T)((int)event + 1))
7322 /* loop over all autocommand patterns */
7323 prev_ap = &(first_autopat[(int)event]);
7324 for (ap = *prev_ap; ap != NULL; ap = *prev_ap)
7326 /* loop over all commands for this pattern */
7327 prev_ac = &(ap->cmds);
7328 for (ac = *prev_ac; ac != NULL; ac = *prev_ac)
7330 /* remove the command if the pattern is to be deleted or when
7331 * the command has been marked for deletion */
7332 if (ap->pat == NULL || ac->cmd == NULL)
7334 *prev_ac = ac->next;
7335 vim_free(ac->cmd);
7336 vim_free(ac);
7338 else
7339 prev_ac = &(ac->next);
7342 /* remove the pattern if it has been marked for deletion */
7343 if (ap->pat == NULL)
7345 *prev_ap = ap->next;
7346 vim_free(ap->reg_prog);
7347 vim_free(ap);
7349 else
7350 prev_ap = &(ap->next);
7354 au_need_clean = FALSE;
7358 * Called when buffer is freed, to remove/invalidate related buffer-local
7359 * autocmds.
7361 void
7362 aubuflocal_remove(buf)
7363 buf_T *buf;
7365 AutoPat *ap;
7366 event_T event;
7367 AutoPatCmd *apc;
7369 /* invalidate currently executing autocommands */
7370 for (apc = active_apc_list; apc; apc = apc->next)
7371 if (buf->b_fnum == apc->arg_bufnr)
7372 apc->arg_bufnr = 0;
7374 /* invalidate buflocals looping through events */
7375 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
7376 event = (event_T)((int)event + 1))
7377 /* loop over all autocommand patterns */
7378 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
7379 if (ap->buflocal_nr == buf->b_fnum)
7381 au_remove_pat(ap);
7382 if (p_verbose >= 6)
7384 verbose_enter();
7385 smsg((char_u *)
7386 _("auto-removing autocommand: %s <buffer=%d>"),
7387 event_nr2name(event), buf->b_fnum);
7388 verbose_leave();
7391 au_cleanup();
7395 * Add an autocmd group name.
7396 * Return it's ID. Returns AUGROUP_ERROR (< 0) for error.
7398 static int
7399 au_new_group(name)
7400 char_u *name;
7402 int i;
7404 i = au_find_group(name);
7405 if (i == AUGROUP_ERROR) /* the group doesn't exist yet, add it */
7407 /* First try using a free entry. */
7408 for (i = 0; i < augroups.ga_len; ++i)
7409 if (AUGROUP_NAME(i) == NULL)
7410 break;
7411 if (i == augroups.ga_len && ga_grow(&augroups, 1) == FAIL)
7412 return AUGROUP_ERROR;
7414 AUGROUP_NAME(i) = vim_strsave(name);
7415 if (AUGROUP_NAME(i) == NULL)
7416 return AUGROUP_ERROR;
7417 if (i == augroups.ga_len)
7418 ++augroups.ga_len;
7421 return i;
7424 static void
7425 au_del_group(name)
7426 char_u *name;
7428 int i;
7430 i = au_find_group(name);
7431 if (i == AUGROUP_ERROR) /* the group doesn't exist */
7432 EMSG2(_("E367: No such group: \"%s\""), name);
7433 else
7435 vim_free(AUGROUP_NAME(i));
7436 AUGROUP_NAME(i) = NULL;
7441 * Find the ID of an autocmd group name.
7442 * Return it's ID. Returns AUGROUP_ERROR (< 0) for error.
7444 static int
7445 au_find_group(name)
7446 char_u *name;
7448 int i;
7450 for (i = 0; i < augroups.ga_len; ++i)
7451 if (AUGROUP_NAME(i) != NULL && STRCMP(AUGROUP_NAME(i), name) == 0)
7452 return i;
7453 return AUGROUP_ERROR;
7457 * Return TRUE if augroup "name" exists.
7460 au_has_group(name)
7461 char_u *name;
7463 return au_find_group(name) != AUGROUP_ERROR;
7467 * ":augroup {name}".
7469 void
7470 do_augroup(arg, del_group)
7471 char_u *arg;
7472 int del_group;
7474 int i;
7476 if (del_group)
7478 if (*arg == NUL)
7479 EMSG(_(e_argreq));
7480 else
7481 au_del_group(arg);
7483 else if (STRICMP(arg, "end") == 0) /* ":aug end": back to group 0 */
7484 current_augroup = AUGROUP_DEFAULT;
7485 else if (*arg) /* ":aug xxx": switch to group xxx */
7487 i = au_new_group(arg);
7488 if (i != AUGROUP_ERROR)
7489 current_augroup = i;
7491 else /* ":aug": list the group names */
7493 msg_start();
7494 for (i = 0; i < augroups.ga_len; ++i)
7496 if (AUGROUP_NAME(i) != NULL)
7498 msg_puts(AUGROUP_NAME(i));
7499 msg_puts((char_u *)" ");
7502 msg_clr_eos();
7503 msg_end();
7507 #if defined(EXITFREE) || defined(PROTO)
7508 void
7509 free_all_autocmds()
7511 for (current_augroup = -1; current_augroup < augroups.ga_len;
7512 ++current_augroup)
7513 do_autocmd((char_u *)"", TRUE);
7514 ga_clear_strings(&augroups);
7516 #endif
7519 * Return the event number for event name "start".
7520 * Return NUM_EVENTS if the event name was not found.
7521 * Return a pointer to the next event name in "end".
7523 static event_T
7524 event_name2nr(start, end)
7525 char_u *start;
7526 char_u **end;
7528 char_u *p;
7529 int i;
7530 int len;
7532 /* the event name ends with end of line, a blank or a comma */
7533 for (p = start; *p && !vim_iswhite(*p) && *p != ','; ++p)
7535 for (i = 0; event_names[i].name != NULL; ++i)
7537 len = (int)STRLEN(event_names[i].name);
7538 if (len == p - start && STRNICMP(event_names[i].name, start, len) == 0)
7539 break;
7541 if (*p == ',')
7542 ++p;
7543 *end = p;
7544 if (event_names[i].name == NULL)
7545 return NUM_EVENTS;
7546 return event_names[i].event;
7550 * Return the name for event "event".
7552 static char_u *
7553 event_nr2name(event)
7554 event_T event;
7556 int i;
7558 for (i = 0; event_names[i].name != NULL; ++i)
7559 if (event_names[i].event == event)
7560 return (char_u *)event_names[i].name;
7561 return (char_u *)"Unknown";
7565 * Scan over the events. "*" stands for all events.
7567 static char_u *
7568 find_end_event(arg, have_group)
7569 char_u *arg;
7570 int have_group; /* TRUE when group name was found */
7572 char_u *pat;
7573 char_u *p;
7575 if (*arg == '*')
7577 if (arg[1] && !vim_iswhite(arg[1]))
7579 EMSG2(_("E215: Illegal character after *: %s"), arg);
7580 return NULL;
7582 pat = arg + 1;
7584 else
7586 for (pat = arg; *pat && !vim_iswhite(*pat); pat = p)
7588 if ((int)event_name2nr(pat, &p) >= (int)NUM_EVENTS)
7590 if (have_group)
7591 EMSG2(_("E216: No such event: %s"), pat);
7592 else
7593 EMSG2(_("E216: No such group or event: %s"), pat);
7594 return NULL;
7598 return pat;
7602 * Return TRUE if "event" is included in 'eventignore'.
7604 static int
7605 event_ignored(event)
7606 event_T event;
7608 char_u *p = p_ei;
7610 while (*p != NUL)
7612 if (STRNICMP(p, "all", 3) == 0 && (p[3] == NUL || p[3] == ','))
7613 return TRUE;
7614 if (event_name2nr(p, &p) == event)
7615 return TRUE;
7618 return FALSE;
7622 * Return OK when the contents of p_ei is valid, FAIL otherwise.
7625 check_ei()
7627 char_u *p = p_ei;
7629 while (*p)
7631 if (STRNICMP(p, "all", 3) == 0 && (p[3] == NUL || p[3] == ','))
7633 p += 3;
7634 if (*p == ',')
7635 ++p;
7637 else if (event_name2nr(p, &p) == NUM_EVENTS)
7638 return FAIL;
7641 return OK;
7644 # if defined(FEAT_SYN_HL) || defined(PROTO)
7647 * Add "what" to 'eventignore' to skip loading syntax highlighting for every
7648 * buffer loaded into the window. "what" must start with a comma.
7649 * Returns the old value of 'eventignore' in allocated memory.
7651 char_u *
7652 au_event_disable(what)
7653 char *what;
7655 char_u *new_ei;
7656 char_u *save_ei;
7658 save_ei = vim_strsave(p_ei);
7659 if (save_ei != NULL)
7661 new_ei = vim_strnsave(p_ei, (int)(STRLEN(p_ei) + STRLEN(what)));
7662 if (new_ei != NULL)
7664 STRCAT(new_ei, what);
7665 set_string_option_direct((char_u *)"ei", -1, new_ei,
7666 OPT_FREE, SID_NONE);
7667 vim_free(new_ei);
7670 return save_ei;
7673 void
7674 au_event_restore(old_ei)
7675 char_u *old_ei;
7677 if (old_ei != NULL)
7679 set_string_option_direct((char_u *)"ei", -1, old_ei,
7680 OPT_FREE, SID_NONE);
7681 vim_free(old_ei);
7684 # endif /* FEAT_SYN_HL */
7687 * do_autocmd() -- implements the :autocmd command. Can be used in the
7688 * following ways:
7690 * :autocmd <event> <pat> <cmd> Add <cmd> to the list of commands that
7691 * will be automatically executed for <event>
7692 * when editing a file matching <pat>, in
7693 * the current group.
7694 * :autocmd <event> <pat> Show the auto-commands associated with
7695 * <event> and <pat>.
7696 * :autocmd <event> Show the auto-commands associated with
7697 * <event>.
7698 * :autocmd Show all auto-commands.
7699 * :autocmd! <event> <pat> <cmd> Remove all auto-commands associated with
7700 * <event> and <pat>, and add the command
7701 * <cmd>, for the current group.
7702 * :autocmd! <event> <pat> Remove all auto-commands associated with
7703 * <event> and <pat> for the current group.
7704 * :autocmd! <event> Remove all auto-commands associated with
7705 * <event> for the current group.
7706 * :autocmd! Remove ALL auto-commands for the current
7707 * group.
7709 * Multiple events and patterns may be given separated by commas. Here are
7710 * some examples:
7711 * :autocmd bufread,bufenter *.c,*.h set tw=0 smartindent noic
7712 * :autocmd bufleave * set tw=79 nosmartindent ic infercase
7714 * :autocmd * *.c show all autocommands for *.c files.
7716 * Mostly a {group} argument can optionally appear before <event>.
7718 void
7719 do_autocmd(arg, forceit)
7720 char_u *arg;
7721 int forceit;
7723 char_u *pat;
7724 char_u *envpat = NULL;
7725 char_u *cmd;
7726 event_T event;
7727 int need_free = FALSE;
7728 int nested = FALSE;
7729 int group;
7732 * Check for a legal group name. If not, use AUGROUP_ALL.
7734 group = au_get_grouparg(&arg);
7735 if (arg == NULL) /* out of memory */
7736 return;
7739 * Scan over the events.
7740 * If we find an illegal name, return here, don't do anything.
7742 pat = find_end_event(arg, group != AUGROUP_ALL);
7743 if (pat == NULL)
7744 return;
7747 * Scan over the pattern. Put a NUL at the end.
7749 pat = skipwhite(pat);
7750 cmd = pat;
7751 while (*cmd && (!vim_iswhite(*cmd) || cmd[-1] == '\\'))
7752 cmd++;
7753 if (*cmd)
7754 *cmd++ = NUL;
7756 /* Expand environment variables in the pattern. Set 'shellslash', we want
7757 * forward slashes here. */
7758 if (vim_strchr(pat, '$') != NULL || vim_strchr(pat, '~') != NULL)
7760 #ifdef BACKSLASH_IN_FILENAME
7761 int p_ssl_save = p_ssl;
7763 p_ssl = TRUE;
7764 #endif
7765 envpat = expand_env_save(pat);
7766 #ifdef BACKSLASH_IN_FILENAME
7767 p_ssl = p_ssl_save;
7768 #endif
7769 if (envpat != NULL)
7770 pat = envpat;
7774 * Check for "nested" flag.
7776 cmd = skipwhite(cmd);
7777 if (*cmd != NUL && STRNCMP(cmd, "nested", 6) == 0 && vim_iswhite(cmd[6]))
7779 nested = TRUE;
7780 cmd = skipwhite(cmd + 6);
7784 * Find the start of the commands.
7785 * Expand <sfile> in it.
7787 if (*cmd != NUL)
7789 cmd = expand_sfile(cmd);
7790 if (cmd == NULL) /* some error */
7791 return;
7792 need_free = TRUE;
7796 * Print header when showing autocommands.
7798 if (!forceit && *cmd == NUL)
7800 /* Highlight title */
7801 MSG_PUTS_TITLE(_("\n--- Auto-Commands ---"));
7805 * Loop over the events.
7807 last_event = (event_T)-1; /* for listing the event name */
7808 last_group = AUGROUP_ERROR; /* for listing the group name */
7809 if (*arg == '*' || *arg == NUL)
7811 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
7812 event = (event_T)((int)event + 1))
7813 if (do_autocmd_event(event, pat,
7814 nested, cmd, forceit, group) == FAIL)
7815 break;
7817 else
7819 while (*arg && !vim_iswhite(*arg))
7820 if (do_autocmd_event(event_name2nr(arg, &arg), pat,
7821 nested, cmd, forceit, group) == FAIL)
7822 break;
7825 if (need_free)
7826 vim_free(cmd);
7827 vim_free(envpat);
7831 * Find the group ID in a ":autocmd" or ":doautocmd" argument.
7832 * The "argp" argument is advanced to the following argument.
7834 * Returns the group ID, AUGROUP_ERROR for error (out of memory).
7836 static int
7837 au_get_grouparg(argp)
7838 char_u **argp;
7840 char_u *group_name;
7841 char_u *p;
7842 char_u *arg = *argp;
7843 int group = AUGROUP_ALL;
7845 p = skiptowhite(arg);
7846 if (p > arg)
7848 group_name = vim_strnsave(arg, (int)(p - arg));
7849 if (group_name == NULL) /* out of memory */
7850 return AUGROUP_ERROR;
7851 group = au_find_group(group_name);
7852 if (group == AUGROUP_ERROR)
7853 group = AUGROUP_ALL; /* no match, use all groups */
7854 else
7855 *argp = skipwhite(p); /* match, skip over group name */
7856 vim_free(group_name);
7858 return group;
7862 * do_autocmd() for one event.
7863 * If *pat == NUL do for all patterns.
7864 * If *cmd == NUL show entries.
7865 * If forceit == TRUE delete entries.
7866 * If group is not AUGROUP_ALL, only use this group.
7868 static int
7869 do_autocmd_event(event, pat, nested, cmd, forceit, group)
7870 event_T event;
7871 char_u *pat;
7872 int nested;
7873 char_u *cmd;
7874 int forceit;
7875 int group;
7877 AutoPat *ap;
7878 AutoPat **prev_ap;
7879 AutoCmd *ac;
7880 AutoCmd **prev_ac;
7881 int brace_level;
7882 char_u *endpat;
7883 int findgroup;
7884 int allgroups;
7885 int patlen;
7886 int is_buflocal;
7887 int buflocal_nr;
7888 char_u buflocal_pat[25]; /* for "<buffer=X>" */
7890 if (group == AUGROUP_ALL)
7891 findgroup = current_augroup;
7892 else
7893 findgroup = group;
7894 allgroups = (group == AUGROUP_ALL && !forceit && *cmd == NUL);
7897 * Show or delete all patterns for an event.
7899 if (*pat == NUL)
7901 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
7903 if (forceit) /* delete the AutoPat, if it's in the current group */
7905 if (ap->group == findgroup)
7906 au_remove_pat(ap);
7908 else if (group == AUGROUP_ALL || ap->group == group)
7909 show_autocmd(ap, event);
7914 * Loop through all the specified patterns.
7916 for ( ; *pat; pat = (*endpat == ',' ? endpat + 1 : endpat))
7919 * Find end of the pattern.
7920 * Watch out for a comma in braces, like "*.\{obj,o\}".
7922 brace_level = 0;
7923 for (endpat = pat; *endpat && (*endpat != ',' || brace_level
7924 || endpat[-1] == '\\'); ++endpat)
7926 if (*endpat == '{')
7927 brace_level++;
7928 else if (*endpat == '}')
7929 brace_level--;
7931 if (pat == endpat) /* ignore single comma */
7932 continue;
7933 patlen = (int)(endpat - pat);
7936 * detect special <buflocal[=X]> buffer-local patterns
7938 is_buflocal = FALSE;
7939 buflocal_nr = 0;
7941 if (patlen >= 7 && STRNCMP(pat, "<buffer", 7) == 0
7942 && pat[patlen - 1] == '>')
7944 /* Error will be printed only for addition. printing and removing
7945 * will proceed silently. */
7946 is_buflocal = TRUE;
7947 if (patlen == 8)
7948 buflocal_nr = curbuf->b_fnum;
7949 else if (patlen > 9 && pat[7] == '=')
7951 /* <buffer=abuf> */
7952 if (patlen == 13 && STRNICMP(pat, "<buffer=abuf>", 13))
7953 buflocal_nr = autocmd_bufnr;
7954 /* <buffer=123> */
7955 else if (skipdigits(pat + 8) == pat + patlen - 1)
7956 buflocal_nr = atoi((char *)pat + 8);
7960 if (is_buflocal)
7962 /* normalize pat into standard "<buffer>#N" form */
7963 sprintf((char *)buflocal_pat, "<buffer=%d>", buflocal_nr);
7964 pat = buflocal_pat; /* can modify pat and patlen */
7965 patlen = (int)STRLEN(buflocal_pat); /* but not endpat */
7969 * Find AutoPat entries with this pattern.
7971 prev_ap = &first_autopat[(int)event];
7972 while ((ap = *prev_ap) != NULL)
7974 if (ap->pat != NULL)
7976 /* Accept a pattern when:
7977 * - a group was specified and it's that group, or a group was
7978 * not specified and it's the current group, or a group was
7979 * not specified and we are listing
7980 * - the length of the pattern matches
7981 * - the pattern matches.
7982 * For <buffer[=X]>, this condition works because we normalize
7983 * all buffer-local patterns.
7985 if ((allgroups || ap->group == findgroup)
7986 && ap->patlen == patlen
7987 && STRNCMP(pat, ap->pat, patlen) == 0)
7990 * Remove existing autocommands.
7991 * If adding any new autocmd's for this AutoPat, don't
7992 * delete the pattern from the autopat list, append to
7993 * this list.
7995 if (forceit)
7997 if (*cmd != NUL && ap->next == NULL)
7999 au_remove_cmds(ap);
8000 break;
8002 au_remove_pat(ap);
8006 * Show autocmd's for this autopat, or buflocals <buffer=X>
8008 else if (*cmd == NUL)
8009 show_autocmd(ap, event);
8012 * Add autocmd to this autopat, if it's the last one.
8014 else if (ap->next == NULL)
8015 break;
8018 prev_ap = &ap->next;
8022 * Add a new command.
8024 if (*cmd != NUL)
8027 * If the pattern we want to add a command to does appear at the
8028 * end of the list (or not is not in the list at all), add the
8029 * pattern at the end of the list.
8031 if (ap == NULL)
8033 /* refuse to add buffer-local ap if buffer number is invalid */
8034 if (is_buflocal && (buflocal_nr == 0
8035 || buflist_findnr(buflocal_nr) == NULL))
8037 EMSGN(_("E680: <buffer=%d>: invalid buffer number "),
8038 buflocal_nr);
8039 return FAIL;
8042 ap = (AutoPat *)alloc((unsigned)sizeof(AutoPat));
8043 if (ap == NULL)
8044 return FAIL;
8045 ap->pat = vim_strnsave(pat, patlen);
8046 ap->patlen = patlen;
8047 if (ap->pat == NULL)
8049 vim_free(ap);
8050 return FAIL;
8053 if (is_buflocal)
8055 ap->buflocal_nr = buflocal_nr;
8056 ap->reg_prog = NULL;
8058 else
8060 char_u *reg_pat;
8062 ap->buflocal_nr = 0;
8063 reg_pat = file_pat_to_reg_pat(pat, endpat,
8064 &ap->allow_dirs, TRUE);
8065 if (reg_pat != NULL)
8066 ap->reg_prog = vim_regcomp(reg_pat, RE_MAGIC);
8067 vim_free(reg_pat);
8068 if (reg_pat == NULL || ap->reg_prog == NULL)
8070 vim_free(ap->pat);
8071 vim_free(ap);
8072 return FAIL;
8075 ap->cmds = NULL;
8076 *prev_ap = ap;
8077 ap->next = NULL;
8078 if (group == AUGROUP_ALL)
8079 ap->group = current_augroup;
8080 else
8081 ap->group = group;
8085 * Add the autocmd at the end of the AutoCmd list.
8087 prev_ac = &(ap->cmds);
8088 while ((ac = *prev_ac) != NULL)
8089 prev_ac = &ac->next;
8090 ac = (AutoCmd *)alloc((unsigned)sizeof(AutoCmd));
8091 if (ac == NULL)
8092 return FAIL;
8093 ac->cmd = vim_strsave(cmd);
8094 #ifdef FEAT_EVAL
8095 ac->scriptID = current_SID;
8096 #endif
8097 if (ac->cmd == NULL)
8099 vim_free(ac);
8100 return FAIL;
8102 ac->next = NULL;
8103 *prev_ac = ac;
8104 ac->nested = nested;
8108 au_cleanup(); /* may really delete removed patterns/commands now */
8109 return OK;
8113 * Implementation of ":doautocmd [group] event [fname]".
8114 * Return OK for success, FAIL for failure;
8117 do_doautocmd(arg, do_msg)
8118 char_u *arg;
8119 int do_msg; /* give message for no matching autocmds? */
8121 char_u *fname;
8122 int nothing_done = TRUE;
8123 int group;
8126 * Check for a legal group name. If not, use AUGROUP_ALL.
8128 group = au_get_grouparg(&arg);
8129 if (arg == NULL) /* out of memory */
8130 return FAIL;
8132 if (*arg == '*')
8134 EMSG(_("E217: Can't execute autocommands for ALL events"));
8135 return FAIL;
8139 * Scan over the events.
8140 * If we find an illegal name, return here, don't do anything.
8142 fname = find_end_event(arg, group != AUGROUP_ALL);
8143 if (fname == NULL)
8144 return FAIL;
8146 fname = skipwhite(fname);
8149 * Loop over the events.
8151 while (*arg && !vim_iswhite(*arg))
8152 if (apply_autocmds_group(event_name2nr(arg, &arg),
8153 fname, NULL, TRUE, group, curbuf, NULL))
8154 nothing_done = FALSE;
8156 if (nothing_done && do_msg)
8157 MSG(_("No matching autocommands"));
8159 #ifdef FEAT_EVAL
8160 return aborting() ? FAIL : OK;
8161 #else
8162 return OK;
8163 #endif
8167 * ":doautoall": execute autocommands for each loaded buffer.
8169 void
8170 ex_doautoall(eap)
8171 exarg_T *eap;
8173 int retval;
8174 aco_save_T aco;
8175 buf_T *buf;
8178 * This is a bit tricky: For some commands curwin->w_buffer needs to be
8179 * equal to curbuf, but for some buffers there may not be a window.
8180 * So we change the buffer for the current window for a moment. This
8181 * gives problems when the autocommands make changes to the list of
8182 * buffers or windows...
8184 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
8186 if (curbuf->b_ml.ml_mfp != NULL)
8188 /* find a window for this buffer and save some values */
8189 aucmd_prepbuf(&aco, buf);
8191 /* execute the autocommands for this buffer */
8192 retval = do_doautocmd(eap->arg, FALSE);
8194 /* Execute the modeline settings, but don't set window-local
8195 * options if we are using the current window for another buffer. */
8196 do_modelines(aco.save_curwin == NULL ? OPT_NOWIN : 0);
8198 /* restore the current window */
8199 aucmd_restbuf(&aco);
8201 /* stop if there is some error or buffer was deleted */
8202 if (retval == FAIL || !buf_valid(buf))
8203 break;
8207 check_cursor(); /* just in case lines got deleted */
8211 * Prepare for executing autocommands for (hidden) buffer "buf".
8212 * Search a window for the current buffer. Save the cursor position and
8213 * screen offset.
8214 * Set "curbuf" and "curwin" to match "buf".
8215 * When FEAT_AUTOCMD is not defined another version is used, see below.
8217 void
8218 aucmd_prepbuf(aco, buf)
8219 aco_save_T *aco; /* structure to save values in */
8220 buf_T *buf; /* new curbuf */
8222 win_T *win;
8224 aco->new_curbuf = buf;
8226 /* Find a window that is for the new buffer */
8227 if (buf == curbuf) /* be quick when buf is curbuf */
8228 win = curwin;
8229 else
8230 #ifdef FEAT_WINDOWS
8231 for (win = firstwin; win != NULL; win = win->w_next)
8232 if (win->w_buffer == buf)
8233 break;
8234 #else
8235 win = NULL;
8236 #endif
8239 * Prefer to use an existing window for the buffer, it has the least side
8240 * effects (esp. if "buf" is curbuf).
8241 * Otherwise, use curwin for "buf". It might make some items in the
8242 * window invalid. At least save the cursor and topline.
8244 if (win != NULL)
8246 /* there is a window for "buf", make it the curwin */
8247 aco->save_curwin = curwin;
8248 curwin = win;
8249 aco->save_buf = win->w_buffer;
8250 aco->new_curwin = win;
8252 else
8254 /* there is no window for "buf", use curwin */
8255 aco->save_curwin = NULL;
8256 aco->save_buf = curbuf;
8257 --curbuf->b_nwindows;
8258 curwin->w_buffer = buf;
8259 ++buf->b_nwindows;
8261 /* save cursor and topline, set them to safe values */
8262 aco->save_cursor = curwin->w_cursor;
8263 curwin->w_cursor.lnum = 1;
8264 curwin->w_cursor.col = 0;
8265 aco->save_topline = curwin->w_topline;
8266 curwin->w_topline = 1;
8267 #ifdef FEAT_DIFF
8268 aco->save_topfill = curwin->w_topfill;
8269 curwin->w_topfill = 0;
8270 #endif
8273 curbuf = buf;
8277 * Cleanup after executing autocommands for a (hidden) buffer.
8278 * Restore the window as it was (if possible).
8279 * When FEAT_AUTOCMD is not defined another version is used, see below.
8281 void
8282 aucmd_restbuf(aco)
8283 aco_save_T *aco; /* structure holding saved values */
8285 if (aco->save_curwin != NULL)
8287 /* restore curwin */
8288 #ifdef FEAT_WINDOWS
8289 if (win_valid(aco->save_curwin))
8290 #endif
8292 /* restore the buffer which was previously edited by curwin, if
8293 * it's still the same window and it's valid */
8294 if (curwin == aco->new_curwin
8295 && buf_valid(aco->save_buf)
8296 && aco->save_buf->b_ml.ml_mfp != NULL)
8298 --curbuf->b_nwindows;
8299 curbuf = aco->save_buf;
8300 curwin->w_buffer = curbuf;
8301 ++curbuf->b_nwindows;
8304 curwin = aco->save_curwin;
8305 curbuf = curwin->w_buffer;
8308 else
8310 /* restore buffer for curwin if it still exists and is loaded */
8311 if (buf_valid(aco->save_buf) && aco->save_buf->b_ml.ml_mfp != NULL)
8313 --curbuf->b_nwindows;
8314 curbuf = aco->save_buf;
8315 curwin->w_buffer = curbuf;
8316 ++curbuf->b_nwindows;
8317 curwin->w_cursor = aco->save_cursor;
8318 check_cursor();
8319 /* check topline < line_count, in case lines got deleted */
8320 if (aco->save_topline <= curbuf->b_ml.ml_line_count)
8322 curwin->w_topline = aco->save_topline;
8323 #ifdef FEAT_DIFF
8324 curwin->w_topfill = aco->save_topfill;
8325 #endif
8327 else
8329 curwin->w_topline = curbuf->b_ml.ml_line_count;
8330 #ifdef FEAT_DIFF
8331 curwin->w_topfill = 0;
8332 #endif
8338 static int autocmd_nested = FALSE;
8341 * Execute autocommands for "event" and file name "fname".
8342 * Return TRUE if some commands were executed.
8345 apply_autocmds(event, fname, fname_io, force, buf)
8346 event_T event;
8347 char_u *fname; /* NULL or empty means use actual file name */
8348 char_u *fname_io; /* fname to use for <afile> on cmdline */
8349 int force; /* when TRUE, ignore autocmd_busy */
8350 buf_T *buf; /* buffer for <abuf> */
8352 return apply_autocmds_group(event, fname, fname_io, force,
8353 AUGROUP_ALL, buf, NULL);
8357 * Like apply_autocmds(), but with extra "eap" argument. This takes care of
8358 * setting v:filearg.
8360 static int
8361 apply_autocmds_exarg(event, fname, fname_io, force, buf, eap)
8362 event_T event;
8363 char_u *fname;
8364 char_u *fname_io;
8365 int force;
8366 buf_T *buf;
8367 exarg_T *eap;
8369 return apply_autocmds_group(event, fname, fname_io, force,
8370 AUGROUP_ALL, buf, eap);
8374 * Like apply_autocmds(), but handles the caller's retval. If the script
8375 * processing is being aborted or if retval is FAIL when inside a try
8376 * conditional, no autocommands are executed. If otherwise the autocommands
8377 * cause the script to be aborted, retval is set to FAIL.
8380 apply_autocmds_retval(event, fname, fname_io, force, buf, retval)
8381 event_T event;
8382 char_u *fname; /* NULL or empty means use actual file name */
8383 char_u *fname_io; /* fname to use for <afile> on cmdline */
8384 int force; /* when TRUE, ignore autocmd_busy */
8385 buf_T *buf; /* buffer for <abuf> */
8386 int *retval; /* pointer to caller's retval */
8388 int did_cmd;
8390 #ifdef FEAT_EVAL
8391 if (should_abort(*retval))
8392 return FALSE;
8393 #endif
8395 did_cmd = apply_autocmds_group(event, fname, fname_io, force,
8396 AUGROUP_ALL, buf, NULL);
8397 if (did_cmd
8398 #ifdef FEAT_EVAL
8399 && aborting()
8400 #endif
8402 *retval = FAIL;
8403 return did_cmd;
8407 * Return TRUE when there is a CursorHold autocommand defined.
8410 has_cursorhold()
8412 return (first_autopat[(int)(get_real_state() == NORMAL_BUSY
8413 ? EVENT_CURSORHOLD : EVENT_CURSORHOLDI)] != NULL);
8417 * Return TRUE if the CursorHold event can be triggered.
8420 trigger_cursorhold()
8422 int state;
8424 if (!did_cursorhold && has_cursorhold() && !Recording
8425 #ifdef FEAT_INS_EXPAND
8426 && !ins_compl_active()
8427 #endif
8430 state = get_real_state();
8431 if (state == NORMAL_BUSY || (state & INSERT) != 0)
8432 return TRUE;
8434 return FALSE;
8438 * Return TRUE when there is a CursorMoved autocommand defined.
8441 has_cursormoved()
8443 return (first_autopat[(int)EVENT_CURSORMOVED] != NULL);
8447 * Return TRUE when there is a CursorMovedI autocommand defined.
8450 has_cursormovedI()
8452 return (first_autopat[(int)EVENT_CURSORMOVEDI] != NULL);
8455 static int
8456 apply_autocmds_group(event, fname, fname_io, force, group, buf, eap)
8457 event_T event;
8458 char_u *fname; /* NULL or empty means use actual file name */
8459 char_u *fname_io; /* fname to use for <afile> on cmdline, NULL means
8460 use fname */
8461 int force; /* when TRUE, ignore autocmd_busy */
8462 int group; /* group ID, or AUGROUP_ALL */
8463 buf_T *buf; /* buffer for <abuf> */
8464 exarg_T *eap; /* command arguments */
8466 char_u *sfname = NULL; /* short file name */
8467 char_u *tail;
8468 int save_changed;
8469 buf_T *old_curbuf;
8470 int retval = FALSE;
8471 char_u *save_sourcing_name;
8472 linenr_T save_sourcing_lnum;
8473 char_u *save_autocmd_fname;
8474 int save_autocmd_bufnr;
8475 char_u *save_autocmd_match;
8476 int save_autocmd_busy;
8477 int save_autocmd_nested;
8478 static int nesting = 0;
8479 AutoPatCmd patcmd;
8480 AutoPat *ap;
8481 #ifdef FEAT_EVAL
8482 scid_T save_current_SID;
8483 void *save_funccalp;
8484 char_u *save_cmdarg;
8485 long save_cmdbang;
8486 #endif
8487 static int filechangeshell_busy = FALSE;
8488 #ifdef FEAT_PROFILE
8489 proftime_T wait_time;
8490 #endif
8493 * Quickly return if there are no autocommands for this event or
8494 * autocommands are blocked.
8496 if (first_autopat[(int)event] == NULL || autocmd_blocked > 0)
8497 goto BYPASS_AU;
8500 * When autocommands are busy, new autocommands are only executed when
8501 * explicitly enabled with the "nested" flag.
8503 if (autocmd_busy && !(force || autocmd_nested))
8504 goto BYPASS_AU;
8506 #ifdef FEAT_EVAL
8508 * Quickly return when immediately aborting on error, or when an interrupt
8509 * occurred or an exception was thrown but not caught.
8511 if (aborting())
8512 goto BYPASS_AU;
8513 #endif
8516 * FileChangedShell never nests, because it can create an endless loop.
8518 if (filechangeshell_busy && (event == EVENT_FILECHANGEDSHELL
8519 || event == EVENT_FILECHANGEDSHELLPOST))
8520 goto BYPASS_AU;
8523 * Ignore events in 'eventignore'.
8525 if (event_ignored(event))
8526 goto BYPASS_AU;
8529 * Allow nesting of autocommands, but restrict the depth, because it's
8530 * possible to create an endless loop.
8532 if (nesting == 10)
8534 EMSG(_("E218: autocommand nesting too deep"));
8535 goto BYPASS_AU;
8539 * Check if these autocommands are disabled. Used when doing ":all" or
8540 * ":ball".
8542 if ( (autocmd_no_enter
8543 && (event == EVENT_WINENTER || event == EVENT_BUFENTER))
8544 || (autocmd_no_leave
8545 && (event == EVENT_WINLEAVE || event == EVENT_BUFLEAVE)))
8546 goto BYPASS_AU;
8549 * Save the autocmd_* variables and info about the current buffer.
8551 save_autocmd_fname = autocmd_fname;
8552 save_autocmd_bufnr = autocmd_bufnr;
8553 save_autocmd_match = autocmd_match;
8554 save_autocmd_busy = autocmd_busy;
8555 save_autocmd_nested = autocmd_nested;
8556 save_changed = curbuf->b_changed;
8557 old_curbuf = curbuf;
8560 * Set the file name to be used for <afile>.
8561 * Make a copy to avoid that changing a buffer name or directory makes it
8562 * invalid.
8564 if (fname_io == NULL)
8566 if (fname != NULL && *fname != NUL)
8567 autocmd_fname = fname;
8568 else if (buf != NULL)
8569 autocmd_fname = buf->b_fname;
8570 else
8571 autocmd_fname = NULL;
8573 else
8574 autocmd_fname = fname_io;
8575 if (autocmd_fname != NULL)
8576 autocmd_fname = FullName_save(autocmd_fname, FALSE);
8579 * Set the buffer number to be used for <abuf>.
8581 if (buf == NULL)
8582 autocmd_bufnr = 0;
8583 else
8584 autocmd_bufnr = buf->b_fnum;
8587 * When the file name is NULL or empty, use the file name of buffer "buf".
8588 * Always use the full path of the file name to match with, in case
8589 * "allow_dirs" is set.
8591 if (fname == NULL || *fname == NUL)
8593 if (buf == NULL)
8594 fname = NULL;
8595 else
8597 #ifdef FEAT_SYN_HL
8598 if (event == EVENT_SYNTAX)
8599 fname = buf->b_p_syn;
8600 else
8601 #endif
8602 if (event == EVENT_FILETYPE)
8603 fname = buf->b_p_ft;
8604 else
8606 if (buf->b_sfname != NULL)
8607 sfname = vim_strsave(buf->b_sfname);
8608 fname = buf->b_ffname;
8611 if (fname == NULL)
8612 fname = (char_u *)"";
8613 fname = vim_strsave(fname); /* make a copy, so we can change it */
8615 else
8617 sfname = vim_strsave(fname);
8618 /* Don't try expanding FileType, Syntax, WindowID or QuickFixCmd* */
8619 if (event == EVENT_FILETYPE
8620 || event == EVENT_SYNTAX
8621 || event == EVENT_REMOTEREPLY
8622 || event == EVENT_SPELLFILEMISSING
8623 || event == EVENT_QUICKFIXCMDPRE
8624 || event == EVENT_QUICKFIXCMDPOST)
8625 fname = vim_strsave(fname);
8626 else
8627 fname = FullName_save(fname, FALSE);
8629 if (fname == NULL) /* out of memory */
8631 vim_free(sfname);
8632 retval = FALSE;
8633 goto BYPASS_AU;
8636 #ifdef BACKSLASH_IN_FILENAME
8638 * Replace all backslashes with forward slashes. This makes the
8639 * autocommand patterns portable between Unix and MS-DOS.
8641 if (sfname != NULL)
8642 forward_slash(sfname);
8643 forward_slash(fname);
8644 #endif
8646 #ifdef VMS
8647 /* remove version for correct match */
8648 if (sfname != NULL)
8649 vms_remove_version(sfname);
8650 vms_remove_version(fname);
8651 #endif
8654 * Set the name to be used for <amatch>.
8656 autocmd_match = fname;
8659 /* Don't redraw while doing auto commands. */
8660 ++RedrawingDisabled;
8661 save_sourcing_name = sourcing_name;
8662 sourcing_name = NULL; /* don't free this one */
8663 save_sourcing_lnum = sourcing_lnum;
8664 sourcing_lnum = 0; /* no line number here */
8666 #ifdef FEAT_EVAL
8667 save_current_SID = current_SID;
8669 # ifdef FEAT_PROFILE
8670 if (do_profiling == PROF_YES)
8671 prof_child_enter(&wait_time); /* doesn't count for the caller itself */
8672 # endif
8674 /* Don't use local function variables, if called from a function */
8675 save_funccalp = save_funccal();
8676 #endif
8679 * When starting to execute autocommands, save the search patterns.
8681 if (!autocmd_busy)
8683 save_search_patterns();
8684 saveRedobuff();
8685 did_filetype = keep_filetype;
8689 * Note that we are applying autocmds. Some commands need to know.
8691 autocmd_busy = TRUE;
8692 filechangeshell_busy = (event == EVENT_FILECHANGEDSHELL);
8693 ++nesting; /* see matching decrement below */
8695 /* Remember that FileType was triggered. Used for did_filetype(). */
8696 if (event == EVENT_FILETYPE)
8697 did_filetype = TRUE;
8699 tail = gettail(fname);
8701 /* Find first autocommand that matches */
8702 patcmd.curpat = first_autopat[(int)event];
8703 patcmd.nextcmd = NULL;
8704 patcmd.group = group;
8705 patcmd.fname = fname;
8706 patcmd.sfname = sfname;
8707 patcmd.tail = tail;
8708 patcmd.event = event;
8709 patcmd.arg_bufnr = autocmd_bufnr;
8710 patcmd.next = NULL;
8711 auto_next_pat(&patcmd, FALSE);
8713 /* found one, start executing the autocommands */
8714 if (patcmd.curpat != NULL)
8716 /* add to active_apc_list */
8717 patcmd.next = active_apc_list;
8718 active_apc_list = &patcmd;
8720 #ifdef FEAT_EVAL
8721 /* set v:cmdarg (only when there is a matching pattern) */
8722 save_cmdbang = get_vim_var_nr(VV_CMDBANG);
8723 if (eap != NULL)
8725 save_cmdarg = set_cmdarg(eap, NULL);
8726 set_vim_var_nr(VV_CMDBANG, (long)eap->forceit);
8728 else
8729 save_cmdarg = NULL; /* avoid gcc warning */
8730 #endif
8731 retval = TRUE;
8732 /* mark the last pattern, to avoid an endless loop when more patterns
8733 * are added when executing autocommands */
8734 for (ap = patcmd.curpat; ap->next != NULL; ap = ap->next)
8735 ap->last = FALSE;
8736 ap->last = TRUE;
8737 check_lnums(TRUE); /* make sure cursor and topline are valid */
8738 do_cmdline(NULL, getnextac, (void *)&patcmd,
8739 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
8740 #ifdef FEAT_EVAL
8741 if (eap != NULL)
8743 (void)set_cmdarg(NULL, save_cmdarg);
8744 set_vim_var_nr(VV_CMDBANG, save_cmdbang);
8746 #endif
8747 /* delete from active_apc_list */
8748 if (active_apc_list == &patcmd) /* just in case */
8749 active_apc_list = patcmd.next;
8752 --RedrawingDisabled;
8753 autocmd_busy = save_autocmd_busy;
8754 filechangeshell_busy = FALSE;
8755 autocmd_nested = save_autocmd_nested;
8756 vim_free(sourcing_name);
8757 sourcing_name = save_sourcing_name;
8758 sourcing_lnum = save_sourcing_lnum;
8759 vim_free(autocmd_fname);
8760 autocmd_fname = save_autocmd_fname;
8761 autocmd_bufnr = save_autocmd_bufnr;
8762 autocmd_match = save_autocmd_match;
8763 #ifdef FEAT_EVAL
8764 current_SID = save_current_SID;
8765 restore_funccal(save_funccalp);
8766 # ifdef FEAT_PROFILE
8767 if (do_profiling == PROF_YES)
8768 prof_child_exit(&wait_time);
8769 # endif
8770 #endif
8771 vim_free(fname);
8772 vim_free(sfname);
8773 --nesting; /* see matching increment above */
8776 * When stopping to execute autocommands, restore the search patterns and
8777 * the redo buffer.
8779 if (!autocmd_busy)
8781 restore_search_patterns();
8782 restoreRedobuff();
8783 did_filetype = FALSE;
8787 * Some events don't set or reset the Changed flag.
8788 * Check if still in the same buffer!
8790 if (curbuf == old_curbuf
8791 && (event == EVENT_BUFREADPOST
8792 || event == EVENT_BUFWRITEPOST
8793 || event == EVENT_FILEAPPENDPOST
8794 || event == EVENT_VIMLEAVE
8795 || event == EVENT_VIMLEAVEPRE))
8797 #ifdef FEAT_TITLE
8798 if (curbuf->b_changed != save_changed)
8799 need_maketitle = TRUE;
8800 #endif
8801 curbuf->b_changed = save_changed;
8804 au_cleanup(); /* may really delete removed patterns/commands now */
8806 BYPASS_AU:
8807 /* When wiping out a buffer make sure all its buffer-local autocommands
8808 * are deleted. */
8809 if (event == EVENT_BUFWIPEOUT && buf != NULL)
8810 aubuflocal_remove(buf);
8812 return retval;
8815 # ifdef FEAT_EVAL
8816 static char_u *old_termresponse = NULL;
8817 # endif
8820 * Block triggering autocommands until unblock_autocmd() is called.
8821 * Can be used recursively, so long as it's symmetric.
8823 void
8824 block_autocmds()
8826 # ifdef FEAT_EVAL
8827 /* Remember the value of v:termresponse. */
8828 if (autocmd_blocked == 0)
8829 old_termresponse = get_vim_var_str(VV_TERMRESPONSE);
8830 # endif
8831 ++autocmd_blocked;
8834 void
8835 unblock_autocmds()
8837 --autocmd_blocked;
8839 # ifdef FEAT_EVAL
8840 /* When v:termresponse was set while autocommands were blocked, trigger
8841 * the autocommands now. Esp. useful when executing a shell command
8842 * during startup (vimdiff). */
8843 if (autocmd_blocked == 0
8844 && get_vim_var_str(VV_TERMRESPONSE) != old_termresponse)
8845 apply_autocmds(EVENT_TERMRESPONSE, NULL, NULL, FALSE, curbuf);
8846 # endif
8850 * Find next autocommand pattern that matches.
8852 static void
8853 auto_next_pat(apc, stop_at_last)
8854 AutoPatCmd *apc;
8855 int stop_at_last; /* stop when 'last' flag is set */
8857 AutoPat *ap;
8858 AutoCmd *cp;
8859 char_u *name;
8860 char *s;
8862 vim_free(sourcing_name);
8863 sourcing_name = NULL;
8865 for (ap = apc->curpat; ap != NULL && !got_int; ap = ap->next)
8867 apc->curpat = NULL;
8869 /* only use a pattern when it has not been removed, has commands and
8870 * the group matches. For buffer-local autocommands only check the
8871 * buffer number. */
8872 if (ap->pat != NULL && ap->cmds != NULL
8873 && (apc->group == AUGROUP_ALL || apc->group == ap->group))
8875 /* execution-condition */
8876 if (ap->buflocal_nr == 0
8877 ? (match_file_pat(NULL, ap->reg_prog, apc->fname,
8878 apc->sfname, apc->tail, ap->allow_dirs))
8879 : ap->buflocal_nr == apc->arg_bufnr)
8881 name = event_nr2name(apc->event);
8882 s = _("%s Auto commands for \"%s\"");
8883 sourcing_name = alloc((unsigned)(STRLEN(s)
8884 + STRLEN(name) + ap->patlen + 1));
8885 if (sourcing_name != NULL)
8887 sprintf((char *)sourcing_name, s,
8888 (char *)name, (char *)ap->pat);
8889 if (p_verbose >= 8)
8891 verbose_enter();
8892 smsg((char_u *)_("Executing %s"), sourcing_name);
8893 verbose_leave();
8897 apc->curpat = ap;
8898 apc->nextcmd = ap->cmds;
8899 /* mark last command */
8900 for (cp = ap->cmds; cp->next != NULL; cp = cp->next)
8901 cp->last = FALSE;
8902 cp->last = TRUE;
8904 line_breakcheck();
8905 if (apc->curpat != NULL) /* found a match */
8906 break;
8908 if (stop_at_last && ap->last)
8909 break;
8914 * Get next autocommand command.
8915 * Called by do_cmdline() to get the next line for ":if".
8916 * Returns allocated string, or NULL for end of autocommands.
8918 /* ARGSUSED */
8919 static char_u *
8920 getnextac(c, cookie, indent)
8921 int c; /* not used */
8922 void *cookie;
8923 int indent; /* not used */
8925 AutoPatCmd *acp = (AutoPatCmd *)cookie;
8926 char_u *retval;
8927 AutoCmd *ac;
8929 /* Can be called again after returning the last line. */
8930 if (acp->curpat == NULL)
8931 return NULL;
8933 /* repeat until we find an autocommand to execute */
8934 for (;;)
8936 /* skip removed commands */
8937 while (acp->nextcmd != NULL && acp->nextcmd->cmd == NULL)
8938 if (acp->nextcmd->last)
8939 acp->nextcmd = NULL;
8940 else
8941 acp->nextcmd = acp->nextcmd->next;
8943 if (acp->nextcmd != NULL)
8944 break;
8946 /* at end of commands, find next pattern that matches */
8947 if (acp->curpat->last)
8948 acp->curpat = NULL;
8949 else
8950 acp->curpat = acp->curpat->next;
8951 if (acp->curpat != NULL)
8952 auto_next_pat(acp, TRUE);
8953 if (acp->curpat == NULL)
8954 return NULL;
8957 ac = acp->nextcmd;
8959 if (p_verbose >= 9)
8961 verbose_enter_scroll();
8962 smsg((char_u *)_("autocommand %s"), ac->cmd);
8963 msg_puts((char_u *)"\n"); /* don't overwrite this either */
8964 verbose_leave_scroll();
8966 retval = vim_strsave(ac->cmd);
8967 autocmd_nested = ac->nested;
8968 #ifdef FEAT_EVAL
8969 current_SID = ac->scriptID;
8970 #endif
8971 if (ac->last)
8972 acp->nextcmd = NULL;
8973 else
8974 acp->nextcmd = ac->next;
8975 return retval;
8979 * Return TRUE if there is a matching autocommand for "fname".
8980 * To account for buffer-local autocommands, function needs to know
8981 * in which buffer the file will be opened.
8984 has_autocmd(event, sfname, buf)
8985 event_T event;
8986 char_u *sfname;
8987 buf_T *buf;
8989 AutoPat *ap;
8990 char_u *fname;
8991 char_u *tail = gettail(sfname);
8992 int retval = FALSE;
8994 fname = FullName_save(sfname, FALSE);
8995 if (fname == NULL)
8996 return FALSE;
8998 #ifdef BACKSLASH_IN_FILENAME
9000 * Replace all backslashes with forward slashes. This makes the
9001 * autocommand patterns portable between Unix and MS-DOS.
9003 sfname = vim_strsave(sfname);
9004 if (sfname != NULL)
9005 forward_slash(sfname);
9006 forward_slash(fname);
9007 #endif
9009 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
9010 if (ap->pat != NULL && ap->cmds != NULL
9011 && (ap->buflocal_nr == 0
9012 ? match_file_pat(NULL, ap->reg_prog,
9013 fname, sfname, tail, ap->allow_dirs)
9014 : buf != NULL && ap->buflocal_nr == buf->b_fnum
9017 retval = TRUE;
9018 break;
9021 vim_free(fname);
9022 #ifdef BACKSLASH_IN_FILENAME
9023 vim_free(sfname);
9024 #endif
9026 return retval;
9029 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
9031 * Function given to ExpandGeneric() to obtain the list of autocommand group
9032 * names.
9034 /*ARGSUSED*/
9035 char_u *
9036 get_augroup_name(xp, idx)
9037 expand_T *xp;
9038 int idx;
9040 if (idx == augroups.ga_len) /* add "END" add the end */
9041 return (char_u *)"END";
9042 if (idx >= augroups.ga_len) /* end of list */
9043 return NULL;
9044 if (AUGROUP_NAME(idx) == NULL) /* skip deleted entries */
9045 return (char_u *)"";
9046 return AUGROUP_NAME(idx); /* return a name */
9049 static int include_groups = FALSE;
9051 char_u *
9052 set_context_in_autocmd(xp, arg, doautocmd)
9053 expand_T *xp;
9054 char_u *arg;
9055 int doautocmd; /* TRUE for :doautocmd, FALSE for :autocmd */
9057 char_u *p;
9058 int group;
9060 /* check for a group name, skip it if present */
9061 include_groups = FALSE;
9062 p = arg;
9063 group = au_get_grouparg(&arg);
9064 if (group == AUGROUP_ERROR)
9065 return NULL;
9066 /* If there only is a group name that's what we expand. */
9067 if (*arg == NUL && group != AUGROUP_ALL && !vim_iswhite(arg[-1]))
9069 arg = p;
9070 group = AUGROUP_ALL;
9073 /* skip over event name */
9074 for (p = arg; *p != NUL && !vim_iswhite(*p); ++p)
9075 if (*p == ',')
9076 arg = p + 1;
9077 if (*p == NUL)
9079 if (group == AUGROUP_ALL)
9080 include_groups = TRUE;
9081 xp->xp_context = EXPAND_EVENTS; /* expand event name */
9082 xp->xp_pattern = arg;
9083 return NULL;
9086 /* skip over pattern */
9087 arg = skipwhite(p);
9088 while (*arg && (!vim_iswhite(*arg) || arg[-1] == '\\'))
9089 arg++;
9090 if (*arg)
9091 return arg; /* expand (next) command */
9093 if (doautocmd)
9094 xp->xp_context = EXPAND_FILES; /* expand file names */
9095 else
9096 xp->xp_context = EXPAND_NOTHING; /* pattern is not expanded */
9097 return NULL;
9101 * Function given to ExpandGeneric() to obtain the list of event names.
9103 /*ARGSUSED*/
9104 char_u *
9105 get_event_name(xp, idx)
9106 expand_T *xp;
9107 int idx;
9109 if (idx < augroups.ga_len) /* First list group names, if wanted */
9111 if (!include_groups || AUGROUP_NAME(idx) == NULL)
9112 return (char_u *)""; /* skip deleted entries */
9113 return AUGROUP_NAME(idx); /* return a name */
9115 return (char_u *)event_names[idx - augroups.ga_len].name;
9118 #endif /* FEAT_CMDL_COMPL */
9121 * Return TRUE if autocmd is supported.
9124 autocmd_supported(name)
9125 char_u *name;
9127 char_u *p;
9129 return (event_name2nr(name, &p) != NUM_EVENTS);
9133 * Return TRUE if an autocommand is defined for a group, event and
9134 * pattern: The group can be omitted to accept any group. "event" and "pattern"
9135 * can be NULL to accept any event and pattern. "pattern" can be NULL to accept
9136 * any pattern. Buffer-local patterns <buffer> or <buffer=N> are accepted.
9137 * Used for:
9138 * exists("#Group") or
9139 * exists("#Group#Event") or
9140 * exists("#Group#Event#pat") or
9141 * exists("#Event") or
9142 * exists("#Event#pat")
9145 au_exists(arg)
9146 char_u *arg;
9148 char_u *arg_save;
9149 char_u *pattern = NULL;
9150 char_u *event_name;
9151 char_u *p;
9152 event_T event;
9153 AutoPat *ap;
9154 buf_T *buflocal_buf = NULL;
9155 int group;
9156 int retval = FALSE;
9158 /* Make a copy so that we can change the '#' chars to a NUL. */
9159 arg_save = vim_strsave(arg);
9160 if (arg_save == NULL)
9161 return FALSE;
9162 p = vim_strchr(arg_save, '#');
9163 if (p != NULL)
9164 *p++ = NUL;
9166 /* First, look for an autocmd group name */
9167 group = au_find_group(arg_save);
9168 if (group == AUGROUP_ERROR)
9170 /* Didn't match a group name, assume the first argument is an event. */
9171 group = AUGROUP_ALL;
9172 event_name = arg_save;
9174 else
9176 if (p == NULL)
9178 /* "Group": group name is present and it's recognized */
9179 retval = TRUE;
9180 goto theend;
9183 /* Must be "Group#Event" or "Group#Event#pat". */
9184 event_name = p;
9185 p = vim_strchr(event_name, '#');
9186 if (p != NULL)
9187 *p++ = NUL; /* "Group#Event#pat" */
9190 pattern = p; /* "pattern" is NULL when there is no pattern */
9192 /* find the index (enum) for the event name */
9193 event = event_name2nr(event_name, &p);
9195 /* return FALSE if the event name is not recognized */
9196 if (event == NUM_EVENTS)
9197 goto theend;
9199 /* Find the first autocommand for this event.
9200 * If there isn't any, return FALSE;
9201 * If there is one and no pattern given, return TRUE; */
9202 ap = first_autopat[(int)event];
9203 if (ap == NULL)
9204 goto theend;
9205 if (pattern == NULL)
9207 retval = TRUE;
9208 goto theend;
9211 /* if pattern is "<buffer>", special handling is needed which uses curbuf */
9212 /* for pattern "<buffer=N>, fnamecmp() will work fine */
9213 if (STRICMP(pattern, "<buffer>") == 0)
9214 buflocal_buf = curbuf;
9216 /* Check if there is an autocommand with the given pattern. */
9217 for ( ; ap != NULL; ap = ap->next)
9218 /* only use a pattern when it has not been removed and has commands. */
9219 /* For buffer-local autocommands, fnamecmp() works fine. */
9220 if (ap->pat != NULL && ap->cmds != NULL
9221 && (group == AUGROUP_ALL || ap->group == group)
9222 && (buflocal_buf == NULL
9223 ? fnamecmp(ap->pat, pattern) == 0
9224 : ap->buflocal_nr == buflocal_buf->b_fnum))
9226 retval = TRUE;
9227 break;
9230 theend:
9231 vim_free(arg_save);
9232 return retval;
9235 #else /* FEAT_AUTOCMD */
9238 * Prepare for executing commands for (hidden) buffer "buf".
9239 * This is the non-autocommand version, it simply saves "curbuf" and sets
9240 * "curbuf" and "curwin" to match "buf".
9242 void
9243 aucmd_prepbuf(aco, buf)
9244 aco_save_T *aco; /* structure to save values in */
9245 buf_T *buf; /* new curbuf */
9247 aco->save_buf = curbuf;
9248 curbuf = buf;
9249 curwin->w_buffer = buf;
9253 * Restore after executing commands for a (hidden) buffer.
9254 * This is the non-autocommand version.
9256 void
9257 aucmd_restbuf(aco)
9258 aco_save_T *aco; /* structure holding saved values */
9260 curbuf = aco->save_buf;
9261 curwin->w_buffer = curbuf;
9264 #endif /* FEAT_AUTOCMD */
9267 #if defined(FEAT_AUTOCMD) || defined(FEAT_WILDIGN) || defined(PROTO)
9269 * Try matching a filename with a "pattern" ("prog" is NULL), or use the
9270 * precompiled regprog "prog" ("pattern" is NULL). That avoids calling
9271 * vim_regcomp() often.
9272 * Used for autocommands and 'wildignore'.
9273 * Returns TRUE if there is a match, FALSE otherwise.
9276 match_file_pat(pattern, prog, fname, sfname, tail, allow_dirs)
9277 char_u *pattern; /* pattern to match with */
9278 regprog_T *prog; /* pre-compiled regprog or NULL */
9279 char_u *fname; /* full path of file name */
9280 char_u *sfname; /* short file name or NULL */
9281 char_u *tail; /* tail of path */
9282 int allow_dirs; /* allow matching with dir */
9284 regmatch_T regmatch;
9285 int result = FALSE;
9286 #ifdef FEAT_OSFILETYPE
9287 int no_pattern = FALSE; /* TRUE if check is filetype only */
9288 char_u *type_start;
9289 char_u c;
9290 int match = FALSE;
9291 #endif
9293 #ifdef CASE_INSENSITIVE_FILENAME
9294 regmatch.rm_ic = TRUE; /* Always ignore case */
9295 #else
9296 regmatch.rm_ic = FALSE; /* Don't ever ignore case */
9297 #endif
9298 #ifdef FEAT_OSFILETYPE
9299 if (*pattern == '<')
9301 /* There is a filetype condition specified with this pattern.
9302 * Check the filetype matches first. If not, don't bother with the
9303 * pattern (set regprog to NULL).
9304 * Always use magic for the regexp.
9307 for (type_start = pattern + 1; (c = *pattern); pattern++)
9309 if ((c == ';' || c == '>') && match == FALSE)
9311 *pattern = NUL; /* Terminate the string */
9312 match = mch_check_filetype(fname, type_start);
9313 *pattern = c; /* Restore the terminator */
9314 type_start = pattern + 1;
9316 if (c == '>')
9317 break;
9320 /* (c should never be NUL, but check anyway) */
9321 if (match == FALSE || c == NUL)
9322 regmatch.regprog = NULL; /* Doesn't match - don't check pat. */
9323 else if (*pattern == NUL)
9325 regmatch.regprog = NULL; /* Vim will try to free regprog later */
9326 no_pattern = TRUE; /* Always matches - don't check pat. */
9328 else
9329 regmatch.regprog = vim_regcomp(pattern + 1, RE_MAGIC);
9331 else
9332 #endif
9334 if (prog != NULL)
9335 regmatch.regprog = prog;
9336 else
9337 regmatch.regprog = vim_regcomp(pattern, RE_MAGIC);
9341 * Try for a match with the pattern with:
9342 * 1. the full file name, when the pattern has a '/'.
9343 * 2. the short file name, when the pattern has a '/'.
9344 * 3. the tail of the file name, when the pattern has no '/'.
9346 if (
9347 #ifdef FEAT_OSFILETYPE
9348 /* If the check is for a filetype only and we don't care
9349 * about the path then skip all the regexp stuff.
9351 no_pattern ||
9352 #endif
9353 (regmatch.regprog != NULL
9354 && ((allow_dirs
9355 && (vim_regexec(&regmatch, fname, (colnr_T)0)
9356 || (sfname != NULL
9357 && vim_regexec(&regmatch, sfname, (colnr_T)0))))
9358 || (!allow_dirs && vim_regexec(&regmatch, tail, (colnr_T)0)))))
9359 result = TRUE;
9361 if (prog == NULL)
9362 vim_free(regmatch.regprog);
9363 return result;
9365 #endif
9367 #if defined(FEAT_WILDIGN) || defined(PROTO)
9369 * Return TRUE if a file matches with a pattern in "list".
9370 * "list" is a comma-separated list of patterns, like 'wildignore'.
9371 * "sfname" is the short file name or NULL, "ffname" the long file name.
9374 match_file_list(list, sfname, ffname)
9375 char_u *list;
9376 char_u *sfname;
9377 char_u *ffname;
9379 char_u buf[100];
9380 char_u *tail;
9381 char_u *regpat;
9382 char allow_dirs;
9383 int match;
9384 char_u *p;
9386 tail = gettail(sfname);
9388 /* try all patterns in 'wildignore' */
9389 p = list;
9390 while (*p)
9392 copy_option_part(&p, buf, 100, ",");
9393 regpat = file_pat_to_reg_pat(buf, NULL, &allow_dirs, FALSE);
9394 if (regpat == NULL)
9395 break;
9396 match = match_file_pat(regpat, NULL, ffname, sfname,
9397 tail, (int)allow_dirs);
9398 vim_free(regpat);
9399 if (match)
9400 return TRUE;
9402 return FALSE;
9404 #endif
9407 * Convert the given pattern "pat" which has shell style wildcards in it, into
9408 * a regular expression, and return the result in allocated memory. If there
9409 * is a directory path separator to be matched, then TRUE is put in
9410 * allow_dirs, otherwise FALSE is put there -- webb.
9411 * Handle backslashes before special characters, like "\*" and "\ ".
9413 * If FEAT_OSFILETYPE defined then pass initial <type> through unchanged. Eg:
9414 * '<html>myfile' becomes '<html>^myfile$' -- leonard.
9416 * Returns NULL when out of memory.
9418 /*ARGSUSED*/
9419 char_u *
9420 file_pat_to_reg_pat(pat, pat_end, allow_dirs, no_bslash)
9421 char_u *pat;
9422 char_u *pat_end; /* first char after pattern or NULL */
9423 char *allow_dirs; /* Result passed back out in here */
9424 int no_bslash; /* Don't use a backward slash as pathsep */
9426 int size;
9427 char_u *endp;
9428 char_u *reg_pat;
9429 char_u *p;
9430 int i;
9431 int nested = 0;
9432 int add_dollar = TRUE;
9433 #ifdef FEAT_OSFILETYPE
9434 int check_length = 0;
9435 #endif
9437 if (allow_dirs != NULL)
9438 *allow_dirs = FALSE;
9439 if (pat_end == NULL)
9440 pat_end = pat + STRLEN(pat);
9442 #ifdef FEAT_OSFILETYPE
9443 /* Find out how much of the string is the filetype check */
9444 if (*pat == '<')
9446 /* Count chars until the next '>' */
9447 for (p = pat + 1; p < pat_end && *p != '>'; p++)
9449 if (p < pat_end)
9451 /* Pattern is of the form <.*>.* */
9452 check_length = p - pat + 1;
9453 if (p + 1 >= pat_end)
9455 /* The 'pattern' is a filetype check ONLY */
9456 reg_pat = (char_u *)alloc(check_length + 1);
9457 if (reg_pat != NULL)
9459 mch_memmove(reg_pat, pat, (size_t)check_length);
9460 reg_pat[check_length] = NUL;
9462 return reg_pat;
9465 /* else: there was no closing '>' - assume it was a normal pattern */
9468 pat += check_length;
9469 size = 2 + check_length;
9470 #else
9471 size = 2; /* '^' at start, '$' at end */
9472 #endif
9474 for (p = pat; p < pat_end; p++)
9476 switch (*p)
9478 case '*':
9479 case '.':
9480 case ',':
9481 case '{':
9482 case '}':
9483 case '~':
9484 size += 2; /* extra backslash */
9485 break;
9486 #ifdef BACKSLASH_IN_FILENAME
9487 case '\\':
9488 case '/':
9489 size += 4; /* could become "[\/]" */
9490 break;
9491 #endif
9492 default:
9493 size++;
9494 # ifdef FEAT_MBYTE
9495 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
9497 ++p;
9498 ++size;
9500 # endif
9501 break;
9504 reg_pat = alloc(size + 1);
9505 if (reg_pat == NULL)
9506 return NULL;
9508 #ifdef FEAT_OSFILETYPE
9509 /* Copy the type check in to the start. */
9510 if (check_length)
9511 mch_memmove(reg_pat, pat - check_length, (size_t)check_length);
9512 i = check_length;
9513 #else
9514 i = 0;
9515 #endif
9517 if (pat[0] == '*')
9518 while (pat[0] == '*' && pat < pat_end - 1)
9519 pat++;
9520 else
9521 reg_pat[i++] = '^';
9522 endp = pat_end - 1;
9523 if (*endp == '*')
9525 while (endp - pat > 0 && *endp == '*')
9526 endp--;
9527 add_dollar = FALSE;
9529 for (p = pat; *p && nested >= 0 && p <= endp; p++)
9531 switch (*p)
9533 case '*':
9534 reg_pat[i++] = '.';
9535 reg_pat[i++] = '*';
9536 while (p[1] == '*') /* "**" matches like "*" */
9537 ++p;
9538 break;
9539 case '.':
9540 #ifdef RISCOS
9541 if (allow_dirs != NULL)
9542 *allow_dirs = TRUE;
9543 /* FALLTHROUGH */
9544 #endif
9545 case '~':
9546 reg_pat[i++] = '\\';
9547 reg_pat[i++] = *p;
9548 break;
9549 case '?':
9550 #ifdef RISCOS
9551 case '#':
9552 #endif
9553 reg_pat[i++] = '.';
9554 break;
9555 case '\\':
9556 if (p[1] == NUL)
9557 break;
9558 #ifdef BACKSLASH_IN_FILENAME
9559 if (!no_bslash)
9561 /* translate:
9562 * "\x" to "\\x" e.g., "dir\file"
9563 * "\*" to "\\.*" e.g., "dir\*.c"
9564 * "\?" to "\\." e.g., "dir\??.c"
9565 * "\+" to "\+" e.g., "fileX\+.c"
9567 if ((vim_isfilec(p[1]) || p[1] == '*' || p[1] == '?')
9568 && p[1] != '+')
9570 reg_pat[i++] = '[';
9571 reg_pat[i++] = '\\';
9572 reg_pat[i++] = '/';
9573 reg_pat[i++] = ']';
9574 if (allow_dirs != NULL)
9575 *allow_dirs = TRUE;
9576 break;
9579 #endif
9580 if (*++p == '?'
9581 #ifdef BACKSLASH_IN_FILENAME
9582 && no_bslash
9583 #endif
9585 reg_pat[i++] = '?';
9586 else
9587 if (*p == ',')
9588 reg_pat[i++] = ',';
9589 else
9591 if (allow_dirs != NULL && vim_ispathsep(*p)
9592 #ifdef BACKSLASH_IN_FILENAME
9593 && (!no_bslash || *p != '\\')
9594 #endif
9596 *allow_dirs = TRUE;
9597 reg_pat[i++] = '\\';
9598 reg_pat[i++] = *p;
9600 break;
9601 #ifdef BACKSLASH_IN_FILENAME
9602 case '/':
9603 reg_pat[i++] = '[';
9604 reg_pat[i++] = '\\';
9605 reg_pat[i++] = '/';
9606 reg_pat[i++] = ']';
9607 if (allow_dirs != NULL)
9608 *allow_dirs = TRUE;
9609 break;
9610 #endif
9611 case '{':
9612 reg_pat[i++] = '\\';
9613 reg_pat[i++] = '(';
9614 nested++;
9615 break;
9616 case '}':
9617 reg_pat[i++] = '\\';
9618 reg_pat[i++] = ')';
9619 --nested;
9620 break;
9621 case ',':
9622 if (nested)
9624 reg_pat[i++] = '\\';
9625 reg_pat[i++] = '|';
9627 else
9628 reg_pat[i++] = ',';
9629 break;
9630 default:
9631 # ifdef FEAT_MBYTE
9632 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
9633 reg_pat[i++] = *p++;
9634 else
9635 # endif
9636 if (allow_dirs != NULL && vim_ispathsep(*p))
9637 *allow_dirs = TRUE;
9638 reg_pat[i++] = *p;
9639 break;
9642 if (add_dollar)
9643 reg_pat[i++] = '$';
9644 reg_pat[i] = NUL;
9645 if (nested != 0)
9647 if (nested < 0)
9648 EMSG(_("E219: Missing {."));
9649 else
9650 EMSG(_("E220: Missing }."));
9651 vim_free(reg_pat);
9652 reg_pat = NULL;
9654 return reg_pat;