rmail-new-summary fix for bug#13066
[emacs.git] / src / fileio.c
blob490116dbc5cd1f014453ac84beeb5e12940c29e3
1 /* File IO for GNU Emacs.
3 Copyright (C) 1985-1988, 1993-2012 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 #include <config.h>
21 #include <limits.h>
22 #include <fcntl.h>
23 #include <stdio.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <unistd.h>
28 #ifdef HAVE_PWD_H
29 #include <pwd.h>
30 #endif
32 #include <errno.h>
34 #ifdef HAVE_LIBSELINUX
35 #include <selinux/selinux.h>
36 #include <selinux/context.h>
37 #endif
39 #include <c-ctype.h>
41 #include "lisp.h"
42 #include "intervals.h"
43 #include "character.h"
44 #include "buffer.h"
45 #include "coding.h"
46 #include "window.h"
47 #include "blockinput.h"
48 #include "frame.h"
49 #include "dispextern.h"
51 #ifdef WINDOWSNT
52 #define NOMINMAX 1
53 #include <windows.h>
54 #include <fcntl.h>
55 #include <sys/file.h>
56 #include "w32.h"
57 #endif /* not WINDOWSNT */
59 #ifdef MSDOS
60 #include "msdos.h"
61 #include <sys/param.h>
62 #include <fcntl.h>
63 #endif
65 #ifdef DOS_NT
66 /* On Windows, drive letters must be alphabetic - on DOS, the Netware
67 redirector allows the six letters between 'Z' and 'a' as well. */
68 #ifdef MSDOS
69 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
70 #endif
71 #ifdef WINDOWSNT
72 #define IS_DRIVE(x) c_isalpha (x)
73 #endif
74 /* Need to lower-case the drive letter, or else expanded
75 filenames will sometimes compare unequal, because
76 `expand-file-name' doesn't always down-case the drive letter. */
77 #define DRIVE_LETTER(x) c_tolower (x)
78 #endif
80 #include "systime.h"
81 #include <stat-time.h>
83 #ifdef HPUX
84 #include <netio.h>
85 #endif
87 #include "commands.h"
89 /* True during writing of auto-save files. */
90 static bool auto_saving;
92 /* Nonzero umask during creation of auto-save directories. */
93 static mode_t auto_saving_dir_umask;
95 /* Set by auto_save_1 to mode of original file so Fwrite_region will create
96 a new file with the same mode as the original. */
97 static mode_t auto_save_mode_bits;
99 /* Set by auto_save_1 if an error occurred during the last auto-save. */
100 static bool auto_save_error_occurred;
102 /* The symbol bound to coding-system-for-read when
103 insert-file-contents is called for recovering a file. This is not
104 an actual coding system name, but just an indicator to tell
105 insert-file-contents to use `emacs-mule' with a special flag for
106 auto saving and recovering a file. */
107 static Lisp_Object Qauto_save_coding;
109 /* Property name of a file name handler,
110 which gives a list of operations it handles.. */
111 static Lisp_Object Qoperations;
113 /* Lisp functions for translating file formats. */
114 static Lisp_Object Qformat_decode, Qformat_annotate_function;
116 /* Lisp function for setting buffer-file-coding-system and the
117 multibyteness of the current buffer after inserting a file. */
118 static Lisp_Object Qafter_insert_file_set_coding;
120 static Lisp_Object Qwrite_region_annotate_functions;
121 /* Each time an annotation function changes the buffer, the new buffer
122 is added here. */
123 static Lisp_Object Vwrite_region_annotation_buffers;
125 #ifdef HAVE_FSYNC
126 #endif
128 static Lisp_Object Qdelete_by_moving_to_trash;
130 /* Lisp function for moving files to trash. */
131 static Lisp_Object Qmove_file_to_trash;
133 /* Lisp function for recursively copying directories. */
134 static Lisp_Object Qcopy_directory;
136 /* Lisp function for recursively deleting directories. */
137 static Lisp_Object Qdelete_directory;
139 #ifdef WINDOWSNT
140 #endif
142 Lisp_Object Qfile_error;
143 static Lisp_Object Qfile_already_exists, Qfile_date_error;
144 static Lisp_Object Qexcl;
145 Lisp_Object Qfile_name_history;
147 static Lisp_Object Qcar_less_than_car;
149 static bool a_write (int, Lisp_Object, ptrdiff_t, ptrdiff_t,
150 Lisp_Object *, struct coding_system *);
151 static bool e_write (int, Lisp_Object, ptrdiff_t, ptrdiff_t,
152 struct coding_system *);
155 void
156 report_file_error (const char *string, Lisp_Object data)
158 Lisp_Object errstring;
159 int errorno = errno;
160 char *str;
162 synchronize_system_messages_locale ();
163 str = strerror (errorno);
164 errstring = code_convert_string_norecord (build_unibyte_string (str),
165 Vlocale_coding_system, 0);
167 while (1)
168 switch (errorno)
170 case EEXIST:
171 xsignal (Qfile_already_exists, Fcons (errstring, data));
172 break;
173 default:
174 /* System error messages are capitalized. Downcase the initial
175 unless it is followed by a slash. (The slash case caters to
176 error messages that begin with "I/O" or, in German, "E/A".) */
177 if (STRING_MULTIBYTE (errstring)
178 && ! EQ (Faref (errstring, make_number (1)), make_number ('/')))
180 int c;
182 str = SSDATA (errstring);
183 c = STRING_CHAR ((unsigned char *) str);
184 Faset (errstring, make_number (0), make_number (downcase (c)));
187 xsignal (Qfile_error,
188 Fcons (build_string (string), Fcons (errstring, data)));
192 Lisp_Object
193 close_file_unwind (Lisp_Object fd)
195 emacs_close (XFASTINT (fd));
196 return Qnil;
199 /* Restore point, having saved it as a marker. */
201 Lisp_Object
202 restore_point_unwind (Lisp_Object location)
204 Fgoto_char (location);
205 Fset_marker (location, Qnil, Qnil);
206 return Qnil;
210 static Lisp_Object Qexpand_file_name;
211 static Lisp_Object Qsubstitute_in_file_name;
212 static Lisp_Object Qdirectory_file_name;
213 static Lisp_Object Qfile_name_directory;
214 static Lisp_Object Qfile_name_nondirectory;
215 static Lisp_Object Qunhandled_file_name_directory;
216 static Lisp_Object Qfile_name_as_directory;
217 static Lisp_Object Qcopy_file;
218 static Lisp_Object Qmake_directory_internal;
219 static Lisp_Object Qmake_directory;
220 static Lisp_Object Qdelete_directory_internal;
221 Lisp_Object Qdelete_file;
222 static Lisp_Object Qrename_file;
223 static Lisp_Object Qadd_name_to_file;
224 static Lisp_Object Qmake_symbolic_link;
225 Lisp_Object Qfile_exists_p;
226 static Lisp_Object Qfile_executable_p;
227 static Lisp_Object Qfile_readable_p;
228 static Lisp_Object Qfile_writable_p;
229 static Lisp_Object Qfile_symlink_p;
230 static Lisp_Object Qaccess_file;
231 Lisp_Object Qfile_directory_p;
232 static Lisp_Object Qfile_regular_p;
233 static Lisp_Object Qfile_accessible_directory_p;
234 static Lisp_Object Qfile_modes;
235 static Lisp_Object Qset_file_modes;
236 static Lisp_Object Qset_file_times;
237 static Lisp_Object Qfile_selinux_context;
238 static Lisp_Object Qset_file_selinux_context;
239 static Lisp_Object Qfile_newer_than_file_p;
240 Lisp_Object Qinsert_file_contents;
241 Lisp_Object Qwrite_region;
242 static Lisp_Object Qverify_visited_file_modtime;
243 static Lisp_Object Qset_visited_file_modtime;
245 DEFUN ("find-file-name-handler", Ffind_file_name_handler,
246 Sfind_file_name_handler, 2, 2, 0,
247 doc: /* Return FILENAME's handler function for OPERATION, if it has one.
248 Otherwise, return nil.
249 A file name is handled if one of the regular expressions in
250 `file-name-handler-alist' matches it.
252 If OPERATION equals `inhibit-file-name-operation', then we ignore
253 any handlers that are members of `inhibit-file-name-handlers',
254 but we still do run any other handlers. This lets handlers
255 use the standard functions without calling themselves recursively. */)
256 (Lisp_Object filename, Lisp_Object operation)
258 /* This function must not munge the match data. */
259 Lisp_Object chain, inhibited_handlers, result;
260 ptrdiff_t pos = -1;
262 result = Qnil;
263 CHECK_STRING (filename);
265 if (EQ (operation, Vinhibit_file_name_operation))
266 inhibited_handlers = Vinhibit_file_name_handlers;
267 else
268 inhibited_handlers = Qnil;
270 for (chain = Vfile_name_handler_alist; CONSP (chain);
271 chain = XCDR (chain))
273 Lisp_Object elt;
274 elt = XCAR (chain);
275 if (CONSP (elt))
277 Lisp_Object string = XCAR (elt);
278 ptrdiff_t match_pos;
279 Lisp_Object handler = XCDR (elt);
280 Lisp_Object operations = Qnil;
282 if (SYMBOLP (handler))
283 operations = Fget (handler, Qoperations);
285 if (STRINGP (string)
286 && (match_pos = fast_string_match (string, filename)) > pos
287 && (NILP (operations) || ! NILP (Fmemq (operation, operations))))
289 Lisp_Object tem;
291 handler = XCDR (elt);
292 tem = Fmemq (handler, inhibited_handlers);
293 if (NILP (tem))
295 result = handler;
296 pos = match_pos;
301 QUIT;
303 return result;
306 DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory,
307 1, 1, 0,
308 doc: /* Return the directory component in file name FILENAME.
309 Return nil if FILENAME does not include a directory.
310 Otherwise return a directory name.
311 Given a Unix syntax file name, returns a string ending in slash. */)
312 (Lisp_Object filename)
314 #ifndef DOS_NT
315 register const char *beg;
316 #else
317 register char *beg;
318 Lisp_Object tem_fn;
319 #endif
320 register const char *p;
321 Lisp_Object handler;
323 CHECK_STRING (filename);
325 /* If the file name has special constructs in it,
326 call the corresponding file handler. */
327 handler = Ffind_file_name_handler (filename, Qfile_name_directory);
328 if (!NILP (handler))
330 Lisp_Object handled_name = call2 (handler, Qfile_name_directory,
331 filename);
332 return STRINGP (handled_name) ? handled_name : Qnil;
335 #ifdef DOS_NT
336 beg = alloca (SBYTES (filename) + 1);
337 memcpy (beg, SSDATA (filename), SBYTES (filename) + 1);
338 #else
339 beg = SSDATA (filename);
340 #endif
341 p = beg + SBYTES (filename);
343 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
344 #ifdef DOS_NT
345 /* only recognize drive specifier at the beginning */
346 && !(p[-1] == ':'
347 /* handle the "/:d:foo" and "/:foo" cases correctly */
348 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg))
349 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
350 #endif
351 ) p--;
353 if (p == beg)
354 return Qnil;
355 #ifdef DOS_NT
356 /* Expansion of "c:" to drive and default directory. */
357 if (p[-1] == ':')
359 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
360 char *res = alloca (MAXPATHLEN + 1);
361 char *r = res;
363 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':')
365 memcpy (res, beg, 2);
366 beg += 2;
367 r += 2;
370 if (getdefdir (c_toupper (*beg) - 'A' + 1, r))
372 if (!IS_DIRECTORY_SEP (res[strlen (res) - 1]))
373 strcat (res, "/");
374 beg = res;
375 p = beg + strlen (beg);
378 tem_fn = ENCODE_FILE (make_specified_string (beg, -1, p - beg,
379 STRING_MULTIBYTE (filename)));
380 dostounix_filename (SSDATA (tem_fn));
381 return DECODE_FILE (tem_fn);
382 #else /* DOS_NT */
383 return make_specified_string (beg, -1, p - beg, STRING_MULTIBYTE (filename));
384 #endif /* DOS_NT */
387 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory,
388 Sfile_name_nondirectory, 1, 1, 0,
389 doc: /* Return file name FILENAME sans its directory.
390 For example, in a Unix-syntax file name,
391 this is everything after the last slash,
392 or the entire name if it contains no slash. */)
393 (Lisp_Object filename)
395 register const char *beg, *p, *end;
396 Lisp_Object handler;
398 CHECK_STRING (filename);
400 /* If the file name has special constructs in it,
401 call the corresponding file handler. */
402 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory);
403 if (!NILP (handler))
405 Lisp_Object handled_name = call2 (handler, Qfile_name_nondirectory,
406 filename);
407 if (STRINGP (handled_name))
408 return handled_name;
409 error ("Invalid handler in `file-name-handler-alist'");
412 beg = SSDATA (filename);
413 end = p = beg + SBYTES (filename);
415 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
416 #ifdef DOS_NT
417 /* only recognize drive specifier at beginning */
418 && !(p[-1] == ':'
419 /* handle the "/:d:foo" case correctly */
420 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
421 #endif
423 p--;
425 return make_specified_string (p, -1, end - p, STRING_MULTIBYTE (filename));
428 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory,
429 Sunhandled_file_name_directory, 1, 1, 0,
430 doc: /* Return a directly usable directory name somehow associated with FILENAME.
431 A `directly usable' directory name is one that may be used without the
432 intervention of any file handler.
433 If FILENAME is a directly usable file itself, return
434 \(file-name-directory FILENAME).
435 If FILENAME refers to a file which is not accessible from a local process,
436 then this should return nil.
437 The `call-process' and `start-process' functions use this function to
438 get a current directory to run processes in. */)
439 (Lisp_Object filename)
441 Lisp_Object handler;
443 /* If the file name has special constructs in it,
444 call the corresponding file handler. */
445 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
446 if (!NILP (handler))
448 Lisp_Object handled_name = call2 (handler, Qunhandled_file_name_directory,
449 filename);
450 return STRINGP (handled_name) ? handled_name : Qnil;
453 return Ffile_name_directory (filename);
456 /* Convert from file name SRC of length SRCLEN to directory name
457 in DST. On UNIX, just make sure there is a terminating /.
458 Return the length of DST. */
460 static ptrdiff_t
461 file_name_as_directory (char *dst, const char *src, ptrdiff_t srclen)
463 if (srclen == 0)
465 dst[0] = '.';
466 dst[1] = '/';
467 dst[2] = '\0';
468 return 2;
471 strcpy (dst, src);
473 if (!IS_DIRECTORY_SEP (dst[srclen - 1]))
475 dst[srclen] = DIRECTORY_SEP;
476 dst[srclen + 1] = '\0';
477 srclen++;
479 #ifdef DOS_NT
480 dostounix_filename (dst);
481 #endif
482 return srclen;
485 DEFUN ("file-name-as-directory", Ffile_name_as_directory,
486 Sfile_name_as_directory, 1, 1, 0,
487 doc: /* Return a string representing the file name FILE interpreted as a directory.
488 This operation exists because a directory is also a file, but its name as
489 a directory is different from its name as a file.
490 The result can be used as the value of `default-directory'
491 or passed as second argument to `expand-file-name'.
492 For a Unix-syntax file name, just appends a slash. */)
493 (Lisp_Object file)
495 char *buf;
496 ptrdiff_t length;
497 Lisp_Object handler;
499 CHECK_STRING (file);
500 if (NILP (file))
501 return Qnil;
503 /* If the file name has special constructs in it,
504 call the corresponding file handler. */
505 handler = Ffind_file_name_handler (file, Qfile_name_as_directory);
506 if (!NILP (handler))
508 Lisp_Object handled_name = call2 (handler, Qfile_name_as_directory,
509 file);
510 if (STRINGP (handled_name))
511 return handled_name;
512 error ("Invalid handler in `file-name-handler-alist'");
515 buf = alloca (SBYTES (file) + 10);
516 length = file_name_as_directory (buf, SSDATA (file), SBYTES (file));
517 return make_specified_string (buf, -1, length, STRING_MULTIBYTE (file));
520 /* Convert from directory name SRC of length SRCLEN to
521 file name in DST. On UNIX, just make sure there isn't
522 a terminating /. Return the length of DST. */
524 static ptrdiff_t
525 directory_file_name (char *dst, char *src, ptrdiff_t srclen)
527 /* Process as Unix format: just remove any final slash.
528 But leave "/" unchanged; do not change it to "". */
529 strcpy (dst, src);
530 if (srclen > 1
531 && IS_DIRECTORY_SEP (dst[srclen - 1])
532 #ifdef DOS_NT
533 && !IS_ANY_SEP (dst[srclen - 2])
534 #endif
537 dst[srclen - 1] = 0;
538 srclen--;
540 #ifdef DOS_NT
541 dostounix_filename (dst);
542 #endif
543 return srclen;
546 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
547 1, 1, 0,
548 doc: /* Returns the file name of the directory named DIRECTORY.
549 This is the name of the file that holds the data for the directory DIRECTORY.
550 This operation exists because a directory is also a file, but its name as
551 a directory is different from its name as a file.
552 In Unix-syntax, this function just removes the final slash. */)
553 (Lisp_Object directory)
555 char *buf;
556 ptrdiff_t length;
557 Lisp_Object handler;
559 CHECK_STRING (directory);
561 if (NILP (directory))
562 return Qnil;
564 /* If the file name has special constructs in it,
565 call the corresponding file handler. */
566 handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
567 if (!NILP (handler))
569 Lisp_Object handled_name = call2 (handler, Qdirectory_file_name,
570 directory);
571 if (STRINGP (handled_name))
572 return handled_name;
573 error ("Invalid handler in `file-name-handler-alist'");
576 buf = alloca (SBYTES (directory) + 20);
577 length = directory_file_name (buf, SSDATA (directory), SBYTES (directory));
578 return make_specified_string (buf, -1, length, STRING_MULTIBYTE (directory));
581 static const char make_temp_name_tbl[64] =
583 'A','B','C','D','E','F','G','H',
584 'I','J','K','L','M','N','O','P',
585 'Q','R','S','T','U','V','W','X',
586 'Y','Z','a','b','c','d','e','f',
587 'g','h','i','j','k','l','m','n',
588 'o','p','q','r','s','t','u','v',
589 'w','x','y','z','0','1','2','3',
590 '4','5','6','7','8','9','-','_'
593 static unsigned make_temp_name_count, make_temp_name_count_initialized_p;
595 /* Value is a temporary file name starting with PREFIX, a string.
597 The Emacs process number forms part of the result, so there is
598 no danger of generating a name being used by another process.
599 In addition, this function makes an attempt to choose a name
600 which has no existing file. To make this work, PREFIX should be
601 an absolute file name.
603 BASE64_P means add the pid as 3 characters in base64
604 encoding. In this case, 6 characters will be added to PREFIX to
605 form the file name. Otherwise, if Emacs is running on a system
606 with long file names, add the pid as a decimal number.
608 This function signals an error if no unique file name could be
609 generated. */
611 Lisp_Object
612 make_temp_name (Lisp_Object prefix, bool base64_p)
614 Lisp_Object val;
615 int len, clen;
616 printmax_t pid;
617 char *p, *data;
618 char pidbuf[INT_BUFSIZE_BOUND (printmax_t)];
619 int pidlen;
621 CHECK_STRING (prefix);
623 /* VAL is created by adding 6 characters to PREFIX. The first
624 three are the PID of this process, in base 64, and the second
625 three are incremented if the file already exists. This ensures
626 262144 unique file names per PID per PREFIX. */
628 pid = getpid ();
630 if (base64_p)
632 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
633 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
634 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
635 pidlen = 3;
637 else
639 #ifdef HAVE_LONG_FILE_NAMES
640 pidlen = sprintf (pidbuf, "%"pMd, pid);
641 #else
642 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
643 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
644 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
645 pidlen = 3;
646 #endif
649 len = SBYTES (prefix); clen = SCHARS (prefix);
650 val = make_uninit_multibyte_string (clen + 3 + pidlen, len + 3 + pidlen);
651 if (!STRING_MULTIBYTE (prefix))
652 STRING_SET_UNIBYTE (val);
653 data = SSDATA (val);
654 memcpy (data, SSDATA (prefix), len);
655 p = data + len;
657 memcpy (p, pidbuf, pidlen);
658 p += pidlen;
660 /* Here we try to minimize useless stat'ing when this function is
661 invoked many times successively with the same PREFIX. We achieve
662 this by initializing count to a random value, and incrementing it
663 afterwards.
665 We don't want make-temp-name to be called while dumping,
666 because then make_temp_name_count_initialized_p would get set
667 and then make_temp_name_count would not be set when Emacs starts. */
669 if (!make_temp_name_count_initialized_p)
671 make_temp_name_count = time (NULL);
672 make_temp_name_count_initialized_p = 1;
675 while (1)
677 unsigned num = make_temp_name_count;
679 p[0] = make_temp_name_tbl[num & 63], num >>= 6;
680 p[1] = make_temp_name_tbl[num & 63], num >>= 6;
681 p[2] = make_temp_name_tbl[num & 63], num >>= 6;
683 /* Poor man's congruential RN generator. Replace with
684 ++make_temp_name_count for debugging. */
685 make_temp_name_count += 25229;
686 make_temp_name_count %= 225307;
688 if (!check_existing (data))
690 /* We want to return only if errno is ENOENT. */
691 if (errno == ENOENT)
692 return val;
693 else
694 /* The error here is dubious, but there is little else we
695 can do. The alternatives are to return nil, which is
696 as bad as (and in many cases worse than) throwing the
697 error, or to ignore the error, which will likely result
698 in looping through 225307 stat's, which is not only
699 dog-slow, but also useless since eventually nil would
700 have to be returned anyway. */
701 report_file_error ("Cannot create temporary name for prefix",
702 Fcons (prefix, Qnil));
703 /* not reached */
709 DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
710 doc: /* Generate temporary file name (string) starting with PREFIX (a string).
711 The Emacs process number forms part of the result,
712 so there is no danger of generating a name being used by another process.
714 In addition, this function makes an attempt to choose a name
715 which has no existing file. To make this work,
716 PREFIX should be an absolute file name.
718 There is a race condition between calling `make-temp-name' and creating the
719 file which opens all kinds of security holes. For that reason, you should
720 probably use `make-temp-file' instead, except in three circumstances:
722 * If you are creating the file in the user's home directory.
723 * If you are creating a directory rather than an ordinary file.
724 * If you are taking special precautions as `make-temp-file' does. */)
725 (Lisp_Object prefix)
727 return make_temp_name (prefix, 0);
732 DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
733 doc: /* Convert filename NAME to absolute, and canonicalize it.
734 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
735 \(does not start with slash or tilde); if DEFAULT-DIRECTORY is nil or missing,
736 the current buffer's value of `default-directory' is used.
737 NAME should be a string that is a valid file name for the underlying
738 filesystem.
739 File name components that are `.' are removed, and
740 so are file name components followed by `..', along with the `..' itself;
741 note that these simplifications are done without checking the resulting
742 file names in the file system.
743 Multiple consecutive slashes are collapsed into a single slash,
744 except at the beginning of the file name when they are significant (e.g.,
745 UNC file names on MS-Windows.)
746 An initial `~/' expands to your home directory.
747 An initial `~USER/' expands to USER's home directory.
748 See also the function `substitute-in-file-name'.
750 For technical reasons, this function can return correct but
751 non-intuitive results for the root directory; for instance,
752 \(expand-file-name ".." "/") returns "/..". For this reason, use
753 \(directory-file-name (file-name-directory dirname)) to traverse a
754 filesystem tree, not (expand-file-name ".." dirname). */)
755 (Lisp_Object name, Lisp_Object default_directory)
757 /* These point to SDATA and need to be careful with string-relocation
758 during GC (via DECODE_FILE). */
759 char *nm;
760 const char *newdir;
761 /* This should only point to alloca'd data. */
762 char *target;
764 ptrdiff_t tlen;
765 struct passwd *pw;
766 #ifdef DOS_NT
767 int drive = 0;
768 bool collapse_newdir = 1;
769 bool is_escaped = 0;
770 #endif /* DOS_NT */
771 ptrdiff_t length;
772 Lisp_Object handler, result, handled_name;
773 bool multibyte;
774 Lisp_Object hdir;
776 CHECK_STRING (name);
778 /* If the file name has special constructs in it,
779 call the corresponding file handler. */
780 handler = Ffind_file_name_handler (name, Qexpand_file_name);
781 if (!NILP (handler))
783 handled_name = call3 (handler, Qexpand_file_name,
784 name, default_directory);
785 if (STRINGP (handled_name))
786 return handled_name;
787 error ("Invalid handler in `file-name-handler-alist'");
791 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
792 if (NILP (default_directory))
793 default_directory = BVAR (current_buffer, directory);
794 if (! STRINGP (default_directory))
796 #ifdef DOS_NT
797 /* "/" is not considered a root directory on DOS_NT, so using "/"
798 here causes an infinite recursion in, e.g., the following:
800 (let (default-directory)
801 (expand-file-name "a"))
803 To avoid this, we set default_directory to the root of the
804 current drive. */
805 default_directory = build_string (emacs_root_dir ());
806 #else
807 default_directory = build_string ("/");
808 #endif
811 if (!NILP (default_directory))
813 handler = Ffind_file_name_handler (default_directory, Qexpand_file_name);
814 if (!NILP (handler))
816 handled_name = call3 (handler, Qexpand_file_name,
817 name, default_directory);
818 if (STRINGP (handled_name))
819 return handled_name;
820 error ("Invalid handler in `file-name-handler-alist'");
825 char *o = SSDATA (default_directory);
827 /* Make sure DEFAULT_DIRECTORY is properly expanded.
828 It would be better to do this down below where we actually use
829 default_directory. Unfortunately, calling Fexpand_file_name recursively
830 could invoke GC, and the strings might be relocated. This would
831 be annoying because we have pointers into strings lying around
832 that would need adjusting, and people would add new pointers to
833 the code and forget to adjust them, resulting in intermittent bugs.
834 Putting this call here avoids all that crud.
836 The EQ test avoids infinite recursion. */
837 if (! NILP (default_directory) && !EQ (default_directory, name)
838 /* Save time in some common cases - as long as default_directory
839 is not relative, it can be canonicalized with name below (if it
840 is needed at all) without requiring it to be expanded now. */
841 #ifdef DOS_NT
842 /* Detect MSDOS file names with drive specifiers. */
843 && ! (IS_DRIVE (o[0]) && IS_DEVICE_SEP (o[1])
844 && IS_DIRECTORY_SEP (o[2]))
845 #ifdef WINDOWSNT
846 /* Detect Windows file names in UNC format. */
847 && ! (IS_DIRECTORY_SEP (o[0]) && IS_DIRECTORY_SEP (o[1]))
848 #endif
849 #else /* not DOS_NT */
850 /* Detect Unix absolute file names (/... alone is not absolute on
851 DOS or Windows). */
852 && ! (IS_DIRECTORY_SEP (o[0]))
853 #endif /* not DOS_NT */
856 struct gcpro gcpro1;
858 GCPRO1 (name);
859 default_directory = Fexpand_file_name (default_directory, Qnil);
860 UNGCPRO;
863 multibyte = STRING_MULTIBYTE (name);
864 if (multibyte != STRING_MULTIBYTE (default_directory))
866 if (multibyte)
867 default_directory = string_to_multibyte (default_directory);
868 else
870 name = string_to_multibyte (name);
871 multibyte = 1;
875 /* Make a local copy of nm[] to protect it from GC in DECODE_FILE below. */
876 nm = alloca (SBYTES (name) + 1);
877 memcpy (nm, SSDATA (name), SBYTES (name) + 1);
879 #ifdef DOS_NT
880 /* Note if special escape prefix is present, but remove for now. */
881 if (nm[0] == '/' && nm[1] == ':')
883 is_escaped = 1;
884 nm += 2;
887 /* Find and remove drive specifier if present; this makes nm absolute
888 even if the rest of the name appears to be relative. Only look for
889 drive specifier at the beginning. */
890 if (IS_DRIVE (nm[0]) && IS_DEVICE_SEP (nm[1]))
892 drive = (unsigned char) nm[0];
893 nm += 2;
896 #ifdef WINDOWSNT
897 /* If we see "c://somedir", we want to strip the first slash after the
898 colon when stripping the drive letter. Otherwise, this expands to
899 "//somedir". */
900 if (drive && IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
901 nm++;
903 /* Discard any previous drive specifier if nm is now in UNC format. */
904 if (IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
906 drive = 0;
908 #endif /* WINDOWSNT */
909 #endif /* DOS_NT */
911 /* If nm is absolute, look for `/./' or `/../' or `//''sequences; if
912 none are found, we can probably return right away. We will avoid
913 allocating a new string if name is already fully expanded. */
914 if (
915 IS_DIRECTORY_SEP (nm[0])
916 #ifdef MSDOS
917 && drive && !is_escaped
918 #endif
919 #ifdef WINDOWSNT
920 && (drive || IS_DIRECTORY_SEP (nm[1])) && !is_escaped
921 #endif
924 /* If it turns out that the filename we want to return is just a
925 suffix of FILENAME, we don't need to go through and edit
926 things; we just need to construct a new string using data
927 starting at the middle of FILENAME. If we set LOSE, that
928 means we've discovered that we can't do that cool trick. */
929 bool lose = 0;
930 char *p = nm;
932 while (*p)
934 /* Since we know the name is absolute, we can assume that each
935 element starts with a "/". */
937 /* "." and ".." are hairy. */
938 if (IS_DIRECTORY_SEP (p[0])
939 && p[1] == '.'
940 && (IS_DIRECTORY_SEP (p[2])
941 || p[2] == 0
942 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3])
943 || p[3] == 0))))
944 lose = 1;
945 /* We want to replace multiple `/' in a row with a single
946 slash. */
947 else if (p > nm
948 && IS_DIRECTORY_SEP (p[0])
949 && IS_DIRECTORY_SEP (p[1]))
950 lose = 1;
951 p++;
953 if (!lose)
955 #ifdef DOS_NT
956 /* Make sure directories are all separated with /, but
957 avoid allocation of a new string when not required. */
958 if (multibyte)
960 Lisp_Object tem_name = make_specified_string (nm, -1, strlen (nm),
961 multibyte);
963 tem_name = ENCODE_FILE (tem_name);
964 dostounix_filename (SSDATA (tem_name));
965 tem_name = DECODE_FILE (tem_name);
966 memcpy (nm, SSDATA (tem_name), SBYTES (tem_name) + 1);
968 else
969 dostounix_filename (nm);
970 #ifdef WINDOWSNT
971 if (IS_DIRECTORY_SEP (nm[1]))
973 if (strcmp (nm, SSDATA (name)) != 0)
974 name = make_specified_string (nm, -1, strlen (nm), multibyte);
976 else
977 #endif
978 /* Drive must be set, so this is okay. */
979 if (strcmp (nm - 2, SSDATA (name)) != 0)
981 char temp[] = " :";
983 name = make_specified_string (nm, -1, p - nm, multibyte);
984 temp[0] = DRIVE_LETTER (drive);
985 name = concat2 (build_string (temp), name);
987 return name;
988 #else /* not DOS_NT */
989 if (strcmp (nm, SSDATA (name)) == 0)
990 return name;
991 return make_specified_string (nm, -1, strlen (nm), multibyte);
992 #endif /* not DOS_NT */
996 /* At this point, nm might or might not be an absolute file name. We
997 need to expand ~ or ~user if present, otherwise prefix nm with
998 default_directory if nm is not absolute, and finally collapse /./
999 and /foo/../ sequences.
1001 We set newdir to be the appropriate prefix if one is needed:
1002 - the relevant user directory if nm starts with ~ or ~user
1003 - the specified drive's working dir (DOS/NT only) if nm does not
1004 start with /
1005 - the value of default_directory.
1007 Note that these prefixes are not guaranteed to be absolute (except
1008 for the working dir of a drive). Therefore, to ensure we always
1009 return an absolute name, if the final prefix is not absolute we
1010 append it to the current working directory. */
1012 newdir = 0;
1014 if (nm[0] == '~') /* prefix ~ */
1016 if (IS_DIRECTORY_SEP (nm[1])
1017 || nm[1] == 0) /* ~ by itself */
1019 Lisp_Object tem;
1021 if (!(newdir = egetenv ("HOME")))
1022 newdir = "";
1023 nm++;
1024 /* `egetenv' may return a unibyte string, which will bite us since
1025 we expect the directory to be multibyte. */
1026 tem = build_string (newdir);
1027 if (!STRING_MULTIBYTE (tem))
1029 hdir = DECODE_FILE (tem);
1030 newdir = SSDATA (hdir);
1032 #ifdef DOS_NT
1033 collapse_newdir = 0;
1034 #endif
1036 else /* ~user/filename */
1038 char *o, *p;
1039 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p)); p++);
1040 o = alloca (p - nm + 1);
1041 memcpy (o, nm, p - nm);
1042 o [p - nm] = 0;
1044 block_input ();
1045 pw = (struct passwd *) getpwnam (o + 1);
1046 unblock_input ();
1047 if (pw)
1049 newdir = pw->pw_dir;
1050 nm = p;
1051 #ifdef DOS_NT
1052 collapse_newdir = 0;
1053 #endif
1056 /* If we don't find a user of that name, leave the name
1057 unchanged; don't move nm forward to p. */
1061 #ifdef DOS_NT
1062 /* On DOS and Windows, nm is absolute if a drive name was specified;
1063 use the drive's current directory as the prefix if needed. */
1064 if (!newdir && drive)
1066 /* Get default directory if needed to make nm absolute. */
1067 char *adir = NULL;
1068 if (!IS_DIRECTORY_SEP (nm[0]))
1070 adir = alloca (MAXPATHLEN + 1);
1071 if (!getdefdir (c_toupper (drive) - 'A' + 1, adir))
1072 adir = NULL;
1074 if (!adir)
1076 /* Either nm starts with /, or drive isn't mounted. */
1077 adir = alloca (4);
1078 adir[0] = DRIVE_LETTER (drive);
1079 adir[1] = ':';
1080 adir[2] = '/';
1081 adir[3] = 0;
1083 newdir = adir;
1085 #endif /* DOS_NT */
1087 /* Finally, if no prefix has been specified and nm is not absolute,
1088 then it must be expanded relative to default_directory. */
1090 if (1
1091 #ifndef DOS_NT
1092 /* /... alone is not absolute on DOS and Windows. */
1093 && !IS_DIRECTORY_SEP (nm[0])
1094 #endif
1095 #ifdef WINDOWSNT
1096 && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
1097 #endif
1098 && !newdir)
1100 newdir = SSDATA (default_directory);
1101 #ifdef DOS_NT
1102 /* Note if special escape prefix is present, but remove for now. */
1103 if (newdir[0] == '/' && newdir[1] == ':')
1105 is_escaped = 1;
1106 newdir += 2;
1108 #endif
1111 #ifdef DOS_NT
1112 if (newdir)
1114 /* First ensure newdir is an absolute name. */
1115 if (
1116 /* Detect MSDOS file names with drive specifiers. */
1117 ! (IS_DRIVE (newdir[0])
1118 && IS_DEVICE_SEP (newdir[1]) && IS_DIRECTORY_SEP (newdir[2]))
1119 #ifdef WINDOWSNT
1120 /* Detect Windows file names in UNC format. */
1121 && ! (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1122 #endif
1125 /* Effectively, let newdir be (expand-file-name newdir cwd).
1126 Because of the admonition against calling expand-file-name
1127 when we have pointers into lisp strings, we accomplish this
1128 indirectly by prepending newdir to nm if necessary, and using
1129 cwd (or the wd of newdir's drive) as the new newdir. */
1130 char *adir;
1131 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
1133 drive = (unsigned char) newdir[0];
1134 newdir += 2;
1136 if (!IS_DIRECTORY_SEP (nm[0]))
1138 ptrdiff_t newlen = strlen (newdir);
1139 char *tmp = alloca (newlen + strlen (nm) + 2);
1140 file_name_as_directory (tmp, newdir, newlen);
1141 strcat (tmp, nm);
1142 nm = tmp;
1144 adir = alloca (MAXPATHLEN + 1);
1145 if (drive)
1147 if (!getdefdir (c_toupper (drive) - 'A' + 1, adir))
1148 newdir = "/";
1150 else
1151 getwd (adir);
1152 newdir = adir;
1155 /* Strip off drive name from prefix, if present. */
1156 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
1158 drive = newdir[0];
1159 newdir += 2;
1162 /* Keep only a prefix from newdir if nm starts with slash
1163 (//server/share for UNC, nothing otherwise). */
1164 if (IS_DIRECTORY_SEP (nm[0]) && collapse_newdir)
1166 #ifdef WINDOWSNT
1167 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1169 char *adir = strcpy (alloca (strlen (newdir) + 1), newdir);
1170 char *p = adir + 2;
1171 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1172 p++;
1173 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1174 *p = 0;
1175 newdir = adir;
1177 else
1178 #endif
1179 newdir = "";
1182 #endif /* DOS_NT */
1184 if (newdir)
1186 /* Get rid of any slash at the end of newdir, unless newdir is
1187 just / or // (an incomplete UNC name). */
1188 length = strlen (newdir);
1189 tlen = length + 1;
1190 if (length > 1 && IS_DIRECTORY_SEP (newdir[length - 1])
1191 #ifdef WINDOWSNT
1192 && !(length == 2 && IS_DIRECTORY_SEP (newdir[0]))
1193 #endif
1196 char *temp = alloca (length);
1197 memcpy (temp, newdir, length - 1);
1198 temp[length - 1] = 0;
1199 length--;
1200 newdir = temp;
1203 else
1205 length = 0;
1206 tlen = 0;
1209 /* Now concatenate the directory and name to new space in the stack frame. */
1210 tlen += strlen (nm) + 1;
1211 #ifdef DOS_NT
1212 /* Reserve space for drive specifier and escape prefix, since either
1213 or both may need to be inserted. (The Microsoft x86 compiler
1214 produces incorrect code if the following two lines are combined.) */
1215 target = alloca (tlen + 4);
1216 target += 4;
1217 #else /* not DOS_NT */
1218 target = alloca (tlen);
1219 #endif /* not DOS_NT */
1220 *target = 0;
1222 if (newdir)
1224 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0]))
1226 #ifdef DOS_NT
1227 /* If newdir is effectively "C:/", then the drive letter will have
1228 been stripped and newdir will be "/". Concatenating with an
1229 absolute directory in nm produces "//", which will then be
1230 incorrectly treated as a network share. Ignore newdir in
1231 this case (keeping the drive letter). */
1232 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0])
1233 && newdir[1] == '\0'))
1234 #endif
1235 strcpy (target, newdir);
1237 else
1238 file_name_as_directory (target, newdir, length);
1241 strcat (target, nm);
1243 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they
1244 appear. */
1246 char *p = target;
1247 char *o = target;
1249 while (*p)
1251 if (!IS_DIRECTORY_SEP (*p))
1253 *o++ = *p++;
1255 else if (p[1] == '.'
1256 && (IS_DIRECTORY_SEP (p[2])
1257 || p[2] == 0))
1259 /* If "/." is the entire filename, keep the "/". Otherwise,
1260 just delete the whole "/.". */
1261 if (o == target && p[2] == '\0')
1262 *o++ = *p;
1263 p += 2;
1265 else if (p[1] == '.' && p[2] == '.'
1266 /* `/../' is the "superroot" on certain file systems.
1267 Turned off on DOS_NT systems because they have no
1268 "superroot" and because this causes us to produce
1269 file names like "d:/../foo" which fail file-related
1270 functions of the underlying OS. (To reproduce, try a
1271 long series of "../../" in default_directory, longer
1272 than the number of levels from the root.) */
1273 #ifndef DOS_NT
1274 && o != target
1275 #endif
1276 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0))
1278 #ifdef WINDOWSNT
1279 char *prev_o = o;
1280 #endif
1281 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o))
1283 #ifdef WINDOWSNT
1284 /* Don't go below server level in UNC filenames. */
1285 if (o == target + 1 && IS_DIRECTORY_SEP (*o)
1286 && IS_DIRECTORY_SEP (*target))
1287 o = prev_o;
1288 else
1289 #endif
1290 /* Keep initial / only if this is the whole name. */
1291 if (o == target && IS_ANY_SEP (*o) && p[3] == 0)
1292 ++o;
1293 p += 3;
1295 else if (p > target && IS_DIRECTORY_SEP (p[1]))
1296 /* Collapse multiple `/' in a row. */
1297 p++;
1298 else
1300 *o++ = *p++;
1304 #ifdef DOS_NT
1305 /* At last, set drive name. */
1306 #ifdef WINDOWSNT
1307 /* Except for network file name. */
1308 if (!(IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1])))
1309 #endif /* WINDOWSNT */
1311 if (!drive) emacs_abort ();
1312 target -= 2;
1313 target[0] = DRIVE_LETTER (drive);
1314 target[1] = ':';
1316 /* Reinsert the escape prefix if required. */
1317 if (is_escaped)
1319 target -= 2;
1320 target[0] = '/';
1321 target[1] = ':';
1323 result = make_specified_string (target, -1, o - target, multibyte);
1324 result = ENCODE_FILE (result);
1325 dostounix_filename (SSDATA (result));
1326 result = DECODE_FILE (result);
1327 #else /* !DOS_NT */
1328 result = make_specified_string (target, -1, o - target, multibyte);
1329 #endif /* !DOS_NT */
1332 /* Again look to see if the file name has special constructs in it
1333 and perhaps call the corresponding file handler. This is needed
1334 for filenames such as "/foo/../user@host:/bar/../baz". Expanding
1335 the ".." component gives us "/user@host:/bar/../baz" which needs
1336 to be expanded again. */
1337 handler = Ffind_file_name_handler (result, Qexpand_file_name);
1338 if (!NILP (handler))
1340 handled_name = call3 (handler, Qexpand_file_name,
1341 result, default_directory);
1342 if (STRINGP (handled_name))
1343 return handled_name;
1344 error ("Invalid handler in `file-name-handler-alist'");
1347 return result;
1350 #if 0
1351 /* PLEASE DO NOT DELETE THIS COMMENTED-OUT VERSION!
1352 This is the old version of expand-file-name, before it was thoroughly
1353 rewritten for Emacs 10.31. We leave this version here commented-out,
1354 because the code is very complex and likely to have subtle bugs. If
1355 bugs _are_ found, it might be of interest to look at the old code and
1356 see what did it do in the relevant situation.
1358 Don't remove this code: it's true that it will be accessible
1359 from the repository, but a few years from deletion, people will
1360 forget it is there. */
1362 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1363 DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
1364 "Convert FILENAME to absolute, and canonicalize it.\n\
1365 Second arg DEFAULT is directory to start with if FILENAME is relative\n\
1366 \(does not start with slash); if DEFAULT is nil or missing,\n\
1367 the current buffer's value of default-directory is used.\n\
1368 Filenames containing `.' or `..' as components are simplified;\n\
1369 initial `~/' expands to your home directory.\n\
1370 See also the function `substitute-in-file-name'.")
1371 (name, defalt)
1372 Lisp_Object name, defalt;
1374 unsigned char *nm;
1376 register unsigned char *newdir, *p, *o;
1377 ptrdiff_t tlen;
1378 unsigned char *target;
1379 struct passwd *pw;
1381 CHECK_STRING (name);
1382 nm = SDATA (name);
1384 /* If nm is absolute, flush ...// and detect /./ and /../.
1385 If no /./ or /../ we can return right away. */
1386 if (nm[0] == '/')
1388 bool lose = 0;
1389 p = nm;
1390 while (*p)
1392 if (p[0] == '/' && p[1] == '/')
1393 nm = p + 1;
1394 if (p[0] == '/' && p[1] == '~')
1395 nm = p + 1, lose = 1;
1396 if (p[0] == '/' && p[1] == '.'
1397 && (p[2] == '/' || p[2] == 0
1398 || (p[2] == '.' && (p[3] == '/' || p[3] == 0))))
1399 lose = 1;
1400 p++;
1402 if (!lose)
1404 if (nm == SDATA (name))
1405 return name;
1406 return build_string (nm);
1410 /* Now determine directory to start with and put it in NEWDIR. */
1412 newdir = 0;
1414 if (nm[0] == '~') /* prefix ~ */
1415 if (nm[1] == '/' || nm[1] == 0)/* ~/filename */
1417 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1418 newdir = (unsigned char *) "";
1419 nm++;
1421 else /* ~user/filename */
1423 /* Get past ~ to user. */
1424 unsigned char *user = nm + 1;
1425 /* Find end of name. */
1426 unsigned char *ptr = (unsigned char *) strchr (user, '/');
1427 ptrdiff_t len = ptr ? ptr - user : strlen (user);
1428 /* Copy the user name into temp storage. */
1429 o = alloca (len + 1);
1430 memcpy (o, user, len);
1431 o[len] = 0;
1433 /* Look up the user name. */
1434 block_input ();
1435 pw = (struct passwd *) getpwnam (o + 1);
1436 unblock_input ();
1437 if (!pw)
1438 error ("\"%s\" isn't a registered user", o + 1);
1440 newdir = (unsigned char *) pw->pw_dir;
1442 /* Discard the user name from NM. */
1443 nm += len;
1446 if (nm[0] != '/' && !newdir)
1448 if (NILP (defalt))
1449 defalt = current_buffer->directory;
1450 CHECK_STRING (defalt);
1451 newdir = SDATA (defalt);
1454 /* Now concatenate the directory and name to new space in the stack frame. */
1456 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1;
1457 target = alloca (tlen);
1458 *target = 0;
1460 if (newdir)
1462 if (nm[0] == 0 || nm[0] == '/')
1463 strcpy (target, newdir);
1464 else
1465 file_name_as_directory (target, newdir);
1468 strcat (target, nm);
1470 /* Now canonicalize by removing /. and /foo/.. if they appear. */
1472 p = target;
1473 o = target;
1475 while (*p)
1477 if (*p != '/')
1479 *o++ = *p++;
1481 else if (!strncmp (p, "//", 2)
1484 o = target;
1485 p++;
1487 else if (p[0] == '/' && p[1] == '.'
1488 && (p[2] == '/' || p[2] == 0))
1489 p += 2;
1490 else if (!strncmp (p, "/..", 3)
1491 /* `/../' is the "superroot" on certain file systems. */
1492 && o != target
1493 && (p[3] == '/' || p[3] == 0))
1495 while (o != target && *--o != '/')
1497 if (o == target && *o == '/')
1498 ++o;
1499 p += 3;
1501 else
1503 *o++ = *p++;
1507 return make_string (target, o - target);
1509 #endif
1511 /* If /~ or // appears, discard everything through first slash. */
1512 static bool
1513 file_name_absolute_p (const char *filename)
1515 return
1516 (IS_DIRECTORY_SEP (*filename) || *filename == '~'
1517 #ifdef DOS_NT
1518 || (IS_DRIVE (*filename) && IS_DEVICE_SEP (filename[1])
1519 && IS_DIRECTORY_SEP (filename[2]))
1520 #endif
1524 static char *
1525 search_embedded_absfilename (char *nm, char *endp)
1527 char *p, *s;
1529 for (p = nm + 1; p < endp; p++)
1531 if (IS_DIRECTORY_SEP (p[-1])
1532 && file_name_absolute_p (p)
1533 #if defined (WINDOWSNT) || defined (CYGWIN)
1534 /* // at start of file name is meaningful in Apollo,
1535 WindowsNT and Cygwin systems. */
1536 && !(IS_DIRECTORY_SEP (p[0]) && p - 1 == nm)
1537 #endif /* not (WINDOWSNT || CYGWIN) */
1540 for (s = p; *s && !IS_DIRECTORY_SEP (*s); s++);
1541 if (p[0] == '~' && s > p + 1) /* We've got "/~something/". */
1543 char *o = alloca (s - p + 1);
1544 struct passwd *pw;
1545 memcpy (o, p, s - p);
1546 o [s - p] = 0;
1548 /* If we have ~user and `user' exists, discard
1549 everything up to ~. But if `user' does not exist, leave
1550 ~user alone, it might be a literal file name. */
1551 block_input ();
1552 pw = getpwnam (o + 1);
1553 unblock_input ();
1554 if (pw)
1555 return p;
1557 else
1558 return p;
1561 return NULL;
1564 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
1565 Ssubstitute_in_file_name, 1, 1, 0,
1566 doc: /* Substitute environment variables referred to in FILENAME.
1567 `$FOO' where FOO is an environment variable name means to substitute
1568 the value of that variable. The variable name should be terminated
1569 with a character not a letter, digit or underscore; otherwise, enclose
1570 the entire variable name in braces.
1572 If `/~' appears, all of FILENAME through that `/' is discarded.
1573 If `//' appears, everything up to and including the first of
1574 those `/' is discarded. */)
1575 (Lisp_Object filename)
1577 char *nm, *s, *p, *o, *x, *endp;
1578 char *target = NULL;
1579 int total = 0;
1580 bool substituted = 0;
1581 bool multibyte;
1582 char *xnm;
1583 Lisp_Object handler;
1585 CHECK_STRING (filename);
1587 multibyte = STRING_MULTIBYTE (filename);
1589 /* If the file name has special constructs in it,
1590 call the corresponding file handler. */
1591 handler = Ffind_file_name_handler (filename, Qsubstitute_in_file_name);
1592 if (!NILP (handler))
1594 Lisp_Object handled_name = call2 (handler, Qsubstitute_in_file_name,
1595 filename);
1596 if (STRINGP (handled_name))
1597 return handled_name;
1598 error ("Invalid handler in `file-name-handler-alist'");
1601 /* Always work on a copy of the string, in case GC happens during
1602 decode of environment variables, causing the original Lisp_String
1603 data to be relocated. */
1604 nm = alloca (SBYTES (filename) + 1);
1605 memcpy (nm, SDATA (filename), SBYTES (filename) + 1);
1607 #ifdef DOS_NT
1609 Lisp_Object encoded_filename = ENCODE_FILE (filename);
1610 Lisp_Object tem_fn;
1612 dostounix_filename (SDATA (encoded_filename));
1613 tem_fn = DECODE_FILE (encoded_filename);
1614 nm = alloca (SBYTES (tem_fn) + 1);
1615 memcpy (nm, SDATA (tem_fn), SBYTES (tem_fn) + 1);
1616 substituted = (memcmp (nm, SDATA (filename), SBYTES (filename)) != 0);
1617 if (substituted)
1618 filename = tem_fn;
1620 #endif
1621 endp = nm + SBYTES (filename);
1623 /* If /~ or // appears, discard everything through first slash. */
1624 p = search_embedded_absfilename (nm, endp);
1625 if (p)
1626 /* Start over with the new string, so we check the file-name-handler
1627 again. Important with filenames like "/home/foo//:/hello///there"
1628 which would substitute to "/:/hello///there" rather than "/there". */
1629 return Fsubstitute_in_file_name
1630 (make_specified_string (p, -1, endp - p, multibyte));
1632 /* See if any variables are substituted into the string
1633 and find the total length of their values in `total'. */
1635 for (p = nm; p != endp;)
1636 if (*p != '$')
1637 p++;
1638 else
1640 p++;
1641 if (p == endp)
1642 goto badsubst;
1643 else if (*p == '$')
1645 /* "$$" means a single "$". */
1646 p++;
1647 total -= 1;
1648 substituted = 1;
1649 continue;
1651 else if (*p == '{')
1653 o = ++p;
1654 while (p != endp && *p != '}') p++;
1655 if (*p != '}') goto missingclose;
1656 s = p;
1658 else
1660 o = p;
1661 while (p != endp && (c_isalnum (*p) || *p == '_')) p++;
1662 s = p;
1665 /* Copy out the variable name. */
1666 target = alloca (s - o + 1);
1667 memcpy (target, o, s - o);
1668 target[s - o] = 0;
1669 #ifdef DOS_NT
1670 strupr (target); /* $home == $HOME etc. */
1671 #endif /* DOS_NT */
1673 /* Get variable value. */
1674 o = egetenv (target);
1675 if (o)
1677 /* Don't try to guess a maximum length - UTF8 can use up to
1678 four bytes per character. This code is unlikely to run
1679 in a situation that requires performance, so decoding the
1680 env variables twice should be acceptable. Note that
1681 decoding may cause a garbage collect. */
1682 Lisp_Object orig, decoded;
1683 orig = build_unibyte_string (o);
1684 decoded = DECODE_FILE (orig);
1685 total += SBYTES (decoded);
1686 substituted = 1;
1688 else if (*p == '}')
1689 goto badvar;
1692 if (!substituted)
1693 return filename;
1695 /* If substitution required, recopy the string and do it. */
1696 /* Make space in stack frame for the new copy. */
1697 xnm = alloca (SBYTES (filename) + total + 1);
1698 x = xnm;
1700 /* Copy the rest of the name through, replacing $ constructs with values. */
1701 for (p = nm; *p;)
1702 if (*p != '$')
1703 *x++ = *p++;
1704 else
1706 p++;
1707 if (p == endp)
1708 goto badsubst;
1709 else if (*p == '$')
1711 *x++ = *p++;
1712 continue;
1714 else if (*p == '{')
1716 o = ++p;
1717 while (p != endp && *p != '}') p++;
1718 if (*p != '}') goto missingclose;
1719 s = p++;
1721 else
1723 o = p;
1724 while (p != endp && (c_isalnum (*p) || *p == '_')) p++;
1725 s = p;
1728 /* Copy out the variable name. */
1729 target = alloca (s - o + 1);
1730 memcpy (target, o, s - o);
1731 target[s - o] = 0;
1732 #ifdef DOS_NT
1733 strupr (target); /* $home == $HOME etc. */
1734 #endif /* DOS_NT */
1736 /* Get variable value. */
1737 o = egetenv (target);
1738 if (!o)
1740 *x++ = '$';
1741 strcpy (x, target); x+= strlen (target);
1743 else
1745 Lisp_Object orig, decoded;
1746 ptrdiff_t orig_length, decoded_length;
1747 orig_length = strlen (o);
1748 orig = make_unibyte_string (o, orig_length);
1749 decoded = DECODE_FILE (orig);
1750 decoded_length = SBYTES (decoded);
1751 memcpy (x, SDATA (decoded), decoded_length);
1752 x += decoded_length;
1754 /* If environment variable needed decoding, return value
1755 needs to be multibyte. */
1756 if (decoded_length != orig_length
1757 || memcmp (SDATA (decoded), o, orig_length))
1758 multibyte = 1;
1762 *x = 0;
1764 /* If /~ or // appears, discard everything through first slash. */
1765 while ((p = search_embedded_absfilename (xnm, x)) != NULL)
1766 /* This time we do not start over because we've already expanded envvars
1767 and replaced $$ with $. Maybe we should start over as well, but we'd
1768 need to quote some $ to $$ first. */
1769 xnm = p;
1771 return make_specified_string (xnm, -1, x - xnm, multibyte);
1773 badsubst:
1774 error ("Bad format environment-variable substitution");
1775 missingclose:
1776 error ("Missing \"}\" in environment-variable substitution");
1777 badvar:
1778 error ("Substituting nonexistent environment variable \"%s\"", target);
1780 /* NOTREACHED */
1781 return Qnil;
1784 /* A slightly faster and more convenient way to get
1785 (directory-file-name (expand-file-name FOO)). */
1787 Lisp_Object
1788 expand_and_dir_to_file (Lisp_Object filename, Lisp_Object defdir)
1790 register Lisp_Object absname;
1792 absname = Fexpand_file_name (filename, defdir);
1794 /* Remove final slash, if any (unless this is the root dir).
1795 stat behaves differently depending! */
1796 if (SCHARS (absname) > 1
1797 && IS_DIRECTORY_SEP (SREF (absname, SBYTES (absname) - 1))
1798 && !IS_DEVICE_SEP (SREF (absname, SBYTES (absname) - 2)))
1799 /* We cannot take shortcuts; they might be wrong for magic file names. */
1800 absname = Fdirectory_file_name (absname);
1801 return absname;
1804 /* Signal an error if the file ABSNAME already exists.
1805 If INTERACTIVE, ask the user whether to proceed,
1806 and bypass the error if the user says to go ahead.
1807 QUERYSTRING is a name for the action that is being considered
1808 to alter the file.
1810 *STATPTR is used to store the stat information if the file exists.
1811 If the file does not exist, STATPTR->st_mode is set to 0.
1812 If STATPTR is null, we don't store into it.
1814 If QUICK, ask for y or n, not yes or no. */
1816 static void
1817 barf_or_query_if_file_exists (Lisp_Object absname, const char *querystring,
1818 bool interactive, struct stat *statptr,
1819 bool quick)
1821 Lisp_Object tem, encoded_filename;
1822 struct stat statbuf;
1823 struct gcpro gcpro1;
1825 encoded_filename = ENCODE_FILE (absname);
1827 /* `stat' is a good way to tell whether the file exists,
1828 regardless of what access permissions it has. */
1829 if (lstat (SSDATA (encoded_filename), &statbuf) >= 0)
1831 if (S_ISDIR (statbuf.st_mode))
1832 xsignal2 (Qfile_error,
1833 build_string ("File is a directory"), absname);
1835 if (! interactive)
1836 xsignal2 (Qfile_already_exists,
1837 build_string ("File already exists"), absname);
1838 GCPRO1 (absname);
1839 tem = format2 ("File %s already exists; %s anyway? ",
1840 absname, build_string (querystring));
1841 if (quick)
1842 tem = call1 (intern ("y-or-n-p"), tem);
1843 else
1844 tem = do_yes_or_no_p (tem);
1845 UNGCPRO;
1846 if (NILP (tem))
1847 xsignal2 (Qfile_already_exists,
1848 build_string ("File already exists"), absname);
1849 if (statptr)
1850 *statptr = statbuf;
1852 else
1854 if (statptr)
1855 statptr->st_mode = 0;
1857 return;
1860 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 6,
1861 "fCopy file: \nGCopy %s to file: \np\nP",
1862 doc: /* Copy FILE to NEWNAME. Both args must be strings.
1863 If NEWNAME names a directory, copy FILE there.
1865 This function always sets the file modes of the output file to match
1866 the input file.
1868 The optional third argument OK-IF-ALREADY-EXISTS specifies what to do
1869 if file NEWNAME already exists. If OK-IF-ALREADY-EXISTS is nil, we
1870 signal a `file-already-exists' error without overwriting. If
1871 OK-IF-ALREADY-EXISTS is a number, we request confirmation from the user
1872 about overwriting; this is what happens in interactive use with M-x.
1873 Any other value for OK-IF-ALREADY-EXISTS means to overwrite the
1874 existing file.
1876 Fourth arg KEEP-TIME non-nil means give the output file the same
1877 last-modified time as the old one. (This works on only some systems.)
1879 A prefix arg makes KEEP-TIME non-nil.
1881 If PRESERVE-UID-GID is non-nil, we try to transfer the
1882 uid and gid of FILE to NEWNAME.
1884 If PRESERVE-SELINUX-CONTEXT is non-nil and SELinux is enabled
1885 on the system, we copy the SELinux context of FILE to NEWNAME. */)
1886 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists, Lisp_Object keep_time, Lisp_Object preserve_uid_gid, Lisp_Object preserve_selinux_context)
1888 int ifd, ofd;
1889 int n;
1890 char buf[16 * 1024];
1891 struct stat st, out_st;
1892 Lisp_Object handler;
1893 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1894 ptrdiff_t count = SPECPDL_INDEX ();
1895 bool input_file_statable_p;
1896 Lisp_Object encoded_file, encoded_newname;
1897 #if HAVE_LIBSELINUX
1898 security_context_t con;
1899 int conlength = 0;
1900 #endif
1902 encoded_file = encoded_newname = Qnil;
1903 GCPRO4 (file, newname, encoded_file, encoded_newname);
1904 CHECK_STRING (file);
1905 CHECK_STRING (newname);
1907 if (!NILP (Ffile_directory_p (newname)))
1908 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
1909 else
1910 newname = Fexpand_file_name (newname, Qnil);
1912 file = Fexpand_file_name (file, Qnil);
1914 /* If the input file name has special constructs in it,
1915 call the corresponding file handler. */
1916 handler = Ffind_file_name_handler (file, Qcopy_file);
1917 /* Likewise for output file name. */
1918 if (NILP (handler))
1919 handler = Ffind_file_name_handler (newname, Qcopy_file);
1920 if (!NILP (handler))
1921 RETURN_UNGCPRO (call7 (handler, Qcopy_file, file, newname,
1922 ok_if_already_exists, keep_time, preserve_uid_gid,
1923 preserve_selinux_context));
1925 encoded_file = ENCODE_FILE (file);
1926 encoded_newname = ENCODE_FILE (newname);
1928 if (NILP (ok_if_already_exists)
1929 || INTEGERP (ok_if_already_exists))
1930 barf_or_query_if_file_exists (newname, "copy to it",
1931 INTEGERP (ok_if_already_exists), &out_st, 0);
1932 else if (stat (SSDATA (encoded_newname), &out_st) < 0)
1933 out_st.st_mode = 0;
1935 #ifdef WINDOWSNT
1936 if (!CopyFile (SDATA (encoded_file),
1937 SDATA (encoded_newname),
1938 FALSE))
1939 report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil)));
1940 /* CopyFile retains the timestamp by default. */
1941 else if (NILP (keep_time))
1943 EMACS_TIME now;
1944 DWORD attributes;
1945 char * filename;
1947 filename = SDATA (encoded_newname);
1949 /* Ensure file is writable while its modified time is set. */
1950 attributes = GetFileAttributes (filename);
1951 SetFileAttributes (filename, attributes & ~FILE_ATTRIBUTE_READONLY);
1952 now = current_emacs_time ();
1953 if (set_file_times (-1, filename, now, now))
1955 /* Restore original attributes. */
1956 SetFileAttributes (filename, attributes);
1957 xsignal2 (Qfile_date_error,
1958 build_string ("Cannot set file date"), newname);
1960 /* Restore original attributes. */
1961 SetFileAttributes (filename, attributes);
1963 #else /* not WINDOWSNT */
1964 immediate_quit = 1;
1965 ifd = emacs_open (SSDATA (encoded_file), O_RDONLY, 0);
1966 immediate_quit = 0;
1968 if (ifd < 0)
1969 report_file_error ("Opening input file", Fcons (file, Qnil));
1971 record_unwind_protect (close_file_unwind, make_number (ifd));
1973 /* We can only copy regular files and symbolic links. Other files are not
1974 copyable by us. */
1975 input_file_statable_p = (fstat (ifd, &st) >= 0);
1977 #if HAVE_LIBSELINUX
1978 if (!NILP (preserve_selinux_context) && is_selinux_enabled ())
1980 conlength = fgetfilecon (ifd, &con);
1981 if (conlength == -1)
1982 report_file_error ("Doing fgetfilecon", Fcons (file, Qnil));
1984 #endif
1986 if (out_st.st_mode != 0
1987 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
1989 errno = 0;
1990 report_file_error ("Input and output files are the same",
1991 Fcons (file, Fcons (newname, Qnil)));
1994 if (input_file_statable_p)
1996 if (!(S_ISREG (st.st_mode)) && !(S_ISLNK (st.st_mode)))
1998 #if defined (EISDIR)
1999 /* Get a better looking error message. */
2000 errno = EISDIR;
2001 #endif /* EISDIR */
2002 report_file_error ("Non-regular file", Fcons (file, Qnil));
2006 #ifdef MSDOS
2007 /* System's default file type was set to binary by _fmode in emacs.c. */
2008 ofd = emacs_open (SDATA (encoded_newname),
2009 O_WRONLY | O_TRUNC | O_CREAT
2010 | (NILP (ok_if_already_exists) ? O_EXCL : 0),
2011 S_IREAD | S_IWRITE);
2012 #else /* not MSDOS */
2014 mode_t new_mask = 0666;
2015 if (input_file_statable_p)
2017 if (!NILP (preserve_uid_gid))
2018 new_mask = 0600;
2019 new_mask &= st.st_mode;
2021 ofd = emacs_open (SSDATA (encoded_newname),
2022 (O_WRONLY | O_TRUNC | O_CREAT
2023 | (NILP (ok_if_already_exists) ? O_EXCL : 0)),
2024 new_mask);
2026 #endif /* not MSDOS */
2027 if (ofd < 0)
2028 report_file_error ("Opening output file", Fcons (newname, Qnil));
2030 record_unwind_protect (close_file_unwind, make_number (ofd));
2032 immediate_quit = 1;
2033 QUIT;
2034 while ((n = emacs_read (ifd, buf, sizeof buf)) > 0)
2035 if (emacs_write (ofd, buf, n) != n)
2036 report_file_error ("I/O error", Fcons (newname, Qnil));
2037 immediate_quit = 0;
2039 #ifndef MSDOS
2040 /* Preserve the original file modes, and if requested, also its
2041 owner and group. */
2042 if (input_file_statable_p)
2044 mode_t mode_mask = 07777;
2045 if (!NILP (preserve_uid_gid))
2047 /* Attempt to change owner and group. If that doesn't work
2048 attempt to change just the group, as that is sometimes allowed.
2049 Adjust the mode mask to eliminate setuid or setgid bits
2050 that are inappropriate if the owner and group are wrong. */
2051 if (fchown (ofd, st.st_uid, st.st_gid) != 0)
2053 mode_mask &= ~06000;
2054 if (fchown (ofd, -1, st.st_gid) == 0)
2055 mode_mask |= 02000;
2058 if (fchmod (ofd, st.st_mode & mode_mask) != 0)
2059 report_file_error ("Doing chmod", Fcons (newname, Qnil));
2061 #endif /* not MSDOS */
2063 #if HAVE_LIBSELINUX
2064 if (conlength > 0)
2066 /* Set the modified context back to the file. */
2067 bool fail = fsetfilecon (ofd, con) != 0;
2068 /* See http://debbugs.gnu.org/11245 for ENOTSUP. */
2069 if (fail && errno != ENOTSUP)
2070 report_file_error ("Doing fsetfilecon", Fcons (newname, Qnil));
2072 freecon (con);
2074 #endif
2076 if (input_file_statable_p)
2078 if (!NILP (keep_time))
2080 EMACS_TIME atime = get_stat_atime (&st);
2081 EMACS_TIME mtime = get_stat_mtime (&st);
2082 if (set_file_times (ofd, SSDATA (encoded_newname), atime, mtime))
2083 xsignal2 (Qfile_date_error,
2084 build_string ("Cannot set file date"), newname);
2088 if (emacs_close (ofd) < 0)
2089 report_file_error ("I/O error", Fcons (newname, Qnil));
2091 emacs_close (ifd);
2093 #ifdef MSDOS
2094 if (input_file_statable_p)
2096 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2097 and if it can't, it tells so. Otherwise, under MSDOS we usually
2098 get only the READ bit, which will make the copied file read-only,
2099 so it's better not to chmod at all. */
2100 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0)
2101 chmod (SDATA (encoded_newname), st.st_mode & 07777);
2103 #endif /* MSDOS */
2104 #endif /* not WINDOWSNT */
2106 /* Discard the unwind protects. */
2107 specpdl_ptr = specpdl + count;
2109 UNGCPRO;
2110 return Qnil;
2113 DEFUN ("make-directory-internal", Fmake_directory_internal,
2114 Smake_directory_internal, 1, 1, 0,
2115 doc: /* Create a new directory named DIRECTORY. */)
2116 (Lisp_Object directory)
2118 const char *dir;
2119 Lisp_Object handler;
2120 Lisp_Object encoded_dir;
2122 CHECK_STRING (directory);
2123 directory = Fexpand_file_name (directory, Qnil);
2125 handler = Ffind_file_name_handler (directory, Qmake_directory_internal);
2126 if (!NILP (handler))
2127 return call2 (handler, Qmake_directory_internal, directory);
2129 encoded_dir = ENCODE_FILE (directory);
2131 dir = SSDATA (encoded_dir);
2133 #ifdef WINDOWSNT
2134 if (mkdir (dir) != 0)
2135 #else
2136 if (mkdir (dir, 0777 & ~auto_saving_dir_umask) != 0)
2137 #endif
2138 report_file_error ("Creating directory", list1 (directory));
2140 return Qnil;
2143 DEFUN ("delete-directory-internal", Fdelete_directory_internal,
2144 Sdelete_directory_internal, 1, 1, 0,
2145 doc: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
2146 (Lisp_Object directory)
2148 const char *dir;
2149 Lisp_Object encoded_dir;
2151 CHECK_STRING (directory);
2152 directory = Fdirectory_file_name (Fexpand_file_name (directory, Qnil));
2153 encoded_dir = ENCODE_FILE (directory);
2154 dir = SSDATA (encoded_dir);
2156 if (rmdir (dir) != 0)
2157 report_file_error ("Removing directory", list1 (directory));
2159 return Qnil;
2162 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 2,
2163 "(list (read-file-name \
2164 (if (and delete-by-moving-to-trash (null current-prefix-arg)) \
2165 \"Move file to trash: \" \"Delete file: \") \
2166 nil default-directory (confirm-nonexistent-file-or-buffer)) \
2167 (null current-prefix-arg))",
2168 doc: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
2169 If file has multiple names, it continues to exist with the other names.
2170 TRASH non-nil means to trash the file instead of deleting, provided
2171 `delete-by-moving-to-trash' is non-nil.
2173 When called interactively, TRASH is t if no prefix argument is given.
2174 With a prefix argument, TRASH is nil. */)
2175 (Lisp_Object filename, Lisp_Object trash)
2177 Lisp_Object handler;
2178 Lisp_Object encoded_file;
2179 struct gcpro gcpro1;
2181 GCPRO1 (filename);
2182 if (!NILP (Ffile_directory_p (filename))
2183 && NILP (Ffile_symlink_p (filename)))
2184 xsignal2 (Qfile_error,
2185 build_string ("Removing old name: is a directory"),
2186 filename);
2187 UNGCPRO;
2188 filename = Fexpand_file_name (filename, Qnil);
2190 handler = Ffind_file_name_handler (filename, Qdelete_file);
2191 if (!NILP (handler))
2192 return call3 (handler, Qdelete_file, filename, trash);
2194 if (delete_by_moving_to_trash && !NILP (trash))
2195 return call1 (Qmove_file_to_trash, filename);
2197 encoded_file = ENCODE_FILE (filename);
2199 if (unlink (SSDATA (encoded_file)) < 0)
2200 report_file_error ("Removing old name", list1 (filename));
2201 return Qnil;
2204 static Lisp_Object
2205 internal_delete_file_1 (Lisp_Object ignore)
2207 return Qt;
2210 /* Delete file FILENAME.
2211 This ignores `delete-by-moving-to-trash'. */
2213 void
2214 internal_delete_file (Lisp_Object filename)
2216 internal_condition_case_2 (Fdelete_file, filename, Qnil,
2217 Qt, internal_delete_file_1);
2220 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
2221 "fRename file: \nGRename %s to file: \np",
2222 doc: /* Rename FILE as NEWNAME. Both args must be strings.
2223 If file has names other than FILE, it continues to have those names.
2224 Signals a `file-already-exists' error if a file NEWNAME already exists
2225 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2226 A number as third arg means request confirmation if NEWNAME already exists.
2227 This is what happens in interactive use with M-x. */)
2228 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
2230 Lisp_Object handler;
2231 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2232 Lisp_Object encoded_file, encoded_newname, symlink_target;
2234 symlink_target = encoded_file = encoded_newname = Qnil;
2235 GCPRO5 (file, newname, encoded_file, encoded_newname, symlink_target);
2236 CHECK_STRING (file);
2237 CHECK_STRING (newname);
2238 file = Fexpand_file_name (file, Qnil);
2240 if ((!NILP (Ffile_directory_p (newname)))
2241 #ifdef DOS_NT
2242 /* If the file names are identical but for the case,
2243 don't attempt to move directory to itself. */
2244 && (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2245 #endif
2248 Lisp_Object fname = (NILP (Ffile_directory_p (file))
2249 ? file : Fdirectory_file_name (file));
2250 newname = Fexpand_file_name (Ffile_name_nondirectory (fname), newname);
2252 else
2253 newname = Fexpand_file_name (newname, Qnil);
2255 /* If the file name has special constructs in it,
2256 call the corresponding file handler. */
2257 handler = Ffind_file_name_handler (file, Qrename_file);
2258 if (NILP (handler))
2259 handler = Ffind_file_name_handler (newname, Qrename_file);
2260 if (!NILP (handler))
2261 RETURN_UNGCPRO (call4 (handler, Qrename_file,
2262 file, newname, ok_if_already_exists));
2264 encoded_file = ENCODE_FILE (file);
2265 encoded_newname = ENCODE_FILE (newname);
2267 #ifdef DOS_NT
2268 /* If the file names are identical but for the case, don't ask for
2269 confirmation: they simply want to change the letter-case of the
2270 file name. */
2271 if (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2272 #endif
2273 if (NILP (ok_if_already_exists)
2274 || INTEGERP (ok_if_already_exists))
2275 barf_or_query_if_file_exists (newname, "rename to it",
2276 INTEGERP (ok_if_already_exists), 0, 0);
2277 if (rename (SSDATA (encoded_file), SSDATA (encoded_newname)) < 0)
2279 if (errno == EXDEV)
2281 ptrdiff_t count;
2282 symlink_target = Ffile_symlink_p (file);
2283 if (! NILP (symlink_target))
2284 Fmake_symbolic_link (symlink_target, newname,
2285 NILP (ok_if_already_exists) ? Qnil : Qt);
2286 else if (!NILP (Ffile_directory_p (file)))
2287 call4 (Qcopy_directory, file, newname, Qt, Qnil);
2288 else
2289 /* We have already prompted if it was an integer, so don't
2290 have copy-file prompt again. */
2291 Fcopy_file (file, newname,
2292 NILP (ok_if_already_exists) ? Qnil : Qt,
2293 Qt, Qt, Qt);
2295 count = SPECPDL_INDEX ();
2296 specbind (Qdelete_by_moving_to_trash, Qnil);
2298 if (!NILP (Ffile_directory_p (file)) && NILP (symlink_target))
2299 call2 (Qdelete_directory, file, Qt);
2300 else
2301 Fdelete_file (file, Qnil);
2302 unbind_to (count, Qnil);
2304 else
2305 report_file_error ("Renaming", list2 (file, newname));
2307 UNGCPRO;
2308 return Qnil;
2311 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
2312 "fAdd name to file: \nGName to add to %s: \np",
2313 doc: /* Give FILE additional name NEWNAME. Both args must be strings.
2314 Signals a `file-already-exists' error if a file NEWNAME already exists
2315 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2316 A number as third arg means request confirmation if NEWNAME already exists.
2317 This is what happens in interactive use with M-x. */)
2318 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
2320 Lisp_Object handler;
2321 Lisp_Object encoded_file, encoded_newname;
2322 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2324 GCPRO4 (file, newname, encoded_file, encoded_newname);
2325 encoded_file = encoded_newname = Qnil;
2326 CHECK_STRING (file);
2327 CHECK_STRING (newname);
2328 file = Fexpand_file_name (file, Qnil);
2330 if (!NILP (Ffile_directory_p (newname)))
2331 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
2332 else
2333 newname = Fexpand_file_name (newname, Qnil);
2335 /* If the file name has special constructs in it,
2336 call the corresponding file handler. */
2337 handler = Ffind_file_name_handler (file, Qadd_name_to_file);
2338 if (!NILP (handler))
2339 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2340 newname, ok_if_already_exists));
2342 /* If the new name has special constructs in it,
2343 call the corresponding file handler. */
2344 handler = Ffind_file_name_handler (newname, Qadd_name_to_file);
2345 if (!NILP (handler))
2346 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2347 newname, ok_if_already_exists));
2349 encoded_file = ENCODE_FILE (file);
2350 encoded_newname = ENCODE_FILE (newname);
2352 if (NILP (ok_if_already_exists)
2353 || INTEGERP (ok_if_already_exists))
2354 barf_or_query_if_file_exists (newname, "make it a new name",
2355 INTEGERP (ok_if_already_exists), 0, 0);
2357 unlink (SSDATA (newname));
2358 if (link (SSDATA (encoded_file), SSDATA (encoded_newname)) < 0)
2359 report_file_error ("Adding new name", list2 (file, newname));
2361 UNGCPRO;
2362 return Qnil;
2365 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
2366 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np",
2367 doc: /* Make a symbolic link to FILENAME, named LINKNAME.
2368 Both args must be strings.
2369 Signals a `file-already-exists' error if a file LINKNAME already exists
2370 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2371 A number as third arg means request confirmation if LINKNAME already exists.
2372 This happens for interactive use with M-x. */)
2373 (Lisp_Object filename, Lisp_Object linkname, Lisp_Object ok_if_already_exists)
2375 Lisp_Object handler;
2376 Lisp_Object encoded_filename, encoded_linkname;
2377 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2379 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname);
2380 encoded_filename = encoded_linkname = Qnil;
2381 CHECK_STRING (filename);
2382 CHECK_STRING (linkname);
2383 /* If the link target has a ~, we must expand it to get
2384 a truly valid file name. Otherwise, do not expand;
2385 we want to permit links to relative file names. */
2386 if (SREF (filename, 0) == '~')
2387 filename = Fexpand_file_name (filename, Qnil);
2389 if (!NILP (Ffile_directory_p (linkname)))
2390 linkname = Fexpand_file_name (Ffile_name_nondirectory (filename), linkname);
2391 else
2392 linkname = Fexpand_file_name (linkname, Qnil);
2394 /* If the file name has special constructs in it,
2395 call the corresponding file handler. */
2396 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
2397 if (!NILP (handler))
2398 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2399 linkname, ok_if_already_exists));
2401 /* If the new link name has special constructs in it,
2402 call the corresponding file handler. */
2403 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link);
2404 if (!NILP (handler))
2405 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2406 linkname, ok_if_already_exists));
2408 encoded_filename = ENCODE_FILE (filename);
2409 encoded_linkname = ENCODE_FILE (linkname);
2411 if (NILP (ok_if_already_exists)
2412 || INTEGERP (ok_if_already_exists))
2413 barf_or_query_if_file_exists (linkname, "make it a link",
2414 INTEGERP (ok_if_already_exists), 0, 0);
2415 if (symlink (SSDATA (encoded_filename), SSDATA (encoded_linkname)) < 0)
2417 /* If we didn't complain already, silently delete existing file. */
2418 if (errno == EEXIST)
2420 unlink (SSDATA (encoded_linkname));
2421 if (symlink (SSDATA (encoded_filename), SSDATA (encoded_linkname))
2422 >= 0)
2424 UNGCPRO;
2425 return Qnil;
2428 if (errno == ENOSYS)
2430 UNGCPRO;
2431 xsignal1 (Qfile_error,
2432 build_string ("Symbolic links are not supported"));
2435 report_file_error ("Making symbolic link", list2 (filename, linkname));
2437 UNGCPRO;
2438 return Qnil;
2442 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
2443 1, 1, 0,
2444 doc: /* Return t if file FILENAME specifies an absolute file name.
2445 On Unix, this is a name starting with a `/' or a `~'. */)
2446 (Lisp_Object filename)
2448 CHECK_STRING (filename);
2449 return file_name_absolute_p (SSDATA (filename)) ? Qt : Qnil;
2452 /* Return true if FILENAME exists. */
2453 bool
2454 check_existing (const char *filename)
2456 #ifdef DOS_NT
2457 /* The full emulation of Posix 'stat' is too expensive on
2458 DOS/Windows, when all we want to know is whether the file exists.
2459 So we use 'access' instead, which is much more lightweight. */
2460 return (access (filename, F_OK) >= 0);
2461 #else
2462 struct stat st;
2463 return (stat (filename, &st) >= 0);
2464 #endif
2467 /* Return true if file FILENAME exists and can be executed. */
2469 static bool
2470 check_executable (char *filename)
2472 #ifdef DOS_NT
2473 struct stat st;
2474 if (stat (filename, &st) < 0)
2475 return 0;
2476 return ((st.st_mode & S_IEXEC) != 0);
2477 #else /* not DOS_NT */
2478 #ifdef HAVE_EUIDACCESS
2479 return (euidaccess (filename, 1) >= 0);
2480 #else
2481 /* Access isn't quite right because it uses the real uid
2482 and we really want to test with the effective uid.
2483 But Unix doesn't give us a right way to do it. */
2484 return (access (filename, 1) >= 0);
2485 #endif
2486 #endif /* not DOS_NT */
2489 /* Return true if file FILENAME exists and can be written. */
2491 static bool
2492 check_writable (const char *filename)
2494 #ifdef MSDOS
2495 struct stat st;
2496 if (stat (filename, &st) < 0)
2497 return 0;
2498 return (st.st_mode & S_IWRITE || S_ISDIR (st.st_mode));
2499 #else /* not MSDOS */
2500 #ifdef HAVE_EUIDACCESS
2501 bool res = (euidaccess (filename, 2) >= 0);
2502 #ifdef CYGWIN
2503 /* euidaccess may have returned failure because Cygwin couldn't
2504 determine the file's UID or GID; if so, we return success. */
2505 if (!res)
2507 struct stat st;
2508 if (stat (filename, &st) < 0)
2509 return 0;
2510 res = (st.st_uid == -1 || st.st_gid == -1);
2512 #endif /* CYGWIN */
2513 return res;
2514 #else /* not HAVE_EUIDACCESS */
2515 /* Access isn't quite right because it uses the real uid
2516 and we really want to test with the effective uid.
2517 But Unix doesn't give us a right way to do it.
2518 Opening with O_WRONLY could work for an ordinary file,
2519 but would lose for directories. */
2520 return (access (filename, 2) >= 0);
2521 #endif /* not HAVE_EUIDACCESS */
2522 #endif /* not MSDOS */
2525 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
2526 doc: /* Return t if file FILENAME exists (whether or not you can read it.)
2527 See also `file-readable-p' and `file-attributes'.
2528 This returns nil for a symlink to a nonexistent file.
2529 Use `file-symlink-p' to test for such links. */)
2530 (Lisp_Object filename)
2532 Lisp_Object absname;
2533 Lisp_Object handler;
2535 CHECK_STRING (filename);
2536 absname = Fexpand_file_name (filename, Qnil);
2538 /* If the file name has special constructs in it,
2539 call the corresponding file handler. */
2540 handler = Ffind_file_name_handler (absname, Qfile_exists_p);
2541 if (!NILP (handler))
2542 return call2 (handler, Qfile_exists_p, absname);
2544 absname = ENCODE_FILE (absname);
2546 return (check_existing (SSDATA (absname))) ? Qt : Qnil;
2549 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
2550 doc: /* Return t if FILENAME can be executed by you.
2551 For a directory, this means you can access files in that directory. */)
2552 (Lisp_Object filename)
2554 Lisp_Object absname;
2555 Lisp_Object handler;
2557 CHECK_STRING (filename);
2558 absname = Fexpand_file_name (filename, Qnil);
2560 /* If the file name has special constructs in it,
2561 call the corresponding file handler. */
2562 handler = Ffind_file_name_handler (absname, Qfile_executable_p);
2563 if (!NILP (handler))
2564 return call2 (handler, Qfile_executable_p, absname);
2566 absname = ENCODE_FILE (absname);
2568 return (check_executable (SSDATA (absname)) ? Qt : Qnil);
2571 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
2572 doc: /* Return t if file FILENAME exists and you can read it.
2573 See also `file-exists-p' and `file-attributes'. */)
2574 (Lisp_Object filename)
2576 Lisp_Object absname;
2577 Lisp_Object handler;
2578 int desc;
2579 int flags;
2580 struct stat statbuf;
2582 CHECK_STRING (filename);
2583 absname = Fexpand_file_name (filename, Qnil);
2585 /* If the file name has special constructs in it,
2586 call the corresponding file handler. */
2587 handler = Ffind_file_name_handler (absname, Qfile_readable_p);
2588 if (!NILP (handler))
2589 return call2 (handler, Qfile_readable_p, absname);
2591 absname = ENCODE_FILE (absname);
2593 #if defined (DOS_NT) || defined (macintosh)
2594 /* Under MS-DOS, Windows, and Macintosh, open does not work for
2595 directories. */
2596 if (access (SDATA (absname), 0) == 0)
2597 return Qt;
2598 return Qnil;
2599 #else /* not DOS_NT and not macintosh */
2600 flags = O_RDONLY;
2601 #ifdef O_NONBLOCK
2602 /* Opening a fifo without O_NONBLOCK can wait.
2603 We don't want to wait. But we don't want to mess wth O_NONBLOCK
2604 except in the case of a fifo, on a system which handles it. */
2605 desc = stat (SSDATA (absname), &statbuf);
2606 if (desc < 0)
2607 return Qnil;
2608 if (S_ISFIFO (statbuf.st_mode))
2609 flags |= O_NONBLOCK;
2610 #endif
2611 desc = emacs_open (SSDATA (absname), flags, 0);
2612 if (desc < 0)
2613 return Qnil;
2614 emacs_close (desc);
2615 return Qt;
2616 #endif /* not DOS_NT and not macintosh */
2619 /* Having this before file-symlink-p mysteriously caused it to be forgotten
2620 on the RT/PC. */
2621 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
2622 doc: /* Return t if file FILENAME can be written or created by you. */)
2623 (Lisp_Object filename)
2625 Lisp_Object absname, dir, encoded;
2626 Lisp_Object handler;
2628 CHECK_STRING (filename);
2629 absname = Fexpand_file_name (filename, Qnil);
2631 /* If the file name has special constructs in it,
2632 call the corresponding file handler. */
2633 handler = Ffind_file_name_handler (absname, Qfile_writable_p);
2634 if (!NILP (handler))
2635 return call2 (handler, Qfile_writable_p, absname);
2637 encoded = ENCODE_FILE (absname);
2638 if (check_existing (SSDATA (encoded)))
2639 return (check_writable (SSDATA (encoded))
2640 ? Qt : Qnil);
2642 dir = Ffile_name_directory (absname);
2643 #ifdef MSDOS
2644 if (!NILP (dir))
2645 dir = Fdirectory_file_name (dir);
2646 #endif /* MSDOS */
2648 dir = ENCODE_FILE (dir);
2649 #ifdef WINDOWSNT
2650 /* The read-only attribute of the parent directory doesn't affect
2651 whether a file or directory can be created within it. Some day we
2652 should check ACLs though, which do affect this. */
2653 return (access (SDATA (dir), D_OK) < 0) ? Qnil : Qt;
2654 #else
2655 return (check_writable (!NILP (dir) ? SSDATA (dir) : "")
2656 ? Qt : Qnil);
2657 #endif
2660 DEFUN ("access-file", Faccess_file, Saccess_file, 2, 2, 0,
2661 doc: /* Access file FILENAME, and get an error if that does not work.
2662 The second argument STRING is used in the error message.
2663 If there is no error, returns nil. */)
2664 (Lisp_Object filename, Lisp_Object string)
2666 Lisp_Object handler, encoded_filename, absname;
2667 int fd;
2669 CHECK_STRING (filename);
2670 absname = Fexpand_file_name (filename, Qnil);
2672 CHECK_STRING (string);
2674 /* If the file name has special constructs in it,
2675 call the corresponding file handler. */
2676 handler = Ffind_file_name_handler (absname, Qaccess_file);
2677 if (!NILP (handler))
2678 return call3 (handler, Qaccess_file, absname, string);
2680 encoded_filename = ENCODE_FILE (absname);
2682 fd = emacs_open (SSDATA (encoded_filename), O_RDONLY, 0);
2683 if (fd < 0)
2684 report_file_error (SSDATA (string), Fcons (filename, Qnil));
2685 emacs_close (fd);
2687 return Qnil;
2690 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
2691 doc: /* Return non-nil if file FILENAME is the name of a symbolic link.
2692 The value is the link target, as a string.
2693 Otherwise it returns nil.
2695 This function returns t when given the name of a symlink that
2696 points to a nonexistent file. */)
2697 (Lisp_Object filename)
2699 Lisp_Object handler;
2700 char *buf;
2701 Lisp_Object val;
2702 char readlink_buf[READLINK_BUFSIZE];
2704 CHECK_STRING (filename);
2705 filename = Fexpand_file_name (filename, Qnil);
2707 /* If the file name has special constructs in it,
2708 call the corresponding file handler. */
2709 handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
2710 if (!NILP (handler))
2711 return call2 (handler, Qfile_symlink_p, filename);
2713 filename = ENCODE_FILE (filename);
2715 buf = emacs_readlink (SSDATA (filename), readlink_buf);
2716 if (! buf)
2717 return Qnil;
2719 val = build_string (buf);
2720 if (buf[0] == '/' && strchr (buf, ':'))
2721 val = concat2 (build_string ("/:"), val);
2722 if (buf != readlink_buf)
2723 xfree (buf);
2724 val = DECODE_FILE (val);
2725 return val;
2728 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
2729 doc: /* Return t if FILENAME names an existing directory.
2730 Symbolic links to directories count as directories.
2731 See `file-symlink-p' to distinguish symlinks. */)
2732 (Lisp_Object filename)
2734 register Lisp_Object absname;
2735 struct stat st;
2736 Lisp_Object handler;
2738 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2740 /* If the file name has special constructs in it,
2741 call the corresponding file handler. */
2742 handler = Ffind_file_name_handler (absname, Qfile_directory_p);
2743 if (!NILP (handler))
2744 return call2 (handler, Qfile_directory_p, absname);
2746 absname = ENCODE_FILE (absname);
2748 if (stat (SSDATA (absname), &st) < 0)
2749 return Qnil;
2750 return S_ISDIR (st.st_mode) ? Qt : Qnil;
2753 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p,
2754 Sfile_accessible_directory_p, 1, 1, 0,
2755 doc: /* Return t if file FILENAME names a directory you can open.
2756 For the value to be t, FILENAME must specify the name of a directory as a file,
2757 and the directory must allow you to open files in it. In order to use a
2758 directory as a buffer's current directory, this predicate must return true.
2759 A directory name spec may be given instead; then the value is t
2760 if the directory so specified exists and really is a readable and
2761 searchable directory. */)
2762 (Lisp_Object filename)
2764 Lisp_Object handler;
2765 bool tem;
2766 struct gcpro gcpro1;
2768 /* If the file name has special constructs in it,
2769 call the corresponding file handler. */
2770 handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p);
2771 if (!NILP (handler))
2772 return call2 (handler, Qfile_accessible_directory_p, filename);
2774 GCPRO1 (filename);
2775 tem = (NILP (Ffile_directory_p (filename))
2776 || NILP (Ffile_executable_p (filename)));
2777 UNGCPRO;
2778 return tem ? Qnil : Qt;
2781 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
2782 doc: /* Return t if FILENAME names a regular file.
2783 This is the sort of file that holds an ordinary stream of data bytes.
2784 Symbolic links to regular files count as regular files.
2785 See `file-symlink-p' to distinguish symlinks. */)
2786 (Lisp_Object filename)
2788 register Lisp_Object absname;
2789 struct stat st;
2790 Lisp_Object handler;
2792 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2794 /* If the file name has special constructs in it,
2795 call the corresponding file handler. */
2796 handler = Ffind_file_name_handler (absname, Qfile_regular_p);
2797 if (!NILP (handler))
2798 return call2 (handler, Qfile_regular_p, absname);
2800 absname = ENCODE_FILE (absname);
2802 #ifdef WINDOWSNT
2804 int result;
2805 Lisp_Object tem = Vw32_get_true_file_attributes;
2807 /* Tell stat to use expensive method to get accurate info. */
2808 Vw32_get_true_file_attributes = Qt;
2809 result = stat (SDATA (absname), &st);
2810 Vw32_get_true_file_attributes = tem;
2812 if (result < 0)
2813 return Qnil;
2814 return S_ISREG (st.st_mode) ? Qt : Qnil;
2816 #else
2817 if (stat (SSDATA (absname), &st) < 0)
2818 return Qnil;
2819 return S_ISREG (st.st_mode) ? Qt : Qnil;
2820 #endif
2823 DEFUN ("file-selinux-context", Ffile_selinux_context,
2824 Sfile_selinux_context, 1, 1, 0,
2825 doc: /* Return SELinux context of file named FILENAME.
2826 The return value is a list (USER ROLE TYPE RANGE), where the list
2827 elements are strings naming the user, role, type, and range of the
2828 file's SELinux security context.
2830 Return (nil nil nil nil) if the file is nonexistent or inaccessible,
2831 or if SELinux is disabled, or if Emacs lacks SELinux support. */)
2832 (Lisp_Object filename)
2834 Lisp_Object absname;
2835 Lisp_Object values[4];
2836 Lisp_Object handler;
2837 #if HAVE_LIBSELINUX
2838 security_context_t con;
2839 int conlength;
2840 context_t context;
2841 #endif
2843 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2845 /* If the file name has special constructs in it,
2846 call the corresponding file handler. */
2847 handler = Ffind_file_name_handler (absname, Qfile_selinux_context);
2848 if (!NILP (handler))
2849 return call2 (handler, Qfile_selinux_context, absname);
2851 absname = ENCODE_FILE (absname);
2853 values[0] = Qnil;
2854 values[1] = Qnil;
2855 values[2] = Qnil;
2856 values[3] = Qnil;
2857 #if HAVE_LIBSELINUX
2858 if (is_selinux_enabled ())
2860 conlength = lgetfilecon (SSDATA (absname), &con);
2861 if (conlength > 0)
2863 context = context_new (con);
2864 if (context_user_get (context))
2865 values[0] = build_string (context_user_get (context));
2866 if (context_role_get (context))
2867 values[1] = build_string (context_role_get (context));
2868 if (context_type_get (context))
2869 values[2] = build_string (context_type_get (context));
2870 if (context_range_get (context))
2871 values[3] = build_string (context_range_get (context));
2872 context_free (context);
2873 freecon (con);
2876 #endif
2878 return Flist (sizeof (values) / sizeof (values[0]), values);
2881 DEFUN ("set-file-selinux-context", Fset_file_selinux_context,
2882 Sset_file_selinux_context, 2, 2, 0,
2883 doc: /* Set SELinux context of file named FILENAME to CONTEXT.
2884 CONTEXT should be a list (USER ROLE TYPE RANGE), where the list
2885 elements are strings naming the components of a SELinux context.
2887 This function does nothing if SELinux is disabled, or if Emacs was not
2888 compiled with SELinux support. */)
2889 (Lisp_Object filename, Lisp_Object context)
2891 Lisp_Object absname;
2892 Lisp_Object handler;
2893 #if HAVE_LIBSELINUX
2894 Lisp_Object encoded_absname;
2895 Lisp_Object user = CAR_SAFE (context);
2896 Lisp_Object role = CAR_SAFE (CDR_SAFE (context));
2897 Lisp_Object type = CAR_SAFE (CDR_SAFE (CDR_SAFE (context)));
2898 Lisp_Object range = CAR_SAFE (CDR_SAFE (CDR_SAFE (CDR_SAFE (context))));
2899 security_context_t con;
2900 bool fail;
2901 int conlength;
2902 context_t parsed_con;
2903 #endif
2905 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
2907 /* If the file name has special constructs in it,
2908 call the corresponding file handler. */
2909 handler = Ffind_file_name_handler (absname, Qset_file_selinux_context);
2910 if (!NILP (handler))
2911 return call3 (handler, Qset_file_selinux_context, absname, context);
2913 #if HAVE_LIBSELINUX
2914 if (is_selinux_enabled ())
2916 /* Get current file context. */
2917 encoded_absname = ENCODE_FILE (absname);
2918 conlength = lgetfilecon (SSDATA (encoded_absname), &con);
2919 if (conlength > 0)
2921 parsed_con = context_new (con);
2922 /* Change the parts defined in the parameter.*/
2923 if (STRINGP (user))
2925 if (context_user_set (parsed_con, SSDATA (user)))
2926 error ("Doing context_user_set");
2928 if (STRINGP (role))
2930 if (context_role_set (parsed_con, SSDATA (role)))
2931 error ("Doing context_role_set");
2933 if (STRINGP (type))
2935 if (context_type_set (parsed_con, SSDATA (type)))
2936 error ("Doing context_type_set");
2938 if (STRINGP (range))
2940 if (context_range_set (parsed_con, SSDATA (range)))
2941 error ("Doing context_range_set");
2944 /* Set the modified context back to the file. */
2945 fail = (lsetfilecon (SSDATA (encoded_absname),
2946 context_str (parsed_con))
2947 != 0);
2948 /* See http://debbugs.gnu.org/11245 for ENOTSUP. */
2949 if (fail && errno != ENOTSUP)
2950 report_file_error ("Doing lsetfilecon", Fcons (absname, Qnil));
2952 context_free (parsed_con);
2953 freecon (con);
2955 else
2956 report_file_error ("Doing lgetfilecon", Fcons (absname, Qnil));
2958 #endif
2960 return Qnil;
2963 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
2964 doc: /* Return mode bits of file named FILENAME, as an integer.
2965 Return nil, if file does not exist or is not accessible. */)
2966 (Lisp_Object filename)
2968 Lisp_Object absname;
2969 struct stat st;
2970 Lisp_Object handler;
2972 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2974 /* If the file name has special constructs in it,
2975 call the corresponding file handler. */
2976 handler = Ffind_file_name_handler (absname, Qfile_modes);
2977 if (!NILP (handler))
2978 return call2 (handler, Qfile_modes, absname);
2980 absname = ENCODE_FILE (absname);
2982 if (stat (SSDATA (absname), &st) < 0)
2983 return Qnil;
2985 return make_number (st.st_mode & 07777);
2988 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2,
2989 "(let ((file (read-file-name \"File: \"))) \
2990 (list file (read-file-modes nil file)))",
2991 doc: /* Set mode bits of file named FILENAME to MODE (an integer).
2992 Only the 12 low bits of MODE are used.
2994 Interactively, mode bits are read by `read-file-modes', which accepts
2995 symbolic notation, like the `chmod' command from GNU Coreutils. */)
2996 (Lisp_Object filename, Lisp_Object mode)
2998 Lisp_Object absname, encoded_absname;
2999 Lisp_Object handler;
3001 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
3002 CHECK_NUMBER (mode);
3004 /* If the file name has special constructs in it,
3005 call the corresponding file handler. */
3006 handler = Ffind_file_name_handler (absname, Qset_file_modes);
3007 if (!NILP (handler))
3008 return call3 (handler, Qset_file_modes, absname, mode);
3010 encoded_absname = ENCODE_FILE (absname);
3012 if (chmod (SSDATA (encoded_absname), XINT (mode) & 07777) < 0)
3013 report_file_error ("Doing chmod", Fcons (absname, Qnil));
3015 return Qnil;
3018 DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0,
3019 doc: /* Set the file permission bits for newly created files.
3020 The argument MODE should be an integer; only the low 9 bits are used.
3021 This setting is inherited by subprocesses. */)
3022 (Lisp_Object mode)
3024 CHECK_NUMBER (mode);
3026 umask ((~ XINT (mode)) & 0777);
3028 return Qnil;
3031 DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0,
3032 doc: /* Return the default file protection for created files.
3033 The value is an integer. */)
3034 (void)
3036 mode_t realmask;
3037 Lisp_Object value;
3039 block_input ();
3040 realmask = umask (0);
3041 umask (realmask);
3042 unblock_input ();
3044 XSETINT (value, (~ realmask) & 0777);
3045 return value;
3049 DEFUN ("set-file-times", Fset_file_times, Sset_file_times, 1, 2, 0,
3050 doc: /* Set times of file FILENAME to TIMESTAMP.
3051 Set both access and modification times.
3052 Return t on success, else nil.
3053 Use the current time if TIMESTAMP is nil. TIMESTAMP is in the format of
3054 `current-time'. */)
3055 (Lisp_Object filename, Lisp_Object timestamp)
3057 Lisp_Object absname, encoded_absname;
3058 Lisp_Object handler;
3059 EMACS_TIME t = lisp_time_argument (timestamp);
3061 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
3063 /* If the file name has special constructs in it,
3064 call the corresponding file handler. */
3065 handler = Ffind_file_name_handler (absname, Qset_file_times);
3066 if (!NILP (handler))
3067 return call3 (handler, Qset_file_times, absname, timestamp);
3069 encoded_absname = ENCODE_FILE (absname);
3072 if (set_file_times (-1, SSDATA (encoded_absname), t, t))
3074 #ifdef MSDOS
3075 struct stat st;
3077 /* Setting times on a directory always fails. */
3078 if (stat (SSDATA (encoded_absname), &st) == 0 && S_ISDIR (st.st_mode))
3079 return Qnil;
3080 #endif
3081 report_file_error ("Setting file times", Fcons (absname, Qnil));
3082 return Qnil;
3086 return Qt;
3089 #ifdef HAVE_SYNC
3090 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
3091 doc: /* Tell Unix to finish all pending disk updates. */)
3092 (void)
3094 sync ();
3095 return Qnil;
3098 #endif /* HAVE_SYNC */
3100 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
3101 doc: /* Return t if file FILE1 is newer than file FILE2.
3102 If FILE1 does not exist, the answer is nil;
3103 otherwise, if FILE2 does not exist, the answer is t. */)
3104 (Lisp_Object file1, Lisp_Object file2)
3106 Lisp_Object absname1, absname2;
3107 struct stat st1, st2;
3108 Lisp_Object handler;
3109 struct gcpro gcpro1, gcpro2;
3111 CHECK_STRING (file1);
3112 CHECK_STRING (file2);
3114 absname1 = Qnil;
3115 GCPRO2 (absname1, file2);
3116 absname1 = expand_and_dir_to_file (file1, BVAR (current_buffer, directory));
3117 absname2 = expand_and_dir_to_file (file2, BVAR (current_buffer, directory));
3118 UNGCPRO;
3120 /* If the file name has special constructs in it,
3121 call the corresponding file handler. */
3122 handler = Ffind_file_name_handler (absname1, Qfile_newer_than_file_p);
3123 if (NILP (handler))
3124 handler = Ffind_file_name_handler (absname2, Qfile_newer_than_file_p);
3125 if (!NILP (handler))
3126 return call3 (handler, Qfile_newer_than_file_p, absname1, absname2);
3128 GCPRO2 (absname1, absname2);
3129 absname1 = ENCODE_FILE (absname1);
3130 absname2 = ENCODE_FILE (absname2);
3131 UNGCPRO;
3133 if (stat (SSDATA (absname1), &st1) < 0)
3134 return Qnil;
3136 if (stat (SSDATA (absname2), &st2) < 0)
3137 return Qt;
3139 return (EMACS_TIME_GT (get_stat_mtime (&st1), get_stat_mtime (&st2))
3140 ? Qt : Qnil);
3143 #ifndef READ_BUF_SIZE
3144 #define READ_BUF_SIZE (64 << 10)
3145 #endif
3146 /* Some buffer offsets are stored in 'int' variables. */
3147 verify (READ_BUF_SIZE <= INT_MAX);
3149 /* This function is called after Lisp functions to decide a coding
3150 system are called, or when they cause an error. Before they are
3151 called, the current buffer is set unibyte and it contains only a
3152 newly inserted text (thus the buffer was empty before the
3153 insertion).
3155 The functions may set markers, overlays, text properties, or even
3156 alter the buffer contents, change the current buffer.
3158 Here, we reset all those changes by:
3159 o set back the current buffer.
3160 o move all markers and overlays to BEG.
3161 o remove all text properties.
3162 o set back the buffer multibyteness. */
3164 static Lisp_Object
3165 decide_coding_unwind (Lisp_Object unwind_data)
3167 Lisp_Object multibyte, undo_list, buffer;
3169 multibyte = XCAR (unwind_data);
3170 unwind_data = XCDR (unwind_data);
3171 undo_list = XCAR (unwind_data);
3172 buffer = XCDR (unwind_data);
3174 set_buffer_internal (XBUFFER (buffer));
3175 adjust_markers_for_delete (BEG, BEG_BYTE, Z, Z_BYTE);
3176 adjust_overlays_for_delete (BEG, Z - BEG);
3177 set_buffer_intervals (current_buffer, NULL);
3178 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3180 /* Now we are safe to change the buffer's multibyteness directly. */
3181 bset_enable_multibyte_characters (current_buffer, multibyte);
3182 bset_undo_list (current_buffer, undo_list);
3184 return Qnil;
3188 /* Used to pass values from insert-file-contents to read_non_regular. */
3190 static int non_regular_fd;
3191 static ptrdiff_t non_regular_inserted;
3192 static int non_regular_nbytes;
3195 /* Read from a non-regular file.
3196 Read non_regular_nbytes bytes max from non_regular_fd.
3197 Non_regular_inserted specifies where to put the read bytes.
3198 Value is the number of bytes read. */
3200 static Lisp_Object
3201 read_non_regular (Lisp_Object ignore)
3203 int nbytes;
3205 immediate_quit = 1;
3206 QUIT;
3207 nbytes = emacs_read (non_regular_fd,
3208 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
3209 + non_regular_inserted),
3210 non_regular_nbytes);
3211 immediate_quit = 0;
3212 return make_number (nbytes);
3216 /* Condition-case handler used when reading from non-regular files
3217 in insert-file-contents. */
3219 static Lisp_Object
3220 read_non_regular_quit (Lisp_Object ignore)
3222 return Qnil;
3225 /* Reposition FD to OFFSET, based on WHENCE. This acts like lseek
3226 except that it also tests for OFFSET being out of lseek's range. */
3227 static off_t
3228 emacs_lseek (int fd, EMACS_INT offset, int whence)
3230 /* Use "&" rather than "&&" to suppress a bogus GCC warning; see
3231 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43772>. */
3232 if (! ((offset >= TYPE_MINIMUM (off_t)) & (offset <= TYPE_MAXIMUM (off_t))))
3234 errno = EINVAL;
3235 return -1;
3237 return lseek (fd, offset, whence);
3240 /* Return a special time value indicating the error number ERRNUM. */
3241 static EMACS_TIME
3242 time_error_value (int errnum)
3244 int ns = (errnum == ENOENT || errnum == EACCES || errnum == ENOTDIR
3245 ? NONEXISTENT_MODTIME_NSECS
3246 : UNKNOWN_MODTIME_NSECS);
3247 return make_emacs_time (0, ns);
3250 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
3251 1, 5, 0,
3252 doc: /* Insert contents of file FILENAME after point.
3253 Returns list of absolute file name and number of characters inserted.
3254 If second argument VISIT is non-nil, the buffer's visited filename and
3255 last save file modtime are set, and it is marked unmodified. If
3256 visiting and the file does not exist, visiting is completed before the
3257 error is signaled.
3259 The optional third and fourth arguments BEG and END specify what portion
3260 of the file to insert. These arguments count bytes in the file, not
3261 characters in the buffer. If VISIT is non-nil, BEG and END must be nil.
3263 If optional fifth argument REPLACE is non-nil, replace the current
3264 buffer contents (in the accessible portion) with the file contents.
3265 This is better than simply deleting and inserting the whole thing
3266 because (1) it preserves some marker positions and (2) it puts less data
3267 in the undo list. When REPLACE is non-nil, the second return value is
3268 the number of characters that replace previous buffer contents.
3270 This function does code conversion according to the value of
3271 `coding-system-for-read' or `file-coding-system-alist', and sets the
3272 variable `last-coding-system-used' to the coding system actually used. */)
3273 (Lisp_Object filename, Lisp_Object visit, Lisp_Object beg, Lisp_Object end, Lisp_Object replace)
3275 struct stat st;
3276 int file_status;
3277 EMACS_TIME mtime;
3278 int fd;
3279 ptrdiff_t inserted = 0;
3280 bool nochange = 0;
3281 ptrdiff_t how_much;
3282 off_t beg_offset, end_offset;
3283 int unprocessed;
3284 ptrdiff_t count = SPECPDL_INDEX ();
3285 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3286 Lisp_Object handler, val, insval, orig_filename, old_undo;
3287 Lisp_Object p;
3288 ptrdiff_t total = 0;
3289 bool not_regular = 0;
3290 int save_errno = 0;
3291 char read_buf[READ_BUF_SIZE];
3292 struct coding_system coding;
3293 char buffer[1 << 14];
3294 bool replace_handled = 0;
3295 bool set_coding_system = 0;
3296 Lisp_Object coding_system;
3297 bool read_quit = 0;
3298 Lisp_Object old_Vdeactivate_mark = Vdeactivate_mark;
3299 bool we_locked_file = 0;
3300 bool deferred_remove_unwind_protect = 0;
3302 if (current_buffer->base_buffer && ! NILP (visit))
3303 error ("Cannot do file visiting in an indirect buffer");
3305 if (!NILP (BVAR (current_buffer, read_only)))
3306 Fbarf_if_buffer_read_only ();
3308 val = Qnil;
3309 p = Qnil;
3310 orig_filename = Qnil;
3311 old_undo = Qnil;
3313 GCPRO5 (filename, val, p, orig_filename, old_undo);
3315 CHECK_STRING (filename);
3316 filename = Fexpand_file_name (filename, Qnil);
3318 /* The value Qnil means that the coding system is not yet
3319 decided. */
3320 coding_system = Qnil;
3322 /* If the file name has special constructs in it,
3323 call the corresponding file handler. */
3324 handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
3325 if (!NILP (handler))
3327 val = call6 (handler, Qinsert_file_contents, filename,
3328 visit, beg, end, replace);
3329 if (CONSP (val) && CONSP (XCDR (val))
3330 && RANGED_INTEGERP (0, XCAR (XCDR (val)), ZV - PT))
3331 inserted = XINT (XCAR (XCDR (val)));
3332 goto handled;
3335 orig_filename = filename;
3336 filename = ENCODE_FILE (filename);
3338 fd = -1;
3340 #ifdef WINDOWSNT
3342 Lisp_Object tem = Vw32_get_true_file_attributes;
3344 /* Tell stat to use expensive method to get accurate info. */
3345 Vw32_get_true_file_attributes = Qt;
3346 file_status = stat (SSDATA (filename), &st);
3347 Vw32_get_true_file_attributes = tem;
3349 #else
3350 file_status = stat (SSDATA (filename), &st);
3351 #endif /* WINDOWSNT */
3353 if (file_status == 0)
3354 mtime = get_stat_mtime (&st);
3355 else
3357 badopen:
3358 save_errno = errno;
3359 if (NILP (visit))
3360 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
3361 mtime = time_error_value (save_errno);
3362 st.st_size = -1;
3363 how_much = 0;
3364 if (!NILP (Vcoding_system_for_read))
3365 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read);
3366 goto notfound;
3369 /* This code will need to be changed in order to work on named
3370 pipes, and it's probably just not worth it. So we should at
3371 least signal an error. */
3372 if (!S_ISREG (st.st_mode))
3374 not_regular = 1;
3376 if (! NILP (visit))
3377 goto notfound;
3379 if (! NILP (replace) || ! NILP (beg) || ! NILP (end))
3380 xsignal2 (Qfile_error,
3381 build_string ("not a regular file"), orig_filename);
3384 if (fd < 0)
3385 if ((fd = emacs_open (SSDATA (filename), O_RDONLY, 0)) < 0)
3386 goto badopen;
3388 /* Replacement should preserve point as it preserves markers. */
3389 if (!NILP (replace))
3390 record_unwind_protect (restore_point_unwind, Fpoint_marker ());
3392 record_unwind_protect (close_file_unwind, make_number (fd));
3395 if (!NILP (visit))
3397 if (!NILP (beg) || !NILP (end))
3398 error ("Attempt to visit less than an entire file");
3399 if (BEG < Z && NILP (replace))
3400 error ("Cannot do file visiting in a non-empty buffer");
3403 if (!NILP (beg))
3405 if (! RANGED_INTEGERP (0, beg, TYPE_MAXIMUM (off_t)))
3406 wrong_type_argument (intern ("file-offset"), beg);
3407 beg_offset = XFASTINT (beg);
3409 else
3410 beg_offset = 0;
3412 if (!NILP (end))
3414 if (! RANGED_INTEGERP (0, end, TYPE_MAXIMUM (off_t)))
3415 wrong_type_argument (intern ("file-offset"), end);
3416 end_offset = XFASTINT (end);
3418 else
3420 if (not_regular)
3421 end_offset = TYPE_MAXIMUM (off_t);
3422 else
3424 end_offset = st.st_size;
3426 /* A negative size can happen on a platform that allows file
3427 sizes greater than the maximum off_t value. */
3428 if (end_offset < 0)
3429 buffer_overflow ();
3431 /* The file size returned from stat may be zero, but data
3432 may be readable nonetheless, for example when this is a
3433 file in the /proc filesystem. */
3434 if (end_offset == 0)
3435 end_offset = READ_BUF_SIZE;
3439 /* Check now whether the buffer will become too large,
3440 in the likely case where the file's length is not changing.
3441 This saves a lot of needless work before a buffer overflow. */
3442 if (! not_regular)
3444 /* The likely offset where we will stop reading. We could read
3445 more (or less), if the file grows (or shrinks) as we read it. */
3446 off_t likely_end = min (end_offset, st.st_size);
3448 if (beg_offset < likely_end)
3450 ptrdiff_t buf_bytes
3451 = Z_BYTE - (!NILP (replace) ? ZV_BYTE - BEGV_BYTE : 0);
3452 ptrdiff_t buf_growth_max = BUF_BYTES_MAX - buf_bytes;
3453 off_t likely_growth = likely_end - beg_offset;
3454 if (buf_growth_max < likely_growth)
3455 buffer_overflow ();
3459 /* Prevent redisplay optimizations. */
3460 current_buffer->clip_changed = 1;
3462 if (EQ (Vcoding_system_for_read, Qauto_save_coding))
3464 coding_system = coding_inherit_eol_type (Qutf_8_emacs, Qunix);
3465 setup_coding_system (coding_system, &coding);
3466 /* Ensure we set Vlast_coding_system_used. */
3467 set_coding_system = 1;
3469 else if (BEG < Z)
3471 /* Decide the coding system to use for reading the file now
3472 because we can't use an optimized method for handling
3473 `coding:' tag if the current buffer is not empty. */
3474 if (!NILP (Vcoding_system_for_read))
3475 coding_system = Vcoding_system_for_read;
3476 else
3478 /* Don't try looking inside a file for a coding system
3479 specification if it is not seekable. */
3480 if (! not_regular && ! NILP (Vset_auto_coding_function))
3482 /* Find a coding system specified in the heading two
3483 lines or in the tailing several lines of the file.
3484 We assume that the 1K-byte and 3K-byte for heading
3485 and tailing respectively are sufficient for this
3486 purpose. */
3487 int nread;
3489 if (st.st_size <= (1024 * 4))
3490 nread = emacs_read (fd, read_buf, 1024 * 4);
3491 else
3493 nread = emacs_read (fd, read_buf, 1024);
3494 if (nread >= 0)
3496 if (lseek (fd, st.st_size - (1024 * 3), SEEK_SET) < 0)
3497 report_file_error ("Setting file position",
3498 Fcons (orig_filename, Qnil));
3499 nread += emacs_read (fd, read_buf + nread, 1024 * 3);
3503 if (nread < 0)
3504 error ("IO error reading %s: %s",
3505 SDATA (orig_filename), emacs_strerror (errno));
3506 else if (nread > 0)
3508 struct buffer *prev = current_buffer;
3509 Lisp_Object workbuf;
3510 struct buffer *buf;
3512 record_unwind_current_buffer ();
3514 workbuf = Fget_buffer_create (build_string (" *code-converting-work*"));
3515 buf = XBUFFER (workbuf);
3517 delete_all_overlays (buf);
3518 bset_directory (buf, BVAR (current_buffer, directory));
3519 bset_read_only (buf, Qnil);
3520 bset_filename (buf, Qnil);
3521 bset_undo_list (buf, Qt);
3522 eassert (buf->overlays_before == NULL);
3523 eassert (buf->overlays_after == NULL);
3525 set_buffer_internal (buf);
3526 Ferase_buffer ();
3527 bset_enable_multibyte_characters (buf, Qnil);
3529 insert_1_both ((char *) read_buf, nread, nread, 0, 0, 0);
3530 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3531 coding_system = call2 (Vset_auto_coding_function,
3532 filename, make_number (nread));
3533 set_buffer_internal (prev);
3535 /* Discard the unwind protect for recovering the
3536 current buffer. */
3537 specpdl_ptr--;
3539 /* Rewind the file for the actual read done later. */
3540 if (lseek (fd, 0, SEEK_SET) < 0)
3541 report_file_error ("Setting file position",
3542 Fcons (orig_filename, Qnil));
3546 if (NILP (coding_system))
3548 /* If we have not yet decided a coding system, check
3549 file-coding-system-alist. */
3550 Lisp_Object args[6];
3552 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3553 args[2] = visit, args[3] = beg, args[4] = end, args[5] = replace;
3554 coding_system = Ffind_operation_coding_system (6, args);
3555 if (CONSP (coding_system))
3556 coding_system = XCAR (coding_system);
3560 if (NILP (coding_system))
3561 coding_system = Qundecided;
3562 else
3563 CHECK_CODING_SYSTEM (coding_system);
3565 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3566 /* We must suppress all character code conversion except for
3567 end-of-line conversion. */
3568 coding_system = raw_text_coding_system (coding_system);
3570 setup_coding_system (coding_system, &coding);
3571 /* Ensure we set Vlast_coding_system_used. */
3572 set_coding_system = 1;
3575 /* If requested, replace the accessible part of the buffer
3576 with the file contents. Avoid replacing text at the
3577 beginning or end of the buffer that matches the file contents;
3578 that preserves markers pointing to the unchanged parts.
3580 Here we implement this feature in an optimized way
3581 for the case where code conversion is NOT needed.
3582 The following if-statement handles the case of conversion
3583 in a less optimal way.
3585 If the code conversion is "automatic" then we try using this
3586 method and hope for the best.
3587 But if we discover the need for conversion, we give up on this method
3588 and let the following if-statement handle the replace job. */
3589 if (!NILP (replace)
3590 && BEGV < ZV
3591 && (NILP (coding_system)
3592 || ! CODING_REQUIRE_DECODING (&coding)))
3594 /* same_at_start and same_at_end count bytes,
3595 because file access counts bytes
3596 and BEG and END count bytes. */
3597 ptrdiff_t same_at_start = BEGV_BYTE;
3598 ptrdiff_t same_at_end = ZV_BYTE;
3599 ptrdiff_t overlap;
3600 /* There is still a possibility we will find the need to do code
3601 conversion. If that happens, set this variable to
3602 give up on handling REPLACE in the optimized way. */
3603 bool giveup_match_end = 0;
3605 if (beg_offset != 0)
3607 if (lseek (fd, beg_offset, SEEK_SET) < 0)
3608 report_file_error ("Setting file position",
3609 Fcons (orig_filename, Qnil));
3612 immediate_quit = 1;
3613 QUIT;
3614 /* Count how many chars at the start of the file
3615 match the text at the beginning of the buffer. */
3616 while (1)
3618 int nread, bufpos;
3620 nread = emacs_read (fd, buffer, sizeof buffer);
3621 if (nread < 0)
3622 error ("IO error reading %s: %s",
3623 SSDATA (orig_filename), emacs_strerror (errno));
3624 else if (nread == 0)
3625 break;
3627 if (CODING_REQUIRE_DETECTION (&coding))
3629 coding_system = detect_coding_system ((unsigned char *) buffer,
3630 nread, nread, 1, 0,
3631 coding_system);
3632 setup_coding_system (coding_system, &coding);
3635 if (CODING_REQUIRE_DECODING (&coding))
3636 /* We found that the file should be decoded somehow.
3637 Let's give up here. */
3639 giveup_match_end = 1;
3640 break;
3643 bufpos = 0;
3644 while (bufpos < nread && same_at_start < ZV_BYTE
3645 && FETCH_BYTE (same_at_start) == buffer[bufpos])
3646 same_at_start++, bufpos++;
3647 /* If we found a discrepancy, stop the scan.
3648 Otherwise loop around and scan the next bufferful. */
3649 if (bufpos != nread)
3650 break;
3652 immediate_quit = 0;
3653 /* If the file matches the buffer completely,
3654 there's no need to replace anything. */
3655 if (same_at_start - BEGV_BYTE == end_offset - beg_offset)
3657 emacs_close (fd);
3658 specpdl_ptr--;
3659 /* Truncate the buffer to the size of the file. */
3660 del_range_1 (same_at_start, same_at_end, 0, 0);
3661 goto handled;
3663 immediate_quit = 1;
3664 QUIT;
3665 /* Count how many chars at the end of the file
3666 match the text at the end of the buffer. But, if we have
3667 already found that decoding is necessary, don't waste time. */
3668 while (!giveup_match_end)
3670 int total_read, nread, bufpos, trial;
3671 off_t curpos;
3673 /* At what file position are we now scanning? */
3674 curpos = end_offset - (ZV_BYTE - same_at_end);
3675 /* If the entire file matches the buffer tail, stop the scan. */
3676 if (curpos == 0)
3677 break;
3678 /* How much can we scan in the next step? */
3679 trial = min (curpos, sizeof buffer);
3680 if (lseek (fd, curpos - trial, SEEK_SET) < 0)
3681 report_file_error ("Setting file position",
3682 Fcons (orig_filename, Qnil));
3684 total_read = nread = 0;
3685 while (total_read < trial)
3687 nread = emacs_read (fd, buffer + total_read, trial - total_read);
3688 if (nread < 0)
3689 error ("IO error reading %s: %s",
3690 SDATA (orig_filename), emacs_strerror (errno));
3691 else if (nread == 0)
3692 break;
3693 total_read += nread;
3696 /* Scan this bufferful from the end, comparing with
3697 the Emacs buffer. */
3698 bufpos = total_read;
3700 /* Compare with same_at_start to avoid counting some buffer text
3701 as matching both at the file's beginning and at the end. */
3702 while (bufpos > 0 && same_at_end > same_at_start
3703 && FETCH_BYTE (same_at_end - 1) == buffer[bufpos - 1])
3704 same_at_end--, bufpos--;
3706 /* If we found a discrepancy, stop the scan.
3707 Otherwise loop around and scan the preceding bufferful. */
3708 if (bufpos != 0)
3710 /* If this discrepancy is because of code conversion,
3711 we cannot use this method; giveup and try the other. */
3712 if (same_at_end > same_at_start
3713 && FETCH_BYTE (same_at_end - 1) >= 0200
3714 && ! NILP (BVAR (current_buffer, enable_multibyte_characters))
3715 && (CODING_MAY_REQUIRE_DECODING (&coding)))
3716 giveup_match_end = 1;
3717 break;
3720 if (nread == 0)
3721 break;
3723 immediate_quit = 0;
3725 if (! giveup_match_end)
3727 ptrdiff_t temp;
3729 /* We win! We can handle REPLACE the optimized way. */
3731 /* Extend the start of non-matching text area to multibyte
3732 character boundary. */
3733 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3734 while (same_at_start > BEGV_BYTE
3735 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3736 same_at_start--;
3738 /* Extend the end of non-matching text area to multibyte
3739 character boundary. */
3740 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3741 while (same_at_end < ZV_BYTE
3742 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3743 same_at_end++;
3745 /* Don't try to reuse the same piece of text twice. */
3746 overlap = (same_at_start - BEGV_BYTE
3747 - (same_at_end
3748 + (! NILP (end) ? end_offset : st.st_size) - ZV_BYTE));
3749 if (overlap > 0)
3750 same_at_end += overlap;
3752 /* Arrange to read only the nonmatching middle part of the file. */
3753 beg_offset += same_at_start - BEGV_BYTE;
3754 end_offset -= ZV_BYTE - same_at_end;
3756 del_range_byte (same_at_start, same_at_end, 0);
3757 /* Insert from the file at the proper position. */
3758 temp = BYTE_TO_CHAR (same_at_start);
3759 SET_PT_BOTH (temp, same_at_start);
3761 /* If display currently starts at beginning of line,
3762 keep it that way. */
3763 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3764 XWINDOW (selected_window)->start_at_line_beg = !NILP (Fbolp ());
3766 replace_handled = 1;
3770 /* If requested, replace the accessible part of the buffer
3771 with the file contents. Avoid replacing text at the
3772 beginning or end of the buffer that matches the file contents;
3773 that preserves markers pointing to the unchanged parts.
3775 Here we implement this feature for the case where code conversion
3776 is needed, in a simple way that needs a lot of memory.
3777 The preceding if-statement handles the case of no conversion
3778 in a more optimized way. */
3779 if (!NILP (replace) && ! replace_handled && BEGV < ZV)
3781 ptrdiff_t same_at_start = BEGV_BYTE;
3782 ptrdiff_t same_at_end = ZV_BYTE;
3783 ptrdiff_t same_at_start_charpos;
3784 ptrdiff_t inserted_chars;
3785 ptrdiff_t overlap;
3786 ptrdiff_t bufpos;
3787 unsigned char *decoded;
3788 ptrdiff_t temp;
3789 ptrdiff_t this = 0;
3790 ptrdiff_t this_count = SPECPDL_INDEX ();
3791 bool multibyte
3792 = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
3793 Lisp_Object conversion_buffer;
3794 struct gcpro gcpro1;
3796 conversion_buffer = code_conversion_save (1, multibyte);
3798 /* First read the whole file, performing code conversion into
3799 CONVERSION_BUFFER. */
3801 if (lseek (fd, beg_offset, SEEK_SET) < 0)
3802 report_file_error ("Setting file position",
3803 Fcons (orig_filename, Qnil));
3805 total = st.st_size; /* Total bytes in the file. */
3806 how_much = 0; /* Bytes read from file so far. */
3807 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */
3808 unprocessed = 0; /* Bytes not processed in previous loop. */
3810 GCPRO1 (conversion_buffer);
3811 while (how_much < total)
3813 /* We read one bunch by one (READ_BUF_SIZE bytes) to allow
3814 quitting while reading a huge while. */
3815 /* `try'' is reserved in some compilers (Microsoft C). */
3816 int trytry = min (total - how_much, READ_BUF_SIZE - unprocessed);
3818 /* Allow quitting out of the actual I/O. */
3819 immediate_quit = 1;
3820 QUIT;
3821 this = emacs_read (fd, read_buf + unprocessed, trytry);
3822 immediate_quit = 0;
3824 if (this <= 0)
3825 break;
3827 how_much += this;
3829 BUF_TEMP_SET_PT (XBUFFER (conversion_buffer),
3830 BUF_Z (XBUFFER (conversion_buffer)));
3831 decode_coding_c_string (&coding, (unsigned char *) read_buf,
3832 unprocessed + this, conversion_buffer);
3833 unprocessed = coding.carryover_bytes;
3834 if (coding.carryover_bytes > 0)
3835 memcpy (read_buf, coding.carryover, unprocessed);
3837 UNGCPRO;
3838 emacs_close (fd);
3840 /* We should remove the unwind_protect calling
3841 close_file_unwind, but other stuff has been added the stack,
3842 so defer the removal till we reach the `handled' label. */
3843 deferred_remove_unwind_protect = 1;
3845 /* At this point, HOW_MUCH should equal TOTAL, or should be <= 0
3846 if we couldn't read the file. */
3848 if (this < 0)
3849 error ("IO error reading %s: %s",
3850 SDATA (orig_filename), emacs_strerror (errno));
3852 if (unprocessed > 0)
3854 coding.mode |= CODING_MODE_LAST_BLOCK;
3855 decode_coding_c_string (&coding, (unsigned char *) read_buf,
3856 unprocessed, conversion_buffer);
3857 coding.mode &= ~CODING_MODE_LAST_BLOCK;
3860 coding_system = CODING_ID_NAME (coding.id);
3861 set_coding_system = 1;
3862 decoded = BUF_BEG_ADDR (XBUFFER (conversion_buffer));
3863 inserted = (BUF_Z_BYTE (XBUFFER (conversion_buffer))
3864 - BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
3866 /* Compare the beginning of the converted string with the buffer
3867 text. */
3869 bufpos = 0;
3870 while (bufpos < inserted && same_at_start < same_at_end
3871 && FETCH_BYTE (same_at_start) == decoded[bufpos])
3872 same_at_start++, bufpos++;
3874 /* If the file matches the head of buffer completely,
3875 there's no need to replace anything. */
3877 if (bufpos == inserted)
3879 /* Truncate the buffer to the size of the file. */
3880 if (same_at_start == same_at_end)
3881 nochange = 1;
3882 else
3883 del_range_byte (same_at_start, same_at_end, 0);
3884 inserted = 0;
3886 unbind_to (this_count, Qnil);
3887 goto handled;
3890 /* Extend the start of non-matching text area to the previous
3891 multibyte character boundary. */
3892 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3893 while (same_at_start > BEGV_BYTE
3894 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3895 same_at_start--;
3897 /* Scan this bufferful from the end, comparing with
3898 the Emacs buffer. */
3899 bufpos = inserted;
3901 /* Compare with same_at_start to avoid counting some buffer text
3902 as matching both at the file's beginning and at the end. */
3903 while (bufpos > 0 && same_at_end > same_at_start
3904 && FETCH_BYTE (same_at_end - 1) == decoded[bufpos - 1])
3905 same_at_end--, bufpos--;
3907 /* Extend the end of non-matching text area to the next
3908 multibyte character boundary. */
3909 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3910 while (same_at_end < ZV_BYTE
3911 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3912 same_at_end++;
3914 /* Don't try to reuse the same piece of text twice. */
3915 overlap = same_at_start - BEGV_BYTE - (same_at_end + inserted - ZV_BYTE);
3916 if (overlap > 0)
3917 same_at_end += overlap;
3919 /* If display currently starts at beginning of line,
3920 keep it that way. */
3921 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3922 XWINDOW (selected_window)->start_at_line_beg = !NILP (Fbolp ());
3924 /* Replace the chars that we need to replace,
3925 and update INSERTED to equal the number of bytes
3926 we are taking from the decoded string. */
3927 inserted -= (ZV_BYTE - same_at_end) + (same_at_start - BEGV_BYTE);
3929 if (same_at_end != same_at_start)
3931 del_range_byte (same_at_start, same_at_end, 0);
3932 temp = GPT;
3933 same_at_start = GPT_BYTE;
3935 else
3937 temp = BYTE_TO_CHAR (same_at_start);
3939 /* Insert from the file at the proper position. */
3940 SET_PT_BOTH (temp, same_at_start);
3941 same_at_start_charpos
3942 = buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
3943 same_at_start - BEGV_BYTE
3944 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
3945 inserted_chars
3946 = (buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
3947 same_at_start + inserted - BEGV_BYTE
3948 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)))
3949 - same_at_start_charpos);
3950 /* This binding is to avoid ask-user-about-supersession-threat
3951 being called in insert_from_buffer (via in
3952 prepare_to_modify_buffer). */
3953 specbind (intern ("buffer-file-name"), Qnil);
3954 insert_from_buffer (XBUFFER (conversion_buffer),
3955 same_at_start_charpos, inserted_chars, 0);
3956 /* Set `inserted' to the number of inserted characters. */
3957 inserted = PT - temp;
3958 /* Set point before the inserted characters. */
3959 SET_PT_BOTH (temp, same_at_start);
3961 unbind_to (this_count, Qnil);
3963 goto handled;
3966 if (! not_regular)
3967 total = end_offset - beg_offset;
3968 else
3969 /* For a special file, all we can do is guess. */
3970 total = READ_BUF_SIZE;
3972 if (NILP (visit) && total > 0)
3974 #ifdef CLASH_DETECTION
3975 if (!NILP (BVAR (current_buffer, file_truename))
3976 /* Make binding buffer-file-name to nil effective. */
3977 && !NILP (BVAR (current_buffer, filename))
3978 && SAVE_MODIFF >= MODIFF)
3979 we_locked_file = 1;
3980 #endif /* CLASH_DETECTION */
3981 prepare_to_modify_buffer (GPT, GPT, NULL);
3984 move_gap (PT);
3985 if (GAP_SIZE < total)
3986 make_gap (total - GAP_SIZE);
3988 if (beg_offset != 0 || !NILP (replace))
3990 if (lseek (fd, beg_offset, SEEK_SET) < 0)
3991 report_file_error ("Setting file position",
3992 Fcons (orig_filename, Qnil));
3995 /* In the following loop, HOW_MUCH contains the total bytes read so
3996 far for a regular file, and not changed for a special file. But,
3997 before exiting the loop, it is set to a negative value if I/O
3998 error occurs. */
3999 how_much = 0;
4001 /* Total bytes inserted. */
4002 inserted = 0;
4004 /* Here, we don't do code conversion in the loop. It is done by
4005 decode_coding_gap after all data are read into the buffer. */
4007 ptrdiff_t gap_size = GAP_SIZE;
4009 while (how_much < total)
4011 /* try is reserved in some compilers (Microsoft C) */
4012 int trytry = min (total - how_much, READ_BUF_SIZE);
4013 ptrdiff_t this;
4015 if (not_regular)
4017 Lisp_Object nbytes;
4019 /* Maybe make more room. */
4020 if (gap_size < trytry)
4022 make_gap (total - gap_size);
4023 gap_size = GAP_SIZE;
4026 /* Read from the file, capturing `quit'. When an
4027 error occurs, end the loop, and arrange for a quit
4028 to be signaled after decoding the text we read. */
4029 non_regular_fd = fd;
4030 non_regular_inserted = inserted;
4031 non_regular_nbytes = trytry;
4032 nbytes = internal_condition_case_1 (read_non_regular,
4033 Qnil, Qerror,
4034 read_non_regular_quit);
4035 if (NILP (nbytes))
4037 read_quit = 1;
4038 break;
4041 this = XINT (nbytes);
4043 else
4045 /* Allow quitting out of the actual I/O. We don't make text
4046 part of the buffer until all the reading is done, so a C-g
4047 here doesn't do any harm. */
4048 immediate_quit = 1;
4049 QUIT;
4050 this = emacs_read (fd,
4051 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
4052 + inserted),
4053 trytry);
4054 immediate_quit = 0;
4057 if (this <= 0)
4059 how_much = this;
4060 break;
4063 gap_size -= this;
4065 /* For a regular file, where TOTAL is the real size,
4066 count HOW_MUCH to compare with it.
4067 For a special file, where TOTAL is just a buffer size,
4068 so don't bother counting in HOW_MUCH.
4069 (INSERTED is where we count the number of characters inserted.) */
4070 if (! not_regular)
4071 how_much += this;
4072 inserted += this;
4076 /* Now we have read all the file data into the gap.
4077 If it was empty, undo marking the buffer modified. */
4079 if (inserted == 0)
4081 #ifdef CLASH_DETECTION
4082 if (we_locked_file)
4083 unlock_file (BVAR (current_buffer, file_truename));
4084 #endif
4085 Vdeactivate_mark = old_Vdeactivate_mark;
4087 else
4088 Vdeactivate_mark = Qt;
4090 /* Make the text read part of the buffer. */
4091 GAP_SIZE -= inserted;
4092 GPT += inserted;
4093 GPT_BYTE += inserted;
4094 ZV += inserted;
4095 ZV_BYTE += inserted;
4096 Z += inserted;
4097 Z_BYTE += inserted;
4099 if (GAP_SIZE > 0)
4100 /* Put an anchor to ensure multi-byte form ends at gap. */
4101 *GPT_ADDR = 0;
4103 emacs_close (fd);
4105 /* Discard the unwind protect for closing the file. */
4106 specpdl_ptr--;
4108 if (how_much < 0)
4109 error ("IO error reading %s: %s",
4110 SDATA (orig_filename), emacs_strerror (errno));
4112 notfound:
4114 if (NILP (coding_system))
4116 /* The coding system is not yet decided. Decide it by an
4117 optimized method for handling `coding:' tag.
4119 Note that we can get here only if the buffer was empty
4120 before the insertion. */
4122 if (!NILP (Vcoding_system_for_read))
4123 coding_system = Vcoding_system_for_read;
4124 else
4126 /* Since we are sure that the current buffer was empty
4127 before the insertion, we can toggle
4128 enable-multibyte-characters directly here without taking
4129 care of marker adjustment. By this way, we can run Lisp
4130 program safely before decoding the inserted text. */
4131 Lisp_Object unwind_data;
4132 ptrdiff_t count1 = SPECPDL_INDEX ();
4134 unwind_data = Fcons (BVAR (current_buffer, enable_multibyte_characters),
4135 Fcons (BVAR (current_buffer, undo_list),
4136 Fcurrent_buffer ()));
4137 bset_enable_multibyte_characters (current_buffer, Qnil);
4138 bset_undo_list (current_buffer, Qt);
4139 record_unwind_protect (decide_coding_unwind, unwind_data);
4141 if (inserted > 0 && ! NILP (Vset_auto_coding_function))
4143 coding_system = call2 (Vset_auto_coding_function,
4144 filename, make_number (inserted));
4147 if (NILP (coding_system))
4149 /* If the coding system is not yet decided, check
4150 file-coding-system-alist. */
4151 Lisp_Object args[6];
4153 args[0] = Qinsert_file_contents, args[1] = orig_filename;
4154 args[2] = visit, args[3] = beg, args[4] = end, args[5] = Qnil;
4155 coding_system = Ffind_operation_coding_system (6, args);
4156 if (CONSP (coding_system))
4157 coding_system = XCAR (coding_system);
4159 unbind_to (count1, Qnil);
4160 inserted = Z_BYTE - BEG_BYTE;
4163 if (NILP (coding_system))
4164 coding_system = Qundecided;
4165 else
4166 CHECK_CODING_SYSTEM (coding_system);
4168 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
4169 /* We must suppress all character code conversion except for
4170 end-of-line conversion. */
4171 coding_system = raw_text_coding_system (coding_system);
4172 setup_coding_system (coding_system, &coding);
4173 /* Ensure we set Vlast_coding_system_used. */
4174 set_coding_system = 1;
4177 if (!NILP (visit))
4179 /* When we visit a file by raw-text, we change the buffer to
4180 unibyte. */
4181 if (CODING_FOR_UNIBYTE (&coding)
4182 /* Can't do this if part of the buffer might be preserved. */
4183 && NILP (replace))
4184 /* Visiting a file with these coding system makes the buffer
4185 unibyte. */
4186 bset_enable_multibyte_characters (current_buffer, Qnil);
4189 coding.dst_multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
4190 if (CODING_MAY_REQUIRE_DECODING (&coding)
4191 && (inserted > 0 || CODING_REQUIRE_FLUSHING (&coding)))
4193 move_gap_both (PT, PT_BYTE);
4194 GAP_SIZE += inserted;
4195 ZV_BYTE -= inserted;
4196 Z_BYTE -= inserted;
4197 ZV -= inserted;
4198 Z -= inserted;
4199 decode_coding_gap (&coding, inserted, inserted);
4200 inserted = coding.produced_char;
4201 coding_system = CODING_ID_NAME (coding.id);
4203 else if (inserted > 0)
4204 adjust_after_insert (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4205 inserted);
4207 /* Call after-change hooks for the inserted text, aside from the case
4208 of normal visiting (not with REPLACE), which is done in a new buffer
4209 "before" the buffer is changed. */
4210 if (inserted > 0 && total > 0
4211 && (NILP (visit) || !NILP (replace)))
4213 signal_after_change (PT, 0, inserted);
4214 update_compositions (PT, PT, CHECK_BORDER);
4217 /* Now INSERTED is measured in characters. */
4219 handled:
4221 if (deferred_remove_unwind_protect)
4222 /* If requested above, discard the unwind protect for closing the
4223 file. */
4224 specpdl_ptr--;
4226 if (!NILP (visit))
4228 if (!EQ (BVAR (current_buffer, undo_list), Qt) && !nochange)
4229 bset_undo_list (current_buffer, Qnil);
4231 if (NILP (handler))
4233 current_buffer->modtime = mtime;
4234 current_buffer->modtime_size = st.st_size;
4235 bset_filename (current_buffer, orig_filename);
4238 SAVE_MODIFF = MODIFF;
4239 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
4240 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4241 #ifdef CLASH_DETECTION
4242 if (NILP (handler))
4244 if (!NILP (BVAR (current_buffer, file_truename)))
4245 unlock_file (BVAR (current_buffer, file_truename));
4246 unlock_file (filename);
4248 #endif /* CLASH_DETECTION */
4249 if (not_regular)
4250 xsignal2 (Qfile_error,
4251 build_string ("not a regular file"), orig_filename);
4254 if (set_coding_system)
4255 Vlast_coding_system_used = coding_system;
4257 if (! NILP (Ffboundp (Qafter_insert_file_set_coding)))
4259 insval = call2 (Qafter_insert_file_set_coding, make_number (inserted),
4260 visit);
4261 if (! NILP (insval))
4263 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4264 wrong_type_argument (intern ("inserted-chars"), insval);
4265 inserted = XFASTINT (insval);
4269 /* Decode file format. */
4270 if (inserted > 0)
4272 /* Don't run point motion or modification hooks when decoding. */
4273 ptrdiff_t count1 = SPECPDL_INDEX ();
4274 ptrdiff_t old_inserted = inserted;
4275 specbind (Qinhibit_point_motion_hooks, Qt);
4276 specbind (Qinhibit_modification_hooks, Qt);
4278 /* Save old undo list and don't record undo for decoding. */
4279 old_undo = BVAR (current_buffer, undo_list);
4280 bset_undo_list (current_buffer, Qt);
4282 if (NILP (replace))
4284 insval = call3 (Qformat_decode,
4285 Qnil, make_number (inserted), visit);
4286 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4287 wrong_type_argument (intern ("inserted-chars"), insval);
4288 inserted = XFASTINT (insval);
4290 else
4292 /* If REPLACE is non-nil and we succeeded in not replacing the
4293 beginning or end of the buffer text with the file's contents,
4294 call format-decode with `point' positioned at the beginning
4295 of the buffer and `inserted' equaling the number of
4296 characters in the buffer. Otherwise, format-decode might
4297 fail to correctly analyze the beginning or end of the buffer.
4298 Hence we temporarily save `point' and `inserted' here and
4299 restore `point' iff format-decode did not insert or delete
4300 any text. Otherwise we leave `point' at point-min. */
4301 ptrdiff_t opoint = PT;
4302 ptrdiff_t opoint_byte = PT_BYTE;
4303 ptrdiff_t oinserted = ZV - BEGV;
4304 EMACS_INT ochars_modiff = CHARS_MODIFF;
4306 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4307 insval = call3 (Qformat_decode,
4308 Qnil, make_number (oinserted), visit);
4309 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4310 wrong_type_argument (intern ("inserted-chars"), insval);
4311 if (ochars_modiff == CHARS_MODIFF)
4312 /* format_decode didn't modify buffer's characters => move
4313 point back to position before inserted text and leave
4314 value of inserted alone. */
4315 SET_PT_BOTH (opoint, opoint_byte);
4316 else
4317 /* format_decode modified buffer's characters => consider
4318 entire buffer changed and leave point at point-min. */
4319 inserted = XFASTINT (insval);
4322 /* For consistency with format-decode call these now iff inserted > 0
4323 (martin 2007-06-28). */
4324 p = Vafter_insert_file_functions;
4325 while (CONSP (p))
4327 if (NILP (replace))
4329 insval = call1 (XCAR (p), make_number (inserted));
4330 if (!NILP (insval))
4332 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4333 wrong_type_argument (intern ("inserted-chars"), insval);
4334 inserted = XFASTINT (insval);
4337 else
4339 /* For the rationale of this see the comment on
4340 format-decode above. */
4341 ptrdiff_t opoint = PT;
4342 ptrdiff_t opoint_byte = PT_BYTE;
4343 ptrdiff_t oinserted = ZV - BEGV;
4344 EMACS_INT ochars_modiff = CHARS_MODIFF;
4346 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4347 insval = call1 (XCAR (p), make_number (oinserted));
4348 if (!NILP (insval))
4350 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4351 wrong_type_argument (intern ("inserted-chars"), insval);
4352 if (ochars_modiff == CHARS_MODIFF)
4353 /* after_insert_file_functions didn't modify
4354 buffer's characters => move point back to
4355 position before inserted text and leave value of
4356 inserted alone. */
4357 SET_PT_BOTH (opoint, opoint_byte);
4358 else
4359 /* after_insert_file_functions did modify buffer's
4360 characters => consider entire buffer changed and
4361 leave point at point-min. */
4362 inserted = XFASTINT (insval);
4366 QUIT;
4367 p = XCDR (p);
4370 if (NILP (visit))
4372 bset_undo_list (current_buffer, old_undo);
4373 if (CONSP (old_undo) && inserted != old_inserted)
4375 /* Adjust the last undo record for the size change during
4376 the format conversion. */
4377 Lisp_Object tem = XCAR (old_undo);
4378 if (CONSP (tem) && INTEGERP (XCAR (tem))
4379 && INTEGERP (XCDR (tem))
4380 && XFASTINT (XCDR (tem)) == PT + old_inserted)
4381 XSETCDR (tem, make_number (PT + inserted));
4384 else
4385 /* If undo_list was Qt before, keep it that way.
4386 Otherwise start with an empty undo_list. */
4387 bset_undo_list (current_buffer, EQ (old_undo, Qt) ? Qt : Qnil);
4389 unbind_to (count1, Qnil);
4392 if (!NILP (visit)
4393 && EMACS_NSECS (current_buffer->modtime) == NONEXISTENT_MODTIME_NSECS)
4395 /* If visiting nonexistent file, return nil. */
4396 errno = save_errno;
4397 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
4400 if (read_quit)
4401 Fsignal (Qquit, Qnil);
4403 /* ??? Retval needs to be dealt with in all cases consistently. */
4404 if (NILP (val))
4405 val = Fcons (orig_filename,
4406 Fcons (make_number (inserted),
4407 Qnil));
4409 RETURN_UNGCPRO (unbind_to (count, val));
4412 static Lisp_Object build_annotations (Lisp_Object, Lisp_Object);
4414 static Lisp_Object
4415 build_annotations_unwind (Lisp_Object arg)
4417 Vwrite_region_annotation_buffers = arg;
4418 return Qnil;
4421 /* Decide the coding-system to encode the data with. */
4423 static Lisp_Object
4424 choose_write_coding_system (Lisp_Object start, Lisp_Object end, Lisp_Object filename,
4425 Lisp_Object append, Lisp_Object visit, Lisp_Object lockname,
4426 struct coding_system *coding)
4428 Lisp_Object val;
4429 Lisp_Object eol_parent = Qnil;
4431 if (auto_saving
4432 && NILP (Fstring_equal (BVAR (current_buffer, filename),
4433 BVAR (current_buffer, auto_save_file_name))))
4435 val = Qutf_8_emacs;
4436 eol_parent = Qunix;
4438 else if (!NILP (Vcoding_system_for_write))
4440 val = Vcoding_system_for_write;
4441 if (coding_system_require_warning
4442 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4443 /* Confirm that VAL can surely encode the current region. */
4444 val = call5 (Vselect_safe_coding_system_function,
4445 start, end, Fcons (Qt, Fcons (val, Qnil)),
4446 Qnil, filename);
4448 else
4450 /* If the variable `buffer-file-coding-system' is set locally,
4451 it means that the file was read with some kind of code
4452 conversion or the variable is explicitly set by users. We
4453 had better write it out with the same coding system even if
4454 `enable-multibyte-characters' is nil.
4456 If it is not set locally, we anyway have to convert EOL
4457 format if the default value of `buffer-file-coding-system'
4458 tells that it is not Unix-like (LF only) format. */
4459 bool using_default_coding = 0;
4460 bool force_raw_text = 0;
4462 val = BVAR (current_buffer, buffer_file_coding_system);
4463 if (NILP (val)
4464 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil)))
4466 val = Qnil;
4467 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
4468 force_raw_text = 1;
4471 if (NILP (val))
4473 /* Check file-coding-system-alist. */
4474 Lisp_Object args[7], coding_systems;
4476 args[0] = Qwrite_region; args[1] = start; args[2] = end;
4477 args[3] = filename; args[4] = append; args[5] = visit;
4478 args[6] = lockname;
4479 coding_systems = Ffind_operation_coding_system (7, args);
4480 if (CONSP (coding_systems) && !NILP (XCDR (coding_systems)))
4481 val = XCDR (coding_systems);
4484 if (NILP (val))
4486 /* If we still have not decided a coding system, use the
4487 default value of buffer-file-coding-system. */
4488 val = BVAR (current_buffer, buffer_file_coding_system);
4489 using_default_coding = 1;
4492 if (! NILP (val) && ! force_raw_text)
4494 Lisp_Object spec, attrs;
4496 CHECK_CODING_SYSTEM_GET_SPEC (val, spec);
4497 attrs = AREF (spec, 0);
4498 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text))
4499 force_raw_text = 1;
4502 if (!force_raw_text
4503 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4504 /* Confirm that VAL can surely encode the current region. */
4505 val = call5 (Vselect_safe_coding_system_function,
4506 start, end, val, Qnil, filename);
4508 /* If the decided coding-system doesn't specify end-of-line
4509 format, we use that of
4510 `default-buffer-file-coding-system'. */
4511 if (! using_default_coding
4512 && ! NILP (BVAR (&buffer_defaults, buffer_file_coding_system)))
4513 val = (coding_inherit_eol_type
4514 (val, BVAR (&buffer_defaults, buffer_file_coding_system)));
4516 /* If we decide not to encode text, use `raw-text' or one of its
4517 subsidiaries. */
4518 if (force_raw_text)
4519 val = raw_text_coding_system (val);
4522 val = coding_inherit_eol_type (val, eol_parent);
4523 setup_coding_system (val, coding);
4525 if (!STRINGP (start) && !NILP (BVAR (current_buffer, selective_display)))
4526 coding->mode |= CODING_MODE_SELECTIVE_DISPLAY;
4527 return val;
4530 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7,
4531 "r\nFWrite region to file: \ni\ni\ni\np",
4532 doc: /* Write current region into specified file.
4533 When called from a program, requires three arguments:
4534 START, END and FILENAME. START and END are normally buffer positions
4535 specifying the part of the buffer to write.
4536 If START is nil, that means to use the entire buffer contents.
4537 If START is a string, then output that string to the file
4538 instead of any buffer contents; END is ignored.
4540 Optional fourth argument APPEND if non-nil means
4541 append to existing file contents (if any). If it is an integer,
4542 seek to that offset in the file before writing.
4543 Optional fifth argument VISIT, if t or a string, means
4544 set the last-save-file-modtime of buffer to this file's modtime
4545 and mark buffer not modified.
4546 If VISIT is a string, it is a second file name;
4547 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4548 VISIT is also the file name to lock and unlock for clash detection.
4549 If VISIT is neither t nor nil nor a string,
4550 that means do not display the \"Wrote file\" message.
4551 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4552 use for locking and unlocking, overriding FILENAME and VISIT.
4553 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4554 for an existing file with the same name. If MUSTBENEW is `excl',
4555 that means to get an error if the file already exists; never overwrite.
4556 If MUSTBENEW is neither nil nor `excl', that means ask for
4557 confirmation before overwriting, but do go ahead and overwrite the file
4558 if the user confirms.
4560 This does code conversion according to the value of
4561 `coding-system-for-write', `buffer-file-coding-system', or
4562 `file-coding-system-alist', and sets the variable
4563 `last-coding-system-used' to the coding system actually used.
4565 This calls `write-region-annotate-functions' at the start, and
4566 `write-region-post-annotation-function' at the end. */)
4567 (Lisp_Object start, Lisp_Object end, Lisp_Object filename, Lisp_Object append, Lisp_Object visit, Lisp_Object lockname, Lisp_Object mustbenew)
4569 int desc;
4570 bool ok;
4571 int save_errno = 0;
4572 const char *fn;
4573 struct stat st;
4574 EMACS_TIME modtime;
4575 ptrdiff_t count = SPECPDL_INDEX ();
4576 int count1;
4577 Lisp_Object handler;
4578 Lisp_Object visit_file;
4579 Lisp_Object annotations;
4580 Lisp_Object encoded_filename;
4581 bool visiting = (EQ (visit, Qt) || STRINGP (visit));
4582 bool quietly = !NILP (visit);
4583 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4584 struct buffer *given_buffer;
4585 struct coding_system coding;
4587 if (current_buffer->base_buffer && visiting)
4588 error ("Cannot do file visiting in an indirect buffer");
4590 if (!NILP (start) && !STRINGP (start))
4591 validate_region (&start, &end);
4593 visit_file = Qnil;
4594 GCPRO5 (start, filename, visit, visit_file, lockname);
4596 filename = Fexpand_file_name (filename, Qnil);
4598 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl))
4599 barf_or_query_if_file_exists (filename, "overwrite", 1, 0, 1);
4601 if (STRINGP (visit))
4602 visit_file = Fexpand_file_name (visit, Qnil);
4603 else
4604 visit_file = filename;
4606 if (NILP (lockname))
4607 lockname = visit_file;
4609 annotations = Qnil;
4611 /* If the file name has special constructs in it,
4612 call the corresponding file handler. */
4613 handler = Ffind_file_name_handler (filename, Qwrite_region);
4614 /* If FILENAME has no handler, see if VISIT has one. */
4615 if (NILP (handler) && STRINGP (visit))
4616 handler = Ffind_file_name_handler (visit, Qwrite_region);
4618 if (!NILP (handler))
4620 Lisp_Object val;
4621 val = call6 (handler, Qwrite_region, start, end,
4622 filename, append, visit);
4624 if (visiting)
4626 SAVE_MODIFF = MODIFF;
4627 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4628 bset_filename (current_buffer, visit_file);
4630 UNGCPRO;
4631 return val;
4634 record_unwind_protect (save_restriction_restore, save_restriction_save ());
4636 /* Special kludge to simplify auto-saving. */
4637 if (NILP (start))
4639 /* Do it later, so write-region-annotate-function can work differently
4640 if we save "the buffer" vs "a region".
4641 This is useful in tar-mode. --Stef
4642 XSETFASTINT (start, BEG);
4643 XSETFASTINT (end, Z); */
4644 Fwiden ();
4647 record_unwind_protect (build_annotations_unwind,
4648 Vwrite_region_annotation_buffers);
4649 Vwrite_region_annotation_buffers = Fcons (Fcurrent_buffer (), Qnil);
4650 count1 = SPECPDL_INDEX ();
4652 given_buffer = current_buffer;
4654 if (!STRINGP (start))
4656 annotations = build_annotations (start, end);
4658 if (current_buffer != given_buffer)
4660 XSETFASTINT (start, BEGV);
4661 XSETFASTINT (end, ZV);
4665 if (NILP (start))
4667 XSETFASTINT (start, BEGV);
4668 XSETFASTINT (end, ZV);
4671 UNGCPRO;
4673 GCPRO5 (start, filename, annotations, visit_file, lockname);
4675 /* Decide the coding-system to encode the data with.
4676 We used to make this choice before calling build_annotations, but that
4677 leads to problems when a write-annotate-function takes care of
4678 unsavable chars (as was the case with X-Symbol). */
4679 Vlast_coding_system_used
4680 = choose_write_coding_system (start, end, filename,
4681 append, visit, lockname, &coding);
4683 #ifdef CLASH_DETECTION
4684 if (!auto_saving)
4685 lock_file (lockname);
4686 #endif /* CLASH_DETECTION */
4688 encoded_filename = ENCODE_FILE (filename);
4690 fn = SSDATA (encoded_filename);
4691 desc = -1;
4692 if (!NILP (append))
4693 #ifdef DOS_NT
4694 desc = emacs_open (fn, O_WRONLY | O_BINARY, 0);
4695 #else /* not DOS_NT */
4696 desc = emacs_open (fn, O_WRONLY, 0);
4697 #endif /* not DOS_NT */
4699 if (desc < 0 && (NILP (append) || errno == ENOENT))
4700 #ifdef DOS_NT
4701 desc = emacs_open (fn,
4702 O_WRONLY | O_CREAT | O_BINARY
4703 | (EQ (mustbenew, Qexcl) ? O_EXCL : O_TRUNC),
4704 S_IREAD | S_IWRITE);
4705 #else /* not DOS_NT */
4706 desc = emacs_open (fn, O_WRONLY | O_TRUNC | O_CREAT
4707 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0),
4708 auto_saving ? auto_save_mode_bits : 0666);
4709 #endif /* not DOS_NT */
4711 if (desc < 0)
4713 #ifdef CLASH_DETECTION
4714 save_errno = errno;
4715 if (!auto_saving) unlock_file (lockname);
4716 errno = save_errno;
4717 #endif /* CLASH_DETECTION */
4718 UNGCPRO;
4719 report_file_error ("Opening output file", Fcons (filename, Qnil));
4722 record_unwind_protect (close_file_unwind, make_number (desc));
4724 if (!NILP (append) && !NILP (Ffile_regular_p (filename)))
4726 off_t ret;
4728 if (NUMBERP (append))
4729 ret = emacs_lseek (desc, XINT (append), SEEK_CUR);
4730 else
4731 ret = lseek (desc, 0, SEEK_END);
4732 if (ret < 0)
4734 #ifdef CLASH_DETECTION
4735 save_errno = errno;
4736 if (!auto_saving) unlock_file (lockname);
4737 errno = save_errno;
4738 #endif /* CLASH_DETECTION */
4739 UNGCPRO;
4740 report_file_error ("Lseek error", Fcons (filename, Qnil));
4744 UNGCPRO;
4746 immediate_quit = 1;
4748 if (STRINGP (start))
4749 ok = a_write (desc, start, 0, SCHARS (start), &annotations, &coding);
4750 else if (XINT (start) != XINT (end))
4751 ok = a_write (desc, Qnil, XINT (start), XINT (end) - XINT (start),
4752 &annotations, &coding);
4753 else
4755 /* If file was empty, still need to write the annotations. */
4756 coding.mode |= CODING_MODE_LAST_BLOCK;
4757 ok = a_write (desc, Qnil, XINT (end), 0, &annotations, &coding);
4759 save_errno = errno;
4761 if (ok && CODING_REQUIRE_FLUSHING (&coding)
4762 && !(coding.mode & CODING_MODE_LAST_BLOCK))
4764 /* We have to flush out a data. */
4765 coding.mode |= CODING_MODE_LAST_BLOCK;
4766 ok = e_write (desc, Qnil, 1, 1, &coding);
4767 save_errno = errno;
4770 immediate_quit = 0;
4772 #ifdef HAVE_FSYNC
4773 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
4774 Disk full in NFS may be reported here. */
4775 /* mib says that closing the file will try to write as fast as NFS can do
4776 it, and that means the fsync here is not crucial for autosave files. */
4777 if (!auto_saving && !write_region_inhibit_fsync && fsync (desc) < 0)
4779 /* If fsync fails with EINTR, don't treat that as serious. Also
4780 ignore EINVAL which happens when fsync is not supported on this
4781 file. */
4782 if (errno != EINTR && errno != EINVAL)
4783 ok = 0, save_errno = errno;
4785 #endif
4787 modtime = invalid_emacs_time ();
4788 if (visiting)
4790 if (fstat (desc, &st) == 0)
4791 modtime = get_stat_mtime (&st);
4792 else
4793 ok = 0, save_errno = errno;
4796 /* NFS can report a write failure now. */
4797 if (emacs_close (desc) < 0)
4798 ok = 0, save_errno = errno;
4800 /* Discard the unwind protect for close_file_unwind. */
4801 specpdl_ptr = specpdl + count1;
4803 /* Call write-region-post-annotation-function. */
4804 while (CONSP (Vwrite_region_annotation_buffers))
4806 Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers);
4807 if (!NILP (Fbuffer_live_p (buf)))
4809 Fset_buffer (buf);
4810 if (FUNCTIONP (Vwrite_region_post_annotation_function))
4811 call0 (Vwrite_region_post_annotation_function);
4813 Vwrite_region_annotation_buffers
4814 = XCDR (Vwrite_region_annotation_buffers);
4817 unbind_to (count, Qnil);
4819 #ifdef CLASH_DETECTION
4820 if (!auto_saving)
4821 unlock_file (lockname);
4822 #endif /* CLASH_DETECTION */
4824 /* Do this before reporting IO error
4825 to avoid a "file has changed on disk" warning on
4826 next attempt to save. */
4827 if (EMACS_TIME_VALID_P (modtime))
4829 current_buffer->modtime = modtime;
4830 current_buffer->modtime_size = st.st_size;
4833 if (! ok)
4834 error ("IO error writing %s: %s", SDATA (filename),
4835 emacs_strerror (save_errno));
4837 if (visiting)
4839 SAVE_MODIFF = MODIFF;
4840 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4841 bset_filename (current_buffer, visit_file);
4842 update_mode_lines++;
4844 else if (quietly)
4846 if (auto_saving
4847 && ! NILP (Fstring_equal (BVAR (current_buffer, filename),
4848 BVAR (current_buffer, auto_save_file_name))))
4849 SAVE_MODIFF = MODIFF;
4851 return Qnil;
4854 if (!auto_saving)
4855 message_with_string ((INTEGERP (append)
4856 ? "Updated %s"
4857 : ! NILP (append)
4858 ? "Added to %s"
4859 : "Wrote %s"),
4860 visit_file, 1);
4862 return Qnil;
4865 Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object);
4867 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
4868 doc: /* Return t if (car A) is numerically less than (car B). */)
4869 (Lisp_Object a, Lisp_Object b)
4871 return Flss (Fcar (a), Fcar (b));
4874 /* Build the complete list of annotations appropriate for writing out
4875 the text between START and END, by calling all the functions in
4876 write-region-annotate-functions and merging the lists they return.
4877 If one of these functions switches to a different buffer, we assume
4878 that buffer contains altered text. Therefore, the caller must
4879 make sure to restore the current buffer in all cases,
4880 as save-excursion would do. */
4882 static Lisp_Object
4883 build_annotations (Lisp_Object start, Lisp_Object end)
4885 Lisp_Object annotations;
4886 Lisp_Object p, res;
4887 struct gcpro gcpro1, gcpro2;
4888 Lisp_Object original_buffer;
4889 int i;
4890 bool used_global = 0;
4892 XSETBUFFER (original_buffer, current_buffer);
4894 annotations = Qnil;
4895 p = Vwrite_region_annotate_functions;
4896 GCPRO2 (annotations, p);
4897 while (CONSP (p))
4899 struct buffer *given_buffer = current_buffer;
4900 if (EQ (Qt, XCAR (p)) && !used_global)
4901 { /* Use the global value of the hook. */
4902 Lisp_Object arg[2];
4903 used_global = 1;
4904 arg[0] = Fdefault_value (Qwrite_region_annotate_functions);
4905 arg[1] = XCDR (p);
4906 p = Fappend (2, arg);
4907 continue;
4909 Vwrite_region_annotations_so_far = annotations;
4910 res = call2 (XCAR (p), start, end);
4911 /* If the function makes a different buffer current,
4912 assume that means this buffer contains altered text to be output.
4913 Reset START and END from the buffer bounds
4914 and discard all previous annotations because they should have
4915 been dealt with by this function. */
4916 if (current_buffer != given_buffer)
4918 Vwrite_region_annotation_buffers
4919 = Fcons (Fcurrent_buffer (),
4920 Vwrite_region_annotation_buffers);
4921 XSETFASTINT (start, BEGV);
4922 XSETFASTINT (end, ZV);
4923 annotations = Qnil;
4925 Flength (res); /* Check basic validity of return value */
4926 annotations = merge (annotations, res, Qcar_less_than_car);
4927 p = XCDR (p);
4930 /* Now do the same for annotation functions implied by the file-format */
4931 if (auto_saving && (!EQ (BVAR (current_buffer, auto_save_file_format), Qt)))
4932 p = BVAR (current_buffer, auto_save_file_format);
4933 else
4934 p = BVAR (current_buffer, file_format);
4935 for (i = 0; CONSP (p); p = XCDR (p), ++i)
4937 struct buffer *given_buffer = current_buffer;
4939 Vwrite_region_annotations_so_far = annotations;
4941 /* Value is either a list of annotations or nil if the function
4942 has written annotations to a temporary buffer, which is now
4943 current. */
4944 res = call5 (Qformat_annotate_function, XCAR (p), start, end,
4945 original_buffer, make_number (i));
4946 if (current_buffer != given_buffer)
4948 XSETFASTINT (start, BEGV);
4949 XSETFASTINT (end, ZV);
4950 annotations = Qnil;
4953 if (CONSP (res))
4954 annotations = merge (annotations, res, Qcar_less_than_car);
4957 UNGCPRO;
4958 return annotations;
4962 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
4963 If STRING is nil, POS is the character position in the current buffer.
4964 Intersperse with them the annotations from *ANNOT
4965 which fall within the range of POS to POS + NCHARS,
4966 each at its appropriate position.
4968 We modify *ANNOT by discarding elements as we use them up.
4970 Return true if successful. */
4972 static bool
4973 a_write (int desc, Lisp_Object string, ptrdiff_t pos,
4974 ptrdiff_t nchars, Lisp_Object *annot,
4975 struct coding_system *coding)
4977 Lisp_Object tem;
4978 ptrdiff_t nextpos;
4979 ptrdiff_t lastpos = pos + nchars;
4981 while (NILP (*annot) || CONSP (*annot))
4983 tem = Fcar_safe (Fcar (*annot));
4984 nextpos = pos - 1;
4985 if (INTEGERP (tem))
4986 nextpos = XFASTINT (tem);
4988 /* If there are no more annotations in this range,
4989 output the rest of the range all at once. */
4990 if (! (nextpos >= pos && nextpos <= lastpos))
4991 return e_write (desc, string, pos, lastpos, coding);
4993 /* Output buffer text up to the next annotation's position. */
4994 if (nextpos > pos)
4996 if (!e_write (desc, string, pos, nextpos, coding))
4997 return 0;
4998 pos = nextpos;
5000 /* Output the annotation. */
5001 tem = Fcdr (Fcar (*annot));
5002 if (STRINGP (tem))
5004 if (!e_write (desc, tem, 0, SCHARS (tem), coding))
5005 return 0;
5007 *annot = Fcdr (*annot);
5009 return 1;
5013 /* Write text in the range START and END into descriptor DESC,
5014 encoding them with coding system CODING. If STRING is nil, START
5015 and END are character positions of the current buffer, else they
5016 are indexes to the string STRING. Return true if successful. */
5018 static bool
5019 e_write (int desc, Lisp_Object string, ptrdiff_t start, ptrdiff_t end,
5020 struct coding_system *coding)
5022 if (STRINGP (string))
5024 start = 0;
5025 end = SCHARS (string);
5028 /* We used to have a code for handling selective display here. But,
5029 now it is handled within encode_coding. */
5031 while (start < end)
5033 if (STRINGP (string))
5035 coding->src_multibyte = SCHARS (string) < SBYTES (string);
5036 if (CODING_REQUIRE_ENCODING (coding))
5038 encode_coding_object (coding, string,
5039 start, string_char_to_byte (string, start),
5040 end, string_char_to_byte (string, end), Qt);
5042 else
5044 coding->dst_object = string;
5045 coding->consumed_char = SCHARS (string);
5046 coding->produced = SBYTES (string);
5049 else
5051 ptrdiff_t start_byte = CHAR_TO_BYTE (start);
5052 ptrdiff_t end_byte = CHAR_TO_BYTE (end);
5054 coding->src_multibyte = (end - start) < (end_byte - start_byte);
5055 if (CODING_REQUIRE_ENCODING (coding))
5057 encode_coding_object (coding, Fcurrent_buffer (),
5058 start, start_byte, end, end_byte, Qt);
5060 else
5062 coding->dst_object = Qnil;
5063 coding->dst_pos_byte = start_byte;
5064 if (start >= GPT || end <= GPT)
5066 coding->consumed_char = end - start;
5067 coding->produced = end_byte - start_byte;
5069 else
5071 coding->consumed_char = GPT - start;
5072 coding->produced = GPT_BYTE - start_byte;
5077 if (coding->produced > 0)
5079 coding->produced
5080 -= emacs_write (desc,
5081 STRINGP (coding->dst_object)
5082 ? SSDATA (coding->dst_object)
5083 : (char *) BYTE_POS_ADDR (coding->dst_pos_byte),
5084 coding->produced);
5086 if (coding->produced)
5087 return 0;
5089 start += coding->consumed_char;
5092 return 1;
5095 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
5096 Sverify_visited_file_modtime, 0, 1, 0,
5097 doc: /* Return t if last mod time of BUF's visited file matches what BUF records.
5098 This means that the file has not been changed since it was visited or saved.
5099 If BUF is omitted or nil, it defaults to the current buffer.
5100 See Info node `(elisp)Modification Time' for more details. */)
5101 (Lisp_Object buf)
5103 struct buffer *b;
5104 struct stat st;
5105 Lisp_Object handler;
5106 Lisp_Object filename;
5107 EMACS_TIME mtime, diff;
5109 if (NILP (buf))
5110 b = current_buffer;
5111 else
5113 CHECK_BUFFER (buf);
5114 b = XBUFFER (buf);
5117 if (!STRINGP (BVAR (b, filename))) return Qt;
5118 if (EMACS_NSECS (b->modtime) == UNKNOWN_MODTIME_NSECS) return Qt;
5120 /* If the file name has special constructs in it,
5121 call the corresponding file handler. */
5122 handler = Ffind_file_name_handler (BVAR (b, filename),
5123 Qverify_visited_file_modtime);
5124 if (!NILP (handler))
5125 return call2 (handler, Qverify_visited_file_modtime, buf);
5127 filename = ENCODE_FILE (BVAR (b, filename));
5129 mtime = (stat (SSDATA (filename), &st) == 0
5130 ? get_stat_mtime (&st)
5131 : time_error_value (errno));
5132 if ((EMACS_TIME_EQ (mtime, b->modtime)
5133 /* If both exist, accept them if they are off by one second. */
5134 || (EMACS_TIME_VALID_P (mtime) && EMACS_TIME_VALID_P (b->modtime)
5135 && ((diff = (EMACS_TIME_LT (mtime, b->modtime)
5136 ? sub_emacs_time (b->modtime, mtime)
5137 : sub_emacs_time (mtime, b->modtime))),
5138 EMACS_TIME_LE (diff, make_emacs_time (1, 0)))))
5139 && (st.st_size == b->modtime_size
5140 || b->modtime_size < 0))
5141 return Qt;
5142 return Qnil;
5145 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
5146 Sclear_visited_file_modtime, 0, 0, 0,
5147 doc: /* Clear out records of last mod time of visited file.
5148 Next attempt to save will certainly not complain of a discrepancy. */)
5149 (void)
5151 current_buffer->modtime = make_emacs_time (0, UNKNOWN_MODTIME_NSECS);
5152 current_buffer->modtime_size = -1;
5153 return Qnil;
5156 DEFUN ("visited-file-modtime", Fvisited_file_modtime,
5157 Svisited_file_modtime, 0, 0, 0,
5158 doc: /* Return the current buffer's recorded visited file modification time.
5159 The value is a list of the form (HIGH LOW USEC PSEC), like the time values that
5160 `file-attributes' returns. If the current buffer has no recorded file
5161 modification time, this function returns 0. If the visited file
5162 doesn't exist, HIGH will be -1.
5163 See Info node `(elisp)Modification Time' for more details. */)
5164 (void)
5166 if (EMACS_NSECS (current_buffer->modtime) < 0)
5167 return make_number (0);
5168 return make_lisp_time (current_buffer->modtime);
5171 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
5172 Sset_visited_file_modtime, 0, 1, 0,
5173 doc: /* Update buffer's recorded modification time from the visited file's time.
5174 Useful if the buffer was not read from the file normally
5175 or if the file itself has been changed for some known benign reason.
5176 An argument specifies the modification time value to use
5177 \(instead of that of the visited file), in the form of a list
5178 \(HIGH LOW USEC PSEC) as returned by `current-time'. */)
5179 (Lisp_Object time_list)
5181 if (!NILP (time_list))
5183 current_buffer->modtime = lisp_time_argument (time_list);
5184 current_buffer->modtime_size = -1;
5186 else
5188 register Lisp_Object filename;
5189 struct stat st;
5190 Lisp_Object handler;
5192 filename = Fexpand_file_name (BVAR (current_buffer, filename), Qnil);
5194 /* If the file name has special constructs in it,
5195 call the corresponding file handler. */
5196 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
5197 if (!NILP (handler))
5198 /* The handler can find the file name the same way we did. */
5199 return call2 (handler, Qset_visited_file_modtime, Qnil);
5201 filename = ENCODE_FILE (filename);
5203 if (stat (SSDATA (filename), &st) >= 0)
5205 current_buffer->modtime = get_stat_mtime (&st);
5206 current_buffer->modtime_size = st.st_size;
5210 return Qnil;
5213 static Lisp_Object
5214 auto_save_error (Lisp_Object error_val)
5216 Lisp_Object args[3], msg;
5217 int i, nbytes;
5218 struct gcpro gcpro1;
5219 char *msgbuf;
5220 USE_SAFE_ALLOCA;
5222 auto_save_error_occurred = 1;
5224 ring_bell (XFRAME (selected_frame));
5226 args[0] = build_string ("Auto-saving %s: %s");
5227 args[1] = BVAR (current_buffer, name);
5228 args[2] = Ferror_message_string (error_val);
5229 msg = Fformat (3, args);
5230 GCPRO1 (msg);
5231 nbytes = SBYTES (msg);
5232 msgbuf = SAFE_ALLOCA (nbytes);
5233 memcpy (msgbuf, SDATA (msg), nbytes);
5235 for (i = 0; i < 3; ++i)
5237 if (i == 0)
5238 message2 (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5239 else
5240 message2_nolog (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5241 Fsleep_for (make_number (1), Qnil);
5244 SAFE_FREE ();
5245 UNGCPRO;
5246 return Qnil;
5249 static Lisp_Object
5250 auto_save_1 (void)
5252 struct stat st;
5253 Lisp_Object modes;
5255 auto_save_mode_bits = 0666;
5257 /* Get visited file's mode to become the auto save file's mode. */
5258 if (! NILP (BVAR (current_buffer, filename)))
5260 if (stat (SSDATA (BVAR (current_buffer, filename)), &st) >= 0)
5261 /* But make sure we can overwrite it later! */
5262 auto_save_mode_bits = (st.st_mode | 0600) & 0777;
5263 else if (modes = Ffile_modes (BVAR (current_buffer, filename)),
5264 INTEGERP (modes))
5265 /* Remote files don't cooperate with stat. */
5266 auto_save_mode_bits = (XINT (modes) | 0600) & 0777;
5269 return
5270 Fwrite_region (Qnil, Qnil, BVAR (current_buffer, auto_save_file_name), Qnil,
5271 NILP (Vauto_save_visited_file_name) ? Qlambda : Qt,
5272 Qnil, Qnil);
5275 static Lisp_Object
5276 do_auto_save_unwind (Lisp_Object arg) /* used as unwind-protect function */
5279 FILE *stream = (FILE *) XSAVE_VALUE (arg)->pointer;
5280 auto_saving = 0;
5281 if (stream != NULL)
5283 block_input ();
5284 fclose (stream);
5285 unblock_input ();
5287 return Qnil;
5290 static Lisp_Object
5291 do_auto_save_unwind_1 (Lisp_Object value) /* used as unwind-protect function */
5294 minibuffer_auto_raise = XINT (value);
5295 return Qnil;
5298 static Lisp_Object
5299 do_auto_save_make_dir (Lisp_Object dir)
5301 Lisp_Object result;
5303 auto_saving_dir_umask = 077;
5304 result = call2 (Qmake_directory, dir, Qt);
5305 auto_saving_dir_umask = 0;
5306 return result;
5309 static Lisp_Object
5310 do_auto_save_eh (Lisp_Object ignore)
5312 auto_saving_dir_umask = 0;
5313 return Qnil;
5316 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
5317 doc: /* Auto-save all buffers that need it.
5318 This is all buffers that have auto-saving enabled
5319 and are changed since last auto-saved.
5320 Auto-saving writes the buffer into a file
5321 so that your editing is not lost if the system crashes.
5322 This file is not the file you visited; that changes only when you save.
5323 Normally we run the normal hook `auto-save-hook' before saving.
5325 A non-nil NO-MESSAGE argument means do not print any message if successful.
5326 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5327 (Lisp_Object no_message, Lisp_Object current_only)
5329 struct buffer *old = current_buffer, *b;
5330 Lisp_Object tail, buf, hook;
5331 bool auto_saved = 0;
5332 int do_handled_files;
5333 Lisp_Object oquit;
5334 FILE *stream = NULL;
5335 ptrdiff_t count = SPECPDL_INDEX ();
5336 bool orig_minibuffer_auto_raise = minibuffer_auto_raise;
5337 bool old_message_p = 0;
5338 struct gcpro gcpro1, gcpro2;
5340 if (max_specpdl_size < specpdl_size + 40)
5341 max_specpdl_size = specpdl_size + 40;
5343 if (minibuf_level)
5344 no_message = Qt;
5346 if (NILP (no_message))
5348 old_message_p = push_message ();
5349 record_unwind_protect (pop_message_unwind, Qnil);
5352 /* Ordinarily don't quit within this function,
5353 but don't make it impossible to quit (in case we get hung in I/O). */
5354 oquit = Vquit_flag;
5355 Vquit_flag = Qnil;
5357 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5358 point to non-strings reached from Vbuffer_alist. */
5360 hook = intern ("auto-save-hook");
5361 Frun_hooks (1, &hook);
5363 if (STRINGP (Vauto_save_list_file_name))
5365 Lisp_Object listfile;
5367 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
5369 /* Don't try to create the directory when shutting down Emacs,
5370 because creating the directory might signal an error, and
5371 that would leave Emacs in a strange state. */
5372 if (!NILP (Vrun_hooks))
5374 Lisp_Object dir;
5375 dir = Qnil;
5376 GCPRO2 (dir, listfile);
5377 dir = Ffile_name_directory (listfile);
5378 if (NILP (Ffile_directory_p (dir)))
5379 internal_condition_case_1 (do_auto_save_make_dir,
5380 dir, Qt,
5381 do_auto_save_eh);
5382 UNGCPRO;
5385 stream = fopen (SSDATA (listfile), "w");
5388 record_unwind_protect (do_auto_save_unwind,
5389 make_save_value (stream, 0));
5390 record_unwind_protect (do_auto_save_unwind_1,
5391 make_number (minibuffer_auto_raise));
5392 minibuffer_auto_raise = 0;
5393 auto_saving = 1;
5394 auto_save_error_occurred = 0;
5396 /* On first pass, save all files that don't have handlers.
5397 On second pass, save all files that do have handlers.
5399 If Emacs is crashing, the handlers may tweak what is causing
5400 Emacs to crash in the first place, and it would be a shame if
5401 Emacs failed to autosave perfectly ordinary files because it
5402 couldn't handle some ange-ftp'd file. */
5404 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
5405 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
5407 buf = XCDR (XCAR (tail));
5408 b = XBUFFER (buf);
5410 /* Record all the buffers that have auto save mode
5411 in the special file that lists them. For each of these buffers,
5412 Record visited name (if any) and auto save name. */
5413 if (STRINGP (BVAR (b, auto_save_file_name))
5414 && stream != NULL && do_handled_files == 0)
5416 block_input ();
5417 if (!NILP (BVAR (b, filename)))
5419 fwrite (SDATA (BVAR (b, filename)), 1,
5420 SBYTES (BVAR (b, filename)), stream);
5422 putc ('\n', stream);
5423 fwrite (SDATA (BVAR (b, auto_save_file_name)), 1,
5424 SBYTES (BVAR (b, auto_save_file_name)), stream);
5425 putc ('\n', stream);
5426 unblock_input ();
5429 if (!NILP (current_only)
5430 && b != current_buffer)
5431 continue;
5433 /* Don't auto-save indirect buffers.
5434 The base buffer takes care of it. */
5435 if (b->base_buffer)
5436 continue;
5438 /* Check for auto save enabled
5439 and file changed since last auto save
5440 and file changed since last real save. */
5441 if (STRINGP (BVAR (b, auto_save_file_name))
5442 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
5443 && BUF_AUTOSAVE_MODIFF (b) < BUF_MODIFF (b)
5444 /* -1 means we've turned off autosaving for a while--see below. */
5445 && XINT (BVAR (b, save_length)) >= 0
5446 && (do_handled_files
5447 || NILP (Ffind_file_name_handler (BVAR (b, auto_save_file_name),
5448 Qwrite_region))))
5450 EMACS_TIME before_time = current_emacs_time ();
5451 EMACS_TIME after_time;
5453 /* If we had a failure, don't try again for 20 minutes. */
5454 if (b->auto_save_failure_time > 0
5455 && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200)
5456 continue;
5458 set_buffer_internal (b);
5459 if (NILP (Vauto_save_include_big_deletions)
5460 && (XFASTINT (BVAR (b, save_length)) * 10
5461 > (BUF_Z (b) - BUF_BEG (b)) * 13)
5462 /* A short file is likely to change a large fraction;
5463 spare the user annoying messages. */
5464 && XFASTINT (BVAR (b, save_length)) > 5000
5465 /* These messages are frequent and annoying for `*mail*'. */
5466 && !EQ (BVAR (b, filename), Qnil)
5467 && NILP (no_message))
5469 /* It has shrunk too much; turn off auto-saving here. */
5470 minibuffer_auto_raise = orig_minibuffer_auto_raise;
5471 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5472 BVAR (b, name), 1);
5473 minibuffer_auto_raise = 0;
5474 /* Turn off auto-saving until there's a real save,
5475 and prevent any more warnings. */
5476 XSETINT (BVAR (b, save_length), -1);
5477 Fsleep_for (make_number (1), Qnil);
5478 continue;
5480 if (!auto_saved && NILP (no_message))
5481 message1 ("Auto-saving...");
5482 internal_condition_case (auto_save_1, Qt, auto_save_error);
5483 auto_saved = 1;
5484 BUF_AUTOSAVE_MODIFF (b) = BUF_MODIFF (b);
5485 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5486 set_buffer_internal (old);
5488 after_time = current_emacs_time ();
5490 /* If auto-save took more than 60 seconds,
5491 assume it was an NFS failure that got a timeout. */
5492 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
5493 b->auto_save_failure_time = EMACS_SECS (after_time);
5497 /* Prevent another auto save till enough input events come in. */
5498 record_auto_save ();
5500 if (auto_saved && NILP (no_message))
5502 if (old_message_p)
5504 /* If we are going to restore an old message,
5505 give time to read ours. */
5506 sit_for (make_number (1), 0, 0);
5507 restore_message ();
5509 else if (!auto_save_error_occurred)
5510 /* Don't overwrite the error message if an error occurred.
5511 If we displayed a message and then restored a state
5512 with no message, leave a "done" message on the screen. */
5513 message1 ("Auto-saving...done");
5516 Vquit_flag = oquit;
5518 /* This restores the message-stack status. */
5519 unbind_to (count, Qnil);
5520 return Qnil;
5523 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
5524 Sset_buffer_auto_saved, 0, 0, 0,
5525 doc: /* Mark current buffer as auto-saved with its current text.
5526 No auto-save file will be written until the buffer changes again. */)
5527 (void)
5529 /* FIXME: This should not be called in indirect buffers, since
5530 they're not autosaved. */
5531 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
5532 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5533 current_buffer->auto_save_failure_time = 0;
5534 return Qnil;
5537 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
5538 Sclear_buffer_auto_save_failure, 0, 0, 0,
5539 doc: /* Clear any record of a recent auto-save failure in the current buffer. */)
5540 (void)
5542 current_buffer->auto_save_failure_time = 0;
5543 return Qnil;
5546 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
5547 0, 0, 0,
5548 doc: /* Return t if current buffer has been auto-saved recently.
5549 More precisely, if it has been auto-saved since last read from or saved
5550 in the visited file. If the buffer has no visited file,
5551 then any auto-save counts as "recent". */)
5552 (void)
5554 /* FIXME: maybe we should return nil for indirect buffers since
5555 they're never autosaved. */
5556 return (SAVE_MODIFF < BUF_AUTOSAVE_MODIFF (current_buffer) ? Qt : Qnil);
5559 /* Reading and completing file names */
5561 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p,
5562 Snext_read_file_uses_dialog_p, 0, 0, 0,
5563 doc: /* Return t if a call to `read-file-name' will use a dialog.
5564 The return value is only relevant for a call to `read-file-name' that happens
5565 before any other event (mouse or keypress) is handled. */)
5566 (void)
5568 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK) \
5569 || defined (HAVE_NS)
5570 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
5571 && use_dialog_box
5572 && use_file_dialog
5573 && have_menus_p ())
5574 return Qt;
5575 #endif
5576 return Qnil;
5579 Lisp_Object
5580 Fread_file_name (Lisp_Object prompt, Lisp_Object dir, Lisp_Object default_filename, Lisp_Object mustmatch, Lisp_Object initial, Lisp_Object predicate)
5582 struct gcpro gcpro1;
5583 Lisp_Object args[7];
5585 GCPRO1 (default_filename);
5586 args[0] = intern ("read-file-name");
5587 args[1] = prompt;
5588 args[2] = dir;
5589 args[3] = default_filename;
5590 args[4] = mustmatch;
5591 args[5] = initial;
5592 args[6] = predicate;
5593 RETURN_UNGCPRO (Ffuncall (7, args));
5597 void
5598 syms_of_fileio (void)
5600 DEFSYM (Qoperations, "operations");
5601 DEFSYM (Qexpand_file_name, "expand-file-name");
5602 DEFSYM (Qsubstitute_in_file_name, "substitute-in-file-name");
5603 DEFSYM (Qdirectory_file_name, "directory-file-name");
5604 DEFSYM (Qfile_name_directory, "file-name-directory");
5605 DEFSYM (Qfile_name_nondirectory, "file-name-nondirectory");
5606 DEFSYM (Qunhandled_file_name_directory, "unhandled-file-name-directory");
5607 DEFSYM (Qfile_name_as_directory, "file-name-as-directory");
5608 DEFSYM (Qcopy_file, "copy-file");
5609 DEFSYM (Qmake_directory_internal, "make-directory-internal");
5610 DEFSYM (Qmake_directory, "make-directory");
5611 DEFSYM (Qdelete_directory_internal, "delete-directory-internal");
5612 DEFSYM (Qdelete_file, "delete-file");
5613 DEFSYM (Qrename_file, "rename-file");
5614 DEFSYM (Qadd_name_to_file, "add-name-to-file");
5615 DEFSYM (Qmake_symbolic_link, "make-symbolic-link");
5616 DEFSYM (Qfile_exists_p, "file-exists-p");
5617 DEFSYM (Qfile_executable_p, "file-executable-p");
5618 DEFSYM (Qfile_readable_p, "file-readable-p");
5619 DEFSYM (Qfile_writable_p, "file-writable-p");
5620 DEFSYM (Qfile_symlink_p, "file-symlink-p");
5621 DEFSYM (Qaccess_file, "access-file");
5622 DEFSYM (Qfile_directory_p, "file-directory-p");
5623 DEFSYM (Qfile_regular_p, "file-regular-p");
5624 DEFSYM (Qfile_accessible_directory_p, "file-accessible-directory-p");
5625 DEFSYM (Qfile_modes, "file-modes");
5626 DEFSYM (Qset_file_modes, "set-file-modes");
5627 DEFSYM (Qset_file_times, "set-file-times");
5628 DEFSYM (Qfile_selinux_context, "file-selinux-context");
5629 DEFSYM (Qset_file_selinux_context, "set-file-selinux-context");
5630 DEFSYM (Qfile_newer_than_file_p, "file-newer-than-file-p");
5631 DEFSYM (Qinsert_file_contents, "insert-file-contents");
5632 DEFSYM (Qwrite_region, "write-region");
5633 DEFSYM (Qverify_visited_file_modtime, "verify-visited-file-modtime");
5634 DEFSYM (Qset_visited_file_modtime, "set-visited-file-modtime");
5635 DEFSYM (Qauto_save_coding, "auto-save-coding");
5637 DEFSYM (Qfile_name_history, "file-name-history");
5638 Fset (Qfile_name_history, Qnil);
5640 DEFSYM (Qfile_error, "file-error");
5641 DEFSYM (Qfile_already_exists, "file-already-exists");
5642 DEFSYM (Qfile_date_error, "file-date-error");
5643 DEFSYM (Qexcl, "excl");
5645 DEFVAR_LISP ("file-name-coding-system", Vfile_name_coding_system,
5646 doc: /* Coding system for encoding file names.
5647 If it is nil, `default-file-name-coding-system' (which see) is used. */);
5648 Vfile_name_coding_system = Qnil;
5650 DEFVAR_LISP ("default-file-name-coding-system",
5651 Vdefault_file_name_coding_system,
5652 doc: /* Default coding system for encoding file names.
5653 This variable is used only when `file-name-coding-system' is nil.
5655 This variable is set/changed by the command `set-language-environment'.
5656 User should not set this variable manually,
5657 instead use `file-name-coding-system' to get a constant encoding
5658 of file names regardless of the current language environment. */);
5659 Vdefault_file_name_coding_system = Qnil;
5661 DEFSYM (Qformat_decode, "format-decode");
5662 DEFSYM (Qformat_annotate_function, "format-annotate-function");
5663 DEFSYM (Qafter_insert_file_set_coding, "after-insert-file-set-coding");
5664 DEFSYM (Qcar_less_than_car, "car-less-than-car");
5666 Fput (Qfile_error, Qerror_conditions,
5667 Fpurecopy (list2 (Qfile_error, Qerror)));
5668 Fput (Qfile_error, Qerror_message,
5669 build_pure_c_string ("File error"));
5671 Fput (Qfile_already_exists, Qerror_conditions,
5672 Fpurecopy (list3 (Qfile_already_exists, Qfile_error, Qerror)));
5673 Fput (Qfile_already_exists, Qerror_message,
5674 build_pure_c_string ("File already exists"));
5676 Fput (Qfile_date_error, Qerror_conditions,
5677 Fpurecopy (list3 (Qfile_date_error, Qfile_error, Qerror)));
5678 Fput (Qfile_date_error, Qerror_message,
5679 build_pure_c_string ("Cannot set file date"));
5681 DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist,
5682 doc: /* Alist of elements (REGEXP . HANDLER) for file names handled specially.
5683 If a file name matches REGEXP, all I/O on that file is done by calling
5684 HANDLER. If a file name matches more than one handler, the handler
5685 whose match starts last in the file name gets precedence. The
5686 function `find-file-name-handler' checks this list for a handler for
5687 its argument.
5689 HANDLER should be a function. The first argument given to it is the
5690 name of the I/O primitive to be handled; the remaining arguments are
5691 the arguments that were passed to that primitive. For example, if you
5692 do (file-exists-p FILENAME) and FILENAME is handled by HANDLER, then
5693 HANDLER is called like this:
5695 (funcall HANDLER 'file-exists-p FILENAME)
5697 Note that HANDLER must be able to handle all I/O primitives; if it has
5698 nothing special to do for a primitive, it should reinvoke the
5699 primitive to handle the operation \"the usual way\".
5700 See Info node `(elisp)Magic File Names' for more details. */);
5701 Vfile_name_handler_alist = Qnil;
5703 DEFVAR_LISP ("set-auto-coding-function",
5704 Vset_auto_coding_function,
5705 doc: /* If non-nil, a function to call to decide a coding system of file.
5706 Two arguments are passed to this function: the file name
5707 and the length of a file contents following the point.
5708 This function should return a coding system to decode the file contents.
5709 It should check the file name against `auto-coding-alist'.
5710 If no coding system is decided, it should check a coding system
5711 specified in the heading lines with the format:
5712 -*- ... coding: CODING-SYSTEM; ... -*-
5713 or local variable spec of the tailing lines with `coding:' tag. */);
5714 Vset_auto_coding_function = Qnil;
5716 DEFVAR_LISP ("after-insert-file-functions", Vafter_insert_file_functions,
5717 doc: /* A list of functions to be called at the end of `insert-file-contents'.
5718 Each is passed one argument, the number of characters inserted,
5719 with point at the start of the inserted text. Each function
5720 should leave point the same, and return the new character count.
5721 If `insert-file-contents' is intercepted by a handler from
5722 `file-name-handler-alist', that handler is responsible for calling the
5723 functions in `after-insert-file-functions' if appropriate. */);
5724 Vafter_insert_file_functions = Qnil;
5726 DEFVAR_LISP ("write-region-annotate-functions", Vwrite_region_annotate_functions,
5727 doc: /* A list of functions to be called at the start of `write-region'.
5728 Each is passed two arguments, START and END as for `write-region'.
5729 These are usually two numbers but not always; see the documentation
5730 for `write-region'. The function should return a list of pairs
5731 of the form (POSITION . STRING), consisting of strings to be effectively
5732 inserted at the specified positions of the file being written (1 means to
5733 insert before the first byte written). The POSITIONs must be sorted into
5734 increasing order.
5736 If there are several annotation functions, the lists returned by these
5737 functions are merged destructively. As each annotation function runs,
5738 the variable `write-region-annotations-so-far' contains a list of all
5739 annotations returned by previous annotation functions.
5741 An annotation function can return with a different buffer current.
5742 Doing so removes the annotations returned by previous functions, and
5743 resets START and END to `point-min' and `point-max' of the new buffer.
5745 After `write-region' completes, Emacs calls the function stored in
5746 `write-region-post-annotation-function', once for each buffer that was
5747 current when building the annotations (i.e., at least once), with that
5748 buffer current. */);
5749 Vwrite_region_annotate_functions = Qnil;
5750 DEFSYM (Qwrite_region_annotate_functions, "write-region-annotate-functions");
5752 DEFVAR_LISP ("write-region-post-annotation-function",
5753 Vwrite_region_post_annotation_function,
5754 doc: /* Function to call after `write-region' completes.
5755 The function is called with no arguments. If one or more of the
5756 annotation functions in `write-region-annotate-functions' changed the
5757 current buffer, the function stored in this variable is called for
5758 each of those additional buffers as well, in addition to the original
5759 buffer. The relevant buffer is current during each function call. */);
5760 Vwrite_region_post_annotation_function = Qnil;
5761 staticpro (&Vwrite_region_annotation_buffers);
5763 DEFVAR_LISP ("write-region-annotations-so-far",
5764 Vwrite_region_annotations_so_far,
5765 doc: /* When an annotation function is called, this holds the previous annotations.
5766 These are the annotations made by other annotation functions
5767 that were already called. See also `write-region-annotate-functions'. */);
5768 Vwrite_region_annotations_so_far = Qnil;
5770 DEFVAR_LISP ("inhibit-file-name-handlers", Vinhibit_file_name_handlers,
5771 doc: /* A list of file name handlers that temporarily should not be used.
5772 This applies only to the operation `inhibit-file-name-operation'. */);
5773 Vinhibit_file_name_handlers = Qnil;
5775 DEFVAR_LISP ("inhibit-file-name-operation", Vinhibit_file_name_operation,
5776 doc: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
5777 Vinhibit_file_name_operation = Qnil;
5779 DEFVAR_LISP ("auto-save-list-file-name", Vauto_save_list_file_name,
5780 doc: /* File name in which we write a list of all auto save file names.
5781 This variable is initialized automatically from `auto-save-list-file-prefix'
5782 shortly after Emacs reads your init file, if you have not yet given it
5783 a non-nil value. */);
5784 Vauto_save_list_file_name = Qnil;
5786 DEFVAR_LISP ("auto-save-visited-file-name", Vauto_save_visited_file_name,
5787 doc: /* Non-nil says auto-save a buffer in the file it is visiting, when practical.
5788 Normally auto-save files are written under other names. */);
5789 Vauto_save_visited_file_name = Qnil;
5791 DEFVAR_LISP ("auto-save-include-big-deletions", Vauto_save_include_big_deletions,
5792 doc: /* If non-nil, auto-save even if a large part of the text is deleted.
5793 If nil, deleting a substantial portion of the text disables auto-save
5794 in the buffer; this is the default behavior, because the auto-save
5795 file is usually more useful if it contains the deleted text. */);
5796 Vauto_save_include_big_deletions = Qnil;
5798 #ifdef HAVE_FSYNC
5799 DEFVAR_BOOL ("write-region-inhibit-fsync", write_region_inhibit_fsync,
5800 doc: /* Non-nil means don't call fsync in `write-region'.
5801 This variable affects calls to `write-region' as well as save commands.
5802 A non-nil value may result in data loss! */);
5803 write_region_inhibit_fsync = 0;
5804 #endif
5806 DEFVAR_BOOL ("delete-by-moving-to-trash", delete_by_moving_to_trash,
5807 doc: /* Specifies whether to use the system's trash can.
5808 When non-nil, certain file deletion commands use the function
5809 `move-file-to-trash' instead of deleting files outright.
5810 This includes interactive calls to `delete-file' and
5811 `delete-directory' and the Dired deletion commands. */);
5812 delete_by_moving_to_trash = 0;
5813 Qdelete_by_moving_to_trash = intern_c_string ("delete-by-moving-to-trash");
5815 DEFSYM (Qmove_file_to_trash, "move-file-to-trash");
5816 DEFSYM (Qcopy_directory, "copy-directory");
5817 DEFSYM (Qdelete_directory, "delete-directory");
5819 defsubr (&Sfind_file_name_handler);
5820 defsubr (&Sfile_name_directory);
5821 defsubr (&Sfile_name_nondirectory);
5822 defsubr (&Sunhandled_file_name_directory);
5823 defsubr (&Sfile_name_as_directory);
5824 defsubr (&Sdirectory_file_name);
5825 defsubr (&Smake_temp_name);
5826 defsubr (&Sexpand_file_name);
5827 defsubr (&Ssubstitute_in_file_name);
5828 defsubr (&Scopy_file);
5829 defsubr (&Smake_directory_internal);
5830 defsubr (&Sdelete_directory_internal);
5831 defsubr (&Sdelete_file);
5832 defsubr (&Srename_file);
5833 defsubr (&Sadd_name_to_file);
5834 defsubr (&Smake_symbolic_link);
5835 defsubr (&Sfile_name_absolute_p);
5836 defsubr (&Sfile_exists_p);
5837 defsubr (&Sfile_executable_p);
5838 defsubr (&Sfile_readable_p);
5839 defsubr (&Sfile_writable_p);
5840 defsubr (&Saccess_file);
5841 defsubr (&Sfile_symlink_p);
5842 defsubr (&Sfile_directory_p);
5843 defsubr (&Sfile_accessible_directory_p);
5844 defsubr (&Sfile_regular_p);
5845 defsubr (&Sfile_modes);
5846 defsubr (&Sset_file_modes);
5847 defsubr (&Sset_file_times);
5848 defsubr (&Sfile_selinux_context);
5849 defsubr (&Sset_file_selinux_context);
5850 defsubr (&Sset_default_file_modes);
5851 defsubr (&Sdefault_file_modes);
5852 defsubr (&Sfile_newer_than_file_p);
5853 defsubr (&Sinsert_file_contents);
5854 defsubr (&Swrite_region);
5855 defsubr (&Scar_less_than_car);
5856 defsubr (&Sverify_visited_file_modtime);
5857 defsubr (&Sclear_visited_file_modtime);
5858 defsubr (&Svisited_file_modtime);
5859 defsubr (&Sset_visited_file_modtime);
5860 defsubr (&Sdo_auto_save);
5861 defsubr (&Sset_buffer_auto_saved);
5862 defsubr (&Sclear_buffer_auto_save_failure);
5863 defsubr (&Srecent_auto_save_p);
5865 defsubr (&Snext_read_file_uses_dialog_p);
5867 #ifdef HAVE_SYNC
5868 defsubr (&Sunix_sync);
5869 #endif