/src/fileio.c

https://bitbucket.org/ultra_iter/vim-qt · C · 10387 lines · 8914 code · 369 blank · 1104 comment · 1570 complexity · 7577f997c8f865403772e706d7db9d28 MD5 · raw file

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