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