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.
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 */
19 # include "vimio.h" /* for mktemp(), CJW 1997-12-03 */
29 # include <limits.h> /* for SSIZE_MAX */
32 #if defined(HAVE_UTIME) && defined(HAVE_UTIME_H)
33 # include <utime.h> /* for struct utimbuf */
36 #define BUFSIZE 8192 /* size of normal write buffer */
37 #define SMBUFSIZE 256 /* size of emergency write buffer */
40 # define CRYPT_MAGIC "VimCrypt~01!" /* "01" is the version nr */
41 # define CRYPT_MAGIC_LEN 12 /* must be multiple of 4! */
44 /* Is there any system that doesn't have access()? */
45 #define USE_MCH_ACCESS
48 static char_u
*next_fenc
__ARGS((char_u
**pp
));
50 static char_u
*readfile_charconvert
__ARGS((char_u
*fname
, char_u
*fenc
, int *fdp
));
54 static void check_marks_read
__ARGS((void));
57 static char_u
*check_for_cryptkey
__ARGS((char_u
*cryptkey
, char_u
*ptr
, long *sizep
, long *filesizep
, int newfile
));
60 static void set_file_time
__ARGS((char_u
*fname
, time_t atime
, time_t mtime
));
62 static int set_rw_fname
__ARGS((char_u
*fname
, char_u
*sfname
));
63 static int msg_add_fileformat
__ARGS((int eol_type
));
64 static void msg_add_eol
__ARGS((void));
65 static int check_mtime
__ARGS((buf_T
*buf
, struct stat
*s
));
66 static int time_differs
__ARGS((long t1
, long t2
));
68 static int apply_autocmds_exarg
__ARGS((event_T event
, char_u
*fname
, char_u
*fname_io
, int force
, buf_T
*buf
, exarg_T
*eap
));
69 static int au_find_group
__ARGS((char_u
*name
));
71 # define AUGROUP_DEFAULT -1 /* default autocmd group */
72 # define AUGROUP_ERROR -2 /* errornouse autocmd group */
73 # define AUGROUP_ALL -3 /* all autocmd groups */
76 #if defined(FEAT_CRYPT) || defined(FEAT_MBYTE)
78 # define FIO_LATIN1 0x01 /* convert Latin1 */
79 # define FIO_UTF8 0x02 /* convert UTF-8 */
80 # define FIO_UCS2 0x04 /* convert UCS-2 */
81 # define FIO_UCS4 0x08 /* convert UCS-4 */
82 # define FIO_UTF16 0x10 /* convert UTF-16 */
84 # define FIO_CODEPAGE 0x20 /* convert MS-Windows codepage */
85 # define FIO_PUT_CP(x) (((x) & 0xffff) << 16) /* put codepage in top word */
86 # define FIO_GET_CP(x) (((x)>>16) & 0xffff) /* get codepage from top word */
89 # define FIO_MACROMAN 0x20 /* convert MacRoman */
91 # define FIO_ENDIAN_L 0x80 /* little endian */
92 # define FIO_ENCRYPTED 0x1000 /* encrypt written bytes */
93 # define FIO_NOCONVERT 0x2000 /* skip encoding conversion */
94 # define FIO_UCSBOM 0x4000 /* check for BOM at start of file */
95 # define FIO_ALL -1 /* allow all formats */
98 /* When converting, a read() or write() may leave some bytes to be converted
99 * for the next call. The value is guessed... */
100 #define CONV_RESTLEN 30
102 /* We have to guess how much a sequence of bytes may expand when converting
103 * with iconv() to be able to allocate a buffer. */
107 * Structure to pass arguments from buf_write() to buf_write_bytes().
111 int bw_fd
; /* file descriptor */
112 char_u
*bw_buf
; /* buffer with data to be written */
113 int bw_len
; /* lenght of data */
115 int bw_flags
; /* FIO_ flags */
118 char_u bw_rest
[CONV_RESTLEN
]; /* not converted bytes */
119 int bw_restlen
; /* nr of bytes in bw_rest[] */
120 int bw_first
; /* first write call */
121 char_u
*bw_conv_buf
; /* buffer for writing converted chars */
122 int bw_conv_buflen
; /* size of bw_conv_buf */
123 int bw_conv_error
; /* set for conversion error */
125 iconv_t bw_iconv_fd
; /* descriptor for iconv() or -1 */
130 static int buf_write_bytes
__ARGS((struct bw_info
*ip
));
133 static linenr_T readfile_linenr
__ARGS((linenr_T linecnt
, char_u
*p
, char_u
*endp
));
134 static int ucs2bytes
__ARGS((unsigned c
, char_u
**pp
, int flags
));
135 static int same_encoding
__ARGS((char_u
*a
, char_u
*b
));
136 static int get_fio_flags
__ARGS((char_u
*ptr
));
137 static char_u
*check_for_bom
__ARGS((char_u
*p
, long size
, int *lenp
, int flags
));
138 static int make_bom
__ARGS((char_u
*buf
, char_u
*name
));
140 static int get_win_fio_flags
__ARGS((char_u
*ptr
));
143 static int get_mac_fio_flags
__ARGS((char_u
*ptr
));
146 static int move_lines
__ARGS((buf_T
*frombuf
, buf_T
*tobuf
));
150 filemess(buf
, name
, s
, attr
)
160 msg_add_fname(buf
, name
); /* put file name in IObuff with quotes */
161 /* If it's extremely long, truncate it. */
162 if (STRLEN(IObuff
) > IOSIZE
- 80)
163 IObuff
[IOSIZE
- 80] = NUL
;
166 * For the first message may have to start a new line.
167 * For further ones overwrite the previous one, reset msg_scroll before
168 * calling filemess().
170 msg_scroll_save
= msg_scroll
;
171 if (shortmess(SHM_OVERALL
) && !exiting
&& p_verbose
== 0)
173 if (!msg_scroll
) /* wait a bit when overwriting an error msg */
174 check_for_delay(FALSE
);
176 msg_scroll
= msg_scroll_save
;
177 msg_scrolled_ign
= TRUE
;
178 /* may truncate the message to avoid a hit-return prompt */
179 msg_outtrans_attr(msg_may_trunc(FALSE
, IObuff
), attr
);
182 msg_scrolled_ign
= FALSE
;
186 * Read lines from file "fname" into the buffer after line "from".
188 * 1. We allocate blocks with lalloc, as big as possible.
189 * 2. Each block is filled with characters from the file with a single read().
190 * 3. The lines are inserted in the buffer with ml_append().
192 * (caller must check that fname != NULL, unless READ_STDIN is used)
194 * "lines_to_skip" is the number of lines that must be skipped
195 * "lines_to_read" is the number of lines that are appended
196 * When not recovering lines_to_skip is 0 and lines_to_read MAXLNUM.
199 * READ_NEW starting to edit a new buffer
200 * READ_FILTER reading filter output
201 * READ_STDIN read from stdin instead of a file
202 * READ_BUFFER read from curbuf instead of a file (converting after reading
204 * READ_DUMMY read into a dummy buffer (to check if file contents changed)
206 * return FAIL for failure, OK otherwise
209 readfile(fname
, sfname
, from
, lines_to_skip
, lines_to_read
, eap
, flags
)
213 linenr_T lines_to_skip
;
214 linenr_T lines_to_read
;
215 exarg_T
*eap
; /* can be NULL! */
219 int newfile
= (flags
& READ_NEW
);
220 int set_options
= newfile
|| (eap
!= NULL
&& eap
->read_edit
);
222 int filtering
= (flags
& READ_FILTER
);
223 int read_stdin
= (flags
& READ_STDIN
);
224 int read_buffer
= (flags
& READ_BUFFER
);
225 linenr_T read_buf_lnum
= 1; /* next line to read from curbuf */
226 colnr_T read_buf_col
= 0; /* next char to read from this line */
228 linenr_T lnum
= from
;
229 char_u
*ptr
= NULL
; /* pointer into read buffer */
230 char_u
*buffer
= NULL
; /* read buffer */
231 char_u
*new_buffer
= NULL
; /* init to shut up gcc */
232 char_u
*line_start
= NULL
; /* init to shut up gcc */
233 int wasempty
; /* buffer was empty before reading */
238 int skip_read
= FALSE
;
240 char_u
*cryptkey
= NULL
;
242 int split
= 0; /* number of split lines */
243 #define UNKNOWN 0x0fffffff /* file size is unknown */
245 int error
= FALSE
; /* errors encountered */
246 int ff_error
= EOL_UNKNOWN
; /* file format with errors */
247 long linerest
= 0; /* remaining chars in line */
250 int swap_mode
= -1; /* protection bits for swap file */
254 int fileformat
= 0; /* end-of-line format */
255 int keep_fileformat
= FALSE
;
258 linenr_T skip_count
= 0;
259 linenr_T read_count
= 0;
260 int msg_save
= msg_scroll
;
261 linenr_T read_no_eol_lnum
= 0; /* non-zero lnum when last line of
262 * last read was missing the eol */
263 int try_mac
= (vim_strchr(p_ffs
, 'm') != NULL
);
264 int try_dos
= (vim_strchr(p_ffs
, 'd') != NULL
);
265 int try_unix
= (vim_strchr(p_ffs
, 'x') != NULL
);
266 int file_rewind
= FALSE
;
269 linenr_T conv_error
= 0; /* line nr with conversion error */
270 linenr_T illegal_byte
= 0; /* line nr with illegal byte */
271 int keep_dest_enc
= FALSE
; /* don't retry when char doesn't fit
272 in destination encoding */
273 int bad_char_behavior
= BAD_REPLACE
;
274 /* BAD_KEEP, BAD_DROP or character to
276 char_u
*tmpname
= NULL
; /* name of 'charconvert' output file */
278 char_u
*fenc
; /* fileencoding to use */
279 int fenc_alloced
; /* fenc_next is in allocated memory */
280 char_u
*fenc_next
= NULL
; /* next item in 'fencs' or NULL */
281 int advance_fenc
= FALSE
;
284 iconv_t iconv_fd
= (iconv_t
)-1; /* descriptor for iconv() or -1 */
286 int did_iconv
= FALSE
; /* TRUE when iconv() failed and trying
287 'charconvert' next */
290 int converted
= FALSE
; /* TRUE if conversion done */
291 int notconverted
= FALSE
; /* TRUE if conversion wanted but it
293 char_u conv_rest
[CONV_RESTLEN
];
294 int conv_restlen
= 0; /* nr of bytes in conv_rest[] */
297 write_no_eol_lnum
= 0; /* in case it was set by the previous read */
300 * If there is no file name yet, use the one for the read file.
301 * BF_NOTEDITED is set to reflect this.
302 * Don't do this for a read from a filter.
303 * Only do this when 'cpoptions' contains the 'f' flag.
305 if (curbuf
->b_ffname
== NULL
308 && vim_strchr(p_cpo
, CPO_FNAMER
) != NULL
309 && !(flags
& READ_DUMMY
))
311 if (set_rw_fname(fname
, sfname
) == FAIL
)
315 /* After reading a file the cursor line changes but we don't want to
316 * display the line. */
317 ex_no_reprint
= TRUE
;
319 /* don't display the file info for another buffer now */
320 need_fileinfo
= FALSE
;
323 * For Unix: Use the short file name whenever possible.
324 * Avoids problems with networks and when directory names are changed.
325 * Don't do this for MS-DOS, a "cd" in a sub-shell may have moved us to
326 * another directory, which we don't detect.
330 #if defined(UNIX) || defined(__EMX__)
336 * The BufReadCmd and FileReadCmd events intercept the reading process by
337 * executing the associated commands instead.
339 if (!filtering
&& !read_stdin
&& !read_buffer
)
343 pos
= curbuf
->b_op_start
;
345 /* Set '[ mark to the line above where the lines go (line 1 if zero). */
346 curbuf
->b_op_start
.lnum
= ((from
== 0) ? 1 : from
);
347 curbuf
->b_op_start
.col
= 0;
351 if (apply_autocmds_exarg(EVENT_BUFREADCMD
, NULL
, sfname
,
354 return aborting() ? FAIL
: OK
;
359 else if (apply_autocmds_exarg(EVENT_FILEREADCMD
, sfname
, sfname
,
362 return aborting() ? FAIL
: OK
;
367 curbuf
->b_op_start
= pos
;
371 if ((shortmess(SHM_OVER
) || curbuf
->b_help
) && p_verbose
== 0)
372 msg_scroll
= FALSE
; /* overwrite previous file message */
374 msg_scroll
= TRUE
; /* don't overwrite previous file message */
377 * If the name ends in a path separator, we can't open it. Check here,
378 * because reading the file may actually work, but then creating the swap
379 * file may destroy it! Reported on MS-DOS and Win 95.
380 * If the name is too long we might crash further on, quit here.
382 if (fname
!= NULL
&& *fname
!= NUL
)
384 p
= fname
+ STRLEN(fname
);
385 if (after_pathsep(fname
, p
) || STRLEN(fname
) >= MAXPATHL
)
387 filemess(curbuf
, fname
, (char_u
*)_("Illegal file name"), 0);
389 msg_scroll
= msg_save
;
396 * On Unix it is possible to read a directory, so we have to
397 * check for it before the mch_open().
399 if (!read_stdin
&& !read_buffer
)
401 perm
= mch_getperm(fname
);
402 if (perm
>= 0 && !S_ISREG(perm
) /* not a regular file ... */
404 && !S_ISFIFO(perm
) /* ... or fifo */
407 && !S_ISSOCK(perm
) /* ... or socket */
412 filemess(curbuf
, fname
, (char_u
*)_("is a directory"), 0);
414 filemess(curbuf
, fname
, (char_u
*)_("is not a file"), 0);
416 msg_scroll
= msg_save
;
420 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
422 * MS-Windows allows opening a device, but we will probably get stuck
425 if (!p_odev
&& mch_nodetype(fname
) == NODE_WRITABLE
)
427 filemess(curbuf
, fname
, (char_u
*)_("is a device (disabled with 'opendevice' option)"), 0);
429 msg_scroll
= msg_save
;
436 /* set default 'fileformat' */
439 if (eap
!= NULL
&& eap
->force_ff
!= 0)
440 set_fileformat(get_fileformat_force(curbuf
, eap
), OPT_LOCAL
);
441 else if (*p_ffs
!= NUL
)
442 set_fileformat(default_fileformat(), OPT_LOCAL
);
445 /* set or reset 'binary' */
446 if (eap
!= NULL
&& eap
->force_bin
!= 0)
448 int oldval
= curbuf
->b_p_bin
;
450 curbuf
->b_p_bin
= (eap
->force_bin
== FORCE_BIN
);
451 set_options_bin(oldval
, curbuf
->b_p_bin
, OPT_LOCAL
);
455 * When opening a new file we take the readonly flag from the file.
456 * Default is r/w, can be set to r/o below.
457 * Don't reset it when in readonly mode
458 * Only set/reset b_p_ro when BF_CHECK_RO is set.
460 check_readonly
= (newfile
&& (curbuf
->b_flags
& BF_CHECK_RO
));
461 if (check_readonly
&& !readonlymode
)
462 curbuf
->b_p_ro
= FALSE
;
464 if (newfile
&& !read_stdin
&& !read_buffer
)
466 /* Remember time of file.
467 * For RISCOS, also remember the filetype.
469 if (mch_stat((char *)fname
, &st
) >= 0)
471 buf_store_time(curbuf
, &st
, fname
);
472 curbuf
->b_mtime_read
= curbuf
->b_mtime
;
474 #if defined(RISCOS) && defined(FEAT_OSFILETYPE)
475 /* Read the filetype into the buffer local filetype option. */
476 mch_read_filetype(fname
);
480 * Use the protection bits of the original file for the swap file.
481 * This makes it possible for others to read the name of the
482 * edited file from the swapfile, but only if they can read the
484 * Remove the "write" and "execute" bits for group and others
485 * (they must not write the swapfile).
486 * Add the "read" and "write" bits for the user, otherwise we may
487 * not be able to write to the file ourselves.
488 * Setting the bits is done below, after creating the swap file.
490 swap_mode
= (st
.st_mode
& 0644) | 0600;
492 #ifdef FEAT_CW_EDITOR
493 /* Get the FSSpec on MacOS
494 * TODO: Update it properly when the buffer name changes
496 (void)GetFSSpecFromPath(curbuf
->b_ffname
, &curbuf
->b_FSSpec
);
499 curbuf
->b_fab_rfm
= st
.st_fab_rfm
;
500 curbuf
->b_fab_rat
= st
.st_fab_rat
;
501 curbuf
->b_fab_mrs
= st
.st_fab_mrs
;
507 curbuf
->b_mtime_read
= 0;
508 curbuf
->b_orig_size
= 0;
509 curbuf
->b_orig_mode
= 0;
512 /* Reset the "new file" flag. It will be set again below when the
513 * file doesn't exist. */
514 curbuf
->b_flags
&= ~(BF_NEW
| BF_NEW_W
);
518 * for UNIX: check readonly with perm and mch_access()
519 * for RISCOS: same as Unix, otherwise file gets re-datestamped!
520 * for MSDOS and Amiga: check readonly by trying to open the file for writing
522 file_readonly
= FALSE
;
525 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
526 /* Force binary I/O on stdin to avoid CR-LF -> LF conversion. */
527 setmode(0, O_BINARY
);
530 else if (!read_buffer
)
532 #ifdef USE_MCH_ACCESS
537 mch_access((char *)fname
, W_OK
))
538 file_readonly
= TRUE
;
539 fd
= mch_open((char *)fname
, O_RDONLY
| O_EXTRA
, 0);
543 || (fd
= mch_open((char *)fname
, O_RDWR
| O_EXTRA
, 0)) < 0)
545 file_readonly
= TRUE
;
547 fd
= mch_open((char *)fname
, O_RDONLY
| O_EXTRA
, 0);
552 if (fd
< 0) /* cannot open at all */
557 msg_scroll
= msg_save
;
560 * On MSDOS and Amiga we can't open a directory, check here.
562 isdir_f
= (mch_isdir(fname
));
563 perm
= mch_getperm(fname
); /* check if the file exists */
566 filemess(curbuf
, sfname
, (char_u
*)_("is a directory"), 0);
567 curbuf
->b_p_ro
= TRUE
; /* must use "w!" now */
576 * Set the 'new-file' flag, so that when the file has
577 * been created by someone else, a ":w" will complain.
579 curbuf
->b_flags
|= BF_NEW
;
581 /* Create a swap file now, so that other Vims are warned
582 * that we are editing this file. Don't do this for a
583 * "nofile" or "nowrite" buffer type. */
585 if (!bt_dontwrite(curbuf
))
587 check_need_swap(newfile
);
588 if (dir_of_file_exists(fname
))
589 filemess(curbuf
, sfname
, (char_u
*)_("[New File]"), 0);
591 filemess(curbuf
, sfname
,
592 (char_u
*)_("[New DIRECTORY]"), 0);
594 /* Even though this is a new file, it might have been
595 * edited before and deleted. Get the old marks. */
599 if (eap
!= NULL
&& eap
->force_enc
!= 0)
601 /* set forced 'fileencoding' */
602 fenc
= enc_canonize(eap
->cmd
+ eap
->force_enc
);
604 set_string_option_direct((char_u
*)"fenc", -1,
605 fenc
, OPT_FREE
|OPT_LOCAL
, 0);
610 apply_autocmds_exarg(EVENT_BUFNEWFILE
, sfname
, sfname
,
613 /* remember the current fileformat */
614 save_file_ff(curbuf
);
616 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
617 if (aborting()) /* autocmds may abort script processing */
620 return OK
; /* a new file is not an error */
624 filemess(curbuf
, sfname
, (char_u
*)(
626 (errno
== EFBIG
) ? _("[File too big]") :
628 _("[Permission Denied]")), 0);
629 curbuf
->b_p_ro
= TRUE
; /* must use "w!" now */
637 * Only set the 'ro' flag for readonly files the first time they are
638 * loaded. Help files always get readonly mode
640 if ((check_readonly
&& file_readonly
) || curbuf
->b_help
)
641 curbuf
->b_p_ro
= TRUE
;
645 curbuf
->b_p_eol
= TRUE
;
646 curbuf
->b_start_eol
= TRUE
;
648 curbuf
->b_p_bomb
= FALSE
;
652 /* Create a swap file now, so that other Vims are warned that we are
654 * Don't do this for a "nofile" or "nowrite" buffer type. */
656 if (!bt_dontwrite(curbuf
))
659 check_need_swap(newfile
);
661 /* Set swap file protection bits after creating it. */
662 if (swap_mode
> 0 && curbuf
->b_ml
.ml_mfp
->mf_fname
!= NULL
)
663 (void)mch_setperm(curbuf
->b_ml
.ml_mfp
->mf_fname
, (long)swap_mode
);
667 #if defined(HAS_SWAP_EXISTS_ACTION)
668 /* If "Quit" selected at ATTENTION dialog, don't load the file */
669 if (swap_exists_action
== SEA_QUIT
)
671 if (!read_buffer
&& !read_stdin
)
677 ++no_wait_return
; /* don't wait for return yet */
680 * Set '[ mark to the line above where the lines go (line 1 if zero).
682 curbuf
->b_op_start
.lnum
= ((from
== 0) ? 1 : from
);
683 curbuf
->b_op_start
.col
= 0;
689 int n
= msg_scrolled
;
690 buf_T
*old_curbuf
= curbuf
;
693 * The file must be closed again, the autocommands may want to change
694 * the file before reading it.
697 close(fd
); /* ignore errors */
700 * The output from the autocommands should not overwrite anything and
701 * should not be overwritten: Set msg_scroll, restore its value if no
706 apply_autocmds_exarg(EVENT_FILTERREADPRE
, NULL
, sfname
,
709 apply_autocmds_exarg(EVENT_STDINREADPRE
, NULL
, sfname
,
712 apply_autocmds_exarg(EVENT_BUFREADPRE
, NULL
, sfname
,
715 apply_autocmds_exarg(EVENT_FILEREADPRE
, sfname
, sfname
,
717 if (msg_scrolled
== n
)
721 if (aborting()) /* autocmds may abort script processing */
724 msg_scroll
= msg_save
;
725 curbuf
->b_p_ro
= TRUE
; /* must use "w!" now */
730 * Don't allow the autocommands to change the current buffer.
731 * Try to re-open the file.
733 if (!read_stdin
&& (curbuf
!= old_curbuf
734 || (fd
= mch_open((char *)fname
, O_RDONLY
| O_EXTRA
, 0)) < 0))
737 msg_scroll
= msg_save
;
739 EMSG(_("E200: *ReadPre autocommands made the file unreadable"));
741 EMSG(_("E201: *ReadPre autocommands must not change current buffer"));
742 curbuf
->b_p_ro
= TRUE
; /* must use "w!" now */
746 #endif /* FEAT_AUTOCMD */
748 /* Autocommands may add lines to the file, need to check if it is empty */
749 wasempty
= (curbuf
->b_ml
.ml_flags
& ML_EMPTY
);
751 if (!recoverymode
&& !filtering
&& !(flags
& READ_DUMMY
))
754 * Show the user that we are busy reading the input. Sometimes this
755 * may take a while. When reading from stdin another program may
756 * still be running, don't move the cursor to the last line, unless
757 * always using the GUI.
761 #ifndef ALWAYS_USE_GUI
762 mch_msg(_("Vim: Reading from stdin...\n"));
765 /* Also write a message in the GUI window, if there is one. */
766 if (gui
.in_use
&& !gui
.dying
&& !gui
.starting
)
768 p
= (char_u
*)_("Reading from stdin...");
769 gui_write(p
, (int)STRLEN(p
));
773 else if (!read_buffer
)
774 filemess(curbuf
, sfname
, (char_u
*)"", 0);
777 msg_scroll
= FALSE
; /* overwrite the file message */
780 * Set linecnt now, before the "retry" caused by a wrong guess for
781 * fileformat, and after the autocommands, which may change them.
783 linecnt
= curbuf
->b_ml
.ml_line_count
;
786 /* "++bad=" argument. */
787 if (eap
!= NULL
&& eap
->bad_char
!= 0)
789 bad_char_behavior
= eap
->bad_char
;
791 curbuf
->b_bad_char
= eap
->bad_char
;
794 curbuf
->b_bad_char
= 0;
797 * Decide which 'encoding' to use or use first.
799 if (eap
!= NULL
&& eap
->force_enc
!= 0)
801 fenc
= enc_canonize(eap
->cmd
+ eap
->force_enc
);
803 keep_dest_enc
= TRUE
;
805 else if (curbuf
->b_p_bin
)
807 fenc
= (char_u
*)""; /* binary: don't convert */
808 fenc_alloced
= FALSE
;
810 else if (curbuf
->b_help
)
812 char_u firstline
[80];
815 /* Help files are either utf-8 or latin1. Try utf-8 first, if this
816 * fails it must be latin1.
817 * Always do this when 'encoding' is "utf-8". Otherwise only do
818 * this when needed to avoid [converted] remarks all the time.
819 * It is needed when the first line contains non-ASCII characters.
820 * That is only in *.??x files. */
821 fenc
= (char_u
*)"latin1";
823 if (!c
&& !read_stdin
)
825 fc
= fname
[STRLEN(fname
) - 1];
826 if (TOLOWER_ASC(fc
) == 'x')
828 /* Read the first line (and a bit more). Immediately rewind to
829 * the start of the file. If the read() fails "len" is -1. */
830 len
= vim_read(fd
, firstline
, 80);
831 lseek(fd
, (off_t
)0L, SEEK_SET
);
832 for (p
= firstline
; p
< firstline
+ len
; ++p
)
844 fenc
= (char_u
*)"utf-8";
846 /* When the file is utf-8 but a character doesn't fit in
847 * 'encoding' don't retry. In help text editing utf-8 bytes
848 * doesn't make sense. */
850 keep_dest_enc
= TRUE
;
852 fenc_alloced
= FALSE
;
854 else if (*p_fencs
== NUL
)
856 fenc
= curbuf
->b_p_fenc
; /* use format from buffer */
857 fenc_alloced
= FALSE
;
861 fenc_next
= p_fencs
; /* try items in 'fileencodings' */
862 fenc
= next_fenc(&fenc_next
);
868 * Jump back here to retry reading the file in different ways.
870 * - encoding conversion failed: try another one from "fenc_next"
871 * - BOM detected and fenc was set, need to setup conversion
872 * - "fileformat" check failed: try another
874 * Variables set for special retry actions:
875 * "file_rewind" Rewind the file to start reading it again.
876 * "advance_fenc" Advance "fenc" using "fenc_next".
877 * "skip_read" Re-use already read bytes (BOM detected).
878 * "did_iconv" iconv() conversion failed, try 'charconvert'.
879 * "keep_fileformat" Don't reset "fileformat".
881 * Other status indicators:
882 * "tmpname" When != NULL did conversion with 'charconvert'.
883 * Output file has to be deleted afterwards.
884 * "iconv_fd" When != -1 did conversion with iconv().
895 else if (read_stdin
|| lseek(fd
, (off_t
)0L, SEEK_SET
) != 0)
897 /* Can't rewind the file, give up. */
901 /* Delete the previously read lines. */
903 ml_delete(lnum
--, FALSE
);
907 curbuf
->b_p_bomb
= FALSE
;
913 * When retrying with another "fenc" and the first time "fileformat"
917 keep_fileformat
= FALSE
;
920 if (eap
!= NULL
&& eap
->force_ff
!= 0)
921 fileformat
= get_fileformat_force(curbuf
, eap
);
922 else if (curbuf
->b_p_bin
)
923 fileformat
= EOL_UNIX
; /* binary: use Unix format */
924 else if (*p_ffs
== NUL
)
925 fileformat
= get_fileformat(curbuf
);/* use format from buffer */
927 fileformat
= EOL_UNKNOWN
; /* detect from file */
932 if (iconv_fd
!= (iconv_t
)-1)
934 /* aborted conversion with iconv(), close the descriptor */
935 iconv_close(iconv_fd
);
936 iconv_fd
= (iconv_t
)-1;
943 * Try the next entry in 'fileencodings'.
945 advance_fenc
= FALSE
;
947 if (eap
!= NULL
&& eap
->force_enc
!= 0)
949 /* Conversion given with "++cc=" wasn't possible, read
950 * without conversion. */
956 fenc_alloced
= FALSE
;
962 if (fenc_next
!= NULL
)
964 fenc
= next_fenc(&fenc_next
);
965 fenc_alloced
= (fenc_next
!= NULL
);
970 fenc_alloced
= FALSE
;
975 mch_remove(tmpname
); /* delete converted file */
982 * Conversion is required when the encoding of the file is different
983 * from 'encoding' or 'encoding' is UTF-16, UCS-2 or UCS-4 (requires
984 * conversion to UTF-8).
987 converted
= (*fenc
!= NUL
&& !same_encoding(p_enc
, fenc
));
988 if (converted
|| enc_unicode
!= 0)
991 /* "ucs-bom" means we need to check the first bytes of the file
993 if (STRCMP(fenc
, ENC_UCSBOM
) == 0)
994 fio_flags
= FIO_UCSBOM
;
997 * Check if UCS-2/4 or Latin1 to UTF-8 conversion needs to be
998 * done. This is handled below after read(). Prepare the
999 * fio_flags to avoid having to parse the string each time.
1000 * Also check for Unicode to Latin1 conversion, because iconv()
1001 * appears not to handle this correctly. This works just like
1002 * conversion to UTF-8 except how the resulting character is put in
1005 else if (enc_utf8
|| STRCMP(p_enc
, "latin1") == 0)
1006 fio_flags
= get_fio_flags(fenc
);
1010 * Conversion from an MS-Windows codepage to UTF-8 or another codepage
1011 * is handled with MultiByteToWideChar().
1014 fio_flags
= get_win_fio_flags(fenc
);
1018 /* Conversion from Apple MacRoman to latin1 or UTF-8 */
1020 fio_flags
= get_mac_fio_flags(fenc
);
1025 * Try using iconv() if we can't convert internally.
1032 iconv_fd
= (iconv_t
)my_iconv_open(
1033 enc_utf8
? (char_u
*)"utf-8" : p_enc
, fenc
);
1038 * Use the 'charconvert' expression when conversion is required
1039 * and we can't do it internally or with iconv().
1041 if (fio_flags
== 0 && !read_stdin
&& !read_buffer
&& *p_ccv
!= NUL
1043 && iconv_fd
== (iconv_t
)-1
1050 /* Skip conversion when it's already done (retry for wrong
1052 if (tmpname
== NULL
)
1054 tmpname
= readfile_charconvert(fname
, fenc
, &fd
);
1055 if (tmpname
== NULL
)
1057 /* Conversion failed. Try another one. */
1058 advance_fenc
= TRUE
;
1061 /* Re-opening the original file failed! */
1062 EMSG(_("E202: Conversion made file unreadable!"));
1075 && iconv_fd
== (iconv_t
)-1
1079 /* Conversion wanted but we can't.
1080 * Try the next conversion in 'fileencodings' */
1081 advance_fenc
= TRUE
;
1087 /* Set "can_retry" when it's possible to rewind the file and try with
1088 * another "fenc" value. It's FALSE when no other "fenc" to try, reading
1089 * stdin or fixed at a specific encoding. */
1090 can_retry
= (*fenc
!= NUL
&& !read_stdin
&& !keep_dest_enc
);
1097 skip_count
= lines_to_skip
;
1098 read_count
= lines_to_read
;
1104 while (!error
&& !got_int
)
1107 * We allocate as much space for the file as we can get, plus
1108 * space for the old line plus room for one terminating NUL.
1109 * The amount is limited by the fact that read() only can read
1110 * upto max_unsigned characters (and other things).
1113 if (linerest
>= 0x7ff0)
1116 *ptr
= NL
; /* split line by inserting a NL */
1125 # if defined(SSIZE_MAX) && (SSIZE_MAX < 0x10000L)
1126 size
= SSIZE_MAX
; /* use max I/O size, 52K */
1128 size
= 0x10000L
; /* use buffer >= 64K */
1131 size
= 0x7ff0L
- linerest
; /* limit buffer to 32K */
1134 for ( ; size
>= 10; size
= (long)((long_u
)size
>> 1))
1136 if ((new_buffer
= lalloc((long_u
)(size
+ linerest
+ 1),
1140 if (new_buffer
== NULL
)
1142 do_outofmem_msg((long_u
)(size
* 2 + linerest
+ 1));
1146 if (linerest
) /* copy characters from the previous buffer */
1147 mch_memmove(new_buffer
, ptr
- linerest
, (size_t)linerest
);
1149 buffer
= new_buffer
;
1150 ptr
= buffer
+ linerest
;
1151 line_start
= buffer
;
1154 /* May need room to translate into.
1155 * For iconv() we don't really know the required space, use a
1156 * factor ICONV_MULT.
1157 * latin1 to utf-8: 1 byte becomes up to 2 bytes
1158 * utf-16 to utf-8: 2 bytes become up to 3 bytes, 4 bytes
1159 * become up to 4 bytes, size must be multiple of 2
1160 * ucs-2 to utf-8: 2 bytes become up to 3 bytes, size must be
1162 * ucs-4 to utf-8: 4 bytes become up to 6 bytes, size must be
1164 real_size
= (int)size
;
1166 if (iconv_fd
!= (iconv_t
)-1)
1167 size
= size
/ ICONV_MULT
;
1170 if (fio_flags
& FIO_LATIN1
)
1172 else if (fio_flags
& (FIO_UCS2
| FIO_UTF16
))
1173 size
= (size
* 2 / 3) & ~1;
1174 else if (fio_flags
& FIO_UCS4
)
1175 size
= (size
* 2 / 3) & ~3;
1176 else if (fio_flags
== FIO_UCSBOM
)
1177 size
= size
/ ICONV_MULT
; /* worst case */
1179 else if (fio_flags
& FIO_CODEPAGE
)
1180 size
= size
/ ICONV_MULT
; /* also worst case */
1183 else if (fio_flags
& FIO_MACROMAN
)
1184 size
= size
/ ICONV_MULT
; /* also worst case */
1189 if (conv_restlen
> 0)
1191 /* Insert unconverted bytes from previous line. */
1192 mch_memmove(ptr
, conv_rest
, conv_restlen
);
1193 ptr
+= conv_restlen
;
1194 size
-= conv_restlen
;
1201 * Read bytes from curbuf. Used for converting text read
1204 if (read_buf_lnum
> from
)
1214 p
= ml_get(read_buf_lnum
) + read_buf_col
;
1216 if ((int)tlen
+ n
+ 1 > size
)
1218 /* Filled up to "size", append partial line.
1219 * Change NL to NUL to reverse the effect done
1221 n
= (int)(size
- tlen
);
1222 for (ni
= 0; ni
< n
; ++ni
)
1227 ptr
[tlen
++] = p
[ni
];
1234 /* Append whole line and new-line. Change NL
1235 * to NUL to reverse the effect done below. */
1236 for (ni
= 0; ni
< n
; ++ni
)
1241 ptr
[tlen
++] = p
[ni
];
1245 if (++read_buf_lnum
> from
)
1247 /* When the last line didn't have an
1248 * end-of-line don't add it now either. */
1249 if (!curbuf
->b_p_eol
)
1261 * Read bytes from the file.
1263 size
= vim_read(fd
, ptr
, size
);
1268 if (size
< 0) /* read error */
1271 else if (conv_restlen
> 0)
1273 /* Reached end-of-file but some trailing bytes could
1274 * not be converted. Truncated file? */
1275 if (conv_error
== 0)
1276 conv_error
= linecnt
;
1277 if (bad_char_behavior
!= BAD_DROP
)
1279 fio_flags
= 0; /* don't convert this */
1281 if (iconv_fd
!= (iconv_t
)-1)
1283 iconv_close(iconv_fd
);
1284 iconv_fd
= (iconv_t
)-1;
1287 if (bad_char_behavior
== BAD_KEEP
)
1289 /* Keep the trailing bytes as-is. */
1290 size
= conv_restlen
;
1291 ptr
-= conv_restlen
;
1295 /* Replace the trailing bytes with the
1296 * replacement character. */
1298 *--ptr
= bad_char_behavior
;
1308 * At start of file: Check for magic number of encryption.
1311 cryptkey
= check_for_cryptkey(cryptkey
, ptr
, &size
,
1312 &filesize
, newfile
);
1314 * Decrypt the read bytes.
1316 if (cryptkey
!= NULL
&& size
> 0)
1317 for (p
= ptr
; p
< ptr
+ size
; ++p
)
1325 * At start of file (or after crypt magic number): Check for BOM.
1326 * Also check for a BOM for other Unicode encodings, but not after
1327 * converting with 'charconvert' or when a BOM has already been
1332 || (filesize
== CRYPT_MAGIC_LEN
&& cryptkey
!= NULL
)
1335 && (fio_flags
== FIO_UCSBOM
1336 || (!curbuf
->b_p_bomb
1338 && (*fenc
== 'u' || (*fenc
== NUL
&& enc_utf8
)))))
1343 /* no BOM detection in a short file or in binary mode */
1344 if (size
< 2 || curbuf
->b_p_bin
)
1347 ccname
= check_for_bom(ptr
, size
, &blen
,
1348 fio_flags
== FIO_UCSBOM
? FIO_ALL
: get_fio_flags(fenc
));
1351 /* Remove BOM from the text */
1354 mch_memmove(ptr
, ptr
+ blen
, (size_t)size
);
1356 curbuf
->b_p_bomb
= TRUE
;
1359 if (fio_flags
== FIO_UCSBOM
)
1363 /* No BOM detected: retry with next encoding. */
1364 advance_fenc
= TRUE
;
1368 /* BOM detected: set "fenc" and jump back */
1372 fenc_alloced
= FALSE
;
1374 /* retry reading without getting new bytes or rewinding */
1381 * Break here for a read error or end-of-file.
1388 /* Include not converted bytes. */
1389 ptr
-= conv_restlen
;
1390 size
+= conv_restlen
;
1394 if (iconv_fd
!= (iconv_t
)-1)
1397 * Attempt conversion of the read bytes to 'encoding' using
1405 fromp
= (char *)ptr
;
1409 to_size
= real_size
- size
;
1412 * If there is conversion error or not enough room try using
1413 * another conversion. Except for when there is no
1414 * alternative (help files).
1416 while ((iconv(iconv_fd
, (void *)&fromp
, &from_size
,
1418 == (size_t)-1 && ICONV_ERRNO
!= ICONV_EINVAL
)
1419 || from_size
> CONV_RESTLEN
)
1423 if (conv_error
== 0)
1424 conv_error
= readfile_linenr(linecnt
,
1425 ptr
, (char_u
*)top
);
1427 /* Deal with a bad byte and continue with the next. */
1430 if (bad_char_behavior
== BAD_KEEP
)
1432 *top
++ = *(fromp
- 1);
1435 else if (bad_char_behavior
!= BAD_DROP
)
1437 *top
++ = bad_char_behavior
;
1444 /* Some remaining characters, keep them for the next
1446 mch_memmove(conv_rest
, (char_u
*)fromp
, from_size
);
1447 conv_restlen
= (int)from_size
;
1450 /* move the linerest to before the converted characters */
1451 line_start
= ptr
- linerest
;
1452 mch_memmove(line_start
, buffer
, (size_t)linerest
);
1453 size
= (long)((char_u
*)top
- ptr
);
1458 if (fio_flags
& FIO_CODEPAGE
)
1463 int codepage
= FIO_GET_CP(fio_flags
);
1469 * Conversion from an MS-Windows codepage or UTF-8 to UTF-8 or
1470 * a codepage, using standard MS-Windows functions. This
1471 * requires two steps:
1472 * 1. convert from 'fileencoding' to ucs-2
1473 * 2. convert from ucs-2 to 'encoding'
1475 * Because there may be illegal bytes AND an incomplete byte
1476 * sequence at the end, we may have to do the conversion one
1477 * character at a time to get it right.
1480 /* Replacement string for WideCharToMultiByte(). */
1481 if (bad_char_behavior
> 0)
1482 replstr
[0] = bad_char_behavior
;
1488 * Move the bytes to the end of the buffer, so that we have
1489 * room to put the result at the start.
1491 src
= ptr
+ real_size
- size
;
1492 mch_memmove(src
, ptr
, size
);
1495 * Do the conversion.
1503 # ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
1504 if (codepage
== CP_UTF8
)
1506 /* Handle CP_UTF8 input ourselves to be able to handle
1507 * trailing bytes properly.
1508 * Get one UTF-8 character from src. */
1509 bytelen
= (int)utf_ptr2len_len(src
, size
);
1512 /* Only got some bytes of a character. Normally
1513 * it's put in "conv_rest", but if it's too long
1514 * deal with it as if they were illegal bytes. */
1515 if (bytelen
<= CONV_RESTLEN
)
1518 /* weird overlong byte sequence */
1524 int u8c
= utf_ptr2char(src
);
1526 if (u8c
> 0xffff || (*src
>= 0x80 && bytelen
== 1))
1535 /* We don't know how long the byte sequence is, try
1536 * from one to three bytes. */
1537 for (bytelen
= 1; bytelen
<= size
&& bytelen
<= 3;
1540 ucs2len
= MultiByteToWideChar(codepage
,
1541 MB_ERR_INVALID_CHARS
,
1542 (LPCSTR
)src
, bytelen
,
1549 /* If we have only one byte then it's probably an
1550 * incomplete byte sequence. Otherwise discard
1551 * one byte as a bad character. */
1563 /* Convert "ucs2buf[ucs2len]" to 'enc' in "dst". */
1566 /* From UCS-2 to UTF-8. Cannot fail. */
1567 for (i
= 0; i
< ucs2len
; ++i
)
1568 dst
+= utf_char2bytes(ucs2buf
[i
], dst
);
1575 /* From UCS-2 to "enc_codepage". If the
1576 * conversion uses the default character "?",
1577 * the data doesn't fit in this encoding. */
1578 dstlen
= WideCharToMultiByte(enc_codepage
, 0,
1579 (LPCWSTR
)ucs2buf
, ucs2len
,
1580 (LPSTR
)dst
, (int)(src
- dst
),
1591 /* Deal with bytes we can't convert. */
1594 if (conv_error
== 0)
1595 conv_error
= readfile_linenr(linecnt
, ptr
, dst
);
1596 if (bad_char_behavior
!= BAD_DROP
)
1598 if (bad_char_behavior
== BAD_KEEP
)
1600 mch_memmove(dst
, src
, bytelen
);
1604 *dst
++ = bad_char_behavior
;
1614 /* An incomplete byte sequence remaining. */
1615 mch_memmove(conv_rest
, src
, size
);
1616 conv_restlen
= size
;
1619 /* The new size is equal to how much "dst" was advanced. */
1620 size
= (long)(dst
- ptr
);
1624 # ifdef MACOS_CONVERT
1625 if (fio_flags
& FIO_MACROMAN
)
1628 * Conversion from Apple MacRoman char encoding to UTF-8 or
1629 * latin1. This is in os_mac_conv.c.
1631 if (macroman2enc(ptr
, &size
, real_size
) == FAIL
)
1640 char_u
*tail
= NULL
;
1643 * "enc_utf8" set: Convert Unicode or Latin1 to UTF-8.
1644 * "enc_utf8" not set: Convert Unicode to Latin1.
1645 * Go from end to start through the buffer, because the number
1646 * of bytes may increase.
1647 * "dest" points to after where the UTF-8 bytes go, "p" points
1648 * to after the next character to convert.
1650 dest
= ptr
+ real_size
;
1651 if (fio_flags
== FIO_LATIN1
|| fio_flags
== FIO_UTF8
)
1654 if (fio_flags
== FIO_UTF8
)
1656 /* Check for a trailing incomplete UTF-8 sequence */
1657 tail
= ptr
+ size
- 1;
1658 while (tail
> ptr
&& (*tail
& 0xc0) == 0x80)
1660 if (tail
+ utf_byte2len(*tail
) <= ptr
+ size
)
1666 else if (fio_flags
& (FIO_UCS2
| FIO_UTF16
))
1668 /* Check for a trailing byte */
1669 p
= ptr
+ (size
& ~1);
1672 if ((fio_flags
& FIO_UTF16
) && p
> ptr
)
1674 /* Check for a trailing leading word */
1675 if (fio_flags
& FIO_ENDIAN_L
)
1685 if (u8c
>= 0xd800 && u8c
<= 0xdbff)
1693 /* Check for trailing 1, 2 or 3 bytes */
1694 p
= ptr
+ (size
& ~3);
1699 /* If there is a trailing incomplete sequence move it to
1703 conv_restlen
= (int)((ptr
+ size
) - tail
);
1704 mch_memmove(conv_rest
, (char_u
*)tail
, conv_restlen
);
1705 size
-= conv_restlen
;
1711 if (fio_flags
& FIO_LATIN1
)
1713 else if (fio_flags
& (FIO_UCS2
| FIO_UTF16
))
1715 if (fio_flags
& FIO_ENDIAN_L
)
1725 if ((fio_flags
& FIO_UTF16
)
1726 && u8c
>= 0xdc00 && u8c
<= 0xdfff)
1732 /* Missing leading word. */
1735 if (conv_error
== 0)
1736 conv_error
= readfile_linenr(linecnt
,
1738 if (bad_char_behavior
== BAD_DROP
)
1740 if (bad_char_behavior
!= BAD_KEEP
)
1741 u8c
= bad_char_behavior
;
1744 /* found second word of double-word, get the first
1745 * word and compute the resulting character */
1746 if (fio_flags
& FIO_ENDIAN_L
)
1754 u16c
+= (*--p
<< 8);
1756 u8c
= 0x10000 + ((u16c
& 0x3ff) << 10)
1759 /* Check if the word is indeed a leading word. */
1760 if (u16c
< 0xd800 || u16c
> 0xdbff)
1764 if (conv_error
== 0)
1765 conv_error
= readfile_linenr(linecnt
,
1767 if (bad_char_behavior
== BAD_DROP
)
1769 if (bad_char_behavior
!= BAD_KEEP
)
1770 u8c
= bad_char_behavior
;
1774 else if (fio_flags
& FIO_UCS4
)
1776 if (fio_flags
& FIO_ENDIAN_L
)
1779 u8c
+= (*--p
<< 16);
1783 else /* big endian */
1787 u8c
+= (*--p
<< 16);
1788 u8c
+= (*--p
<< 24);
1797 len
= utf_head_off(ptr
, p
);
1799 u8c
= utf_ptr2char(p
);
1802 /* Not a valid UTF-8 character, retry with
1803 * another fenc when possible, otherwise just
1804 * report the error. */
1807 if (conv_error
== 0)
1808 conv_error
= readfile_linenr(linecnt
,
1810 if (bad_char_behavior
== BAD_DROP
)
1812 if (bad_char_behavior
!= BAD_KEEP
)
1813 u8c
= bad_char_behavior
;
1817 if (enc_utf8
) /* produce UTF-8 */
1819 dest
-= utf_char2len(u8c
);
1820 (void)utf_char2bytes(u8c
, dest
);
1822 else /* produce Latin1 */
1827 /* character doesn't fit in latin1, retry with
1828 * another fenc when possible, otherwise just
1829 * report the error. */
1832 if (conv_error
== 0)
1833 conv_error
= readfile_linenr(linecnt
, ptr
, p
);
1834 if (bad_char_behavior
== BAD_DROP
)
1836 else if (bad_char_behavior
== BAD_KEEP
)
1838 else if (eap
!= NULL
&& eap
->bad_char
!= 0)
1839 *dest
= bad_char_behavior
;
1848 /* move the linerest to before the converted characters */
1849 line_start
= dest
- linerest
;
1850 mch_memmove(line_start
, buffer
, (size_t)linerest
);
1851 size
= (long)((ptr
+ real_size
) - dest
);
1854 else if (enc_utf8
&& conv_error
== 0 && !curbuf
->b_p_bin
)
1856 /* Reading UTF-8: Check if the bytes are valid UTF-8.
1857 * Need to start before "ptr" when part of the character was
1858 * read in the previous read() call. */
1859 for (p
= ptr
- utf_head_off(buffer
, ptr
); ; ++p
)
1861 int todo
= (int)((ptr
+ size
) - p
);
1868 /* A length of 1 means it's an illegal byte. Accept
1869 * an incomplete character at the end though, the next
1870 * read() will get the next bytes, we'll check it
1872 l
= utf_ptr2len_len(p
, todo
);
1875 /* Incomplete byte sequence, the next read()
1876 * should get them and check the bytes. */
1882 /* Illegal byte. If we can try another encoding
1887 /* Remember the first linenr with an illegal byte */
1888 if (illegal_byte
== 0)
1889 illegal_byte
= readfile_linenr(linecnt
, ptr
, p
);
1891 /* When we did a conversion report an error. */
1892 if (iconv_fd
!= (iconv_t
)-1 && conv_error
== 0)
1893 conv_error
= readfile_linenr(linecnt
, ptr
, p
);
1896 /* Drop, keep or replace the bad byte. */
1897 if (bad_char_behavior
== BAD_DROP
)
1899 mch_memmove(p
, p
+1, todo
- 1);
1903 else if (bad_char_behavior
!= BAD_KEEP
)
1904 *p
= bad_char_behavior
;
1911 /* Detected a UTF-8 error. */
1913 /* Retry reading with another conversion. */
1914 # if defined(FEAT_EVAL) && defined(USE_ICONV)
1915 if (*p_ccv
!= NUL
&& iconv_fd
!= (iconv_t
)-1)
1916 /* iconv() failed, try 'charconvert' */
1920 /* use next item from 'fileencodings' */
1921 advance_fenc
= TRUE
;
1928 /* count the number of characters (after conversion!) */
1932 * when reading the first part of a file: guess EOL type
1934 if (fileformat
== EOL_UNKNOWN
)
1936 /* First try finding a NL, for Dos and Unix */
1937 if (try_dos
|| try_unix
)
1939 for (p
= ptr
; p
< ptr
+ size
; ++p
)
1944 || (try_dos
&& p
> ptr
&& p
[-1] == CAR
))
1945 fileformat
= EOL_DOS
;
1947 fileformat
= EOL_UNIX
;
1952 /* Don't give in to EOL_UNIX if EOL_MAC is more likely */
1953 if (fileformat
== EOL_UNIX
&& try_mac
)
1955 /* Need to reset the counters when retrying fenc. */
1958 for (; p
>= ptr
&& *p
!= CAR
; p
--)
1962 for (p
= ptr
; p
< ptr
+ size
; ++p
)
1969 if (try_mac
> try_unix
)
1970 fileformat
= EOL_MAC
;
1975 /* No NL found: may use Mac format */
1976 if (fileformat
== EOL_UNKNOWN
&& try_mac
)
1977 fileformat
= EOL_MAC
;
1979 /* Still nothing found? Use first format in 'ffs' */
1980 if (fileformat
== EOL_UNKNOWN
)
1981 fileformat
= default_fileformat();
1983 /* if editing a new file: may set p_tx and p_ff */
1985 set_fileformat(fileformat
, OPT_LOCAL
);
1990 * This loop is executed once for every character read.
1993 if (fileformat
== EOL_MAC
)
1996 while (++ptr
, --size
>= 0)
1998 /* catch most common case first */
1999 if ((c
= *ptr
) != NUL
&& c
!= CAR
&& c
!= NL
)
2002 *ptr
= NL
; /* NULs are replaced by newlines! */
2004 *ptr
= CAR
; /* NLs are replaced by CRs! */
2007 if (skip_count
== 0)
2009 *ptr
= NUL
; /* end of line */
2010 len
= (colnr_T
) (ptr
- line_start
+ 1);
2011 if (ml_append(lnum
, line_start
, len
, newfile
) == FAIL
)
2017 if (--read_count
== 0)
2019 error
= TRUE
; /* break loop */
2020 line_start
= ptr
; /* nothing left to write */
2026 line_start
= ptr
+ 1;
2033 while (++ptr
, --size
>= 0)
2035 if ((c
= *ptr
) != NUL
&& c
!= NL
) /* catch most common case */
2038 *ptr
= NL
; /* NULs are replaced by newlines! */
2041 if (skip_count
== 0)
2043 *ptr
= NUL
; /* end of line */
2044 len
= (colnr_T
)(ptr
- line_start
+ 1);
2045 if (fileformat
== EOL_DOS
)
2047 if (ptr
[-1] == CAR
) /* remove CR */
2053 * Reading in Dos format, but no CR-LF found!
2054 * When 'fileformats' includes "unix", delete all
2055 * the lines read so far and start all over again.
2056 * Otherwise give an error message later.
2058 else if (ff_error
!= EOL_DOS
)
2063 || lseek(fd
, (off_t
)0L, SEEK_SET
) == 0))
2065 fileformat
= EOL_UNIX
;
2067 set_fileformat(EOL_UNIX
, OPT_LOCAL
);
2069 keep_fileformat
= TRUE
;
2075 if (ml_append(lnum
, line_start
, len
, newfile
) == FAIL
)
2081 if (--read_count
== 0)
2083 error
= TRUE
; /* break loop */
2084 line_start
= ptr
; /* nothing left to write */
2090 line_start
= ptr
+ 1;
2094 linerest
= (long)(ptr
- line_start
);
2099 /* not an error, max. number of lines reached */
2100 if (error
&& read_count
== 0)
2104 * If we get EOF in the middle of a line, note the fact and
2105 * complete the line ourselves.
2106 * In Dos format ignore a trailing CTRL-Z, unless 'binary' set.
2111 && !(!curbuf
->b_p_bin
2112 && fileformat
== EOL_DOS
2113 && *line_start
== Ctrl_Z
2114 && ptr
== line_start
+ 1))
2116 /* remember for when writing */
2118 curbuf
->b_p_eol
= FALSE
;
2120 if (ml_append(lnum
, line_start
,
2121 (colnr_T
)(ptr
- line_start
+ 1), newfile
) == FAIL
)
2124 read_no_eol_lnum
= ++lnum
;
2128 save_file_ff(curbuf
); /* remember the current file format */
2131 if (cryptkey
!= curbuf
->b_p_key
)
2136 /* If editing a new file: set 'fenc' for the current buffer.
2137 * Also for ":read ++edit file". */
2139 set_string_option_direct((char_u
*)"fenc", -1, fenc
,
2140 OPT_FREE
|OPT_LOCAL
, 0);
2144 if (iconv_fd
!= (iconv_t
)-1)
2146 iconv_close(iconv_fd
);
2147 iconv_fd
= (iconv_t
)-1;
2152 if (!read_buffer
&& !read_stdin
)
2153 close(fd
); /* errors are ignored */
2159 /* Use stderr for stdin, makes shell commands work. */
2166 if (tmpname
!= NULL
)
2168 mch_remove(tmpname
); /* delete converted file */
2172 --no_wait_return
; /* may wait for return now */
2175 * In recovery mode everything but autocommands is skipped.
2179 /* need to delete the last line, which comes from the empty buffer */
2180 if (newfile
&& wasempty
&& !(curbuf
->b_ml
.ml_flags
& ML_EMPTY
))
2182 #ifdef FEAT_NETBEANS_INTG
2183 netbeansFireChanges
= 0;
2185 ml_delete(curbuf
->b_ml
.ml_line_count
, FALSE
);
2186 #ifdef FEAT_NETBEANS_INTG
2187 netbeansFireChanges
= 1;
2191 linecnt
= curbuf
->b_ml
.ml_line_count
- linecnt
;
2194 if (newfile
|| read_buffer
)
2196 redraw_curbuf_later(NOT_VALID
);
2198 /* After reading the text into the buffer the diff info needs to
2200 diff_invalidate(curbuf
);
2203 /* All folds in the window are invalid now. Mark them for update
2204 * before triggering autocommands. */
2205 foldUpdateAll(curwin
);
2208 else if (linecnt
) /* appended at least one line */
2209 appended_lines_mark(from
, linecnt
);
2211 #ifndef ALWAYS_USE_GUI
2213 * If we were reading from the same terminal as where messages go,
2214 * the screen will have been messed up.
2215 * Switch on raw mode now and clear the screen.
2219 settmode(TMODE_RAW
); /* set to raw mode */
2227 if (!(flags
& READ_DUMMY
))
2229 filemess(curbuf
, sfname
, (char_u
*)_(e_interr
), 0);
2231 curbuf
->b_p_ro
= TRUE
; /* must use "w!" now */
2233 msg_scroll
= msg_save
;
2237 return OK
; /* an interrupt isn't really an error */
2240 if (!filtering
&& !(flags
& READ_DUMMY
))
2242 msg_add_fname(curbuf
, sfname
); /* fname in IObuff with quotes */
2247 if (S_ISFIFO(perm
)) /* fifo or socket */
2249 STRCAT(IObuff
, _("[fifo/socket]"));
2254 if ((perm
& S_IFMT
) == S_IFIFO
) /* fifo */
2256 STRCAT(IObuff
, _("[fifo]"));
2261 if ((perm
& S_IFMT
) == S_IFSOCK
) /* or socket */
2263 STRCAT(IObuff
, _("[socket]"));
2271 STRCAT(IObuff
, shortmess(SHM_RO
) ? _("[RO]") : _("[readonly]"));
2274 if (read_no_eol_lnum
)
2279 if (ff_error
== EOL_DOS
)
2281 STRCAT(IObuff
, _("[CR missing]"));
2284 if (ff_error
== EOL_MAC
)
2286 STRCAT(IObuff
, _("[NL found]"));
2291 STRCAT(IObuff
, _("[long lines split]"));
2297 STRCAT(IObuff
, _("[NOT converted]"));
2302 STRCAT(IObuff
, _("[converted]"));
2307 if (cryptkey
!= NULL
)
2309 STRCAT(IObuff
, _("[crypted]"));
2314 if (conv_error
!= 0)
2316 sprintf((char *)IObuff
+ STRLEN(IObuff
),
2317 _("[CONVERSION ERROR in line %ld]"), (long)conv_error
);
2320 else if (illegal_byte
> 0)
2322 sprintf((char *)IObuff
+ STRLEN(IObuff
),
2323 _("[ILLEGAL BYTE in line %ld]"), (long)illegal_byte
);
2330 STRCAT(IObuff
, _("[READ ERRORS]"));
2333 if (msg_add_fileformat(fileformat
))
2336 if (cryptkey
!= NULL
)
2337 msg_add_lines(c
, (long)linecnt
, filesize
- CRYPT_MAGIC_LEN
);
2340 msg_add_lines(c
, (long)linecnt
, filesize
);
2344 msg_scrolled_ign
= TRUE
;
2345 #ifdef ALWAYS_USE_GUI
2346 /* Don't show the message when reading stdin, it would end up in a
2347 * message box (which might be shown when exiting!) */
2348 if (read_stdin
|| read_buffer
)
2349 p
= msg_may_trunc(FALSE
, IObuff
);
2352 p
= msg_trunc_attr(IObuff
, FALSE
, 0);
2353 if (read_stdin
|| read_buffer
|| restart_edit
!= 0
2354 || (msg_scrolled
!= 0 && !need_wait_return
))
2355 /* Need to repeat the message after redrawing when:
2356 * - When reading from stdin (the screen will be cleared next).
2357 * - When restart_edit is set (otherwise there will be a delay
2358 * before redrawing).
2359 * - When the screen was scrolled but there is no wait-return
2362 msg_scrolled_ign
= FALSE
;
2365 /* with errors writing the file requires ":w!" */
2366 if (newfile
&& (error
2369 || (illegal_byte
> 0 && bad_char_behavior
!= BAD_KEEP
)
2372 curbuf
->b_p_ro
= TRUE
;
2374 u_clearline(); /* cannot use "U" command after adding lines */
2377 * In Ex mode: cursor at last new line.
2378 * Otherwise: cursor at first new line.
2381 curwin
->w_cursor
.lnum
= from
+ linecnt
;
2383 curwin
->w_cursor
.lnum
= from
+ 1;
2384 check_cursor_lnum();
2385 beginline(BL_WHITE
| BL_FIX
); /* on first non-blank */
2388 * Set '[ and '] marks to the newly read lines.
2390 curbuf
->b_op_start
.lnum
= from
+ 1;
2391 curbuf
->b_op_start
.col
= 0;
2392 curbuf
->b_op_end
.lnum
= from
+ linecnt
;
2393 curbuf
->b_op_end
.col
= 0;
2397 * Work around a weird problem: When a file has two links (only
2398 * possible on NTFS) and we write through one link, then stat() it
2399 * throught the other link, the timestamp information may be wrong.
2400 * It's correct again after reading the file, thus reset the timestamp
2403 if (newfile
&& !read_stdin
&& !read_buffer
2404 && mch_stat((char *)fname
, &st
) >= 0)
2406 buf_store_time(curbuf
, &st
, fname
);
2407 curbuf
->b_mtime_read
= curbuf
->b_mtime
;
2411 msg_scroll
= msg_save
;
2415 * Get the marks before executing autocommands, so they can be used there.
2421 * Trick: We remember if the last line of the read didn't have
2422 * an eol for when writing it again. This is required for
2423 * ":autocmd FileReadPost *.gz set bin|'[,']!gunzip" to work.
2425 write_no_eol_lnum
= read_no_eol_lnum
;
2428 if (!read_stdin
&& !read_buffer
)
2431 int n
= msg_scrolled
;
2433 /* Save the fileformat now, otherwise the buffer will be considered
2434 * modified if the format/encoding was automatically detected. */
2436 save_file_ff(curbuf
);
2439 * The output from the autocommands should not overwrite anything and
2440 * should not be overwritten: Set msg_scroll, restore its value if no
2445 apply_autocmds_exarg(EVENT_FILTERREADPOST
, NULL
, sfname
,
2446 FALSE
, curbuf
, eap
);
2448 apply_autocmds_exarg(EVENT_BUFREADPOST
, NULL
, sfname
,
2449 FALSE
, curbuf
, eap
);
2451 apply_autocmds_exarg(EVENT_FILEREADPOST
, sfname
, sfname
,
2453 if (msg_scrolled
== n
)
2456 if (aborting()) /* autocmds may abort script processing */
2462 if (recoverymode
&& error
)
2470 * From the current line count and characters read after that, estimate the
2471 * line number where we are now.
2472 * Used for error messages that include a line number.
2475 readfile_linenr(linecnt
, p
, endp
)
2476 linenr_T linecnt
; /* line count before reading more bytes */
2477 char_u
*p
; /* start of more bytes read */
2478 char_u
*endp
; /* end of more bytes read */
2483 lnum
= curbuf
->b_ml
.ml_line_count
- linecnt
+ 1;
2484 for (s
= p
; s
< endp
; ++s
)
2492 * Fill "*eap" to force the 'fileencoding', 'fileformat' and 'binary to be
2493 * equal to the buffer "buf". Used for calling readfile().
2494 * Returns OK or FAIL.
2497 prep_exarg(eap
, buf
)
2501 eap
->cmd
= alloc((unsigned)(STRLEN(buf
->b_p_ff
)
2503 + STRLEN(buf
->b_p_fenc
)
2506 if (eap
->cmd
== NULL
)
2510 sprintf((char *)eap
->cmd
, "e ++ff=%s ++enc=%s", buf
->b_p_ff
, buf
->b_p_fenc
);
2511 eap
->force_enc
= 14 + (int)STRLEN(buf
->b_p_ff
);
2512 eap
->bad_char
= buf
->b_bad_char
;
2514 sprintf((char *)eap
->cmd
, "e ++ff=%s", buf
->b_p_ff
);
2518 eap
->force_bin
= buf
->b_p_bin
? FORCE_BIN
: FORCE_NOBIN
;
2519 eap
->read_edit
= FALSE
;
2520 eap
->forceit
= FALSE
;
2526 * Find next fileencoding to use from 'fileencodings'.
2527 * "pp" points to fenc_next. It's advanced to the next item.
2528 * When there are no more items, an empty string is returned and *pp is set to
2530 * When *pp is not set to NULL, the result is in allocated memory.
2542 return (char_u
*)"";
2544 p
= vim_strchr(*pp
, ',');
2547 r
= enc_canonize(*pp
);
2552 r
= vim_strnsave(*pp
, (int)(p
- *pp
));
2556 p
= enc_canonize(r
);
2561 if (r
== NULL
) /* out of memory */
2571 * Convert a file with the 'charconvert' expression.
2572 * This closes the file which is to be read, converts it and opens the
2573 * resulting file for reading.
2574 * Returns name of the resulting converted file (the caller should delete it
2575 * after reading it).
2576 * Returns NULL if the conversion failed ("*fdp" is not set) .
2579 readfile_charconvert(fname
, fenc
, fdp
)
2580 char_u
*fname
; /* name of input file */
2581 char_u
*fenc
; /* converted from */
2582 int *fdp
; /* in/out: file descriptor of file */
2585 char_u
*errmsg
= NULL
;
2587 tmpname
= vim_tempname('r');
2588 if (tmpname
== NULL
)
2589 errmsg
= (char_u
*)_("Can't find temp file for conversion");
2592 close(*fdp
); /* close the input file, ignore errors */
2594 if (eval_charconvert(fenc
, enc_utf8
? (char_u
*)"utf-8" : p_enc
,
2595 fname
, tmpname
) == FAIL
)
2596 errmsg
= (char_u
*)_("Conversion with 'charconvert' failed");
2597 if (errmsg
== NULL
&& (*fdp
= mch_open((char *)tmpname
,
2598 O_RDONLY
| O_EXTRA
, 0)) < 0)
2599 errmsg
= (char_u
*)_("can't read output of 'charconvert'");
2604 /* Don't use emsg(), it breaks mappings, the retry with
2605 * another type of conversion might still work. */
2607 if (tmpname
!= NULL
)
2609 mch_remove(tmpname
); /* delete converted file */
2615 /* If the input file is closed, open it (caller should check for error). */
2617 *fdp
= mch_open((char *)fname
, O_RDONLY
| O_EXTRA
, 0);
2627 * Read marks for the current buffer from the viminfo file, when we support
2628 * buffer marks and the buffer has a name.
2633 if (!curbuf
->b_marks_read
&& get_viminfo_parameter('\'') > 0
2634 && curbuf
->b_ffname
!= NULL
)
2635 read_viminfo(NULL
, FALSE
, TRUE
, FALSE
);
2637 /* Always set b_marks_read; needed when 'viminfo' is changed to include
2638 * the ' parameter after opening a buffer. */
2639 curbuf
->b_marks_read
= TRUE
;
2645 * Check for magic number used for encryption.
2646 * If found, the magic number is removed from ptr[*sizep] and *sizep and
2647 * *filesizep are updated.
2648 * Return the (new) encryption key, NULL for no encryption.
2651 check_for_cryptkey(cryptkey
, ptr
, sizep
, filesizep
, newfile
)
2652 char_u
*cryptkey
; /* previous encryption key or NULL */
2653 char_u
*ptr
; /* pointer to read bytes */
2654 long *sizep
; /* length of read bytes */
2655 long *filesizep
; /* nr of bytes used from file */
2656 int newfile
; /* editing a new buffer */
2658 if (*sizep
>= CRYPT_MAGIC_LEN
2659 && STRNCMP(ptr
, CRYPT_MAGIC
, CRYPT_MAGIC_LEN
) == 0)
2661 if (cryptkey
== NULL
)
2663 if (*curbuf
->b_p_key
)
2664 cryptkey
= curbuf
->b_p_key
;
2667 /* When newfile is TRUE, store the typed key
2668 * in the 'key' option and don't free it. */
2669 cryptkey
= get_crypt_key(newfile
, FALSE
);
2670 /* check if empty key entered */
2671 if (cryptkey
!= NULL
&& *cryptkey
== NUL
)
2673 if (cryptkey
!= curbuf
->b_p_key
)
2680 if (cryptkey
!= NULL
)
2682 crypt_init_keys(cryptkey
);
2684 /* Remove magic number from the text */
2685 *filesizep
+= CRYPT_MAGIC_LEN
;
2686 *sizep
-= CRYPT_MAGIC_LEN
;
2687 mch_memmove(ptr
, ptr
+ CRYPT_MAGIC_LEN
, (size_t)*sizep
);
2690 /* When starting to edit a new file which does not have
2691 * encryption, clear the 'key' option, except when
2692 * starting up (called with -x argument) */
2693 else if (newfile
&& *curbuf
->b_p_key
&& !starting
)
2694 set_option_value((char_u
*)"key", 0L, (char_u
*)"", OPT_LOCAL
);
2702 set_file_time(fname
, atime
, mtime
)
2704 time_t atime
; /* access time */
2705 time_t mtime
; /* modification time */
2707 # if defined(HAVE_UTIME) && defined(HAVE_UTIME_H)
2711 buf
.modtime
= mtime
;
2712 (void)utime((char *)fname
, &buf
);
2714 # if defined(HAVE_UTIMES)
2715 struct timeval tvp
[2];
2717 tvp
[0].tv_sec
= atime
;
2719 tvp
[1].tv_sec
= mtime
;
2722 (void)utimes((char *)fname
, tvp
);
2724 (void)utimes((char *)fname
, (const struct timeval
*)&tvp
);
2731 #if defined(VMS) && !defined(MIN)
2732 /* Older DECC compiler for VAX doesn't define MIN() */
2733 # define MIN(a, b) ((a) < (b) ? (a) : (b))
2737 * Return TRUE if a file appears to be read-only from the file permissions.
2740 check_file_readonly(fname
, perm
)
2741 char_u
*fname
; /* full path to file */
2742 int perm
; /* known permissions on file */
2744 #ifndef USE_MCH_ACCESS
2749 #ifdef USE_MCH_ACCESS
2751 (perm
& 0222) == 0 ||
2753 mch_access((char *)fname
, W_OK
)
2755 (fd
= mch_open((char *)fname
, O_RDWR
| O_EXTRA
, 0)) < 0
2756 ? TRUE
: (close(fd
), FALSE
)
2763 * buf_write() - write to file "fname" lines "start" through "end"
2765 * We do our own buffering here because fwrite() is so slow.
2767 * If "forceit" is true, we don't care for errors when attempting backups.
2768 * In case of an error everything possible is done to restore the original
2769 * file. But when "forceit" is TRUE, we risk loosing it.
2771 * When "reset_changed" is TRUE and "append" == FALSE and "start" == 1 and
2772 * "end" == curbuf->b_ml.ml_line_count, reset curbuf->b_changed.
2774 * This function must NOT use NameBuff (because it's called by autowrite()).
2776 * return FAIL for failure, OK otherwise
2779 buf_write(buf
, fname
, sfname
, start
, end
, eap
, append
, forceit
,
2780 reset_changed
, filtering
)
2784 linenr_T start
, end
;
2785 exarg_T
*eap
; /* for forced 'ff' and 'fenc', can be
2787 int append
; /* append to the file */
2793 char_u
*backup
= NULL
;
2794 int backup_copy
= FALSE
; /* copy the original file? */
2797 char_u
*wfname
= NULL
; /* name of file to write to */
2804 char_u
*errmsg
= NULL
;
2805 char_u
*errnum
= NULL
;
2807 char_u smallbuf
[SMBUFSIZE
];
2810 long perm
; /* file permissions */
2812 int newfile
= FALSE
; /* TRUE if file doesn't exist yet */
2813 int msg_save
= msg_scroll
;
2814 int overwriting
; /* TRUE if writing over original */
2815 int no_eol
= FALSE
; /* no end-of-line written */
2816 int device
= FALSE
; /* writing to a device */
2818 int prev_got_int
= got_int
;
2819 int file_readonly
= FALSE
; /* overwritten file is read-only */
2820 static char *err_readonly
= "is read-only (cannot override: \"W\" in 'cpoptions')";
2821 #if defined(UNIX) || defined(__EMX__XX) /*XXX fix me sometime? */
2822 int made_writable
= FALSE
; /* 'w' bit has been set */
2824 /* writing everything */
2825 int whole
= (start
== 1 && end
== buf
->b_ml
.ml_line_count
);
2827 linenr_T old_line_count
= buf
->b_ml
.ml_line_count
;
2832 struct bw_info write_info
; /* info for buf_write_bytes() */
2834 int converted
= FALSE
;
2835 int notconverted
= FALSE
;
2836 char_u
*fenc
; /* effective 'fileencoding' */
2837 char_u
*fenc_tofree
= NULL
; /* allocated "fenc" */
2843 vim_acl_T acl
= NULL
; /* ACL copied from original file to
2844 backup or new file */
2847 if (fname
== NULL
|| *fname
== NUL
) /* safety check */
2851 * Disallow writing from .exrc and .vimrc in current directory for
2857 /* Avoid a crash for a long name. */
2858 if (STRLEN(fname
) >= MAXPATHL
)
2860 EMSG(_(e_longname
));
2865 /* must init bw_conv_buf and bw_iconv_fd before jumping to "fail" */
2866 write_info
.bw_conv_buf
= NULL
;
2867 write_info
.bw_conv_error
= FALSE
;
2868 write_info
.bw_restlen
= 0;
2870 write_info
.bw_iconv_fd
= (iconv_t
)-1;
2874 /* After writing a file changedtick changes but we don't want to display
2876 ex_no_reprint
= TRUE
;
2879 * If there is no file name yet, use the one for the written file.
2880 * BF_NOTEDITED is set to reflect this (in case the write fails).
2881 * Don't do this when the write is for a filter command.
2882 * Don't do this when appending.
2883 * Only do this when 'cpoptions' contains the 'F' flag.
2885 if (buf
->b_ffname
== NULL
2889 #ifdef FEAT_QUICKFIX
2893 && (!append
|| vim_strchr(p_cpo
, CPO_FNAMEAPP
) != NULL
)
2894 && vim_strchr(p_cpo
, CPO_FNAMEW
) != NULL
)
2896 if (set_rw_fname(fname
, sfname
) == FAIL
)
2898 buf
= curbuf
; /* just in case autocmds made "buf" invalid */
2904 * For Unix: Use the short file name whenever possible.
2905 * Avoids problems with networks and when directory names are changed.
2906 * Don't do this for MS-DOS, a "cd" in a sub-shell may have moved us to
2907 * another directory, which we don't detect
2909 ffname
= fname
; /* remember full fname */
2914 if (buf
->b_ffname
!= NULL
&& fnamecmp(ffname
, buf
->b_ffname
) == 0)
2917 overwriting
= FALSE
;
2920 settmode(TMODE_COOK
); /* when exiting allow typahead now */
2922 ++no_wait_return
; /* don't wait for return yet */
2925 * Set '[ and '] marks to the lines to be written.
2927 buf
->b_op_start
.lnum
= start
;
2928 buf
->b_op_start
.col
= 0;
2929 buf
->b_op_end
.lnum
= end
;
2930 buf
->b_op_end
.col
= 0;
2935 int buf_ffname
= FALSE
;
2936 int buf_sfname
= FALSE
;
2937 int buf_fname_f
= FALSE
;
2938 int buf_fname_s
= FALSE
;
2939 int did_cmd
= FALSE
;
2940 int nofile_err
= FALSE
;
2941 int empty_memline
= (buf
->b_ml
.ml_mfp
== NULL
);
2944 * Apply PRE aucocommands.
2945 * Set curbuf to the buffer to be written.
2946 * Careful: The autocommands may call buf_write() recursively!
2948 if (ffname
== buf
->b_ffname
)
2950 if (sfname
== buf
->b_sfname
)
2952 if (fname
== buf
->b_ffname
)
2954 if (fname
== buf
->b_sfname
)
2957 /* set curwin/curbuf to buf and save a few things */
2958 aucmd_prepbuf(&aco
, buf
);
2962 if (!(did_cmd
= apply_autocmds_exarg(EVENT_FILEAPPENDCMD
,
2963 sfname
, sfname
, FALSE
, curbuf
, eap
)))
2965 #ifdef FEAT_QUICKFIX
2966 if (overwriting
&& bt_nofile(curbuf
))
2970 apply_autocmds_exarg(EVENT_FILEAPPENDPRE
,
2971 sfname
, sfname
, FALSE
, curbuf
, eap
);
2976 apply_autocmds_exarg(EVENT_FILTERWRITEPRE
,
2977 NULL
, sfname
, FALSE
, curbuf
, eap
);
2979 else if (reset_changed
&& whole
)
2981 if (!(did_cmd
= apply_autocmds_exarg(EVENT_BUFWRITECMD
,
2982 sfname
, sfname
, FALSE
, curbuf
, eap
)))
2984 #ifdef FEAT_QUICKFIX
2985 if (overwriting
&& bt_nofile(curbuf
))
2989 apply_autocmds_exarg(EVENT_BUFWRITEPRE
,
2990 sfname
, sfname
, FALSE
, curbuf
, eap
);
2995 if (!(did_cmd
= apply_autocmds_exarg(EVENT_FILEWRITECMD
,
2996 sfname
, sfname
, FALSE
, curbuf
, eap
)))
2998 #ifdef FEAT_QUICKFIX
2999 if (overwriting
&& bt_nofile(curbuf
))
3003 apply_autocmds_exarg(EVENT_FILEWRITEPRE
,
3004 sfname
, sfname
, FALSE
, curbuf
, eap
);
3008 /* restore curwin/curbuf and a few other things */
3009 aucmd_restbuf(&aco
);
3012 * In three situations we return here and don't write the file:
3013 * 1. the autocommands deleted or unloaded the buffer.
3014 * 2. The autocommands abort script processing.
3015 * 3. If one of the "Cmd" autocommands was executed.
3017 if (!buf_valid(buf
))
3019 if (buf
== NULL
|| (buf
->b_ml
.ml_mfp
== NULL
&& !empty_memline
)
3020 || did_cmd
|| nofile_err
3027 msg_scroll
= msg_save
;
3029 EMSG(_("E676: No matching autocommands for acwrite buffer"));
3036 /* An aborting error, interrupt or exception in the
3042 /* The buffer was deleted. We assume it was written
3043 * (can't retry anyway). */
3047 /* Assume the buffer was written, update the timestamp. */
3050 buf
->b_flags
&= ~BF_NEW
;
3052 buf
->b_flags
&= ~BF_WRITE_MASK
;
3054 if (reset_changed
&& buf
->b_changed
&& !append
3055 && (overwriting
|| vim_strchr(p_cpo
, CPO_PLUS
) != NULL
))
3056 /* Buffer still changed, the autocommands didn't work
3064 EMSG(_("E203: Autocommands deleted or unloaded buffer to be written"));
3069 * The autocommands may have changed the number of lines in the file.
3070 * When writing the whole file, adjust the end.
3071 * When writing part of the file, assume that the autocommands only
3072 * changed the number of lines that are to be written (tricky!).
3074 if (buf
->b_ml
.ml_line_count
!= old_line_count
)
3076 if (whole
) /* write all */
3077 end
= buf
->b_ml
.ml_line_count
;
3078 else if (buf
->b_ml
.ml_line_count
> old_line_count
) /* more lines */
3079 end
+= buf
->b_ml
.ml_line_count
- old_line_count
;
3080 else /* less lines */
3082 end
-= old_line_count
- buf
->b_ml
.ml_line_count
;
3086 msg_scroll
= msg_save
;
3087 EMSG(_("E204: Autocommand changed number of lines in unexpected way"));
3094 * The autocommands may have changed the name of the buffer, which may
3095 * be kept in fname, ffname and sfname.
3098 ffname
= buf
->b_ffname
;
3100 sfname
= buf
->b_sfname
;
3102 fname
= buf
->b_ffname
;
3104 fname
= buf
->b_sfname
;
3108 #ifdef FEAT_NETBEANS_INTG
3109 if (usingNetbeans
&& isNetbeansBuffer(buf
))
3114 * b_changed can be 0 after an undo, but we still need to write
3115 * the buffer to NetBeans.
3117 if (buf
->b_changed
|| isNetbeansModified(buf
))
3119 --no_wait_return
; /* may wait for return now */
3120 msg_scroll
= msg_save
;
3121 netbeans_save_buffer(buf
); /* no error checking... */
3126 errnum
= (char_u
*)"E656: ";
3127 errmsg
= (char_u
*)_("NetBeans dissallows writes of unmodified buffers");
3134 errnum
= (char_u
*)"E657: ";
3135 errmsg
= (char_u
*)_("Partial writes disallowed for NetBeans buffers");
3142 if (shortmess(SHM_OVER
) && !exiting
)
3143 msg_scroll
= FALSE
; /* overwrite previous file message */
3145 msg_scroll
= TRUE
; /* don't overwrite previous file message */
3153 (char_u
*)"", 0); /* show that we are busy */
3154 msg_scroll
= FALSE
; /* always overwrite the file message now */
3156 buffer
= alloc(BUFSIZE
);
3157 if (buffer
== NULL
) /* can't allocate big buffer, use small
3158 * one (to be able to write when out of
3162 bufsize
= SMBUFSIZE
;
3168 * Get information about original file (if there is one).
3170 #if defined(UNIX) && !defined(ARCHIE)
3171 st_old
.st_dev
= st_old
.st_ino
= 0;
3173 if (mch_stat((char *)fname
, &st_old
) < 0)
3177 perm
= st_old
.st_mode
;
3178 if (!S_ISREG(st_old
.st_mode
)) /* not a file */
3180 if (S_ISDIR(st_old
.st_mode
))
3182 errnum
= (char_u
*)"E502: ";
3183 errmsg
= (char_u
*)_("is a directory");
3186 if (mch_nodetype(fname
) != NODE_WRITABLE
)
3188 errnum
= (char_u
*)"E503: ";
3189 errmsg
= (char_u
*)_("is not a file or writable device");
3192 /* It's a device of some kind (or a fifo) which we can write to
3193 * but for which we can't make a backup. */
3201 * Check for a writable device name.
3203 c
= mch_nodetype(fname
);
3204 if (c
== NODE_OTHER
)
3206 errnum
= (char_u
*)"E503: ";
3207 errmsg
= (char_u
*)_("is not a file or writable device");
3210 if (c
== NODE_WRITABLE
)
3212 # if defined(MSDOS) || defined(MSWIN) || defined(OS2)
3213 /* MS-Windows allows opening a device, but we will probably get stuck
3214 * trying to write to it. */
3217 errnum
= (char_u
*)"E796: ";
3218 errmsg
= (char_u
*)_("writing to device disabled with 'opendevice' option");
3228 perm
= mch_getperm(fname
);
3231 else if (mch_isdir(fname
))
3233 errnum
= (char_u
*)"E502: ";
3234 errmsg
= (char_u
*)_("is a directory");
3238 (void)mch_stat((char *)fname
, &st_old
);
3242 if (!device
&& !newfile
)
3245 * Check if the file is really writable (when renaming the file to
3246 * make a backup we won't discover it later).
3248 file_readonly
= check_file_readonly(fname
, (int)perm
);
3250 if (!forceit
&& file_readonly
)
3252 if (vim_strchr(p_cpo
, CPO_FWRITE
) != NULL
)
3254 errnum
= (char_u
*)"E504: ";
3255 errmsg
= (char_u
*)_(err_readonly
);
3259 errnum
= (char_u
*)"E505: ";
3260 errmsg
= (char_u
*)_("is read-only (add ! to override)");
3266 * Check if the timestamp hasn't changed since reading the file.
3270 retval
= check_mtime(buf
, &st_old
);
3278 * For systems that support ACL: get the ACL from the original file.
3281 acl
= mch_get_acl(fname
);
3285 * If 'backupskip' is not empty, don't make a backup for some files.
3287 dobackup
= (p_wb
|| p_bk
|| *p_pm
!= NUL
);
3289 if (dobackup
&& *p_bsk
!= NUL
&& match_file_list(p_bsk
, sfname
, ffname
))
3294 * Save the value of got_int and reset it. We don't want a previous
3295 * interruption cancel writing, only hitting CTRL-C while writing should
3298 prev_got_int
= got_int
;
3301 /* Mark the buffer as 'being saved' to prevent changed buffer warnings */
3302 buf
->b_saving
= TRUE
;
3305 * If we are not appending or filtering, the file exists, and the
3306 * 'writebackup', 'backup' or 'patchmode' option is set, need a backup.
3307 * When 'patchmode' is set also make a backup when appending.
3309 * Do not make any backup, if 'writebackup' and 'backup' are both switched
3310 * off. This helps when editing large files on almost-full disks.
3312 if (!(append
&& *p_pm
== NUL
) && !filtering
&& perm
>= 0 && dobackup
)
3314 #if defined(UNIX) || defined(WIN32)
3318 if ((bkc_flags
& BKC_YES
) || append
) /* "yes" */
3320 #if defined(UNIX) || defined(WIN32)
3321 else if ((bkc_flags
& BKC_AUTO
)) /* "auto" */
3327 * Don't rename the file when:
3328 * - it's a hard link
3329 * - it's a symbolic link
3330 * - we don't have write permission in the directory
3331 * - we can't set the owner/group of the new file
3333 if (st_old
.st_nlink
> 1
3334 || mch_lstat((char *)fname
, &st
) < 0
3335 || st
.st_dev
!= st_old
.st_dev
3336 || st
.st_ino
!= st_old
.st_ino
3337 # ifndef HAVE_FCHOWN
3338 || st
.st_uid
!= st_old
.st_uid
3339 || st
.st_gid
!= st_old
.st_gid
3346 /* On NTFS file systems hard links are possible. */
3347 if (mch_is_linked(fname
))
3354 * Check if we can create a file and set the owner/group to
3355 * the ones from the original file.
3356 * First find a file name that doesn't exist yet (use some
3357 * arbitrary numbers).
3359 STRCPY(IObuff
, fname
);
3360 for (i
= 4913; ; i
+= 123)
3362 sprintf((char *)gettail(IObuff
), "%d", i
);
3363 if (mch_lstat((char *)IObuff
, &st
) < 0)
3366 fd
= mch_open((char *)IObuff
,
3367 O_CREAT
|O_WRONLY
|O_EXCL
|O_NOFOLLOW
, perm
);
3368 if (fd
< 0) /* can't write in directory */
3374 fchown(fd
, st_old
.st_uid
, st_old
.st_gid
);
3376 if (mch_stat((char *)IObuff
, &st
) < 0
3377 || st
.st_uid
!= st_old
.st_uid
3378 || st
.st_gid
!= st_old
.st_gid
3379 || st
.st_mode
!= perm
)
3382 /* Close the file before removing it, on MS-Windows we
3383 * can't delete an open file. */
3392 * Break symlinks and/or hardlinks if we've been asked to.
3394 if ((bkc_flags
& BKC_BREAKSYMLINK
) || (bkc_flags
& BKC_BREAKHARDLINK
))
3398 lstat_res
= mch_lstat((char *)fname
, &st
);
3401 if ((bkc_flags
& BKC_BREAKSYMLINK
)
3403 && st
.st_ino
!= st_old
.st_ino
)
3404 backup_copy
= FALSE
;
3407 if ((bkc_flags
& BKC_BREAKHARDLINK
)
3408 && st_old
.st_nlink
> 1
3409 && (lstat_res
!= 0 || st
.st_ino
== st_old
.st_ino
))
3410 backup_copy
= FALSE
;
3416 /* make sure we have a valid backup extension to use */
3420 backup_ext
= (char_u
*)"/bak";
3422 backup_ext
= (char_u
*)".bak";
3429 && (fd
= mch_open((char *)fname
, O_RDONLY
| O_EXTRA
, 0)) >= 0)
3432 char_u
*copybuf
, *wp
;
3433 int some_error
= FALSE
;
3437 #if defined(UNIX) && !defined(SHORT_FNAME)
3438 int did_set_shortname
;
3441 copybuf
= alloc(BUFSIZE
+ 1);
3442 if (copybuf
== NULL
)
3444 some_error
= TRUE
; /* out of memory */
3449 * Try to make the backup in each directory in the 'bdir' option.
3451 * Unix semantics has it, that we may have a writable file,
3452 * that cannot be recreated with a simple open(..., O_CREAT, ) e.g:
3453 * - the directory is not writable,
3454 * - the file may be a symbolic link,
3455 * - the file may belong to another user/group, etc.
3457 * For these reasons, the existing writable file must be truncated
3458 * and reused. Creation of a backup COPY will be attempted.
3470 * Isolate one directory name, using an entry in 'bdir'.
3472 (void)copy_option_part(&dirp
, copybuf
, BUFSIZE
, ",");
3473 rootname
= get_file_in_dir(fname
, copybuf
);
3474 if (rootname
== NULL
)
3476 some_error
= TRUE
; /* out of memory */
3480 #if defined(UNIX) && !defined(SHORT_FNAME)
3481 did_set_shortname
= FALSE
;
3485 * May try twice if 'shortname' not set.
3490 * Make backup file name.
3492 backup
= buf_modname(
3496 (buf
->b_p_sn
|| buf
->b_shortname
),
3498 rootname
, backup_ext
, FALSE
);
3502 some_error
= TRUE
; /* out of memory */
3507 * Check if backup file already exists.
3509 if (mch_stat((char *)backup
, &st_new
) >= 0)
3513 * Check if backup file is same as original file.
3514 * May happen when modname() gave the same file back.
3515 * E.g. silly link, or file name-length reached.
3516 * If we don't check here, we either ruin the file
3517 * when copying or erase it after writing. jw.
3519 if (st_new
.st_dev
== st_old
.st_dev
3520 && st_new
.st_ino
== st_old
.st_ino
)
3523 backup
= NULL
; /* no backup file to delete */
3524 # ifndef SHORT_FNAME
3526 * may try again with 'shortname' set
3528 if (!(buf
->b_shortname
|| buf
->b_p_sn
))
3530 buf
->b_shortname
= TRUE
;
3531 did_set_shortname
= TRUE
;
3534 /* setting shortname didn't help */
3535 if (did_set_shortname
)
3536 buf
->b_shortname
= FALSE
;
3543 * If we are not going to keep the backup file, don't
3544 * delete an existing one, try to use another name.
3545 * Change one character, just before the extension.
3549 wp
= backup
+ STRLEN(backup
) - 1
3550 - STRLEN(backup_ext
);
3551 if (wp
< backup
) /* empty file name ??? */
3555 && mch_stat((char *)backup
, &st_new
) >= 0)
3557 /* They all exist??? Must be something wrong. */
3570 * Try to create the backup file
3574 /* remove old backup, if present */
3576 /* Open with O_EXCL to avoid the file being created while
3577 * we were sleeping (symlink hacker attack?) */
3578 bfd
= mch_open((char *)backup
,
3579 O_WRONLY
|O_CREAT
|O_EXTRA
|O_EXCL
|O_NOFOLLOW
,
3588 /* set file protection same as original file, but
3590 (void)mch_setperm(backup
, perm
& 0777);
3594 * Try to set the group of the backup same as the
3595 * original file. If this fails, set the protection
3596 * bits for the group same as the protection bits for
3599 if (st_new
.st_gid
!= st_old
.st_gid
3600 # ifdef HAVE_FCHOWN /* sequent-ptx lacks fchown() */
3601 && fchown(bfd
, (uid_t
)-1, st_old
.st_gid
) != 0
3605 (perm
& 0707) | ((perm
& 07) << 3));
3611 write_info
.bw_fd
= bfd
;
3612 write_info
.bw_buf
= copybuf
;
3614 write_info
.bw_flags
= FIO_NOCONVERT
;
3616 while ((write_info
.bw_len
= vim_read(fd
, copybuf
,
3619 if (buf_write_bytes(&write_info
) == FAIL
)
3621 errmsg
= (char_u
*)_("E506: Can't write to backup file (add ! to override)");
3627 errmsg
= (char_u
*)_(e_interr
);
3632 if (close(bfd
) < 0 && errmsg
== NULL
)
3633 errmsg
= (char_u
*)_("E507: Close error for backup file (add ! to override)");
3634 if (write_info
.bw_len
< 0)
3635 errmsg
= (char_u
*)_("E508: Can't read file for backup (add ! to override)");
3637 set_file_time(backup
, st_old
.st_atime
, st_old
.st_mtime
);
3640 mch_set_acl(backup
, acl
);
3647 close(fd
); /* ignore errors for closing read file */
3650 if (backup
== NULL
&& errmsg
== NULL
)
3651 errmsg
= (char_u
*)_("E509: Cannot create backup file (add ! to override)");
3652 /* ignore errors when forceit is TRUE */
3653 if ((some_error
|| errmsg
!= NULL
) && !forceit
)
3667 * Make a backup by renaming the original file.
3670 * If 'cpoptions' includes the "W" flag, we don't want to
3671 * overwrite a read-only file. But rename may be possible
3672 * anyway, thus we need an extra check here.
3674 if (file_readonly
&& vim_strchr(p_cpo
, CPO_FWRITE
) != NULL
)
3676 errnum
= (char_u
*)"E504: ";
3677 errmsg
= (char_u
*)_(err_readonly
);
3683 * Form the backup file name - change path/fo.o.h to
3684 * path/fo.o.h.bak Try all directories in 'backupdir', first one
3685 * that works is used.
3691 * Isolate one directory name and make the backup file name.
3693 (void)copy_option_part(&dirp
, IObuff
, IOSIZE
, ",");
3694 rootname
= get_file_in_dir(fname
, IObuff
);
3695 if (rootname
== NULL
)
3699 backup
= buf_modname(
3703 (buf
->b_p_sn
|| buf
->b_shortname
),
3705 rootname
, backup_ext
, FALSE
);
3712 * If we are not going to keep the backup file, don't
3713 * delete an existing one, try to use another name.
3714 * Change one character, just before the extension.
3716 if (!p_bk
&& mch_getperm(backup
) >= 0)
3718 p
= backup
+ STRLEN(backup
) - 1 - STRLEN(backup_ext
);
3719 if (p
< backup
) /* empty file name ??? */
3722 while (*p
> 'a' && mch_getperm(backup
) >= 0)
3724 /* They all exist??? Must be something wrong! */
3735 * Delete any existing backup and move the current version
3736 * to the backup. For safety, we don't remove the backup
3737 * until the write has finished successfully. And if the
3738 * 'backup' option is set, leave it around.
3741 * If the renaming of the original file to the backup file
3744 if (vim_rename(fname
, backup
) == 0)
3747 vim_free(backup
); /* don't do the rename below */
3751 if (backup
== NULL
&& !forceit
)
3753 errmsg
= (char_u
*)_("E510: Can't make backup file (add ! to override)");
3759 #if defined(UNIX) && !defined(ARCHIE)
3760 /* When using ":w!" and the file was read-only: make it writable */
3761 if (forceit
&& perm
>= 0 && !(perm
& 0200) && st_old
.st_uid
== getuid()
3762 && vim_strchr(p_cpo
, CPO_FWRITE
) == NULL
)
3765 (void)mch_setperm(fname
, perm
);
3766 made_writable
= TRUE
;
3770 /* When using ":w!" and writing to the current file, 'readonly' makes no
3771 * sense, reset it, unless 'Z' appears in 'cpoptions'. */
3772 if (forceit
&& overwriting
&& vim_strchr(p_cpo
, CPO_KEEPRO
) == NULL
)
3774 buf
->b_p_ro
= FALSE
;
3776 need_maketitle
= TRUE
; /* set window title later */
3779 status_redraw_all(); /* redraw status lines later */
3783 if (end
> buf
->b_ml
.ml_line_count
)
3784 end
= buf
->b_ml
.ml_line_count
;
3785 if (buf
->b_ml
.ml_flags
& ML_EMPTY
)
3789 * If the original file is being overwritten, there is a small chance that
3790 * we crash in the middle of writing. Therefore the file is preserved now.
3791 * This makes all block numbers positive so that recovery does not need
3792 * the original file.
3793 * Don't do this if there is a backup file and we are exiting.
3795 if (reset_changed
&& !newfile
&& overwriting
3796 && !(exiting
&& backup
!= NULL
))
3798 ml_preserve(buf
, FALSE
);
3801 errmsg
= (char_u
*)_(e_interr
);
3802 goto restore_backup
;
3806 #ifdef MACOS_CLASSIC /* TODO: Is it need for MACOS_X? (Dany) */
3808 * Before risking to lose the original file verify if there's
3809 * a resource fork to preserve, and if cannot be done warn
3810 * the users. This happens when overwriting without backups.
3812 if (backup
== NULL
&& overwriting
&& !append
)
3813 if (mch_has_resource_fork(fname
))
3815 errmsg
= (char_u
*)_("E460: The resource fork would be lost (add ! to override)");
3816 goto restore_backup
;
3821 vms_remove_version(fname
); /* remove version */
3823 /* Default: write the the file directly. May write to a temp file for
3824 * multi-byte conversion. */
3828 /* Check for forced 'fileencoding' from "++opt=val" argument. */
3829 if (eap
!= NULL
&& eap
->force_enc
!= 0)
3831 fenc
= eap
->cmd
+ eap
->force_enc
;
3832 fenc
= enc_canonize(fenc
);
3836 fenc
= buf
->b_p_fenc
;
3839 * The file needs to be converted when 'fileencoding' is set and
3840 * 'fileencoding' differs from 'encoding'.
3842 converted
= (*fenc
!= NUL
&& !same_encoding(p_enc
, fenc
));
3845 * Check if UTF-8 to UCS-2/4 or Latin1 conversion needs to be done. Or
3846 * Latin1 to Unicode conversion. This is handled in buf_write_bytes().
3847 * Prepare the flags for it and allocate bw_conv_buf when needed.
3849 if (converted
&& (enc_utf8
|| STRCMP(p_enc
, "latin1") == 0))
3851 wb_flags
= get_fio_flags(fenc
);
3852 if (wb_flags
& (FIO_UCS2
| FIO_UCS4
| FIO_UTF16
| FIO_UTF8
))
3854 /* Need to allocate a buffer to translate into. */
3855 if (wb_flags
& (FIO_UCS2
| FIO_UTF16
| FIO_UTF8
))
3856 write_info
.bw_conv_buflen
= bufsize
* 2;
3858 write_info
.bw_conv_buflen
= bufsize
* 4;
3859 write_info
.bw_conv_buf
3860 = lalloc((long_u
)write_info
.bw_conv_buflen
, TRUE
);
3861 if (write_info
.bw_conv_buf
== NULL
)
3867 if (converted
&& wb_flags
== 0 && (wb_flags
= get_win_fio_flags(fenc
)) != 0)
3869 /* Convert UTF-8 -> UCS-2 and UCS-2 -> DBCS. Worst-case * 4: */
3870 write_info
.bw_conv_buflen
= bufsize
* 4;
3871 write_info
.bw_conv_buf
3872 = lalloc((long_u
)write_info
.bw_conv_buflen
, TRUE
);
3873 if (write_info
.bw_conv_buf
== NULL
)
3879 if (converted
&& wb_flags
== 0 && (wb_flags
= get_mac_fio_flags(fenc
)) != 0)
3881 write_info
.bw_conv_buflen
= bufsize
* 3;
3882 write_info
.bw_conv_buf
3883 = lalloc((long_u
)write_info
.bw_conv_buflen
, TRUE
);
3884 if (write_info
.bw_conv_buf
== NULL
)
3889 # if defined(FEAT_EVAL) || defined(USE_ICONV)
3890 if (converted
&& wb_flags
== 0)
3894 * Use iconv() conversion when conversion is needed and it's not done
3897 write_info
.bw_iconv_fd
= (iconv_t
)my_iconv_open(fenc
,
3898 enc_utf8
? (char_u
*)"utf-8" : p_enc
);
3899 if (write_info
.bw_iconv_fd
!= (iconv_t
)-1)
3901 /* We're going to use iconv(), allocate a buffer to convert in. */
3902 write_info
.bw_conv_buflen
= bufsize
* ICONV_MULT
;
3903 write_info
.bw_conv_buf
3904 = lalloc((long_u
)write_info
.bw_conv_buflen
, TRUE
);
3905 if (write_info
.bw_conv_buf
== NULL
)
3907 write_info
.bw_first
= TRUE
;
3916 * When the file needs to be converted with 'charconvert' after
3917 * writing, write to a temp file instead and let the conversion
3918 * overwrite the original file.
3922 wfname
= vim_tempname('w');
3923 if (wfname
== NULL
) /* Can't write without a tempfile! */
3925 errmsg
= (char_u
*)_("E214: Can't find temp file for writing");
3926 goto restore_backup
;
3932 if (converted
&& wb_flags
== 0
3934 && write_info
.bw_iconv_fd
== (iconv_t
)-1
3943 errmsg
= (char_u
*)_("E213: Cannot convert (add ! to write without conversion)");
3944 goto restore_backup
;
3946 notconverted
= TRUE
;
3951 * Open the file "wfname" for writing.
3952 * We may try to open the file twice: If we can't write to the
3953 * file and forceit is TRUE we delete the existing file and try to create
3954 * a new one. If this still fails we may have lost the original file!
3955 * (this may happen when the user reached his quotum for number of files).
3956 * Appending will fail if the file does not exist and forceit is FALSE.
3958 while ((fd
= mch_open((char *)wfname
, O_WRONLY
| O_EXTRA
| (append
3959 ? (forceit
? (O_APPEND
| O_CREAT
) : O_APPEND
)
3960 : (O_CREAT
| O_TRUNC
))
3961 , perm
< 0 ? 0666 : (perm
& 0777))) < 0)
3964 * A forced write will try to create a new file if the old one is
3965 * still readonly. This may also happen when the directory is
3966 * read-only. In that case the mch_remove() will fail.
3973 /* Don't delete the file when it's a hard or symbolic link. */
3974 if ((!newfile
&& st_old
.st_nlink
> 1)
3975 || (mch_lstat((char *)fname
, &st
) == 0
3976 && (st
.st_dev
!= st_old
.st_dev
3977 || st
.st_ino
!= st_old
.st_ino
)))
3978 errmsg
= (char_u
*)_("E166: Can't open linked file for writing");
3982 errmsg
= (char_u
*)_("E212: Can't open file for writing");
3983 if (forceit
&& vim_strchr(p_cpo
, CPO_FWRITE
) == NULL
3987 /* we write to the file, thus it should be marked
3988 writable after all */
3990 made_writable
= TRUE
;
3992 if (st_old
.st_uid
!= getuid() || st_old
.st_gid
!= getgid())
3995 if (!append
) /* don't remove when appending */
4007 * If we failed to open the file, we don't need a backup. Throw it
4008 * away. If we moved or removed the original file try to put the
4009 * backup in its place.
4011 if (backup
!= NULL
&& wfname
== fname
)
4016 * There is a small chance that we removed the original,
4017 * try to move the copy in its place.
4018 * This may not work if the vim_rename() fails.
4019 * In that case we leave the copy around.
4021 /* If file does not exist, put the copy in its place */
4022 if (mch_stat((char *)fname
, &st
) < 0)
4023 vim_rename(backup
, fname
);
4024 /* if original file does exist throw away the copy */
4025 if (mch_stat((char *)fname
, &st
) >= 0)
4030 /* try to put the original file back */
4031 vim_rename(backup
, fname
);
4035 /* if original file no longer exists give an extra warning */
4036 if (!newfile
&& mch_stat((char *)fname
, &st
) < 0)
4041 if (wfname
!= fname
)
4048 #if defined(MACOS_CLASSIC) || defined(WIN3264)
4049 /* TODO: Is it need for MACOS_X? (Dany) */
4051 * On macintosh copy the original files attributes (i.e. the backup)
4052 * This is done in order to preserve the resource fork and the
4053 * Finder attribute (label, comments, custom icons, file creator)
4055 if (backup
!= NULL
&& overwriting
&& !append
)
4058 (void)mch_copy_file_attribute(wfname
, backup
);
4060 (void)mch_copy_file_attribute(backup
, wfname
);
4063 if (!overwriting
&& !append
)
4065 if (buf
->b_ffname
!= NULL
)
4066 (void)mch_copy_file_attribute(buf
->b_ffname
, wfname
);
4067 /* Should copy resource fork */
4071 write_info
.bw_fd
= fd
;
4074 if (*buf
->b_p_key
&& !filtering
)
4076 crypt_init_keys(buf
->b_p_key
);
4077 /* Write magic number, so that Vim knows that this file is encrypted
4078 * when reading it again. This also undergoes utf-8 to ucs-2/4
4079 * conversion when needed. */
4080 write_info
.bw_buf
= (char_u
*)CRYPT_MAGIC
;
4081 write_info
.bw_len
= CRYPT_MAGIC_LEN
;
4082 write_info
.bw_flags
= FIO_NOCONVERT
;
4083 if (buf_write_bytes(&write_info
) == FAIL
)
4085 wb_flags
|= FIO_ENCRYPTED
;
4089 write_info
.bw_buf
= buffer
;
4092 /* use "++bin", "++nobin" or 'binary' */
4093 if (eap
!= NULL
&& eap
->force_bin
!= 0)
4094 write_bin
= (eap
->force_bin
== FORCE_BIN
);
4096 write_bin
= buf
->b_p_bin
;
4100 * The BOM is written just after the encryption magic number.
4101 * Skip it when appending and the file already existed, the BOM only makes
4102 * sense at the start of the file.
4104 if (buf
->b_p_bomb
&& !write_bin
&& (!append
|| perm
< 0))
4106 write_info
.bw_len
= make_bom(buffer
, fenc
);
4107 if (write_info
.bw_len
> 0)
4109 /* don't convert, do encryption */
4110 write_info
.bw_flags
= FIO_NOCONVERT
| wb_flags
;
4111 if (buf_write_bytes(&write_info
) == FAIL
)
4114 nchars
+= write_info
.bw_len
;
4119 write_info
.bw_len
= bufsize
;
4121 write_info
.bw_flags
= wb_flags
;
4123 fileformat
= get_fileformat_force(buf
, eap
);
4126 for (lnum
= start
; lnum
<= end
; ++lnum
)
4129 * The next while loop is done once for each character written.
4132 ptr
= ml_get_buf(buf
, lnum
, FALSE
) - 1;
4133 while ((c
= *++ptr
) != NUL
)
4136 *s
= NUL
; /* replace newlines with NULs */
4137 else if (c
== CAR
&& fileformat
== EOL_MAC
)
4138 *s
= NL
; /* Mac: replace CRs with NLs */
4142 if (++len
!= bufsize
)
4144 if (buf_write_bytes(&write_info
) == FAIL
)
4146 end
= 0; /* write error: break loop */
4153 /* write failed or last line has no EOL: stop here */
4157 && (lnum
== write_no_eol_lnum
4158 || (lnum
== buf
->b_ml
.ml_line_count
&& !buf
->b_p_eol
))))
4160 ++lnum
; /* written the line, count it */
4164 if (fileformat
== EOL_UNIX
)
4168 *s
++ = CAR
; /* EOL_MAC or EOL_DOS: write CR */
4169 if (fileformat
== EOL_DOS
) /* write CR-NL */
4171 if (++len
== bufsize
)
4173 if (buf_write_bytes(&write_info
) == FAIL
)
4175 end
= 0; /* write error: break loop */
4185 if (++len
== bufsize
&& end
)
4187 if (buf_write_bytes(&write_info
) == FAIL
)
4189 end
= 0; /* write error: break loop */
4199 end
= 0; /* Interrupted, break loop */
4205 * On VMS there is a problem: newlines get added when writing blocks
4206 * at a time. Fix it by writing a line at a time.
4207 * This is much slower!
4208 * Explanation: VAX/DECC RTL insists that records in some RMS
4209 * structures end with a newline (carriage return) character, and if
4210 * they don't it adds one.
4211 * With other RMS structures it works perfect without this fix.
4213 if ((buf
->b_fab_rat
& (FAB$M_FTN
| FAB$M_CR
)) != 0)
4217 buf
->b_fab_mrs
= (buf
->b_fab_mrs
== 0
4218 ? MIN(4096, bufsize
)
4219 : MIN(buf
->b_fab_mrs
, bufsize
));
4224 write_info
.bw_len
= MIN(b2write
, buf
->b_fab_mrs
);
4225 if (buf_write_bytes(&write_info
) == FAIL
)
4230 b2write
-= MIN(b2write
, buf
->b_fab_mrs
);
4232 write_info
.bw_len
= bufsize
;
4239 if (len
> 0 && end
> 0)
4241 write_info
.bw_len
= len
;
4242 if (buf_write_bytes(&write_info
) == FAIL
)
4243 end
= 0; /* write error */
4247 #if defined(UNIX) && defined(HAVE_FSYNC)
4248 /* On many journalling file systems there is a bug that causes both the
4249 * original and the backup file to be lost when halting the system right
4250 * after writing the file. That's because only the meta-data is
4251 * journalled. Syncing the file slows down the system, but assures it has
4252 * been written to disk and we don't lose it.
4253 * For a device do try the fsync() but don't complain if it does not work
4254 * (could be a pipe).
4255 * If the 'fsync' option is FALSE, don't fsync(). Useful for laptops. */
4256 if (p_fs
&& fsync(fd
) != 0 && !device
)
4258 errmsg
= (char_u
*)_("E667: Fsync failed");
4264 /* When creating a new file, set its owner/group to that of the original
4265 * file. Get the new device and inode number. */
4266 if (backup
!= NULL
&& !backup_copy
)
4271 /* don't change the owner when it's already OK, some systems remove
4272 * permission or ACL stuff */
4273 if (mch_stat((char *)wfname
, &st
) < 0
4274 || st
.st_uid
!= st_old
.st_uid
4275 || st
.st_gid
!= st_old
.st_gid
)
4277 fchown(fd
, st_old
.st_uid
, st_old
.st_gid
);
4278 if (perm
>= 0) /* set permission again, may have changed */
4279 (void)mch_setperm(wfname
, perm
);
4284 else if (buf
->b_dev
< 0)
4285 /* Set the inode when creating a new file. */
4291 errmsg
= (char_u
*)_("E512: Close failed");
4297 perm
&= ~0200; /* reset 'w' bit for security reasons */
4299 if (perm
>= 0) /* set perm. of new file same as old file */
4300 (void)mch_setperm(wfname
, perm
);
4302 if (!append
&& !filtering
)
4303 /* Set the filetype after writing the file. */
4304 mch_set_filetype(wfname
, buf
->b_p_oft
);
4307 /* Probably need to set the ACL before changing the user (can't set the
4308 * ACL on a file the user doesn't own). */
4310 mch_set_acl(wfname
, acl
);
4314 #if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
4315 if (wfname
!= fname
)
4318 * The file was written to a temp file, now it needs to be converted
4319 * with 'charconvert' to (overwrite) the output file.
4323 if (eval_charconvert(enc_utf8
? (char_u
*)"utf-8" : p_enc
, fenc
,
4324 wfname
, fname
) == FAIL
)
4326 write_info
.bw_conv_error
= TRUE
;
4340 if (write_info
.bw_conv_error
)
4341 errmsg
= (char_u
*)_("E513: write error, conversion failed (make 'fenc' empty to override)");
4345 errmsg
= (char_u
*)_(e_interr
);
4347 errmsg
= (char_u
*)_("E514: write error (file system full?)");
4351 * If we have a backup file, try to put it in place of the new file,
4352 * because the new file is probably corrupt. This avoids loosing the
4353 * original file when trying to make a backup when writing the file a
4355 * When "backup_copy" is set we need to copy the backup over the new
4356 * file. Otherwise rename the backup file.
4357 * If this is OK, don't give the extra warning message.
4363 /* This may take a while, if we were interrupted let the user
4364 * know we got the message. */
4370 if ((fd
= mch_open((char *)backup
, O_RDONLY
| O_EXTRA
, 0)) >= 0)
4372 if ((write_info
.bw_fd
= mch_open((char *)fname
,
4373 O_WRONLY
| O_CREAT
| O_TRUNC
| O_EXTRA
,
4376 /* copy the file. */
4377 write_info
.bw_buf
= smallbuf
;
4379 write_info
.bw_flags
= FIO_NOCONVERT
;
4381 while ((write_info
.bw_len
= vim_read(fd
, smallbuf
,
4383 if (buf_write_bytes(&write_info
) == FAIL
)
4386 if (close(write_info
.bw_fd
) >= 0
4387 && write_info
.bw_len
== 0)
4388 end
= 1; /* success */
4390 close(fd
); /* ignore errors for closing read file */
4395 if (vim_rename(backup
, fname
) == 0)
4402 lnum
-= start
; /* compute number of written lines */
4403 --no_wait_return
; /* may wait for return now */
4405 #if !(defined(UNIX) || defined(VMS))
4406 fname
= sfname
; /* use shortname now, for the messages */
4410 msg_add_fname(buf
, fname
); /* put fname in IObuff with quotes */
4413 if (write_info
.bw_conv_error
)
4415 STRCAT(IObuff
, _(" CONVERSION ERROR"));
4418 else if (notconverted
)
4420 STRCAT(IObuff
, _("[NOT converted]"));
4425 STRCAT(IObuff
, _("[converted]"));
4431 STRCAT(IObuff
, _("[Device]"));
4436 STRCAT(IObuff
, shortmess(SHM_NEW
) ? _("[New]") : _("[New File]"));
4444 /* may add [unix/dos/mac] */
4445 if (msg_add_fileformat(fileformat
))
4448 if (wb_flags
& FIO_ENCRYPTED
)
4450 STRCAT(IObuff
, _("[crypted]"));
4454 msg_add_lines(c
, (long)lnum
, nchars
); /* add line/char count */
4455 if (!shortmess(SHM_WRITE
))
4458 STRCAT(IObuff
, shortmess(SHM_WRI
) ? _(" [a]") : _(" appended"));
4460 STRCAT(IObuff
, shortmess(SHM_WRI
) ? _(" [w]") : _(" written"));
4463 set_keep_msg(msg_trunc_attr(IObuff
, FALSE
, 0), 0);
4466 /* When written everything correctly: reset 'modified'. Unless not
4467 * writing to the original file and '+' is not in 'cpoptions'. */
4468 if (reset_changed
&& whole
&& !append
4470 && !write_info
.bw_conv_error
4472 && (overwriting
|| vim_strchr(p_cpo
, CPO_PLUS
) != NULL
)
4475 unchanged(buf
, TRUE
);
4480 * If written to the current file, update the timestamp of the swap file
4481 * and reset the BF_WRITE_MASK flags. Also sets buf->b_mtime.
4487 buf
->b_flags
&= ~BF_NEW
;
4489 buf
->b_flags
&= ~BF_WRITE_MASK
;
4493 * If we kept a backup until now, and we are in patch mode, then we make
4494 * the backup file our 'original' file.
4496 if (*p_pm
&& dobackup
)
4498 char *org
= (char *)buf_modname(
4502 (buf
->b_p_sn
|| buf
->b_shortname
),
4504 fname
, p_pm
, FALSE
);
4511 * If the original file does not exist yet
4512 * the current backup file becomes the original file
4515 EMSG(_("E205: Patchmode: can't save original file"));
4516 else if (mch_stat(org
, &st
) < 0)
4518 vim_rename(backup
, (char_u
*)org
);
4519 vim_free(backup
); /* don't delete the file */
4522 set_file_time((char_u
*)org
, st_old
.st_atime
, st_old
.st_mtime
);
4527 * If there is no backup file, remember that a (new) file was
4535 || (empty_fd
= mch_open(org
,
4536 O_CREAT
| O_EXTRA
| O_EXCL
| O_NOFOLLOW
,
4537 perm
< 0 ? 0666 : (perm
& 0777))) < 0)
4538 EMSG(_("E206: patchmode: can't touch empty original file"));
4544 mch_setperm((char_u
*)org
, mch_getperm(fname
) & 0777);
4550 * Remove the backup unless 'backup' option is set
4552 if (!p_bk
&& backup
!= NULL
&& mch_remove(backup
) != 0)
4553 EMSG(_("E207: Can't delete backup file"));
4555 #ifdef FEAT_SUN_WORKSHOP
4556 if (usingSunWorkShop
)
4557 workshop_file_saved((char *) ffname
);
4563 * Finish up. We get here either after failure or success.
4566 --no_wait_return
; /* may wait for return now */
4569 /* Done saving, we accept changed buffer warnings again */
4570 buf
->b_saving
= FALSE
;
4573 if (buffer
!= smallbuf
)
4576 vim_free(fenc_tofree
);
4577 vim_free(write_info
.bw_conv_buf
);
4579 if (write_info
.bw_iconv_fd
!= (iconv_t
)-1)
4581 iconv_close(write_info
.bw_iconv_fd
);
4582 write_info
.bw_iconv_fd
= (iconv_t
)-1;
4592 int numlen
= errnum
!= NULL
? (int)STRLEN(errnum
) : 0;
4594 attr
= hl_attr(HLF_E
); /* set highlight for error messages */
4601 ); /* put file name in IObuff with quotes */
4602 if (STRLEN(IObuff
) + STRLEN(errmsg
) + numlen
>= IOSIZE
)
4603 IObuff
[IOSIZE
- STRLEN(errmsg
) - numlen
- 1] = NUL
;
4604 /* If the error message has the form "is ...", put the error number in
4605 * front of the file name. */
4608 mch_memmove(IObuff
+ numlen
, IObuff
, STRLEN(IObuff
) + 1);
4609 mch_memmove(IObuff
, errnum
, (size_t)numlen
);
4611 STRCAT(IObuff
, errmsg
);
4617 MSG_PUTS_ATTR(_("\nWARNING: Original file may be lost or damaged\n"),
4619 MSG_PUTS_ATTR(_("don't quit the editor until the file is successfully written!"),
4622 /* Update the timestamp to avoid an "overwrite changed file"
4623 * prompt when writing again. */
4624 if (mch_stat((char *)fname
, &st_old
) >= 0)
4626 buf_store_time(buf
, &st_old
, fname
);
4627 buf
->b_mtime_read
= buf
->b_mtime
;
4631 msg_scroll
= msg_save
;
4635 if (!should_abort(retval
))
4642 write_no_eol_lnum
= 0; /* in case it was set by the previous read */
4645 * Apply POST autocommands.
4646 * Careful: The autocommands may call buf_write() recursively!
4648 aucmd_prepbuf(&aco
, buf
);
4651 apply_autocmds_exarg(EVENT_FILEAPPENDPOST
, fname
, fname
,
4652 FALSE
, curbuf
, eap
);
4654 apply_autocmds_exarg(EVENT_FILTERWRITEPOST
, NULL
, fname
,
4655 FALSE
, curbuf
, eap
);
4656 else if (reset_changed
&& whole
)
4657 apply_autocmds_exarg(EVENT_BUFWRITEPOST
, fname
, fname
,
4658 FALSE
, curbuf
, eap
);
4660 apply_autocmds_exarg(EVENT_FILEWRITEPOST
, fname
, fname
,
4661 FALSE
, curbuf
, eap
);
4663 /* restore curwin/curbuf and a few other things */
4664 aucmd_restbuf(&aco
);
4667 if (aborting()) /* autocmds may abort script processing */
4673 got_int
|= prev_got_int
;
4675 #ifdef MACOS_CLASSIC /* TODO: Is it need for MACOS_X? (Dany) */
4676 /* Update machine specific information. */
4677 mch_post_buffer_write(buf
);
4683 * Set the name of the current buffer. Use when the buffer doesn't have a
4684 * name and a ":r" or ":w" command with a file name is used.
4687 set_rw_fname(fname
, sfname
)
4692 /* It's like the unnamed buffer is deleted.... */
4694 apply_autocmds(EVENT_BUFDELETE
, NULL
, NULL
, FALSE
, curbuf
);
4695 apply_autocmds(EVENT_BUFWIPEOUT
, NULL
, NULL
, FALSE
, curbuf
);
4697 if (aborting()) /* autocmds may abort script processing */
4702 if (setfname(curbuf
, fname
, sfname
, FALSE
) == OK
)
4703 curbuf
->b_flags
|= BF_NOTEDITED
;
4706 /* ....and a new named one is created */
4707 apply_autocmds(EVENT_BUFNEW
, NULL
, NULL
, FALSE
, curbuf
);
4709 apply_autocmds(EVENT_BUFADD
, NULL
, NULL
, FALSE
, curbuf
);
4711 if (aborting()) /* autocmds may abort script processing */
4715 /* Do filetype detection now if 'filetype' is empty. */
4716 if (*curbuf
->b_p_ft
== NUL
)
4718 if (au_has_group((char_u
*)"filetypedetect"))
4719 (void)do_doautocmd((char_u
*)"filetypedetect BufRead", FALSE
);
4728 * Put file name into IObuff with quotes.
4731 msg_add_fname(buf
, fname
)
4736 fname
= (char_u
*)"-stdin-";
4737 home_replace(buf
, fname
, IObuff
+ 1, IOSIZE
- 4, TRUE
);
4739 STRCAT(IObuff
, "\" ");
4743 * Append message for text mode to IObuff.
4744 * Return TRUE if something appended.
4747 msg_add_fileformat(eol_type
)
4751 if (eol_type
== EOL_DOS
)
4753 STRCAT(IObuff
, shortmess(SHM_TEXT
) ? _("[dos]") : _("[dos format]"));
4758 if (eol_type
== EOL_MAC
)
4760 STRCAT(IObuff
, shortmess(SHM_TEXT
) ? _("[mac]") : _("[mac format]"));
4764 #if defined(USE_CRNL) || defined(USE_CR)
4765 if (eol_type
== EOL_UNIX
)
4767 STRCAT(IObuff
, shortmess(SHM_TEXT
) ? _("[unix]") : _("[unix format]"));
4775 * Append line and character count to IObuff.
4778 msg_add_lines(insert_space
, lnum
, nchars
)
4785 p
= IObuff
+ STRLEN(IObuff
);
4789 if (shortmess(SHM_LINES
))
4790 sprintf((char *)p
, "%ldL, %ldC", lnum
, nchars
);
4794 STRCPY(p
, _("1 line, "));
4796 sprintf((char *)p
, _("%ld lines, "), lnum
);
4799 STRCPY(p
, _("1 character"));
4801 sprintf((char *)p
, _("%ld characters"), nchars
);
4806 * Append message for missing line separator to IObuff.
4811 STRCAT(IObuff
, shortmess(SHM_LAST
) ? _("[noeol]") : _("[Incomplete last line]"));
4815 * Check modification time of file, before writing to it.
4816 * The size isn't checked, because using a tool like "gzip" takes care of
4817 * using the same timestamp but can't set the size.
4820 check_mtime(buf
, st
)
4824 if (buf
->b_mtime_read
!= 0
4825 && time_differs((long)st
->st_mtime
, buf
->b_mtime_read
))
4827 msg_scroll
= TRUE
; /* don't overwrite messages here */
4828 msg_silent
= 0; /* must give this prompt */
4829 /* don't use emsg() here, don't want to flush the buffers */
4830 MSG_ATTR(_("WARNING: The file has been changed since reading it!!!"),
4832 if (ask_yesno((char_u
*)_("Do you really want to write to it"),
4835 msg_scroll
= FALSE
; /* always overwrite the file message now */
4841 time_differs(t1
, t2
)
4844 #if defined(__linux__) || defined(MSDOS) || defined(MSWIN)
4845 /* On a FAT filesystem, esp. under Linux, there are only 5 bits to store
4846 * the seconds. Since the roundoff is done when flushing the inode, the
4847 * time may change unexpectedly by one second!!! */
4848 return (t1
- t2
> 1 || t2
- t1
> 1);
4855 * Call write() to write a number of bytes to the file.
4856 * Also handles encryption and 'encoding' conversion.
4858 * Return FAIL for failure, OK otherwise.
4865 char_u
*buf
= ip
->bw_buf
; /* data to write */
4866 int len
= ip
->bw_len
; /* length of data */
4868 int flags
= ip
->bw_flags
; /* extra flags */
4873 * Skip conversion when writing the crypt magic number or the BOM.
4875 if (!(flags
& FIO_NOCONVERT
))
4881 if (flags
& FIO_UTF8
)
4884 * Convert latin1 in the buffer to UTF-8 in the file.
4886 p
= ip
->bw_conv_buf
; /* translate to buffer */
4887 for (wlen
= 0; wlen
< len
; ++wlen
)
4888 p
+= utf_char2bytes(buf
[wlen
], p
);
4889 buf
= ip
->bw_conv_buf
;
4890 len
= (int)(p
- ip
->bw_conv_buf
);
4892 else if (flags
& (FIO_UCS4
| FIO_UTF16
| FIO_UCS2
| FIO_LATIN1
))
4895 * Convert UTF-8 bytes in the buffer to UCS-2, UCS-4, UTF-16 or
4896 * Latin1 chars in the file.
4898 if (flags
& FIO_LATIN1
)
4899 p
= buf
; /* translate in-place (can only get shorter) */
4901 p
= ip
->bw_conv_buf
; /* translate to buffer */
4902 for (wlen
= 0; wlen
< len
; wlen
+= n
)
4904 if (wlen
== 0 && ip
->bw_restlen
!= 0)
4908 /* Use remainder of previous call. Append the start of
4909 * buf[] to get a full sequence. Might still be too
4911 l
= CONV_RESTLEN
- ip
->bw_restlen
;
4914 mch_memmove(ip
->bw_rest
+ ip
->bw_restlen
, buf
, (size_t)l
);
4915 n
= utf_ptr2len_len(ip
->bw_rest
, ip
->bw_restlen
+ l
);
4916 if (n
> ip
->bw_restlen
+ len
)
4918 /* We have an incomplete byte sequence at the end to
4919 * be written. We can't convert it without the
4920 * remaining bytes. Keep them for the next call. */
4921 if (ip
->bw_restlen
+ len
> CONV_RESTLEN
)
4923 ip
->bw_restlen
+= len
;
4927 c
= utf_ptr2char(ip
->bw_rest
);
4930 if (n
>= ip
->bw_restlen
)
4932 n
-= ip
->bw_restlen
;
4937 ip
->bw_restlen
-= n
;
4938 mch_memmove(ip
->bw_rest
, ip
->bw_rest
+ n
,
4939 (size_t)ip
->bw_restlen
);
4945 n
= utf_ptr2len_len(buf
+ wlen
, len
- wlen
);
4948 /* We have an incomplete byte sequence at the end to
4949 * be written. We can't convert it without the
4950 * remaining bytes. Keep them for the next call. */
4951 if (len
- wlen
> CONV_RESTLEN
)
4953 ip
->bw_restlen
= len
- wlen
;
4954 mch_memmove(ip
->bw_rest
, buf
+ wlen
,
4955 (size_t)ip
->bw_restlen
);
4959 c
= utf_ptr2char(buf
+ wlen
);
4964 ip
->bw_conv_error
|= ucs2bytes(c
, &p
, flags
);
4966 if (flags
& FIO_LATIN1
)
4967 len
= (int)(p
- buf
);
4970 buf
= ip
->bw_conv_buf
;
4971 len
= (int)(p
- ip
->bw_conv_buf
);
4976 else if (flags
& FIO_CODEPAGE
)
4979 * Convert UTF-8 or codepage to UCS-2 and then to MS-Windows
4989 if (ip
->bw_restlen
> 0)
4991 /* Need to concatenate the remainder of the previous call and
4992 * the bytes of the current call. Use the end of the
4993 * conversion buffer for this. */
4994 fromlen
= len
+ ip
->bw_restlen
;
4995 from
= ip
->bw_conv_buf
+ ip
->bw_conv_buflen
- fromlen
;
4996 mch_memmove(from
, ip
->bw_rest
, (size_t)ip
->bw_restlen
);
4997 mch_memmove(from
+ ip
->bw_restlen
, buf
, (size_t)len
);
5005 to
= ip
->bw_conv_buf
;
5008 /* Convert from UTF-8 to UCS-2, to the start of the buffer.
5009 * The buffer has been allocated to be big enough. */
5012 n
= (int)utf_ptr2len_len(from
, (int)fromlen
);
5013 if (n
> (int)fromlen
) /* incomplete byte sequence */
5015 u8c
= utf_ptr2char(from
);
5016 *to
++ = (u8c
& 0xff);
5022 /* Copy remainder to ip->bw_rest[] to be used for the next
5024 if (fromlen
> CONV_RESTLEN
)
5026 /* weird overlong sequence */
5027 ip
->bw_conv_error
= TRUE
;
5030 mch_memmove(ip
->bw_rest
, from
, fromlen
);
5031 ip
->bw_restlen
= (int)fromlen
;
5035 /* Convert from enc_codepage to UCS-2, to the start of the
5036 * buffer. The buffer has been allocated to be big enough. */
5038 needed
= MultiByteToWideChar(enc_codepage
,
5039 MB_ERR_INVALID_CHARS
, (LPCSTR
)from
, (int)fromlen
,
5043 /* When conversion fails there may be a trailing byte. */
5044 needed
= MultiByteToWideChar(enc_codepage
,
5045 MB_ERR_INVALID_CHARS
, (LPCSTR
)from
, (int)fromlen
- 1,
5049 /* Conversion doesn't work. */
5050 ip
->bw_conv_error
= TRUE
;
5053 /* Save the trailing byte for the next call. */
5054 ip
->bw_rest
[0] = from
[fromlen
- 1];
5057 needed
= MultiByteToWideChar(enc_codepage
, MB_ERR_INVALID_CHARS
,
5058 (LPCSTR
)from
, (int)(fromlen
- ip
->bw_restlen
),
5059 (LPWSTR
)to
, needed
);
5062 /* Safety check: Conversion doesn't work. */
5063 ip
->bw_conv_error
= TRUE
;
5069 fromlen
= to
- ip
->bw_conv_buf
;
5071 # ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
5072 if (FIO_GET_CP(flags
) == CP_UTF8
)
5074 /* Convert from UCS-2 to UTF-8, using the remainder of the
5075 * conversion buffer. Fails when out of space. */
5076 for (from
= ip
->bw_conv_buf
; fromlen
> 1; fromlen
-= 2)
5079 u8c
+= (*from
++ << 8);
5080 to
+= utf_char2bytes(u8c
, to
);
5081 if (to
+ 6 >= ip
->bw_conv_buf
+ ip
->bw_conv_buflen
)
5083 ip
->bw_conv_error
= TRUE
;
5087 len
= (int)(to
- buf
);
5092 /* Convert from UCS-2 to the codepage, using the remainder of
5093 * the conversion buffer. If the conversion uses the default
5094 * character "0", the data doesn't fit in this encoding, so
5096 len
= WideCharToMultiByte(FIO_GET_CP(flags
), 0,
5097 (LPCWSTR
)ip
->bw_conv_buf
, (int)fromlen
/ sizeof(WCHAR
),
5098 (LPSTR
)to
, (int)(ip
->bw_conv_buflen
- fromlen
), 0,
5102 ip
->bw_conv_error
= TRUE
;
5109 # ifdef MACOS_CONVERT
5110 else if (flags
& FIO_MACROMAN
)
5113 * Convert UTF-8 or latin1 to Apple MacRoman.
5118 if (ip
->bw_restlen
> 0)
5120 /* Need to concatenate the remainder of the previous call and
5121 * the bytes of the current call. Use the end of the
5122 * conversion buffer for this. */
5123 fromlen
= len
+ ip
->bw_restlen
;
5124 from
= ip
->bw_conv_buf
+ ip
->bw_conv_buflen
- fromlen
;
5125 mch_memmove(from
, ip
->bw_rest
, (size_t)ip
->bw_restlen
);
5126 mch_memmove(from
+ ip
->bw_restlen
, buf
, (size_t)len
);
5134 if (enc2macroman(from
, fromlen
,
5135 ip
->bw_conv_buf
, &len
, ip
->bw_conv_buflen
,
5136 ip
->bw_rest
, &ip
->bw_restlen
) == FAIL
)
5138 ip
->bw_conv_error
= TRUE
;
5141 buf
= ip
->bw_conv_buf
;
5146 if (ip
->bw_iconv_fd
!= (iconv_t
)-1)
5153 /* Convert with iconv(). */
5154 if (ip
->bw_restlen
> 0)
5156 /* Need to concatenate the remainder of the previous call and
5157 * the bytes of the current call. Use the end of the
5158 * conversion buffer for this. */
5159 fromlen
= len
+ ip
->bw_restlen
;
5160 from
= (char *)ip
->bw_conv_buf
+ ip
->bw_conv_buflen
- fromlen
;
5161 mch_memmove((void *)from
, ip
->bw_rest
, (size_t)ip
->bw_restlen
);
5162 mch_memmove((void *)(from
+ ip
->bw_restlen
), buf
, (size_t)len
);
5163 tolen
= ip
->bw_conv_buflen
- fromlen
;
5167 from
= (const char *)buf
;
5169 tolen
= ip
->bw_conv_buflen
;
5171 to
= (char *)ip
->bw_conv_buf
;
5175 size_t save_len
= tolen
;
5177 /* output the initial shift state sequence */
5178 (void)iconv(ip
->bw_iconv_fd
, NULL
, NULL
, &to
, &tolen
);
5180 /* There is a bug in iconv() on Linux (which appears to be
5181 * wide-spread) which sets "to" to NULL and messes up "tolen".
5185 to
= (char *)ip
->bw_conv_buf
;
5188 ip
->bw_first
= FALSE
;
5192 * If iconv() has an error or there is not enough room, fail.
5194 if ((iconv(ip
->bw_iconv_fd
, (void *)&from
, &fromlen
, &to
, &tolen
)
5195 == (size_t)-1 && ICONV_ERRNO
!= ICONV_EINVAL
)
5196 || fromlen
> CONV_RESTLEN
)
5198 ip
->bw_conv_error
= TRUE
;
5202 /* copy remainder to ip->bw_rest[] to be used for the next call. */
5204 mch_memmove(ip
->bw_rest
, (void *)from
, fromlen
);
5205 ip
->bw_restlen
= (int)fromlen
;
5207 buf
= ip
->bw_conv_buf
;
5208 len
= (int)((char_u
*)to
- ip
->bw_conv_buf
);
5212 #endif /* FEAT_MBYTE */
5215 if (flags
& FIO_ENCRYPTED
) /* encrypt the data */
5219 for (i
= 0; i
< len
; i
++)
5222 buf
[i
] = ZENCODE(ztemp
, t
);
5227 /* Repeat the write(), it may be interrupted by a signal. */
5230 wlen
= vim_write(ip
->bw_fd
, buf
, len
);
5231 if (wlen
<= 0) /* error! */
5241 * Convert a Unicode character to bytes.
5244 ucs2bytes(c
, pp
, flags
)
5245 unsigned c
; /* in: character */
5246 char_u
**pp
; /* in/out: pointer to result */
5247 int flags
; /* FIO_ flags */
5254 if (flags
& FIO_UCS4
)
5256 if (flags
& FIO_ENDIAN_L
)
5271 else if (flags
& (FIO_UCS2
| FIO_UTF16
))
5275 if (flags
& FIO_UTF16
)
5277 /* Make two words, ten bits of the character in each. First
5278 * word is 0xd800 - 0xdbff, second one 0xdc00 - 0xdfff */
5282 cc
= ((c
>> 10) & 0x3ff) + 0xd800;
5283 if (flags
& FIO_ENDIAN_L
)
5286 *p
++ = ((unsigned)cc
>> 8);
5290 *p
++ = ((unsigned)cc
>> 8);
5293 c
= (c
& 0x3ff) + 0xdc00;
5298 if (flags
& FIO_ENDIAN_L
)
5325 * Return TRUE if "a" and "b" are the same 'encoding'.
5326 * Ignores difference between "ansi" and "latin1", "ucs-4" and "ucs-4be", etc.
5335 if (STRCMP(a
, b
) == 0)
5337 f
= get_fio_flags(a
);
5338 return (f
!= 0 && get_fio_flags(b
) == f
);
5342 * Check "ptr" for a unicode encoding and return the FIO_ flags needed for the
5343 * internal conversion.
5344 * if "ptr" is an empty string, use 'encoding'.
5355 prop
= enc_canon_props(ptr
);
5356 if (prop
& ENC_UNICODE
)
5358 if (prop
& ENC_2BYTE
)
5360 if (prop
& ENC_ENDIAN_L
)
5361 return FIO_UCS2
| FIO_ENDIAN_L
;
5364 if (prop
& ENC_4BYTE
)
5366 if (prop
& ENC_ENDIAN_L
)
5367 return FIO_UCS4
| FIO_ENDIAN_L
;
5370 if (prop
& ENC_2WORD
)
5372 if (prop
& ENC_ENDIAN_L
)
5373 return FIO_UTF16
| FIO_ENDIAN_L
;
5378 if (prop
& ENC_LATIN1
)
5380 /* must be ENC_DBCS, requires iconv() */
5386 * Check "ptr" for a MS-Windows codepage name and return the FIO_ flags needed
5387 * for the conversion MS-Windows can do for us. Also accept "utf-8".
5388 * Used for conversion between 'encoding' and 'fileencoding'.
5391 get_win_fio_flags(ptr
)
5396 /* Cannot do this when 'encoding' is not utf-8 and not a codepage. */
5397 if (!enc_utf8
&& enc_codepage
<= 0)
5400 cp
= encname2codepage(ptr
);
5403 # ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
5404 if (STRCMP(ptr
, "utf-8") == 0)
5410 return FIO_PUT_CP(cp
) | FIO_CODEPAGE
;
5416 * Check "ptr" for a Carbon supported encoding and return the FIO_ flags
5417 * needed for the internal conversion to/from utf-8 or latin1.
5420 get_mac_fio_flags(ptr
)
5423 if ((enc_utf8
|| STRCMP(p_enc
, "latin1") == 0)
5424 && (enc_canon_props(ptr
) & ENC_MACROMAN
))
5425 return FIO_MACROMAN
;
5431 * Check for a Unicode BOM (Byte Order Mark) at the start of p[size].
5432 * "size" must be at least 2.
5433 * Return the name of the encoding and set "*lenp" to the length.
5434 * Returns NULL when no BOM found.
5437 check_for_bom(p
, size
, lenp
, flags
)
5446 if (p
[0] == 0xef && p
[1] == 0xbb && size
>= 3 && p
[2] == 0xbf
5447 && (flags
== FIO_ALL
|| flags
== 0))
5449 name
= "utf-8"; /* EF BB BF */
5452 else if (p
[0] == 0xff && p
[1] == 0xfe)
5454 if (size
>= 4 && p
[2] == 0 && p
[3] == 0
5455 && (flags
== FIO_ALL
|| flags
== (FIO_UCS4
| FIO_ENDIAN_L
)))
5457 name
= "ucs-4le"; /* FF FE 00 00 */
5460 else if (flags
== FIO_ALL
|| flags
== (FIO_UCS2
| FIO_ENDIAN_L
))
5461 name
= "ucs-2le"; /* FF FE */
5462 else if (flags
== (FIO_UTF16
| FIO_ENDIAN_L
))
5463 name
= "utf-16le"; /* FF FE */
5465 else if (p
[0] == 0xfe && p
[1] == 0xff
5466 && (flags
== FIO_ALL
|| flags
== FIO_UCS2
|| flags
== FIO_UTF16
))
5468 if (flags
== FIO_UTF16
)
5469 name
= "utf-16"; /* FE FF */
5471 name
= "ucs-2"; /* FE FF */
5473 else if (size
>= 4 && p
[0] == 0 && p
[1] == 0 && p
[2] == 0xfe
5474 && p
[3] == 0xff && (flags
== FIO_ALL
|| flags
== FIO_UCS4
))
5476 name
= "ucs-4"; /* 00 00 FE FF */
5481 return (char_u
*)name
;
5485 * Generate a BOM in "buf[4]" for encoding "name".
5486 * Return the length of the BOM (zero when no BOM).
5496 flags
= get_fio_flags(name
);
5498 /* Can't put a BOM in a non-Unicode file. */
5499 if (flags
== FIO_LATIN1
|| flags
== 0)
5502 if (flags
== FIO_UTF8
) /* UTF-8 */
5510 (void)ucs2bytes(0xfeff, &p
, flags
);
5511 return (int)(p
- buf
);
5516 * Try to find a shortname by comparing the fullname with the current
5518 * Returns NULL if not shorter name possible, pointer into "full_path"
5522 shorten_fname(full_path
, dir_name
)
5529 if (full_path
== NULL
)
5531 len
= (int)STRLEN(dir_name
);
5532 if (fnamencmp(dir_name
, full_path
, len
) == 0)
5534 p
= full_path
+ len
;
5535 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
5537 * MSDOS: when a file is in the root directory, dir_name will end in a
5538 * slash, since C: by itself does not define a specific dir. In this
5539 * case p may already be correct. <negri>
5541 if (!((len
> 2) && (*(p
- 2) == ':')))
5544 if (vim_ispathsep(*p
))
5546 #ifndef VMS /* the path separator is always part of the path */
5552 #if defined(MSDOS) || defined(MSWIN) || defined(OS2)
5554 * When using a file in the current drive, remove the drive name:
5555 * "A:\dir\file" -> "\dir\file". This helps when moving a session file on
5556 * a floppy from "A:\dir" to "B:\dir".
5559 && TOUPPER_LOC(full_path
[0]) == TOUPPER_LOC(dir_name
[0])
5560 && full_path
[1] == ':'
5561 && vim_ispathsep(full_path
[2]))
5570 * Shorten filenames for all buffers.
5571 * When "force" is TRUE: Use full path from now on for files currently being
5572 * edited, both for file name and swap file name. Try to shorten the file
5573 * names a bit, if safe to do so.
5574 * When "force" is FALSE: Only try to shorten absolute file names.
5575 * For buffers that have buftype "nofile" or "scratch": never change the file
5579 shorten_fnames(force
)
5582 char_u dirname
[MAXPATHL
];
5586 mch_dirname(dirname
, MAXPATHL
);
5587 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
5589 if (buf
->b_fname
!= NULL
5590 #ifdef FEAT_QUICKFIX
5593 && !path_with_url(buf
->b_fname
)
5595 || buf
->b_sfname
== NULL
5596 || mch_isFullName(buf
->b_sfname
)))
5598 vim_free(buf
->b_sfname
);
5599 buf
->b_sfname
= NULL
;
5600 p
= shorten_fname(buf
->b_ffname
, dirname
);
5603 buf
->b_sfname
= vim_strsave(p
);
5604 buf
->b_fname
= buf
->b_sfname
;
5606 if (p
== NULL
|| buf
->b_fname
== NULL
)
5607 buf
->b_fname
= buf
->b_ffname
;
5610 /* Always make the swap file name a full path, a "nofile" buffer may
5611 * also have a swap file. */
5612 mf_fullname(buf
->b_ml
.ml_mfp
);
5615 status_redraw_all();
5616 redraw_tabline
= TRUE
;
5620 #if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \
5621 || defined(FEAT_GUI_MSWIN) \
5622 || defined(FEAT_GUI_MAC) \
5625 * Shorten all filenames in "fnames[count]" by current directory.
5628 shorten_filenames(fnames
, count
)
5633 char_u dirname
[MAXPATHL
];
5636 if (fnames
== NULL
|| count
< 1)
5638 mch_dirname(dirname
, sizeof(dirname
));
5639 for (i
= 0; i
< count
; ++i
)
5641 if ((p
= shorten_fname(fnames
[i
], dirname
)) != NULL
)
5643 /* shorten_fname() returns pointer in given "fnames[i]". If free
5644 * "fnames[i]" first, "p" becomes invalid. So we need to copy
5645 * "p" first then free fnames[i]. */
5647 vim_free(fnames
[i
]);
5655 * add extention to file name - change path/fo.o.h to path/fo.o.h.ext or
5656 * fo_o_h.ext for MSDOS or when shortname option set.
5658 * Assumed that fname is a valid name found in the filesystem we assure that
5659 * the return value is a different name and ends in 'ext'.
5660 * "ext" MUST be at most 4 characters long if it starts with a dot, 3
5661 * characters otherwise.
5662 * Space for the returned name is allocated, must be freed later.
5663 * Returns NULL when out of memory.
5666 modname(fname
, ext
, prepend_dot
)
5667 char_u
*fname
, *ext
;
5668 int prepend_dot
; /* may prepend a '.' to file name */
5674 (curbuf
->b_p_sn
|| curbuf
->b_shortname
),
5676 fname
, ext
, prepend_dot
);
5680 buf_modname(shortname
, fname
, ext
, prepend_dot
)
5681 int shortname
; /* use 8.3 file name */
5682 char_u
*fname
, *ext
;
5683 int prepend_dot
; /* may prepend a '.' to file name */
5689 int fnamelen
, extlen
;
5691 extlen
= (int)STRLEN(ext
);
5694 * If there is no file name we must get the name of the current directory
5695 * (we need the full path in case :cd is used).
5697 if (fname
== NULL
|| *fname
== NUL
)
5699 retval
= alloc((unsigned)(MAXPATHL
+ extlen
+ 3));
5702 if (mch_dirname(retval
, MAXPATHL
) == FAIL
||
5703 (fnamelen
= (int)STRLEN(retval
)) == 0)
5708 if (!after_pathsep(retval
, retval
+ fnamelen
))
5710 retval
[fnamelen
++] = PATHSEP
;
5711 retval
[fnamelen
] = NUL
;
5714 prepend_dot
= FALSE
; /* nothing to prepend a dot to */
5719 fnamelen
= (int)STRLEN(fname
);
5720 retval
= alloc((unsigned)(fnamelen
+ extlen
+ 3));
5723 STRCPY(retval
, fname
);
5725 vms_remove_version(retval
); /* we do not need versions here */
5730 * search backwards until we hit a '/', '\' or ':' replacing all '.'
5731 * by '_' for MSDOS or when shortname option set and ext starts with a dot.
5732 * Then truncate what is after the '/', '\' or ':' to 8 characters for
5733 * MSDOS and 26 characters for AMIGA, a lot more for UNIX.
5735 for (ptr
= retval
+ fnamelen
; ptr
> retval
; mb_ptr_back(retval
, ptr
))
5739 # ifdef USE_LONG_FNAME
5740 && (!USE_LONG_FNAME
|| shortname
)
5742 # ifndef SHORT_FNAME
5747 if (*ptr
== '.') /* replace '.' by '_' */
5750 if (vim_ispathsep(*ptr
))
5757 /* the file name has at most BASENAMELEN characters. */
5759 if (STRLEN(ptr
) > (unsigned)BASENAMELEN
)
5760 ptr
[BASENAMELEN
] = '\0';
5763 s
= ptr
+ STRLEN(ptr
);
5766 * For 8.3 file names we may have to reduce the length.
5768 #ifdef USE_LONG_FNAME
5769 if (!USE_LONG_FNAME
|| shortname
)
5771 # ifndef SHORT_FNAME
5777 * If there is no file name, or the file name ends in '/', and the
5778 * extension starts with '.', put a '_' before the dot, because just
5779 * ".ext" is invalid.
5781 if (fname
== NULL
|| *fname
== NUL
5782 || vim_ispathsep(fname
[STRLEN(fname
) - 1]))
5792 * If the extension starts with '.', truncate the base name at 8
5796 /* We normally use '/', but swap files are '_' */
5797 else if (*ext
== '/' || *ext
== '_')
5799 else if (*ext
== '.')
5802 if (s
- ptr
> (size_t)8)
5809 * If the extension doesn't start with '.', and the file name
5810 * doesn't have an extension yet, append a '.'
5813 else if ((e
= vim_strchr(ptr
, '/')) == NULL
)
5816 else if ((e
= vim_strchr(ptr
, '.')) == NULL
)
5820 * If the extension doesn't start with '.', and there already is an
5821 * extension, it may need to be truncated
5823 else if ((int)STRLEN(e
) + extlen
> 4)
5826 #if defined(OS2) || defined(USE_LONG_FNAME) || defined(WIN3264)
5828 * If there is no file name, and the extension starts with '.', put a
5829 * '_' before the dot, because just ".ext" may be invalid if it's on a
5830 * FAT partition, and on HPFS it doesn't matter.
5832 else if ((fname
== NULL
|| *fname
== NUL
) && *ext
== '.')
5837 * Append the extention.
5838 * ext can start with '.' and cannot exceed 3 more characters.
5846 if (prepend_dot
&& !shortname
&& *(e
= gettail(retval
)) !=
5852 #ifdef USE_LONG_FNAME
5857 mch_memmove(e
+ 1, e
, STRLEN(e
) + 1);
5867 * Check that, after appending the extension, the file name is really
5870 if (fname
!= NULL
&& STRCMP(fname
, retval
) == 0)
5872 /* we search for a character that can be replaced by '_' */
5881 if (s
< ptr
) /* fname was "________.<ext>", how tricky! */
5888 * Like fgets(), but if the file line is too long, it is truncated and the
5889 * rest of the line is thrown away. Returns TRUE for end-of-file.
5892 vim_fgets(buf
, size
, fp
)
5898 #define FGETS_SIZE 200
5899 char tbuf
[FGETS_SIZE
];
5901 buf
[size
- 2] = NUL
;
5903 eof
= fgets_cr((char *)buf
, size
, fp
);
5905 eof
= fgets((char *)buf
, size
, fp
);
5907 if (buf
[size
- 2] != NUL
&& buf
[size
- 2] != '\n')
5909 buf
[size
- 1] = NUL
; /* Truncate the line */
5911 /* Now throw away the rest of the line: */
5914 tbuf
[FGETS_SIZE
- 2] = NUL
;
5916 fgets_cr((char *)tbuf
, FGETS_SIZE
, fp
);
5918 fgets((char *)tbuf
, FGETS_SIZE
, fp
);
5920 } while (tbuf
[FGETS_SIZE
- 2] != NUL
&& tbuf
[FGETS_SIZE
- 2] != '\n');
5922 return (eof
== NULL
);
5925 #if defined(USE_CR) || defined(PROTO)
5927 * Like vim_fgets(), but accept any line terminator: CR, CR-LF or LF.
5928 * Returns TRUE for end-of-file.
5929 * Only used for the Mac, because it's much slower than vim_fgets().
5932 tag_fgets(buf
, size
, fp
)
5951 /* Always store a NL for end-of-line. */
5955 if (c
!= '\n') /* Macintosh format: single CR. */
5970 * rename() only works if both files are on the same file system, this
5971 * function will (attempts to?) copy the file across if rename fails -- webb
5972 * Return -1 for failure, 0 for success.
5975 vim_rename(from
, to
)
5982 char *errmsg
= NULL
;
5990 vim_acl_T acl
; /* ACL from original file */
5994 * When the names are identical, there is nothing to do.
5996 if (fnamecmp(from
, to
) == 0)
6000 * Fail if the "from" file doesn't exist. Avoids that "to" is deleted.
6002 if (mch_stat((char *)from
, &st
) < 0)
6006 * Delete the "to" file, this is required on some systems to make the
6007 * mch_rename() work, on other systems it makes sure that we don't have
6008 * two files when the mch_rename() fails.
6013 * With MSDOS-compatible filesystems (crossdos, messydos) it is possible
6014 * that the name of the "to" file is the same as the "from" file, even
6015 * though the names are different. To avoid the chance of accidentally
6016 * deleting the "from" file (horror!) we lock it during the remove.
6018 * When used for making a backup before writing the file: This should not
6019 * happen with ":w", because startscript() should detect this problem and
6020 * set buf->b_shortname, causing modname() to return a correct ".bak" file
6021 * name. This problem does exist with ":w filename", but then the
6022 * original file will be somewhere else so the backup isn't really
6023 * important. If autoscripting is off the rename may fail.
6025 flock
= Lock((UBYTE
*)from
, (long)ACCESS_READ
);
6034 * First try a normal rename, return if it works.
6036 if (mch_rename((char *)from
, (char *)to
) == 0)
6040 * Rename() failed, try copying the file.
6042 perm
= mch_getperm(from
);
6044 /* For systems that support ACL: get the ACL from the original file. */
6045 acl
= mch_get_acl(from
);
6047 fd_in
= mch_open((char *)from
, O_RDONLY
|O_EXTRA
, 0);
6051 /* Create the new file with same permissions as the original. */
6052 fd_out
= mch_open((char *)to
,
6053 O_CREAT
|O_EXCL
|O_WRONLY
|O_EXTRA
|O_NOFOLLOW
, (int)perm
);
6060 buffer
= (char *)alloc(BUFSIZE
);
6068 while ((n
= vim_read(fd_in
, buffer
, BUFSIZE
)) > 0)
6069 if (vim_write(fd_out
, buffer
, n
) != n
)
6071 errmsg
= _("E208: Error writing to \"%s\"");
6077 if (close(fd_out
) < 0)
6078 errmsg
= _("E209: Error closing \"%s\"");
6081 errmsg
= _("E210: Error reading \"%s\"");
6084 #ifndef UNIX /* for Unix mch_open() already set the permission */
6085 mch_setperm(to
, perm
);
6088 mch_set_acl(to
, acl
);
6099 static int already_warned
= FALSE
;
6102 * Check if any not hidden buffer has been changed.
6103 * Postpone the check if there are characters in the stuff buffer, a global
6104 * command is being executed, a mapping is being executed or an autocommand is
6106 * Returns TRUE if some message was written (screen should be redrawn and
6107 * cursor positioned).
6110 check_timestamps(focus
)
6111 int focus
; /* called for GUI focus event */
6117 /* Don't check timestamps while system() or another low-level function may
6118 * cause us to lose and gain focus. */
6119 if (no_check_timestamps
> 0)
6122 /* Avoid doing a check twice. The OK/Reload dialog can cause a focus
6123 * event and we would keep on checking if the file is steadily growing.
6124 * Do check again after typing something. */
6125 if (focus
&& did_check_timestamps
)
6127 need_check_timestamps
= TRUE
;
6131 if (!stuff_empty() || global_busy
|| !typebuf_typed()
6133 || autocmd_busy
|| curbuf_lock
> 0
6136 need_check_timestamps
= TRUE
; /* check later */
6140 did_check_timestamps
= TRUE
;
6141 already_warned
= FALSE
;
6142 for (buf
= firstbuf
; buf
!= NULL
; )
6144 /* Only check buffers in a window. */
6145 if (buf
->b_nwindows
> 0)
6147 n
= buf_check_timestamp(buf
, focus
);
6150 if (n
> 0 && !buf_valid(buf
))
6152 /* Autocommands have removed the buffer, start at the
6153 * first one again. */
6161 need_check_timestamps
= FALSE
;
6162 if (need_wait_return
&& didit
== 2)
6164 /* make sure msg isn't overwritten */
6165 msg_puts((char_u
*)"\n");
6173 * Move all the lines from buffer "frombuf" to buffer "tobuf".
6174 * Return OK or FAIL. When FAIL "tobuf" is incomplete and/or "frombuf" is not
6178 move_lines(frombuf
, tobuf
)
6182 buf_T
*tbuf
= curbuf
;
6187 /* Copy the lines in "frombuf" to "tobuf". */
6189 for (lnum
= 1; lnum
<= frombuf
->b_ml
.ml_line_count
; ++lnum
)
6191 p
= vim_strsave(ml_get_buf(frombuf
, lnum
, FALSE
));
6192 if (p
== NULL
|| ml_append(lnum
- 1, p
, 0, FALSE
) == FAIL
)
6201 /* Delete all the lines in "frombuf". */
6205 for (lnum
= curbuf
->b_ml
.ml_line_count
; lnum
> 0; --lnum
)
6206 if (ml_delete(lnum
, FALSE
) == FAIL
)
6208 /* Oops! We could try putting back the saved lines, but that
6209 * might fail again... */
6220 * Check if buffer "buf" has been changed.
6221 * Also check if the file for a new buffer unexpectedly appeared.
6222 * return 1 if a changed buffer was found.
6223 * return 2 if a message has been displayed.
6224 * return 0 otherwise.
6228 buf_check_timestamp(buf
, focus
)
6230 int focus
; /* called for GUI focus event */
6239 int helpmesg
= FALSE
;
6241 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6242 int can_reload
= FALSE
;
6244 size_t orig_size
= buf
->b_orig_size
;
6245 int orig_mode
= buf
->b_orig_mode
;
6247 int save_mouse_correct
= need_mouse_correct
;
6250 static int busy
= FALSE
;
6256 /* If there is no file name, the buffer is not loaded, 'buftype' is
6257 * set, we are in the middle of a save or being called recursively: ignore
6259 if (buf
->b_ffname
== NULL
6260 || buf
->b_ml
.ml_mfp
== NULL
6261 #if defined(FEAT_QUICKFIX)
6262 || *buf
->b_p_bt
!= NUL
6268 #ifdef FEAT_NETBEANS_INTG
6269 || isNetbeansBuffer(buf
)
6274 if ( !(buf
->b_flags
& BF_NOTEDITED
)
6275 && buf
->b_mtime
!= 0
6276 && ((stat_res
= mch_stat((char *)buf
->b_ffname
, &st
)) < 0
6277 || time_differs((long)st
.st_mtime
, buf
->b_mtime
)
6279 || (int)st
.st_mode
!= buf
->b_orig_mode
6281 || mch_getperm(buf
->b_ffname
) != buf
->b_orig_mode
6287 /* set b_mtime to stop further warnings (e.g., when executing
6288 * FileChangedShell autocmd) */
6292 buf
->b_orig_size
= 0;
6293 buf
->b_orig_mode
= 0;
6296 buf_store_time(buf
, &st
, buf
->b_ffname
);
6298 /* Don't do anything for a directory. Might contain the file
6300 if (mch_isdir(buf
->b_fname
))
6304 * If 'autoread' is set, the buffer has no changes and the file still
6305 * exists, reload the buffer. Use the buffer-local option value if it
6306 * was set, the global option value otherwise.
6308 else if ((buf
->b_p_ar
>= 0 ? buf
->b_p_ar
: p_ar
)
6309 && !bufIsChanged(buf
) && stat_res
>= 0)
6315 else if (bufIsChanged(buf
))
6316 reason
= "conflict";
6317 else if (orig_size
!= buf
->b_orig_size
|| buf_contents_changed(buf
))
6319 else if (orig_mode
!= buf
->b_orig_mode
)
6326 * Only give the warning if there are no FileChangedShell
6328 * Avoid being called recursively by setting "busy".
6332 set_vim_var_string(VV_FCS_REASON
, (char_u
*)reason
, -1);
6333 set_vim_var_string(VV_FCS_CHOICE
, (char_u
*)"", -1);
6335 n
= apply_autocmds(EVENT_FILECHANGEDSHELL
,
6336 buf
->b_fname
, buf
->b_fname
, FALSE
, buf
);
6340 if (!buf_valid(buf
))
6341 EMSG(_("E246: FileChangedShell autocommand deleted buffer"));
6343 s
= get_vim_var_str(VV_FCS_CHOICE
);
6344 if (STRCMP(s
, "reload") == 0 && *reason
!= 'd')
6346 else if (STRCMP(s
, "ask") == 0)
6356 mesg
= _("E211: File \"%s\" no longer available");
6360 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6364 * Check if the file contents really changed to avoid
6365 * giving a warning when only the timestamp was set (e.g.,
6366 * checked out of CVS). Always warn when the buffer was
6369 if (reason
[2] == 'n')
6371 mesg
= _("W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as well");
6372 mesg2
= _("See \":help W12\" for more info.");
6374 else if (reason
[1] == 'h')
6376 mesg
= _("W11: Warning: File \"%s\" has changed since editing started");
6377 mesg2
= _("See \":help W11\" for more info.");
6379 else if (*reason
== 'm')
6381 mesg
= _("W16: Warning: Mode of file \"%s\" has changed since editing started");
6382 mesg2
= _("See \":help W16\" for more info.");
6384 /* Else: only timestamp changed, ignored */
6390 else if ((buf
->b_flags
& BF_NEW
) && !(buf
->b_flags
& BF_NEW_W
)
6391 && vim_fexists(buf
->b_ffname
))
6394 mesg
= _("W13: Warning: File \"%s\" has been created after editing started");
6395 buf
->b_flags
|= BF_NEW_W
;
6396 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6403 path
= home_replace_save(buf
, buf
->b_fname
);
6408 tbuf
= alloc((unsigned)(STRLEN(path
) + STRLEN(mesg
)
6409 + STRLEN(mesg2
) + 2));
6410 sprintf((char *)tbuf
, mesg
, path
);
6411 #if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6417 STRCAT(tbuf
, mesg2
);
6419 if (do_dialog(VIM_WARNING
, (char_u
*)_("Warning"), tbuf
,
6420 (char_u
*)_("&OK\n&Load File"), 1, NULL
) == 2)
6425 if (State
> NORMAL_BUSY
|| (State
& CMDLINE
) || already_warned
)
6430 STRCAT(tbuf
, mesg2
);
6437 # ifdef FEAT_AUTOCMD
6442 msg_puts_attr(tbuf
, hl_attr(HLF_E
) + MSG_HIST
);
6444 msg_puts_attr((char_u
*)mesg2
,
6445 hl_attr(HLF_W
) + MSG_HIST
);
6448 if (emsg_silent
== 0)
6454 /* give the user some time to think about it */
6455 ui_delay(1000L, TRUE
);
6457 /* don't redraw and erase the message */
6458 redraw_cmdline
= FALSE
;
6461 already_warned
= TRUE
;
6470 /* Reload the buffer. */
6471 buf_reload(buf
, orig_mode
);
6475 (void)apply_autocmds(EVENT_FILECHANGEDSHELLPOST
,
6476 buf
->b_fname
, buf
->b_fname
, FALSE
, buf
);
6479 /* restore this in case an autocommand has set it; it would break
6481 need_mouse_correct
= save_mouse_correct
;
6488 * Reload a buffer that is already loaded.
6489 * Used when the file was changed outside of Vim.
6490 * "orig_mode" is buf->b_orig_mode before the need for reloading was detected.
6491 * buf->b_orig_mode may have been reset already.
6494 buf_reload(buf
, orig_mode
)
6500 linenr_T old_topline
;
6501 int old_ro
= buf
->b_p_ro
;
6506 /* set curwin/curbuf for "buf" and save some things */
6507 aucmd_prepbuf(&aco
, buf
);
6509 /* We only want to read the text from the file, not reset the syntax
6510 * highlighting, clear marks, diff status, etc. Force the fileformat
6511 * and encoding to be the same. */
6512 if (prep_exarg(&ea
, buf
) == OK
)
6514 old_cursor
= curwin
->w_cursor
;
6515 old_topline
= curwin
->w_topline
;
6518 * To behave like when a new file is edited (matters for
6519 * BufReadPost autocommands) we first need to delete the current
6520 * buffer contents. But if reading the file fails we should keep
6521 * the old contents. Can't use memory only, the file might be
6522 * too big. Use a hidden buffer to move the buffer contents to.
6528 /* Allocate a buffer without putting it in the buffer list. */
6529 savebuf
= buflist_new(NULL
, NULL
, (linenr_T
)1, BLN_DUMMY
);
6530 if (savebuf
!= NULL
&& buf
== curbuf
)
6532 /* Open the memline. */
6534 curwin
->w_buffer
= savebuf
;
6535 saved
= ml_open(curbuf
);
6537 curwin
->w_buffer
= buf
;
6539 if (savebuf
== NULL
|| saved
== FAIL
|| buf
!= curbuf
6540 || move_lines(buf
, savebuf
) == FAIL
)
6542 EMSG2(_("E462: Could not prepare for reloading \"%s\""),
6550 curbuf
->b_flags
|= BF_CHECK_RO
; /* check for RO again */
6552 keep_filetype
= TRUE
; /* don't detect 'filetype' */
6554 if (readfile(buf
->b_ffname
, buf
->b_fname
, (linenr_T
)0,
6556 (linenr_T
)MAXLNUM
, &ea
, READ_NEW
) == FAIL
)
6558 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
6561 EMSG2(_("E321: Could not reload \"%s\""), buf
->b_fname
);
6562 if (savebuf
!= NULL
&& buf_valid(savebuf
) && buf
== curbuf
)
6564 /* Put the text back from the save buffer. First
6565 * delete any lines that readfile() added. */
6567 if (ml_delete(buf
->b_ml
.ml_line_count
, FALSE
) == FAIL
)
6569 (void)move_lines(savebuf
, buf
);
6572 else if (buf
== curbuf
)
6574 /* Mark the buffer as unmodified and free undo info. */
6575 unchanged(buf
, TRUE
);
6582 if (savebuf
!= NULL
&& buf_valid(savebuf
))
6583 wipe_buffer(savebuf
, FALSE
);
6586 /* Invalidate diff info if necessary. */
6587 diff_invalidate(curbuf
);
6590 /* Restore the topline and cursor position and check it (lines may
6591 * have been removed). */
6592 if (old_topline
> curbuf
->b_ml
.ml_line_count
)
6593 curwin
->w_topline
= curbuf
->b_ml
.ml_line_count
;
6595 curwin
->w_topline
= old_topline
;
6596 curwin
->w_cursor
= old_cursor
;
6600 keep_filetype
= FALSE
;
6606 /* Update folds unless they are defined manually. */
6608 if (wp
->w_buffer
== curwin
->w_buffer
6609 && !foldmethodIsManual(wp
))
6613 /* If the mode didn't change and 'readonly' was set, keep the old
6614 * value; the user probably used the ":view" command. But don't
6615 * reset it, might have had a read error. */
6616 if (orig_mode
== curbuf
->b_orig_mode
)
6617 curbuf
->b_p_ro
|= old_ro
;
6620 /* restore curwin/curbuf and a few other things */
6621 aucmd_restbuf(&aco
);
6622 /* Careful: autocommands may have made "buf" invalid! */
6627 buf_store_time(buf
, st
, fname
)
6632 buf
->b_mtime
= (long)st
->st_mtime
;
6633 buf
->b_orig_size
= (size_t)st
->st_size
;
6635 buf
->b_orig_mode
= (int)st
->st_mode
;
6637 buf
->b_orig_mode
= mch_getperm(fname
);
6642 * Adjust the line with missing eol, used for the next write.
6643 * Used for do_filter(), when the input lines for the filter are deleted.
6646 write_lnum_adjust(offset
)
6649 if (write_no_eol_lnum
!= 0) /* only if there is a missing eol */
6650 write_no_eol_lnum
+= offset
;
6653 #if defined(TEMPDIRNAMES) || defined(PROTO)
6654 static long temp_count
= 0; /* Temp filename counter. */
6657 * Delete the temp directory and all files it contains.
6666 if (vim_tempdir
!= NULL
)
6668 sprintf((char *)NameBuff
, "%s*", vim_tempdir
);
6669 if (gen_expand_wildcards(1, &NameBuff
, &file_count
, &files
,
6670 EW_DIR
|EW_FILE
|EW_SILENT
) == OK
)
6672 for (i
= 0; i
< file_count
; ++i
)
6673 mch_remove(files
[i
]);
6674 FreeWild(file_count
, files
);
6676 gettail(NameBuff
)[-1] = NUL
;
6677 (void)mch_rmdir(NameBuff
);
6679 vim_free(vim_tempdir
);
6686 * vim_tempname(): Return a unique name that can be used for a temp file.
6688 * The temp file is NOT created.
6690 * The returned pointer is to allocated memory.
6691 * The returned pointer is NULL if no valid name was found.
6695 vim_tempname(extra_char
)
6696 int extra_char
; /* character to use in the name instead of '?' */
6699 char_u itmp
[L_tmpnam
]; /* use tmpnam() */
6701 char_u itmp
[TEMPNAMELEN
];
6705 static char *(tempdirs
[]) = {TEMPDIRNAMES
};
6714 * This will create a directory for private use by this instance of Vim.
6715 * This is done once, and the same directory is used for all temp files.
6716 * This method avoids security problems because of symlink attacks et al.
6717 * It's also a bit faster, because we only need to check for an existing
6718 * file when creating the directory and not for each temp file.
6720 if (vim_tempdir
== NULL
)
6723 * Try the entries in TEMPDIRNAMES to create the temp directory.
6725 for (i
= 0; i
< sizeof(tempdirs
) / sizeof(char *); ++i
)
6727 /* expand $TMP, leave room for "/v1100000/999999999" */
6728 expand_env((char_u
*)tempdirs
[i
], itmp
, TEMPNAMELEN
- 20);
6729 if (mch_isdir(itmp
)) /* directory exists */
6732 /* If $TMP contains a forward slash (perhaps using bash or
6733 * tcsh), don't add a backslash, use a forward slash!
6734 * Adding 2 backslashes didn't work. */
6735 if (vim_strchr(itmp
, '/') != NULL
)
6741 /* Get an arbitrary number of up to 6 digits. When it's
6742 * unlikely that it already exists it will be faster,
6743 * otherwise it doesn't matter. The use of mkdir() avoids any
6744 * security problems because of the predictable number. */
6745 nr
= (mch_get_pid() + (long)time(NULL
)) % 1000000L;
6747 /* Try up to 10000 different values until we find a name that
6749 for (off
= 0; off
< 10000L; ++off
)
6752 #if defined(UNIX) || defined(VMS)
6756 sprintf((char *)itmp
+ STRLEN(itmp
), "v%ld", nr
+ off
);
6758 /* If mkdir() does not set errno to EEXIST, check for
6759 * existing file here. There is a race condition then,
6760 * although it's fail-safe. */
6761 if (mch_stat((char *)itmp
, &st
) >= 0)
6764 #if defined(UNIX) || defined(VMS)
6765 /* Make sure the umask doesn't remove the executable bit.
6766 * "repl" has been reported to use "177". */
6767 umask_save
= umask(077);
6769 r
= vim_mkdir(itmp
, 0700);
6770 #if defined(UNIX) || defined(VMS)
6771 (void)umask(umask_save
);
6777 /* Directory was created, use this name.
6778 * Expand to full path; When using the current
6779 * directory a ":cd" would confuse us. */
6780 buf
= alloc((unsigned)MAXPATHL
+ 1);
6783 if (vim_FullName(itmp
, buf
, MAXPATHL
, FALSE
)
6787 if (vim_strchr(buf
, '/') != NULL
)
6792 vim_tempdir
= vim_strsave(buf
);
6798 /* If the mkdir() didn't fail because the file/dir exists,
6799 * we probably can't create any dir here, try another
6801 if (errno
!= EEXIST
)
6805 if (vim_tempdir
!= NULL
)
6811 if (vim_tempdir
!= NULL
)
6813 /* There is no need to check if the file exists, because we own the
6814 * directory and nobody else creates a file in it. */
6815 sprintf((char *)itmp
, "%s%ld", vim_tempdir
, temp_count
++);
6816 return vim_strsave(itmp
);
6821 #else /* TEMPDIRNAMES */
6824 char szTempFile
[_MAX_PATH
+ 1];
6830 if (GetTempPath(_MAX_PATH
, szTempFile
) == 0)
6831 szTempFile
[0] = NUL
; /* GetTempPath() failed, use current dir */
6832 strcpy(buf4
, "VIM");
6833 buf4
[2] = extra_char
; /* make it "VIa", "VIb", etc. */
6834 if (GetTempFileName(szTempFile
, buf4
, 0, itmp
) == 0)
6836 /* GetTempFileName() will create the file, we don't want that */
6837 (void)DeleteFile(itmp
);
6839 /* Backslashes in a temp file name cause problems when filtering with
6840 * "sh". NOTE: This also checks 'shellcmdflag' to help those people who
6841 * didn't set 'shellslash'. */
6842 retval
= vim_strsave(itmp
);
6843 if (*p_shcf
== '-' || p_ssl
)
6844 for (p
= retval
; *p
; ++p
)
6849 # else /* WIN3264 */
6852 /* tmpnam() will make its own name */
6853 if (*tmpnam((char *)itmp
) == NUL
)
6859 /* mktemp() is not working on VMS. It seems to be
6860 * a do-nothing function. Therefore we use tempnam().
6862 sprintf((char *)itmp
, "VIM%c", extra_char
);
6863 p
= (char_u
*)tempnam("tmp:", (char *)itmp
);
6866 /* VMS will use '.LOG' if we don't explicitly specify an extension,
6867 * and VIM will then be unable to find the file later */
6869 STRCAT(itmp
, ".txt");
6875 STRCPY(itmp
, TEMPNAME
);
6876 if ((p
= vim_strchr(itmp
, '?')) != NULL
)
6878 if (mktemp((char *)itmp
) == NULL
)
6883 return vim_strsave(itmp
);
6884 # endif /* WIN3264 */
6885 #endif /* TEMPDIRNAMES */
6888 #if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
6890 * Convert all backslashes in fname to forward slashes in-place.
6893 forward_slash(fname
)
6898 for (p
= fname
; *p
!= NUL
; ++p
)
6900 /* The Big5 encoding can have '\' in the trail byte. */
6901 if (enc_dbcs
!= 0 && (*mb_ptr2len
)(p
) > 1)
6912 * Code for automatic commands.
6914 * Only included when "FEAT_AUTOCMD" has been defined.
6917 #if defined(FEAT_AUTOCMD) || defined(PROTO)
6920 * The autocommands are stored in a list for each event.
6921 * Autocommands for the same pattern, that are consecutive, are joined
6922 * together, to avoid having to match the pattern too often.
6923 * The result is an array of Autopat lists, which point to AutoCmd lists:
6925 * first_autopat[0] --> Autopat.next --> Autopat.next --> NULL
6926 * Autopat.cmds Autopat.cmds
6929 * AutoCmd.next AutoCmd.next
6937 * first_autopat[1] --> Autopat.next --> NULL
6947 * The order of AutoCmds is important, this is the order in which they were
6948 * defined and will have to be executed.
6950 typedef struct AutoCmd
6952 char_u
*cmd
; /* The command to be executed (NULL
6953 when command has been removed) */
6954 char nested
; /* If autocommands nest here */
6955 char last
; /* last command in list */
6957 scid_T scriptID
; /* script ID where defined */
6959 struct AutoCmd
*next
; /* Next AutoCmd in list */
6962 typedef struct AutoPat
6964 int group
; /* group ID */
6965 char_u
*pat
; /* pattern as typed (NULL when pattern
6966 has been removed) */
6967 int patlen
; /* strlen() of pat */
6968 regprog_T
*reg_prog
; /* compiled regprog for pattern */
6969 char allow_dirs
; /* Pattern may match whole path */
6970 char last
; /* last pattern for apply_autocmds() */
6971 AutoCmd
*cmds
; /* list of commands to do */
6972 struct AutoPat
*next
; /* next AutoPat in AutoPat list */
6973 int buflocal_nr
; /* !=0 for buffer-local AutoPat */
6976 static struct event_name
6978 char *name
; /* event name */
6979 event_T event
; /* event number */
6982 {"BufAdd", EVENT_BUFADD
},
6983 {"BufCreate", EVENT_BUFADD
},
6984 {"BufDelete", EVENT_BUFDELETE
},
6985 {"BufEnter", EVENT_BUFENTER
},
6986 {"BufFilePost", EVENT_BUFFILEPOST
},
6987 {"BufFilePre", EVENT_BUFFILEPRE
},
6988 {"BufHidden", EVENT_BUFHIDDEN
},
6989 {"BufLeave", EVENT_BUFLEAVE
},
6990 {"BufNew", EVENT_BUFNEW
},
6991 {"BufNewFile", EVENT_BUFNEWFILE
},
6992 {"BufRead", EVENT_BUFREADPOST
},
6993 {"BufReadCmd", EVENT_BUFREADCMD
},
6994 {"BufReadPost", EVENT_BUFREADPOST
},
6995 {"BufReadPre", EVENT_BUFREADPRE
},
6996 {"BufUnload", EVENT_BUFUNLOAD
},
6997 {"BufWinEnter", EVENT_BUFWINENTER
},
6998 {"BufWinLeave", EVENT_BUFWINLEAVE
},
6999 {"BufWipeout", EVENT_BUFWIPEOUT
},
7000 {"BufWrite", EVENT_BUFWRITEPRE
},
7001 {"BufWritePost", EVENT_BUFWRITEPOST
},
7002 {"BufWritePre", EVENT_BUFWRITEPRE
},
7003 {"BufWriteCmd", EVENT_BUFWRITECMD
},
7004 {"CmdwinEnter", EVENT_CMDWINENTER
},
7005 {"CmdwinLeave", EVENT_CMDWINLEAVE
},
7006 {"ColorScheme", EVENT_COLORSCHEME
},
7007 {"CursorHold", EVENT_CURSORHOLD
},
7008 {"CursorHoldI", EVENT_CURSORHOLDI
},
7009 {"CursorMoved", EVENT_CURSORMOVED
},
7010 {"CursorMovedI", EVENT_CURSORMOVEDI
},
7011 {"EncodingChanged", EVENT_ENCODINGCHANGED
},
7012 {"FileEncoding", EVENT_ENCODINGCHANGED
},
7013 {"FileAppendPost", EVENT_FILEAPPENDPOST
},
7014 {"FileAppendPre", EVENT_FILEAPPENDPRE
},
7015 {"FileAppendCmd", EVENT_FILEAPPENDCMD
},
7016 {"FileChangedShell",EVENT_FILECHANGEDSHELL
},
7017 {"FileChangedShellPost",EVENT_FILECHANGEDSHELLPOST
},
7018 {"FileChangedRO", EVENT_FILECHANGEDRO
},
7019 {"FileReadPost", EVENT_FILEREADPOST
},
7020 {"FileReadPre", EVENT_FILEREADPRE
},
7021 {"FileReadCmd", EVENT_FILEREADCMD
},
7022 {"FileType", EVENT_FILETYPE
},
7023 {"FileWritePost", EVENT_FILEWRITEPOST
},
7024 {"FileWritePre", EVENT_FILEWRITEPRE
},
7025 {"FileWriteCmd", EVENT_FILEWRITECMD
},
7026 {"FilterReadPost", EVENT_FILTERREADPOST
},
7027 {"FilterReadPre", EVENT_FILTERREADPRE
},
7028 {"FilterWritePost", EVENT_FILTERWRITEPOST
},
7029 {"FilterWritePre", EVENT_FILTERWRITEPRE
},
7030 {"FocusGained", EVENT_FOCUSGAINED
},
7031 {"FocusLost", EVENT_FOCUSLOST
},
7032 {"FuncUndefined", EVENT_FUNCUNDEFINED
},
7033 {"GUIEnter", EVENT_GUIENTER
},
7034 {"GUIFailed", EVENT_GUIFAILED
},
7035 {"InsertChange", EVENT_INSERTCHANGE
},
7036 {"InsertEnter", EVENT_INSERTENTER
},
7037 {"InsertLeave", EVENT_INSERTLEAVE
},
7038 {"MenuPopup", EVENT_MENUPOPUP
},
7039 {"QuickFixCmdPost", EVENT_QUICKFIXCMDPOST
},
7040 {"QuickFixCmdPre", EVENT_QUICKFIXCMDPRE
},
7041 {"RemoteReply", EVENT_REMOTEREPLY
},
7042 {"SessionLoadPost", EVENT_SESSIONLOADPOST
},
7043 {"ShellCmdPost", EVENT_SHELLCMDPOST
},
7044 {"ShellFilterPost", EVENT_SHELLFILTERPOST
},
7045 {"SourcePre", EVENT_SOURCEPRE
},
7046 {"SourceCmd", EVENT_SOURCECMD
},
7047 {"SpellFileMissing",EVENT_SPELLFILEMISSING
},
7048 {"StdinReadPost", EVENT_STDINREADPOST
},
7049 {"StdinReadPre", EVENT_STDINREADPRE
},
7050 {"SwapExists", EVENT_SWAPEXISTS
},
7051 {"Syntax", EVENT_SYNTAX
},
7052 {"TabEnter", EVENT_TABENTER
},
7053 {"TabLeave", EVENT_TABLEAVE
},
7054 {"TermChanged", EVENT_TERMCHANGED
},
7055 {"TermResponse", EVENT_TERMRESPONSE
},
7056 {"User", EVENT_USER
},
7057 {"VimEnter", EVENT_VIMENTER
},
7058 {"VimLeave", EVENT_VIMLEAVE
},
7059 {"VimLeavePre", EVENT_VIMLEAVEPRE
},
7060 {"WinEnter", EVENT_WINENTER
},
7061 {"WinLeave", EVENT_WINLEAVE
},
7062 {"VimResized", EVENT_VIMRESIZED
},
7066 static AutoPat
*first_autopat
[NUM_EVENTS
] =
7068 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
7069 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
7070 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
7071 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
7072 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
7073 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
7077 * struct used to keep status while executing autocommands for an event.
7079 typedef struct AutoPatCmd
7081 AutoPat
*curpat
; /* next AutoPat to examine */
7082 AutoCmd
*nextcmd
; /* next AutoCmd to execute */
7083 int group
; /* group being used */
7084 char_u
*fname
; /* fname to match with */
7085 char_u
*sfname
; /* sfname to match with */
7086 char_u
*tail
; /* tail of fname */
7087 event_T event
; /* current event */
7088 int arg_bufnr
; /* initially equal to <abuf>, set to zero when
7090 struct AutoPatCmd
*next
; /* chain of active apc-s for auto-invalidation*/
7093 static AutoPatCmd
*active_apc_list
= NULL
; /* stack of active autocommands */
7096 * augroups stores a list of autocmd group names.
7098 static garray_T augroups
= {0, 0, sizeof(char_u
*), 10, NULL
};
7099 #define AUGROUP_NAME(i) (((char_u **)augroups.ga_data)[i])
7102 * The ID of the current group. Group 0 is the default one.
7104 static int current_augroup
= AUGROUP_DEFAULT
;
7106 static int au_need_clean
= FALSE
; /* need to delete marked patterns */
7108 static void show_autocmd
__ARGS((AutoPat
*ap
, event_T event
));
7109 static void au_remove_pat
__ARGS((AutoPat
*ap
));
7110 static void au_remove_cmds
__ARGS((AutoPat
*ap
));
7111 static void au_cleanup
__ARGS((void));
7112 static int au_new_group
__ARGS((char_u
*name
));
7113 static void au_del_group
__ARGS((char_u
*name
));
7114 static event_T event_name2nr
__ARGS((char_u
*start
, char_u
**end
));
7115 static char_u
*event_nr2name
__ARGS((event_T event
));
7116 static char_u
*find_end_event
__ARGS((char_u
*arg
, int have_group
));
7117 static int event_ignored
__ARGS((event_T event
));
7118 static int au_get_grouparg
__ARGS((char_u
**argp
));
7119 static int do_autocmd_event
__ARGS((event_T event
, char_u
*pat
, int nested
, char_u
*cmd
, int forceit
, int group
));
7120 static char_u
*getnextac
__ARGS((int c
, void *cookie
, int indent
));
7121 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
));
7122 static void auto_next_pat
__ARGS((AutoPatCmd
*apc
, int stop_at_last
));
7125 static event_T last_event
;
7126 static int last_group
;
7129 * Show the autocommands for one AutoPat.
7132 show_autocmd(ap
, event
)
7138 /* Check for "got_int" (here and at various places below), which is set
7139 * when "q" has been hit for the "--more--" prompt */
7142 if (ap
->pat
== NULL
) /* pattern has been removed */
7148 if (event
!= last_event
|| ap
->group
!= last_group
)
7150 if (ap
->group
!= AUGROUP_DEFAULT
)
7152 if (AUGROUP_NAME(ap
->group
) == NULL
)
7153 msg_puts_attr((char_u
*)_("--Deleted--"), hl_attr(HLF_E
));
7155 msg_puts_attr(AUGROUP_NAME(ap
->group
), hl_attr(HLF_T
));
7156 msg_puts((char_u
*)" ");
7158 msg_puts_attr(event_nr2name(event
), hl_attr(HLF_T
));
7160 last_group
= ap
->group
;
7166 msg_outtrans(ap
->pat
);
7168 for (ac
= ap
->cmds
; ac
!= NULL
; ac
= ac
->next
)
7170 if (ac
->cmd
!= NULL
) /* skip removed commands */
7177 msg_outtrans(ac
->cmd
);
7180 last_set_msg(ac
->scriptID
);
7184 if (ac
->next
!= NULL
)
7195 * Mark an autocommand pattern for deletion.
7203 ap
->buflocal_nr
= -1;
7204 au_need_clean
= TRUE
;
7208 * Mark all commands for a pattern for deletion.
7216 for (ac
= ap
->cmds
; ac
!= NULL
; ac
= ac
->next
)
7221 au_need_clean
= TRUE
;
7225 * Cleanup autocommands and patterns that have been deleted.
7226 * This is only done when not executing autocommands.
7231 AutoPat
*ap
, **prev_ap
;
7232 AutoCmd
*ac
, **prev_ac
;
7235 if (autocmd_busy
|| !au_need_clean
)
7238 /* loop over all events */
7239 for (event
= (event_T
)0; (int)event
< (int)NUM_EVENTS
;
7240 event
= (event_T
)((int)event
+ 1))
7242 /* loop over all autocommand patterns */
7243 prev_ap
= &(first_autopat
[(int)event
]);
7244 for (ap
= *prev_ap
; ap
!= NULL
; ap
= *prev_ap
)
7246 /* loop over all commands for this pattern */
7247 prev_ac
= &(ap
->cmds
);
7248 for (ac
= *prev_ac
; ac
!= NULL
; ac
= *prev_ac
)
7250 /* remove the command if the pattern is to be deleted or when
7251 * the command has been marked for deletion */
7252 if (ap
->pat
== NULL
|| ac
->cmd
== NULL
)
7254 *prev_ac
= ac
->next
;
7259 prev_ac
= &(ac
->next
);
7262 /* remove the pattern if it has been marked for deletion */
7263 if (ap
->pat
== NULL
)
7265 *prev_ap
= ap
->next
;
7266 vim_free(ap
->reg_prog
);
7270 prev_ap
= &(ap
->next
);
7274 au_need_clean
= FALSE
;
7278 * Called when buffer is freed, to remove/invalidate related buffer-local
7282 aubuflocal_remove(buf
)
7289 /* invalidate currently executing autocommands */
7290 for (apc
= active_apc_list
; apc
; apc
= apc
->next
)
7291 if (buf
->b_fnum
== apc
->arg_bufnr
)
7294 /* invalidate buflocals looping through events */
7295 for (event
= (event_T
)0; (int)event
< (int)NUM_EVENTS
;
7296 event
= (event_T
)((int)event
+ 1))
7297 /* loop over all autocommand patterns */
7298 for (ap
= first_autopat
[(int)event
]; ap
!= NULL
; ap
= ap
->next
)
7299 if (ap
->buflocal_nr
== buf
->b_fnum
)
7306 _("auto-removing autocommand: %s <buffer=%d>"),
7307 event_nr2name(event
), buf
->b_fnum
);
7315 * Add an autocmd group name.
7316 * Return it's ID. Returns AUGROUP_ERROR (< 0) for error.
7324 i
= au_find_group(name
);
7325 if (i
== AUGROUP_ERROR
) /* the group doesn't exist yet, add it */
7327 /* First try using a free entry. */
7328 for (i
= 0; i
< augroups
.ga_len
; ++i
)
7329 if (AUGROUP_NAME(i
) == NULL
)
7331 if (i
== augroups
.ga_len
&& ga_grow(&augroups
, 1) == FAIL
)
7332 return AUGROUP_ERROR
;
7334 AUGROUP_NAME(i
) = vim_strsave(name
);
7335 if (AUGROUP_NAME(i
) == NULL
)
7336 return AUGROUP_ERROR
;
7337 if (i
== augroups
.ga_len
)
7350 i
= au_find_group(name
);
7351 if (i
== AUGROUP_ERROR
) /* the group doesn't exist */
7352 EMSG2(_("E367: No such group: \"%s\""), name
);
7355 vim_free(AUGROUP_NAME(i
));
7356 AUGROUP_NAME(i
) = NULL
;
7361 * Find the ID of an autocmd group name.
7362 * Return it's ID. Returns AUGROUP_ERROR (< 0) for error.
7370 for (i
= 0; i
< augroups
.ga_len
; ++i
)
7371 if (AUGROUP_NAME(i
) != NULL
&& STRCMP(AUGROUP_NAME(i
), name
) == 0)
7373 return AUGROUP_ERROR
;
7377 * Return TRUE if augroup "name" exists.
7383 return au_find_group(name
) != AUGROUP_ERROR
;
7387 * ":augroup {name}".
7390 do_augroup(arg
, del_group
)
7403 else if (STRICMP(arg
, "end") == 0) /* ":aug end": back to group 0 */
7404 current_augroup
= AUGROUP_DEFAULT
;
7405 else if (*arg
) /* ":aug xxx": switch to group xxx */
7407 i
= au_new_group(arg
);
7408 if (i
!= AUGROUP_ERROR
)
7409 current_augroup
= i
;
7411 else /* ":aug": list the group names */
7414 for (i
= 0; i
< augroups
.ga_len
; ++i
)
7416 if (AUGROUP_NAME(i
) != NULL
)
7418 msg_puts(AUGROUP_NAME(i
));
7419 msg_puts((char_u
*)" ");
7427 #if defined(EXITFREE) || defined(PROTO)
7431 for (current_augroup
= -1; current_augroup
< augroups
.ga_len
;
7433 do_autocmd((char_u
*)"", TRUE
);
7434 ga_clear_strings(&augroups
);
7439 * Return the event number for event name "start".
7440 * Return NUM_EVENTS if the event name was not found.
7441 * Return a pointer to the next event name in "end".
7444 event_name2nr(start
, end
)
7452 /* the event name ends with end of line, a blank or a comma */
7453 for (p
= start
; *p
&& !vim_iswhite(*p
) && *p
!= ','; ++p
)
7455 for (i
= 0; event_names
[i
].name
!= NULL
; ++i
)
7457 len
= (int)STRLEN(event_names
[i
].name
);
7458 if (len
== p
- start
&& STRNICMP(event_names
[i
].name
, start
, len
) == 0)
7464 if (event_names
[i
].name
== NULL
)
7466 return event_names
[i
].event
;
7470 * Return the name for event "event".
7473 event_nr2name(event
)
7478 for (i
= 0; event_names
[i
].name
!= NULL
; ++i
)
7479 if (event_names
[i
].event
== event
)
7480 return (char_u
*)event_names
[i
].name
;
7481 return (char_u
*)"Unknown";
7485 * Scan over the events. "*" stands for all events.
7488 find_end_event(arg
, have_group
)
7490 int have_group
; /* TRUE when group name was found */
7497 if (arg
[1] && !vim_iswhite(arg
[1]))
7499 EMSG2(_("E215: Illegal character after *: %s"), arg
);
7506 for (pat
= arg
; *pat
&& !vim_iswhite(*pat
); pat
= p
)
7508 if ((int)event_name2nr(pat
, &p
) >= (int)NUM_EVENTS
)
7511 EMSG2(_("E216: No such event: %s"), pat
);
7513 EMSG2(_("E216: No such group or event: %s"), pat
);
7522 * Return TRUE if "event" is included in 'eventignore'.
7525 event_ignored(event
)
7532 if (STRNICMP(p
, "all", 3) == 0 && (p
[3] == NUL
|| p
[3] == ','))
7534 if (event_name2nr(p
, &p
) == event
)
7542 * Return OK when the contents of p_ei is valid, FAIL otherwise.
7551 if (STRNICMP(p
, "all", 3) == 0 && (p
[3] == NUL
|| p
[3] == ','))
7557 else if (event_name2nr(p
, &p
) == NUM_EVENTS
)
7564 # if defined(FEAT_SYN_HL) || defined(PROTO)
7567 * Add "what" to 'eventignore' to skip loading syntax highlighting for every
7568 * buffer loaded into the window. "what" must start with a comma.
7569 * Returns the old value of 'eventignore' in allocated memory.
7572 au_event_disable(what
)
7578 save_ei
= vim_strsave(p_ei
);
7579 if (save_ei
!= NULL
)
7581 new_ei
= vim_strnsave(p_ei
, (int)(STRLEN(p_ei
) + STRLEN(what
)));
7584 STRCAT(new_ei
, what
);
7585 set_string_option_direct((char_u
*)"ei", -1, new_ei
,
7586 OPT_FREE
, SID_NONE
);
7594 au_event_restore(old_ei
)
7599 set_string_option_direct((char_u
*)"ei", -1, old_ei
,
7600 OPT_FREE
, SID_NONE
);
7604 # endif /* FEAT_SYN_HL */
7607 * do_autocmd() -- implements the :autocmd command. Can be used in the
7610 * :autocmd <event> <pat> <cmd> Add <cmd> to the list of commands that
7611 * will be automatically executed for <event>
7612 * when editing a file matching <pat>, in
7613 * the current group.
7614 * :autocmd <event> <pat> Show the auto-commands associated with
7615 * <event> and <pat>.
7616 * :autocmd <event> Show the auto-commands associated with
7618 * :autocmd Show all auto-commands.
7619 * :autocmd! <event> <pat> <cmd> Remove all auto-commands associated with
7620 * <event> and <pat>, and add the command
7621 * <cmd>, for the current group.
7622 * :autocmd! <event> <pat> Remove all auto-commands associated with
7623 * <event> and <pat> for the current group.
7624 * :autocmd! <event> Remove all auto-commands associated with
7625 * <event> for the current group.
7626 * :autocmd! Remove ALL auto-commands for the current
7629 * Multiple events and patterns may be given separated by commas. Here are
7631 * :autocmd bufread,bufenter *.c,*.h set tw=0 smartindent noic
7632 * :autocmd bufleave * set tw=79 nosmartindent ic infercase
7634 * :autocmd * *.c show all autocommands for *.c files.
7636 * Mostly a {group} argument can optionally appear before <event>.
7639 do_autocmd(arg
, forceit
)
7644 char_u
*envpat
= NULL
;
7647 int need_free
= FALSE
;
7652 * Check for a legal group name. If not, use AUGROUP_ALL.
7654 group
= au_get_grouparg(&arg
);
7655 if (arg
== NULL
) /* out of memory */
7659 * Scan over the events.
7660 * If we find an illegal name, return here, don't do anything.
7662 pat
= find_end_event(arg
, group
!= AUGROUP_ALL
);
7667 * Scan over the pattern. Put a NUL at the end.
7669 pat
= skipwhite(pat
);
7671 while (*cmd
&& (!vim_iswhite(*cmd
) || cmd
[-1] == '\\'))
7676 /* Expand environment variables in the pattern. Set 'shellslash', we want
7677 * forward slashes here. */
7678 if (vim_strchr(pat
, '$') != NULL
|| vim_strchr(pat
, '~') != NULL
)
7680 #ifdef BACKSLASH_IN_FILENAME
7681 int p_ssl_save
= p_ssl
;
7685 envpat
= expand_env_save(pat
);
7686 #ifdef BACKSLASH_IN_FILENAME
7694 * Check for "nested" flag.
7696 cmd
= skipwhite(cmd
);
7697 if (*cmd
!= NUL
&& STRNCMP(cmd
, "nested", 6) == 0 && vim_iswhite(cmd
[6]))
7700 cmd
= skipwhite(cmd
+ 6);
7704 * Find the start of the commands.
7705 * Expand <sfile> in it.
7709 cmd
= expand_sfile(cmd
);
7710 if (cmd
== NULL
) /* some error */
7716 * Print header when showing autocommands.
7718 if (!forceit
&& *cmd
== NUL
)
7720 /* Highlight title */
7721 MSG_PUTS_TITLE(_("\n--- Auto-Commands ---"));
7725 * Loop over the events.
7727 last_event
= (event_T
)-1; /* for listing the event name */
7728 last_group
= AUGROUP_ERROR
; /* for listing the group name */
7729 if (*arg
== '*' || *arg
== NUL
)
7731 for (event
= (event_T
)0; (int)event
< (int)NUM_EVENTS
;
7732 event
= (event_T
)((int)event
+ 1))
7733 if (do_autocmd_event(event
, pat
,
7734 nested
, cmd
, forceit
, group
) == FAIL
)
7739 while (*arg
&& !vim_iswhite(*arg
))
7740 if (do_autocmd_event(event_name2nr(arg
, &arg
), pat
,
7741 nested
, cmd
, forceit
, group
) == FAIL
)
7751 * Find the group ID in a ":autocmd" or ":doautocmd" argument.
7752 * The "argp" argument is advanced to the following argument.
7754 * Returns the group ID, AUGROUP_ERROR for error (out of memory).
7757 au_get_grouparg(argp
)
7762 char_u
*arg
= *argp
;
7763 int group
= AUGROUP_ALL
;
7765 p
= skiptowhite(arg
);
7768 group_name
= vim_strnsave(arg
, (int)(p
- arg
));
7769 if (group_name
== NULL
) /* out of memory */
7770 return AUGROUP_ERROR
;
7771 group
= au_find_group(group_name
);
7772 if (group
== AUGROUP_ERROR
)
7773 group
= AUGROUP_ALL
; /* no match, use all groups */
7775 *argp
= skipwhite(p
); /* match, skip over group name */
7776 vim_free(group_name
);
7782 * do_autocmd() for one event.
7783 * If *pat == NUL do for all patterns.
7784 * If *cmd == NUL show entries.
7785 * If forceit == TRUE delete entries.
7786 * If group is not AUGROUP_ALL, only use this group.
7789 do_autocmd_event(event
, pat
, nested
, cmd
, forceit
, group
)
7808 char_u buflocal_pat
[25]; /* for "<buffer=X>" */
7810 if (group
== AUGROUP_ALL
)
7811 findgroup
= current_augroup
;
7814 allgroups
= (group
== AUGROUP_ALL
&& !forceit
&& *cmd
== NUL
);
7817 * Show or delete all patterns for an event.
7821 for (ap
= first_autopat
[(int)event
]; ap
!= NULL
; ap
= ap
->next
)
7823 if (forceit
) /* delete the AutoPat, if it's in the current group */
7825 if (ap
->group
== findgroup
)
7828 else if (group
== AUGROUP_ALL
|| ap
->group
== group
)
7829 show_autocmd(ap
, event
);
7834 * Loop through all the specified patterns.
7836 for ( ; *pat
; pat
= (*endpat
== ',' ? endpat
+ 1 : endpat
))
7839 * Find end of the pattern.
7840 * Watch out for a comma in braces, like "*.\{obj,o\}".
7843 for (endpat
= pat
; *endpat
&& (*endpat
!= ',' || brace_level
7844 || endpat
[-1] == '\\'); ++endpat
)
7848 else if (*endpat
== '}')
7851 if (pat
== endpat
) /* ignore single comma */
7853 patlen
= (int)(endpat
- pat
);
7856 * detect special <buflocal[=X]> buffer-local patterns
7858 is_buflocal
= FALSE
;
7861 if (patlen
>= 7 && STRNCMP(pat
, "<buffer", 7) == 0
7862 && pat
[patlen
- 1] == '>')
7864 /* Error will be printed only for addition. printing and removing
7865 * will proceed silently. */
7868 buflocal_nr
= curbuf
->b_fnum
;
7869 else if (patlen
> 9 && pat
[7] == '=')
7872 if (patlen
== 13 && STRNICMP(pat
, "<buffer=abuf>", 13))
7873 buflocal_nr
= autocmd_bufnr
;
7875 else if (skipdigits(pat
+ 8) == pat
+ patlen
- 1)
7876 buflocal_nr
= atoi((char *)pat
+ 8);
7882 /* normalize pat into standard "<buffer>#N" form */
7883 sprintf((char *)buflocal_pat
, "<buffer=%d>", buflocal_nr
);
7884 pat
= buflocal_pat
; /* can modify pat and patlen */
7885 patlen
= (int)STRLEN(buflocal_pat
); /* but not endpat */
7889 * Find AutoPat entries with this pattern.
7891 prev_ap
= &first_autopat
[(int)event
];
7892 while ((ap
= *prev_ap
) != NULL
)
7894 if (ap
->pat
!= NULL
)
7896 /* Accept a pattern when:
7897 * - a group was specified and it's that group, or a group was
7898 * not specified and it's the current group, or a group was
7899 * not specified and we are listing
7900 * - the length of the pattern matches
7901 * - the pattern matches.
7902 * For <buffer[=X]>, this condition works because we normalize
7903 * all buffer-local patterns.
7905 if ((allgroups
|| ap
->group
== findgroup
)
7906 && ap
->patlen
== patlen
7907 && STRNCMP(pat
, ap
->pat
, patlen
) == 0)
7910 * Remove existing autocommands.
7911 * If adding any new autocmd's for this AutoPat, don't
7912 * delete the pattern from the autopat list, append to
7917 if (*cmd
!= NUL
&& ap
->next
== NULL
)
7926 * Show autocmd's for this autopat, or buflocals <buffer=X>
7928 else if (*cmd
== NUL
)
7929 show_autocmd(ap
, event
);
7932 * Add autocmd to this autopat, if it's the last one.
7934 else if (ap
->next
== NULL
)
7938 prev_ap
= &ap
->next
;
7942 * Add a new command.
7947 * If the pattern we want to add a command to does appear at the
7948 * end of the list (or not is not in the list at all), add the
7949 * pattern at the end of the list.
7953 /* refuse to add buffer-local ap if buffer number is invalid */
7954 if (is_buflocal
&& (buflocal_nr
== 0
7955 || buflist_findnr(buflocal_nr
) == NULL
))
7957 EMSGN(_("E680: <buffer=%d>: invalid buffer number "),
7962 ap
= (AutoPat
*)alloc((unsigned)sizeof(AutoPat
));
7965 ap
->pat
= vim_strnsave(pat
, patlen
);
7966 ap
->patlen
= patlen
;
7967 if (ap
->pat
== NULL
)
7975 ap
->buflocal_nr
= buflocal_nr
;
7976 ap
->reg_prog
= NULL
;
7982 ap
->buflocal_nr
= 0;
7983 reg_pat
= file_pat_to_reg_pat(pat
, endpat
,
7984 &ap
->allow_dirs
, TRUE
);
7985 if (reg_pat
!= NULL
)
7986 ap
->reg_prog
= vim_regcomp(reg_pat
, RE_MAGIC
);
7988 if (reg_pat
== NULL
|| ap
->reg_prog
== NULL
)
7998 if (group
== AUGROUP_ALL
)
7999 ap
->group
= current_augroup
;
8005 * Add the autocmd at the end of the AutoCmd list.
8007 prev_ac
= &(ap
->cmds
);
8008 while ((ac
= *prev_ac
) != NULL
)
8009 prev_ac
= &ac
->next
;
8010 ac
= (AutoCmd
*)alloc((unsigned)sizeof(AutoCmd
));
8013 ac
->cmd
= vim_strsave(cmd
);
8015 ac
->scriptID
= current_SID
;
8017 if (ac
->cmd
== NULL
)
8024 ac
->nested
= nested
;
8028 au_cleanup(); /* may really delete removed patterns/commands now */
8033 * Implementation of ":doautocmd [group] event [fname]".
8034 * Return OK for success, FAIL for failure;
8037 do_doautocmd(arg
, do_msg
)
8039 int do_msg
; /* give message for no matching autocmds? */
8042 int nothing_done
= TRUE
;
8046 * Check for a legal group name. If not, use AUGROUP_ALL.
8048 group
= au_get_grouparg(&arg
);
8049 if (arg
== NULL
) /* out of memory */
8054 EMSG(_("E217: Can't execute autocommands for ALL events"));
8059 * Scan over the events.
8060 * If we find an illegal name, return here, don't do anything.
8062 fname
= find_end_event(arg
, group
!= AUGROUP_ALL
);
8066 fname
= skipwhite(fname
);
8069 * Loop over the events.
8071 while (*arg
&& !vim_iswhite(*arg
))
8072 if (apply_autocmds_group(event_name2nr(arg
, &arg
),
8073 fname
, NULL
, TRUE
, group
, curbuf
, NULL
))
8074 nothing_done
= FALSE
;
8076 if (nothing_done
&& do_msg
)
8077 MSG(_("No matching autocommands"));
8080 return aborting() ? FAIL
: OK
;
8087 * ":doautoall": execute autocommands for each loaded buffer.
8098 * This is a bit tricky: For some commands curwin->w_buffer needs to be
8099 * equal to curbuf, but for some buffers there may not be a window.
8100 * So we change the buffer for the current window for a moment. This
8101 * gives problems when the autocommands make changes to the list of
8102 * buffers or windows...
8104 for (buf
= firstbuf
; buf
!= NULL
; buf
= buf
->b_next
)
8106 if (curbuf
->b_ml
.ml_mfp
!= NULL
)
8108 /* find a window for this buffer and save some values */
8109 aucmd_prepbuf(&aco
, buf
);
8111 /* execute the autocommands for this buffer */
8112 retval
= do_doautocmd(eap
->arg
, FALSE
);
8114 /* Execute the modeline settings, but don't set window-local
8115 * options if we are using the current window for another buffer. */
8116 do_modelines(aco
.save_curwin
== NULL
? OPT_NOWIN
: 0);
8118 /* restore the current window */
8119 aucmd_restbuf(&aco
);
8121 /* stop if there is some error or buffer was deleted */
8122 if (retval
== FAIL
|| !buf_valid(buf
))
8127 check_cursor(); /* just in case lines got deleted */
8131 * Prepare for executing autocommands for (hidden) buffer "buf".
8132 * Search a window for the current buffer. Save the cursor position and
8134 * Set "curbuf" and "curwin" to match "buf".
8135 * When FEAT_AUTOCMD is not defined another version is used, see below.
8138 aucmd_prepbuf(aco
, buf
)
8139 aco_save_T
*aco
; /* structure to save values in */
8140 buf_T
*buf
; /* new curbuf */
8144 aco
->new_curbuf
= buf
;
8146 /* Find a window that is for the new buffer */
8147 if (buf
== curbuf
) /* be quick when buf is curbuf */
8151 for (win
= firstwin
; win
!= NULL
; win
= win
->w_next
)
8152 if (win
->w_buffer
== buf
)
8159 * Prefer to use an existing window for the buffer, it has the least side
8160 * effects (esp. if "buf" is curbuf).
8161 * Otherwise, use curwin for "buf". It might make some items in the
8162 * window invalid. At least save the cursor and topline.
8166 /* there is a window for "buf", make it the curwin */
8167 aco
->save_curwin
= curwin
;
8169 aco
->save_buf
= win
->w_buffer
;
8170 aco
->new_curwin
= win
;
8174 /* there is no window for "buf", use curwin */
8175 aco
->save_curwin
= NULL
;
8176 aco
->save_buf
= curbuf
;
8177 --curbuf
->b_nwindows
;
8178 curwin
->w_buffer
= buf
;
8181 /* save cursor and topline, set them to safe values */
8182 aco
->save_cursor
= curwin
->w_cursor
;
8183 curwin
->w_cursor
.lnum
= 1;
8184 curwin
->w_cursor
.col
= 0;
8185 aco
->save_topline
= curwin
->w_topline
;
8186 curwin
->w_topline
= 1;
8188 aco
->save_topfill
= curwin
->w_topfill
;
8189 curwin
->w_topfill
= 0;
8197 * Cleanup after executing autocommands for a (hidden) buffer.
8198 * Restore the window as it was (if possible).
8199 * When FEAT_AUTOCMD is not defined another version is used, see below.
8203 aco_save_T
*aco
; /* structure holding saved values */
8205 if (aco
->save_curwin
!= NULL
)
8207 /* restore curwin */
8209 if (win_valid(aco
->save_curwin
))
8212 /* restore the buffer which was previously edited by curwin, if
8213 * it's still the same window and it's valid */
8214 if (curwin
== aco
->new_curwin
8215 && buf_valid(aco
->save_buf
)
8216 && aco
->save_buf
->b_ml
.ml_mfp
!= NULL
)
8218 --curbuf
->b_nwindows
;
8219 curbuf
= aco
->save_buf
;
8220 curwin
->w_buffer
= curbuf
;
8221 ++curbuf
->b_nwindows
;
8224 curwin
= aco
->save_curwin
;
8225 curbuf
= curwin
->w_buffer
;
8230 /* restore buffer for curwin if it still exists and is loaded */
8231 if (buf_valid(aco
->save_buf
) && aco
->save_buf
->b_ml
.ml_mfp
!= NULL
)
8233 --curbuf
->b_nwindows
;
8234 curbuf
= aco
->save_buf
;
8235 curwin
->w_buffer
= curbuf
;
8236 ++curbuf
->b_nwindows
;
8237 curwin
->w_cursor
= aco
->save_cursor
;
8239 /* check topline < line_count, in case lines got deleted */
8240 if (aco
->save_topline
<= curbuf
->b_ml
.ml_line_count
)
8242 curwin
->w_topline
= aco
->save_topline
;
8244 curwin
->w_topfill
= aco
->save_topfill
;
8249 curwin
->w_topline
= curbuf
->b_ml
.ml_line_count
;
8251 curwin
->w_topfill
= 0;
8258 static int autocmd_nested
= FALSE
;
8261 * Execute autocommands for "event" and file name "fname".
8262 * Return TRUE if some commands were executed.
8265 apply_autocmds(event
, fname
, fname_io
, force
, buf
)
8267 char_u
*fname
; /* NULL or empty means use actual file name */
8268 char_u
*fname_io
; /* fname to use for <afile> on cmdline */
8269 int force
; /* when TRUE, ignore autocmd_busy */
8270 buf_T
*buf
; /* buffer for <abuf> */
8272 return apply_autocmds_group(event
, fname
, fname_io
, force
,
8273 AUGROUP_ALL
, buf
, NULL
);
8277 * Like apply_autocmds(), but with extra "eap" argument. This takes care of
8278 * setting v:filearg.
8281 apply_autocmds_exarg(event
, fname
, fname_io
, force
, buf
, eap
)
8289 return apply_autocmds_group(event
, fname
, fname_io
, force
,
8290 AUGROUP_ALL
, buf
, eap
);
8294 * Like apply_autocmds(), but handles the caller's retval. If the script
8295 * processing is being aborted or if retval is FAIL when inside a try
8296 * conditional, no autocommands are executed. If otherwise the autocommands
8297 * cause the script to be aborted, retval is set to FAIL.
8300 apply_autocmds_retval(event
, fname
, fname_io
, force
, buf
, retval
)
8302 char_u
*fname
; /* NULL or empty means use actual file name */
8303 char_u
*fname_io
; /* fname to use for <afile> on cmdline */
8304 int force
; /* when TRUE, ignore autocmd_busy */
8305 buf_T
*buf
; /* buffer for <abuf> */
8306 int *retval
; /* pointer to caller's retval */
8311 if (should_abort(*retval
))
8315 did_cmd
= apply_autocmds_group(event
, fname
, fname_io
, force
,
8316 AUGROUP_ALL
, buf
, NULL
);
8327 * Return TRUE when there is a CursorHold autocommand defined.
8332 return (first_autopat
[(int)(get_real_state() == NORMAL_BUSY
8333 ? EVENT_CURSORHOLD
: EVENT_CURSORHOLDI
)] != NULL
);
8337 * Return TRUE if the CursorHold event can be triggered.
8340 trigger_cursorhold()
8344 if (!did_cursorhold
&& has_cursorhold() && !Recording
8345 #ifdef FEAT_INS_EXPAND
8346 && !ins_compl_active()
8350 state
= get_real_state();
8351 if (state
== NORMAL_BUSY
|| (state
& INSERT
) != 0)
8358 * Return TRUE when there is a CursorMoved autocommand defined.
8363 return (first_autopat
[(int)EVENT_CURSORMOVED
] != NULL
);
8367 * Return TRUE when there is a CursorMovedI autocommand defined.
8372 return (first_autopat
[(int)EVENT_CURSORMOVEDI
] != NULL
);
8376 apply_autocmds_group(event
, fname
, fname_io
, force
, group
, buf
, eap
)
8378 char_u
*fname
; /* NULL or empty means use actual file name */
8379 char_u
*fname_io
; /* fname to use for <afile> on cmdline, NULL means
8381 int force
; /* when TRUE, ignore autocmd_busy */
8382 int group
; /* group ID, or AUGROUP_ALL */
8383 buf_T
*buf
; /* buffer for <abuf> */
8384 exarg_T
*eap
; /* command arguments */
8386 char_u
*sfname
= NULL
; /* short file name */
8391 char_u
*save_sourcing_name
;
8392 linenr_T save_sourcing_lnum
;
8393 char_u
*save_autocmd_fname
;
8394 int save_autocmd_bufnr
;
8395 char_u
*save_autocmd_match
;
8396 int save_autocmd_busy
;
8397 int save_autocmd_nested
;
8398 static int nesting
= 0;
8402 scid_T save_current_SID
;
8403 void *save_funccalp
;
8404 char_u
*save_cmdarg
;
8407 static int filechangeshell_busy
= FALSE
;
8409 proftime_T wait_time
;
8413 * Quickly return if there are no autocommands for this event or
8414 * autocommands are blocked.
8416 if (first_autopat
[(int)event
] == NULL
|| autocmd_block
> 0)
8420 * When autocommands are busy, new autocommands are only executed when
8421 * explicitly enabled with the "nested" flag.
8423 if (autocmd_busy
&& !(force
|| autocmd_nested
))
8428 * Quickly return when immediately aborting on error, or when an interrupt
8429 * occurred or an exception was thrown but not caught.
8436 * FileChangedShell never nests, because it can create an endless loop.
8438 if (filechangeshell_busy
&& (event
== EVENT_FILECHANGEDSHELL
8439 || event
== EVENT_FILECHANGEDSHELLPOST
))
8443 * Ignore events in 'eventignore'.
8445 if (event_ignored(event
))
8449 * Allow nesting of autocommands, but restrict the depth, because it's
8450 * possible to create an endless loop.
8454 EMSG(_("E218: autocommand nesting too deep"));
8459 * Check if these autocommands are disabled. Used when doing ":all" or
8462 if ( (autocmd_no_enter
8463 && (event
== EVENT_WINENTER
|| event
== EVENT_BUFENTER
))
8464 || (autocmd_no_leave
8465 && (event
== EVENT_WINLEAVE
|| event
== EVENT_BUFLEAVE
)))
8469 * Save the autocmd_* variables and info about the current buffer.
8471 save_autocmd_fname
= autocmd_fname
;
8472 save_autocmd_bufnr
= autocmd_bufnr
;
8473 save_autocmd_match
= autocmd_match
;
8474 save_autocmd_busy
= autocmd_busy
;
8475 save_autocmd_nested
= autocmd_nested
;
8476 save_changed
= curbuf
->b_changed
;
8477 old_curbuf
= curbuf
;
8480 * Set the file name to be used for <afile>.
8482 if (fname_io
== NULL
)
8484 if (fname
!= NULL
&& *fname
!= NUL
)
8485 autocmd_fname
= fname
;
8486 else if (buf
!= NULL
)
8487 autocmd_fname
= buf
->b_fname
;
8489 autocmd_fname
= NULL
;
8492 autocmd_fname
= fname_io
;
8495 * Set the buffer number to be used for <abuf>.
8500 autocmd_bufnr
= buf
->b_fnum
;
8503 * When the file name is NULL or empty, use the file name of buffer "buf".
8504 * Always use the full path of the file name to match with, in case
8505 * "allow_dirs" is set.
8507 if (fname
== NULL
|| *fname
== NUL
)
8514 if (event
== EVENT_SYNTAX
)
8515 fname
= buf
->b_p_syn
;
8518 if (event
== EVENT_FILETYPE
)
8519 fname
= buf
->b_p_ft
;
8522 if (buf
->b_sfname
!= NULL
)
8523 sfname
= vim_strsave(buf
->b_sfname
);
8524 fname
= buf
->b_ffname
;
8528 fname
= (char_u
*)"";
8529 fname
= vim_strsave(fname
); /* make a copy, so we can change it */
8533 sfname
= vim_strsave(fname
);
8534 /* Don't try expanding FileType, Syntax, WindowID or QuickFixCmd* */
8535 if (event
== EVENT_FILETYPE
8536 || event
== EVENT_SYNTAX
8537 || event
== EVENT_REMOTEREPLY
8538 || event
== EVENT_SPELLFILEMISSING
8539 || event
== EVENT_QUICKFIXCMDPRE
8540 || event
== EVENT_QUICKFIXCMDPOST
)
8541 fname
= vim_strsave(fname
);
8543 fname
= FullName_save(fname
, FALSE
);
8545 if (fname
== NULL
) /* out of memory */
8552 #ifdef BACKSLASH_IN_FILENAME
8554 * Replace all backslashes with forward slashes. This makes the
8555 * autocommand patterns portable between Unix and MS-DOS.
8558 forward_slash(sfname
);
8559 forward_slash(fname
);
8563 /* remove version for correct match */
8565 vms_remove_version(sfname
);
8566 vms_remove_version(fname
);
8570 * Set the name to be used for <amatch>.
8572 autocmd_match
= fname
;
8575 /* Don't redraw while doing auto commands. */
8576 ++RedrawingDisabled
;
8577 save_sourcing_name
= sourcing_name
;
8578 sourcing_name
= NULL
; /* don't free this one */
8579 save_sourcing_lnum
= sourcing_lnum
;
8580 sourcing_lnum
= 0; /* no line number here */
8583 save_current_SID
= current_SID
;
8585 # ifdef FEAT_PROFILE
8586 if (do_profiling
== PROF_YES
)
8587 prof_child_enter(&wait_time
); /* doesn't count for the caller itself */
8590 /* Don't use local function variables, if called from a function */
8591 save_funccalp
= save_funccal();
8595 * When starting to execute autocommands, save the search patterns.
8599 save_search_patterns();
8601 did_filetype
= keep_filetype
;
8605 * Note that we are applying autocmds. Some commands need to know.
8607 autocmd_busy
= TRUE
;
8608 filechangeshell_busy
= (event
== EVENT_FILECHANGEDSHELL
);
8609 ++nesting
; /* see matching decrement below */
8611 /* Remember that FileType was triggered. Used for did_filetype(). */
8612 if (event
== EVENT_FILETYPE
)
8613 did_filetype
= TRUE
;
8615 tail
= gettail(fname
);
8617 /* Find first autocommand that matches */
8618 patcmd
.curpat
= first_autopat
[(int)event
];
8619 patcmd
.nextcmd
= NULL
;
8620 patcmd
.group
= group
;
8621 patcmd
.fname
= fname
;
8622 patcmd
.sfname
= sfname
;
8624 patcmd
.event
= event
;
8625 patcmd
.arg_bufnr
= autocmd_bufnr
;
8627 auto_next_pat(&patcmd
, FALSE
);
8629 /* found one, start executing the autocommands */
8630 if (patcmd
.curpat
!= NULL
)
8632 /* add to active_apc_list */
8633 patcmd
.next
= active_apc_list
;
8634 active_apc_list
= &patcmd
;
8637 /* set v:cmdarg (only when there is a matching pattern) */
8638 save_cmdbang
= get_vim_var_nr(VV_CMDBANG
);
8641 save_cmdarg
= set_cmdarg(eap
, NULL
);
8642 set_vim_var_nr(VV_CMDBANG
, (long)eap
->forceit
);
8645 save_cmdarg
= NULL
; /* avoid gcc warning */
8648 /* mark the last pattern, to avoid an endless loop when more patterns
8649 * are added when executing autocommands */
8650 for (ap
= patcmd
.curpat
; ap
->next
!= NULL
; ap
= ap
->next
)
8653 check_lnums(TRUE
); /* make sure cursor and topline are valid */
8654 do_cmdline(NULL
, getnextac
, (void *)&patcmd
,
8655 DOCMD_NOWAIT
|DOCMD_VERBOSE
|DOCMD_REPEAT
);
8659 (void)set_cmdarg(NULL
, save_cmdarg
);
8660 set_vim_var_nr(VV_CMDBANG
, save_cmdbang
);
8663 /* delete from active_apc_list */
8664 if (active_apc_list
== &patcmd
) /* just in case */
8665 active_apc_list
= patcmd
.next
;
8668 --RedrawingDisabled
;
8669 autocmd_busy
= save_autocmd_busy
;
8670 filechangeshell_busy
= FALSE
;
8671 autocmd_nested
= save_autocmd_nested
;
8672 vim_free(sourcing_name
);
8673 sourcing_name
= save_sourcing_name
;
8674 sourcing_lnum
= save_sourcing_lnum
;
8675 autocmd_fname
= save_autocmd_fname
;
8676 autocmd_bufnr
= save_autocmd_bufnr
;
8677 autocmd_match
= save_autocmd_match
;
8679 current_SID
= save_current_SID
;
8680 restore_funccal(save_funccalp
);
8681 # ifdef FEAT_PROFILE
8682 if (do_profiling
== PROF_YES
)
8683 prof_child_exit(&wait_time
);
8688 --nesting
; /* see matching increment above */
8691 * When stopping to execute autocommands, restore the search patterns and
8696 restore_search_patterns();
8698 did_filetype
= FALSE
;
8702 * Some events don't set or reset the Changed flag.
8703 * Check if still in the same buffer!
8705 if (curbuf
== old_curbuf
8706 && (event
== EVENT_BUFREADPOST
8707 || event
== EVENT_BUFWRITEPOST
8708 || event
== EVENT_FILEAPPENDPOST
8709 || event
== EVENT_VIMLEAVE
8710 || event
== EVENT_VIMLEAVEPRE
))
8713 if (curbuf
->b_changed
!= save_changed
)
8714 need_maketitle
= TRUE
;
8716 curbuf
->b_changed
= save_changed
;
8719 au_cleanup(); /* may really delete removed patterns/commands now */
8722 /* When wiping out a buffer make sure all its buffer-local autocommands
8724 if (event
== EVENT_BUFWIPEOUT
&& buf
!= NULL
)
8725 aubuflocal_remove(buf
);
8731 * Find next autocommand pattern that matches.
8734 auto_next_pat(apc
, stop_at_last
)
8736 int stop_at_last
; /* stop when 'last' flag is set */
8743 vim_free(sourcing_name
);
8744 sourcing_name
= NULL
;
8746 for (ap
= apc
->curpat
; ap
!= NULL
&& !got_int
; ap
= ap
->next
)
8750 /* only use a pattern when it has not been removed, has commands and
8751 * the group matches. For buffer-local autocommands only check the
8753 if (ap
->pat
!= NULL
&& ap
->cmds
!= NULL
8754 && (apc
->group
== AUGROUP_ALL
|| apc
->group
== ap
->group
))
8756 /* execution-condition */
8757 if (ap
->buflocal_nr
== 0
8758 ? (match_file_pat(NULL
, ap
->reg_prog
, apc
->fname
,
8759 apc
->sfname
, apc
->tail
, ap
->allow_dirs
))
8760 : ap
->buflocal_nr
== apc
->arg_bufnr
)
8762 name
= event_nr2name(apc
->event
);
8763 s
= _("%s Auto commands for \"%s\"");
8764 sourcing_name
= alloc((unsigned)(STRLEN(s
)
8765 + STRLEN(name
) + ap
->patlen
+ 1));
8766 if (sourcing_name
!= NULL
)
8768 sprintf((char *)sourcing_name
, s
,
8769 (char *)name
, (char *)ap
->pat
);
8773 smsg((char_u
*)_("Executing %s"), sourcing_name
);
8779 apc
->nextcmd
= ap
->cmds
;
8780 /* mark last command */
8781 for (cp
= ap
->cmds
; cp
->next
!= NULL
; cp
= cp
->next
)
8786 if (apc
->curpat
!= NULL
) /* found a match */
8789 if (stop_at_last
&& ap
->last
)
8795 * Get next autocommand command.
8796 * Called by do_cmdline() to get the next line for ":if".
8797 * Returns allocated string, or NULL for end of autocommands.
8801 getnextac(c
, cookie
, indent
)
8802 int c
; /* not used */
8804 int indent
; /* not used */
8806 AutoPatCmd
*acp
= (AutoPatCmd
*)cookie
;
8810 /* Can be called again after returning the last line. */
8811 if (acp
->curpat
== NULL
)
8814 /* repeat until we find an autocommand to execute */
8817 /* skip removed commands */
8818 while (acp
->nextcmd
!= NULL
&& acp
->nextcmd
->cmd
== NULL
)
8819 if (acp
->nextcmd
->last
)
8820 acp
->nextcmd
= NULL
;
8822 acp
->nextcmd
= acp
->nextcmd
->next
;
8824 if (acp
->nextcmd
!= NULL
)
8827 /* at end of commands, find next pattern that matches */
8828 if (acp
->curpat
->last
)
8831 acp
->curpat
= acp
->curpat
->next
;
8832 if (acp
->curpat
!= NULL
)
8833 auto_next_pat(acp
, TRUE
);
8834 if (acp
->curpat
== NULL
)
8842 verbose_enter_scroll();
8843 smsg((char_u
*)_("autocommand %s"), ac
->cmd
);
8844 msg_puts((char_u
*)"\n"); /* don't overwrite this either */
8845 verbose_leave_scroll();
8847 retval
= vim_strsave(ac
->cmd
);
8848 autocmd_nested
= ac
->nested
;
8850 current_SID
= ac
->scriptID
;
8853 acp
->nextcmd
= NULL
;
8855 acp
->nextcmd
= ac
->next
;
8860 * Return TRUE if there is a matching autocommand for "fname".
8861 * To account for buffer-local autocommands, function needs to know
8862 * in which buffer the file will be opened.
8865 has_autocmd(event
, sfname
, buf
)
8872 char_u
*tail
= gettail(sfname
);
8875 fname
= FullName_save(sfname
, FALSE
);
8879 #ifdef BACKSLASH_IN_FILENAME
8881 * Replace all backslashes with forward slashes. This makes the
8882 * autocommand patterns portable between Unix and MS-DOS.
8884 sfname
= vim_strsave(sfname
);
8886 forward_slash(sfname
);
8887 forward_slash(fname
);
8890 for (ap
= first_autopat
[(int)event
]; ap
!= NULL
; ap
= ap
->next
)
8891 if (ap
->pat
!= NULL
&& ap
->cmds
!= NULL
8892 && (ap
->buflocal_nr
== 0
8893 ? match_file_pat(NULL
, ap
->reg_prog
,
8894 fname
, sfname
, tail
, ap
->allow_dirs
)
8895 : buf
!= NULL
&& ap
->buflocal_nr
== buf
->b_fnum
8903 #ifdef BACKSLASH_IN_FILENAME
8910 #if defined(FEAT_CMDL_COMPL) || defined(PROTO)
8912 * Function given to ExpandGeneric() to obtain the list of autocommand group
8917 get_augroup_name(xp
, idx
)
8921 if (idx
== augroups
.ga_len
) /* add "END" add the end */
8922 return (char_u
*)"END";
8923 if (idx
>= augroups
.ga_len
) /* end of list */
8925 if (AUGROUP_NAME(idx
) == NULL
) /* skip deleted entries */
8926 return (char_u
*)"";
8927 return AUGROUP_NAME(idx
); /* return a name */
8930 static int include_groups
= FALSE
;
8933 set_context_in_autocmd(xp
, arg
, doautocmd
)
8936 int doautocmd
; /* TRUE for :doautocmd, FALSE for :autocmd */
8941 /* check for a group name, skip it if present */
8942 include_groups
= FALSE
;
8944 group
= au_get_grouparg(&arg
);
8945 if (group
== AUGROUP_ERROR
)
8947 /* If there only is a group name that's what we expand. */
8948 if (*arg
== NUL
&& group
!= AUGROUP_ALL
&& !vim_iswhite(arg
[-1]))
8951 group
= AUGROUP_ALL
;
8954 /* skip over event name */
8955 for (p
= arg
; *p
!= NUL
&& !vim_iswhite(*p
); ++p
)
8960 if (group
== AUGROUP_ALL
)
8961 include_groups
= TRUE
;
8962 xp
->xp_context
= EXPAND_EVENTS
; /* expand event name */
8963 xp
->xp_pattern
= arg
;
8967 /* skip over pattern */
8969 while (*arg
&& (!vim_iswhite(*arg
) || arg
[-1] == '\\'))
8972 return arg
; /* expand (next) command */
8975 xp
->xp_context
= EXPAND_FILES
; /* expand file names */
8977 xp
->xp_context
= EXPAND_NOTHING
; /* pattern is not expanded */
8982 * Function given to ExpandGeneric() to obtain the list of event names.
8986 get_event_name(xp
, idx
)
8990 if (idx
< augroups
.ga_len
) /* First list group names, if wanted */
8992 if (!include_groups
|| AUGROUP_NAME(idx
) == NULL
)
8993 return (char_u
*)""; /* skip deleted entries */
8994 return AUGROUP_NAME(idx
); /* return a name */
8996 return (char_u
*)event_names
[idx
- augroups
.ga_len
].name
;
8999 #endif /* FEAT_CMDL_COMPL */
9002 * Return TRUE if autocmd is supported.
9005 autocmd_supported(name
)
9010 return (event_name2nr(name
, &p
) != NUM_EVENTS
);
9014 * Return TRUE if an autocommand is defined for a group, event and
9015 * pattern: The group can be omitted to accept any group. "event" and "pattern"
9016 * can be NULL to accept any event and pattern. "pattern" can be NULL to accept
9017 * any pattern. Buffer-local patterns <buffer> or <buffer=N> are accepted.
9019 * exists("#Group") or
9020 * exists("#Group#Event") or
9021 * exists("#Group#Event#pat") or
9022 * exists("#Event") or
9023 * exists("#Event#pat")
9030 char_u
*pattern
= NULL
;
9035 buf_T
*buflocal_buf
= NULL
;
9039 /* Make a copy so that we can change the '#' chars to a NUL. */
9040 arg_save
= vim_strsave(arg
);
9041 if (arg_save
== NULL
)
9043 p
= vim_strchr(arg_save
, '#');
9047 /* First, look for an autocmd group name */
9048 group
= au_find_group(arg_save
);
9049 if (group
== AUGROUP_ERROR
)
9051 /* Didn't match a group name, assume the first argument is an event. */
9052 group
= AUGROUP_ALL
;
9053 event_name
= arg_save
;
9059 /* "Group": group name is present and it's recognized */
9064 /* Must be "Group#Event" or "Group#Event#pat". */
9066 p
= vim_strchr(event_name
, '#');
9068 *p
++ = NUL
; /* "Group#Event#pat" */
9071 pattern
= p
; /* "pattern" is NULL when there is no pattern */
9073 /* find the index (enum) for the event name */
9074 event
= event_name2nr(event_name
, &p
);
9076 /* return FALSE if the event name is not recognized */
9077 if (event
== NUM_EVENTS
)
9080 /* Find the first autocommand for this event.
9081 * If there isn't any, return FALSE;
9082 * If there is one and no pattern given, return TRUE; */
9083 ap
= first_autopat
[(int)event
];
9086 if (pattern
== NULL
)
9092 /* if pattern is "<buffer>", special handling is needed which uses curbuf */
9093 /* for pattern "<buffer=N>, fnamecmp() will work fine */
9094 if (STRICMP(pattern
, "<buffer>") == 0)
9095 buflocal_buf
= curbuf
;
9097 /* Check if there is an autocommand with the given pattern. */
9098 for ( ; ap
!= NULL
; ap
= ap
->next
)
9099 /* only use a pattern when it has not been removed and has commands. */
9100 /* For buffer-local autocommands, fnamecmp() works fine. */
9101 if (ap
->pat
!= NULL
&& ap
->cmds
!= NULL
9102 && (group
== AUGROUP_ALL
|| ap
->group
== group
)
9103 && (buflocal_buf
== NULL
9104 ? fnamecmp(ap
->pat
, pattern
) == 0
9105 : ap
->buflocal_nr
== buflocal_buf
->b_fnum
))
9116 #else /* FEAT_AUTOCMD */
9119 * Prepare for executing commands for (hidden) buffer "buf".
9120 * This is the non-autocommand version, it simply saves "curbuf" and sets
9121 * "curbuf" and "curwin" to match "buf".
9124 aucmd_prepbuf(aco
, buf
)
9125 aco_save_T
*aco
; /* structure to save values in */
9126 buf_T
*buf
; /* new curbuf */
9128 aco
->save_buf
= buf
;
9130 curwin
->w_buffer
= buf
;
9134 * Restore after executing commands for a (hidden) buffer.
9135 * This is the non-autocommand version.
9139 aco_save_T
*aco
; /* structure holding saved values */
9141 curbuf
= aco
->save_buf
;
9142 curwin
->w_buffer
= curbuf
;
9145 #endif /* FEAT_AUTOCMD */
9148 #if defined(FEAT_AUTOCMD) || defined(FEAT_WILDIGN) || defined(PROTO)
9150 * Try matching a filename with a "pattern" ("prog" is NULL), or use the
9151 * precompiled regprog "prog" ("pattern" is NULL). That avoids calling
9152 * vim_regcomp() often.
9153 * Used for autocommands and 'wildignore'.
9154 * Returns TRUE if there is a match, FALSE otherwise.
9157 match_file_pat(pattern
, prog
, fname
, sfname
, tail
, allow_dirs
)
9158 char_u
*pattern
; /* pattern to match with */
9159 regprog_T
*prog
; /* pre-compiled regprog or NULL */
9160 char_u
*fname
; /* full path of file name */
9161 char_u
*sfname
; /* short file name or NULL */
9162 char_u
*tail
; /* tail of path */
9163 int allow_dirs
; /* allow matching with dir */
9165 regmatch_T regmatch
;
9167 #ifdef FEAT_OSFILETYPE
9168 int no_pattern
= FALSE
; /* TRUE if check is filetype only */
9174 #ifdef CASE_INSENSITIVE_FILENAME
9175 regmatch
.rm_ic
= TRUE
; /* Always ignore case */
9177 regmatch
.rm_ic
= FALSE
; /* Don't ever ignore case */
9179 #ifdef FEAT_OSFILETYPE
9180 if (*pattern
== '<')
9182 /* There is a filetype condition specified with this pattern.
9183 * Check the filetype matches first. If not, don't bother with the
9184 * pattern (set regprog to NULL).
9185 * Always use magic for the regexp.
9188 for (type_start
= pattern
+ 1; (c
= *pattern
); pattern
++)
9190 if ((c
== ';' || c
== '>') && match
== FALSE
)
9192 *pattern
= NUL
; /* Terminate the string */
9193 match
= mch_check_filetype(fname
, type_start
);
9194 *pattern
= c
; /* Restore the terminator */
9195 type_start
= pattern
+ 1;
9201 /* (c should never be NUL, but check anyway) */
9202 if (match
== FALSE
|| c
== NUL
)
9203 regmatch
.regprog
= NULL
; /* Doesn't match - don't check pat. */
9204 else if (*pattern
== NUL
)
9206 regmatch
.regprog
= NULL
; /* Vim will try to free regprog later */
9207 no_pattern
= TRUE
; /* Always matches - don't check pat. */
9210 regmatch
.regprog
= vim_regcomp(pattern
+ 1, RE_MAGIC
);
9216 regmatch
.regprog
= prog
;
9218 regmatch
.regprog
= vim_regcomp(pattern
, RE_MAGIC
);
9222 * Try for a match with the pattern with:
9223 * 1. the full file name, when the pattern has a '/'.
9224 * 2. the short file name, when the pattern has a '/'.
9225 * 3. the tail of the file name, when the pattern has no '/'.
9228 #ifdef FEAT_OSFILETYPE
9229 /* If the check is for a filetype only and we don't care
9230 * about the path then skip all the regexp stuff.
9234 (regmatch
.regprog
!= NULL
9236 && (vim_regexec(®match
, fname
, (colnr_T
)0)
9238 && vim_regexec(®match
, sfname
, (colnr_T
)0))))
9239 || (!allow_dirs
&& vim_regexec(®match
, tail
, (colnr_T
)0)))))
9243 vim_free(regmatch
.regprog
);
9248 #if defined(FEAT_WILDIGN) || defined(PROTO)
9250 * Return TRUE if a file matches with a pattern in "list".
9251 * "list" is a comma-separated list of patterns, like 'wildignore'.
9252 * "sfname" is the short file name or NULL, "ffname" the long file name.
9255 match_file_list(list
, sfname
, ffname
)
9267 tail
= gettail(sfname
);
9269 /* try all patterns in 'wildignore' */
9273 copy_option_part(&p
, buf
, 100, ",");
9274 regpat
= file_pat_to_reg_pat(buf
, NULL
, &allow_dirs
, FALSE
);
9277 match
= match_file_pat(regpat
, NULL
, ffname
, sfname
,
9278 tail
, (int)allow_dirs
);
9288 * Convert the given pattern "pat" which has shell style wildcards in it, into
9289 * a regular expression, and return the result in allocated memory. If there
9290 * is a directory path separator to be matched, then TRUE is put in
9291 * allow_dirs, otherwise FALSE is put there -- webb.
9292 * Handle backslashes before special characters, like "\*" and "\ ".
9294 * If FEAT_OSFILETYPE defined then pass initial <type> through unchanged. Eg:
9295 * '<html>myfile' becomes '<html>^myfile$' -- leonard.
9297 * Returns NULL when out of memory.
9301 file_pat_to_reg_pat(pat
, pat_end
, allow_dirs
, no_bslash
)
9303 char_u
*pat_end
; /* first char after pattern or NULL */
9304 char *allow_dirs
; /* Result passed back out in here */
9305 int no_bslash
; /* Don't use a backward slash as pathsep */
9313 int add_dollar
= TRUE
;
9314 #ifdef FEAT_OSFILETYPE
9315 int check_length
= 0;
9318 if (allow_dirs
!= NULL
)
9319 *allow_dirs
= FALSE
;
9320 if (pat_end
== NULL
)
9321 pat_end
= pat
+ STRLEN(pat
);
9323 #ifdef FEAT_OSFILETYPE
9324 /* Find out how much of the string is the filetype check */
9327 /* Count chars until the next '>' */
9328 for (p
= pat
+ 1; p
< pat_end
&& *p
!= '>'; p
++)
9332 /* Pattern is of the form <.*>.* */
9333 check_length
= p
- pat
+ 1;
9334 if (p
+ 1 >= pat_end
)
9336 /* The 'pattern' is a filetype check ONLY */
9337 reg_pat
= (char_u
*)alloc(check_length
+ 1);
9338 if (reg_pat
!= NULL
)
9340 mch_memmove(reg_pat
, pat
, (size_t)check_length
);
9341 reg_pat
[check_length
] = NUL
;
9346 /* else: there was no closing '>' - assume it was a normal pattern */
9349 pat
+= check_length
;
9350 size
= 2 + check_length
;
9352 size
= 2; /* '^' at start, '$' at end */
9355 for (p
= pat
; p
< pat_end
; p
++)
9365 size
+= 2; /* extra backslash */
9367 #ifdef BACKSLASH_IN_FILENAME
9370 size
+= 4; /* could become "[\/]" */
9376 if (enc_dbcs
!= 0 && (*mb_ptr2len
)(p
) > 1)
9385 reg_pat
= alloc(size
+ 1);
9386 if (reg_pat
== NULL
)
9389 #ifdef FEAT_OSFILETYPE
9390 /* Copy the type check in to the start. */
9392 mch_memmove(reg_pat
, pat
- check_length
, (size_t)check_length
);
9399 while (pat
[0] == '*' && pat
< pat_end
- 1)
9406 while (endp
- pat
> 0 && *endp
== '*')
9410 for (p
= pat
; *p
&& nested
>= 0 && p
<= endp
; p
++)
9417 while (p
[1] == '*') /* "**" matches like "*" */
9422 if (allow_dirs
!= NULL
)
9427 reg_pat
[i
++] = '\\';
9439 #ifdef BACKSLASH_IN_FILENAME
9443 * "\x" to "\\x" e.g., "dir\file"
9444 * "\*" to "\\.*" e.g., "dir\*.c"
9445 * "\?" to "\\." e.g., "dir\??.c"
9446 * "\+" to "\+" e.g., "fileX\+.c"
9448 if ((vim_isfilec(p
[1]) || p
[1] == '*' || p
[1] == '?')
9452 reg_pat
[i
++] = '\\';
9455 if (allow_dirs
!= NULL
)
9462 #ifdef BACKSLASH_IN_FILENAME
9472 if (allow_dirs
!= NULL
&& vim_ispathsep(*p
)
9473 #ifdef BACKSLASH_IN_FILENAME
9474 && (!no_bslash
|| *p
!= '\\')
9478 reg_pat
[i
++] = '\\';
9482 #ifdef BACKSLASH_IN_FILENAME
9485 reg_pat
[i
++] = '\\';
9488 if (allow_dirs
!= NULL
)
9493 reg_pat
[i
++] = '\\';
9498 reg_pat
[i
++] = '\\';
9505 reg_pat
[i
++] = '\\';
9513 if (enc_dbcs
!= 0 && (*mb_ptr2len
)(p
) > 1)
9514 reg_pat
[i
++] = *p
++;
9517 if (allow_dirs
!= NULL
&& vim_ispathsep(*p
))
9529 EMSG(_("E219: Missing {."));
9531 EMSG(_("E220: Missing }."));