1 /* File IO for GNU Emacs.
3 Copyright (C) 1985-1988, 1993-2014 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/>. */
24 #include <sys/types.h>
34 #ifdef HAVE_LIBSELINUX
35 #include <selinux/selinux.h>
36 #include <selinux/context.h>
39 #ifdef HAVE_ACL_SET_FILE
46 #include "intervals.h"
47 #include "character.h"
51 #include "blockinput.h"
52 #include "region-cache.h"
54 #include "dispextern.h"
61 #endif /* not WINDOWSNT */
65 #include <sys/param.h>
69 /* On Windows, drive letters must be alphabetic - on DOS, the Netware
70 redirector allows the six letters between 'Z' and 'a' as well. */
72 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
75 #define IS_DRIVE(x) c_isalpha (x)
77 /* Need to lower-case the drive letter, or else expanded
78 filenames will sometimes compare unequal, because
79 `expand-file-name' doesn't always down-case the drive letter. */
80 #define DRIVE_LETTER(x) c_tolower (x)
85 #include <allocator.h>
86 #include <careadlinkat.h>
87 #include <stat-time.h>
95 /* True during writing of auto-save files. */
96 static bool auto_saving
;
98 /* Emacs's real umask. */
99 static mode_t realmask
;
101 /* Nonzero umask during creation of auto-save directories. */
102 static mode_t auto_saving_dir_umask
;
104 /* Set by auto_save_1 to mode of original file so Fwrite_region will create
105 a new file with the same mode as the original. */
106 static mode_t auto_save_mode_bits
;
108 /* Set by auto_save_1 if an error occurred during the last auto-save. */
109 static bool auto_save_error_occurred
;
111 /* If VALID_TIMESTAMP_FILE_SYSTEM, then TIMESTAMP_FILE_SYSTEM is the device
112 number of a file system where time stamps were observed to to work. */
113 static bool valid_timestamp_file_system
;
114 static dev_t timestamp_file_system
;
116 /* The symbol bound to coding-system-for-read when
117 insert-file-contents is called for recovering a file. This is not
118 an actual coding system name, but just an indicator to tell
119 insert-file-contents to use `emacs-mule' with a special flag for
120 auto saving and recovering a file. */
121 static Lisp_Object Qauto_save_coding
;
123 /* Property name of a file name handler,
124 which gives a list of operations it handles.. */
125 static Lisp_Object Qoperations
;
127 /* Lisp functions for translating file formats. */
128 static Lisp_Object Qformat_decode
, Qformat_annotate_function
;
130 /* Lisp function for setting buffer-file-coding-system and the
131 multibyteness of the current buffer after inserting a file. */
132 static Lisp_Object Qafter_insert_file_set_coding
;
134 static Lisp_Object Qwrite_region_annotate_functions
;
135 /* Each time an annotation function changes the buffer, the new buffer
137 static Lisp_Object Vwrite_region_annotation_buffers
;
139 static Lisp_Object Qdelete_by_moving_to_trash
;
141 /* Lisp function for moving files to trash. */
142 static Lisp_Object Qmove_file_to_trash
;
144 /* Lisp function for recursively copying directories. */
145 static Lisp_Object Qcopy_directory
;
147 /* Lisp function for recursively deleting directories. */
148 static Lisp_Object Qdelete_directory
;
150 static Lisp_Object Qsubstitute_env_in_file_name
;
151 static Lisp_Object Qget_buffer_window_list
;
153 Lisp_Object Qfile_error
, Qfile_notify_error
;
154 static Lisp_Object Qfile_already_exists
, Qfile_date_error
;
155 static Lisp_Object Qexcl
;
156 Lisp_Object Qfile_name_history
;
158 static Lisp_Object Qcar_less_than_car
;
160 static bool a_write (int, Lisp_Object
, ptrdiff_t, ptrdiff_t,
161 Lisp_Object
*, struct coding_system
*);
162 static bool e_write (int, Lisp_Object
, ptrdiff_t, ptrdiff_t,
163 struct coding_system
*);
166 /* Return true if FILENAME exists. */
169 check_existing (const char *filename
)
171 return faccessat (AT_FDCWD
, filename
, F_OK
, AT_EACCESS
) == 0;
174 /* Return true if file FILENAME exists and can be executed. */
177 check_executable (char *filename
)
179 return faccessat (AT_FDCWD
, filename
, X_OK
, AT_EACCESS
) == 0;
182 /* Return true if file FILENAME exists and can be accessed
183 according to AMODE, which should include W_OK.
184 On failure, return false and set errno. */
187 check_writable (const char *filename
, int amode
)
190 /* FIXME: an faccessat implementation should be added to the
191 DOS/Windows ports and this #ifdef branch should be removed. */
193 if (stat (filename
, &st
) < 0)
196 return (st
.st_mode
& S_IWRITE
|| S_ISDIR (st
.st_mode
));
197 #else /* not MSDOS */
198 bool res
= faccessat (AT_FDCWD
, filename
, amode
, AT_EACCESS
) == 0;
200 /* faccessat may have returned failure because Cygwin couldn't
201 determine the file's UID or GID; if so, we return success. */
204 int faccessat_errno
= errno
;
206 if (stat (filename
, &st
) < 0)
208 res
= (st
.st_uid
== -1 || st
.st_gid
== -1);
209 errno
= faccessat_errno
;
213 #endif /* not MSDOS */
216 /* Signal a file-access failure. STRING describes the failure,
217 NAME the file involved, and ERRORNO the errno value.
219 If NAME is neither null nor a pair, package it up as a singleton
220 list before reporting it; this saves report_file_errno's caller the
221 trouble of preserving errno before calling list1. */
224 report_file_errno (char const *string
, Lisp_Object name
, int errorno
)
226 Lisp_Object data
= CONSP (name
) || NILP (name
) ? name
: list1 (name
);
227 Lisp_Object errstring
;
230 synchronize_system_messages_locale ();
231 str
= strerror (errorno
);
232 errstring
= code_convert_string_norecord (build_unibyte_string (str
),
233 Vlocale_coding_system
, 0);
239 xsignal (Qfile_already_exists
, Fcons (errstring
, data
));
242 /* System error messages are capitalized. Downcase the initial
243 unless it is followed by a slash. (The slash case caters to
244 error messages that begin with "I/O" or, in German, "E/A".) */
245 if (STRING_MULTIBYTE (errstring
)
246 && ! EQ (Faref (errstring
, make_number (1)), make_number ('/')))
250 str
= SSDATA (errstring
);
251 c
= STRING_CHAR ((unsigned char *) str
);
252 Faset (errstring
, make_number (0), make_number (downcase (c
)));
255 xsignal (Qfile_error
,
256 Fcons (build_string (string
), Fcons (errstring
, data
)));
260 /* Signal a file-access failure that set errno. STRING describes the
261 failure, NAME the file involved. When invoking this function, take
262 care to not use arguments such as build_string ("foo") that involve
263 side effects that may set errno. */
266 report_file_error (char const *string
, Lisp_Object name
)
268 report_file_errno (string
, name
, errno
);
272 close_file_unwind (int fd
)
278 fclose_unwind (void *arg
)
284 /* Restore point, having saved it as a marker. */
287 restore_point_unwind (Lisp_Object location
)
289 Fgoto_char (location
);
290 unchain_marker (XMARKER (location
));
294 static Lisp_Object Qexpand_file_name
;
295 static Lisp_Object Qsubstitute_in_file_name
;
296 static Lisp_Object Qdirectory_file_name
;
297 static Lisp_Object Qfile_name_directory
;
298 static Lisp_Object Qfile_name_nondirectory
;
299 static Lisp_Object Qunhandled_file_name_directory
;
300 static Lisp_Object Qfile_name_as_directory
;
301 static Lisp_Object Qcopy_file
;
302 static Lisp_Object Qmake_directory_internal
;
303 static Lisp_Object Qmake_directory
;
304 static Lisp_Object Qdelete_directory_internal
;
305 Lisp_Object Qdelete_file
;
306 static Lisp_Object Qrename_file
;
307 static Lisp_Object Qadd_name_to_file
;
308 static Lisp_Object Qmake_symbolic_link
;
309 Lisp_Object Qfile_exists_p
;
310 static Lisp_Object Qfile_executable_p
;
311 static Lisp_Object Qfile_readable_p
;
312 static Lisp_Object Qfile_writable_p
;
313 static Lisp_Object Qfile_symlink_p
;
314 static Lisp_Object Qaccess_file
;
315 Lisp_Object Qfile_directory_p
;
316 static Lisp_Object Qfile_regular_p
;
317 static Lisp_Object Qfile_accessible_directory_p
;
318 static Lisp_Object Qfile_modes
;
319 static Lisp_Object Qset_file_modes
;
320 static Lisp_Object Qset_file_times
;
321 static Lisp_Object Qfile_selinux_context
;
322 static Lisp_Object Qset_file_selinux_context
;
323 static Lisp_Object Qfile_acl
;
324 static Lisp_Object Qset_file_acl
;
325 static Lisp_Object Qfile_newer_than_file_p
;
326 Lisp_Object Qinsert_file_contents
;
327 Lisp_Object Qwrite_region
;
328 static Lisp_Object Qverify_visited_file_modtime
;
329 static Lisp_Object Qset_visited_file_modtime
;
331 DEFUN ("find-file-name-handler", Ffind_file_name_handler
,
332 Sfind_file_name_handler
, 2, 2, 0,
333 doc
: /* Return FILENAME's handler function for OPERATION, if it has one.
334 Otherwise, return nil.
335 A file name is handled if one of the regular expressions in
336 `file-name-handler-alist' matches it.
338 If OPERATION equals `inhibit-file-name-operation', then we ignore
339 any handlers that are members of `inhibit-file-name-handlers',
340 but we still do run any other handlers. This lets handlers
341 use the standard functions without calling themselves recursively. */)
342 (Lisp_Object filename
, Lisp_Object operation
)
344 /* This function must not munge the match data. */
345 Lisp_Object chain
, inhibited_handlers
, result
;
349 CHECK_STRING (filename
);
351 if (EQ (operation
, Vinhibit_file_name_operation
))
352 inhibited_handlers
= Vinhibit_file_name_handlers
;
354 inhibited_handlers
= Qnil
;
356 for (chain
= Vfile_name_handler_alist
; CONSP (chain
);
357 chain
= XCDR (chain
))
363 Lisp_Object string
= XCAR (elt
);
365 Lisp_Object handler
= XCDR (elt
);
366 Lisp_Object operations
= Qnil
;
368 if (SYMBOLP (handler
))
369 operations
= Fget (handler
, Qoperations
);
372 && (match_pos
= fast_string_match (string
, filename
)) > pos
373 && (NILP (operations
) || ! NILP (Fmemq (operation
, operations
))))
377 handler
= XCDR (elt
);
378 tem
= Fmemq (handler
, inhibited_handlers
);
392 DEFUN ("file-name-directory", Ffile_name_directory
, Sfile_name_directory
,
394 doc
: /* Return the directory component in file name FILENAME.
395 Return nil if FILENAME does not include a directory.
396 Otherwise return a directory name.
397 Given a Unix syntax file name, returns a string ending in slash. */)
398 (Lisp_Object filename
)
402 CHECK_STRING (filename
);
404 /* If the file name has special constructs in it,
405 call the corresponding file handler. */
406 handler
= Ffind_file_name_handler (filename
, Qfile_name_directory
);
409 Lisp_Object handled_name
= call2 (handler
, Qfile_name_directory
,
411 return STRINGP (handled_name
) ? handled_name
: Qnil
;
414 char *beg
= SSDATA (filename
);
415 char const *p
= beg
+ SBYTES (filename
);
417 while (p
!= beg
&& !IS_DIRECTORY_SEP (p
[-1])
419 /* only recognize drive specifier at the beginning */
421 /* handle the "/:d:foo" and "/:foo" cases correctly */
422 && ((p
== beg
+ 2 && !IS_DIRECTORY_SEP (*beg
))
423 || (p
== beg
+ 4 && IS_DIRECTORY_SEP (*beg
))))
430 /* Expansion of "c:" to drive and default directory. */
433 SAFE_ALLOCA_STRING (beg
, filename
);
434 p
= beg
+ (p
- SSDATA (filename
));
438 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
439 char *res
= alloca (MAXPATHLEN
+ 1);
442 if (p
== beg
+ 4 && IS_DIRECTORY_SEP (*beg
) && beg
[1] == ':')
444 memcpy (res
, beg
, 2);
449 if (getdefdir (c_toupper (*beg
) - 'A' + 1, r
))
451 size_t l
= strlen (res
);
453 if (l
> 3 || !IS_DIRECTORY_SEP (res
[l
- 1]))
456 p
= beg
+ strlen (beg
);
457 dostounix_filename (beg
);
458 tem_fn
= make_specified_string (beg
, -1, p
- beg
,
459 STRING_MULTIBYTE (filename
));
462 tem_fn
= make_specified_string (beg
- 2, -1, p
- beg
+ 2,
463 STRING_MULTIBYTE (filename
));
465 else if (STRING_MULTIBYTE (filename
))
467 tem_fn
= make_specified_string (beg
, -1, p
- beg
, 1);
468 dostounix_filename (SSDATA (tem_fn
));
470 if (!NILP (Vw32_downcase_file_names
))
471 tem_fn
= Fdowncase (tem_fn
);
476 dostounix_filename (beg
);
477 tem_fn
= make_specified_string (beg
, -1, p
- beg
, 0);
482 return make_specified_string (beg
, -1, p
- beg
, STRING_MULTIBYTE (filename
));
486 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory
,
487 Sfile_name_nondirectory
, 1, 1, 0,
488 doc
: /* Return file name FILENAME sans its directory.
489 For example, in a Unix-syntax file name,
490 this is everything after the last slash,
491 or the entire name if it contains no slash. */)
492 (Lisp_Object filename
)
494 register const char *beg
, *p
, *end
;
497 CHECK_STRING (filename
);
499 /* If the file name has special constructs in it,
500 call the corresponding file handler. */
501 handler
= Ffind_file_name_handler (filename
, Qfile_name_nondirectory
);
504 Lisp_Object handled_name
= call2 (handler
, Qfile_name_nondirectory
,
506 if (STRINGP (handled_name
))
508 error ("Invalid handler in `file-name-handler-alist'");
511 beg
= SSDATA (filename
);
512 end
= p
= beg
+ SBYTES (filename
);
514 while (p
!= beg
&& !IS_DIRECTORY_SEP (p
[-1])
516 /* only recognize drive specifier at beginning */
518 /* handle the "/:d:foo" case correctly */
519 && (p
== beg
+ 2 || (p
== beg
+ 4 && IS_DIRECTORY_SEP (*beg
))))
524 return make_specified_string (p
, -1, end
- p
, STRING_MULTIBYTE (filename
));
527 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory
,
528 Sunhandled_file_name_directory
, 1, 1, 0,
529 doc
: /* Return a directly usable directory name somehow associated with FILENAME.
530 A `directly usable' directory name is one that may be used without the
531 intervention of any file handler.
532 If FILENAME is a directly usable file itself, return
533 \(file-name-directory FILENAME).
534 If FILENAME refers to a file which is not accessible from a local process,
535 then this should return nil.
536 The `call-process' and `start-process' functions use this function to
537 get a current directory to run processes in. */)
538 (Lisp_Object filename
)
542 /* If the file name has special constructs in it,
543 call the corresponding file handler. */
544 handler
= Ffind_file_name_handler (filename
, Qunhandled_file_name_directory
);
547 Lisp_Object handled_name
= call2 (handler
, Qunhandled_file_name_directory
,
549 return STRINGP (handled_name
) ? handled_name
: Qnil
;
552 return Ffile_name_directory (filename
);
555 /* Maximum number of bytes that DST will be longer than SRC
556 in file_name_as_directory. This occurs when SRCLEN == 0. */
557 enum { file_name_as_directory_slop
= 2 };
559 /* Convert from file name SRC of length SRCLEN to directory name in
560 DST. MULTIBYTE non-zero means the file name in SRC is a multibyte
561 string. On UNIX, just make sure there is a terminating /. Return
562 the length of DST in bytes. */
565 file_name_as_directory (char *dst
, const char *src
, ptrdiff_t srclen
,
576 memcpy (dst
, src
, srclen
);
577 if (!IS_DIRECTORY_SEP (dst
[srclen
- 1]))
578 dst
[srclen
++] = DIRECTORY_SEP
;
581 dostounix_filename (dst
);
586 DEFUN ("file-name-as-directory", Ffile_name_as_directory
,
587 Sfile_name_as_directory
, 1, 1, 0,
588 doc
: /* Return a string representing the file name FILE interpreted as a directory.
589 This operation exists because a directory is also a file, but its name as
590 a directory is different from its name as a file.
591 The result can be used as the value of `default-directory'
592 or passed as second argument to `expand-file-name'.
593 For a Unix-syntax file name, just appends a slash. */)
598 Lisp_Object handler
, val
;
605 /* If the file name has special constructs in it,
606 call the corresponding file handler. */
607 handler
= Ffind_file_name_handler (file
, Qfile_name_as_directory
);
610 Lisp_Object handled_name
= call2 (handler
, Qfile_name_as_directory
,
612 if (STRINGP (handled_name
))
614 error ("Invalid handler in `file-name-handler-alist'");
618 if (!NILP (Vw32_downcase_file_names
))
619 file
= Fdowncase (file
);
621 buf
= SAFE_ALLOCA (SBYTES (file
) + file_name_as_directory_slop
+ 1);
622 length
= file_name_as_directory (buf
, SSDATA (file
), SBYTES (file
),
623 STRING_MULTIBYTE (file
));
624 val
= make_specified_string (buf
, -1, length
, STRING_MULTIBYTE (file
));
629 /* Convert from directory name SRC of length SRCLEN to file name in
630 DST. MULTIBYTE non-zero means the file name in SRC is a multibyte
631 string. On UNIX, just make sure there isn't a terminating /.
632 Return the length of DST in bytes. */
635 directory_file_name (char *dst
, char *src
, ptrdiff_t srclen
, bool multibyte
)
637 /* Process as Unix format: just remove any final slash.
638 But leave "/" and "//" unchanged. */
641 && !IS_ANY_SEP (src
[srclen
- 2])
643 && IS_DIRECTORY_SEP (src
[srclen
- 1])
644 && ! (srclen
== 2 && IS_DIRECTORY_SEP (src
[0])))
647 memcpy (dst
, src
, srclen
);
650 dostounix_filename (dst
);
655 DEFUN ("directory-file-name", Fdirectory_file_name
, Sdirectory_file_name
,
657 doc
: /* Returns the file name of the directory named DIRECTORY.
658 This is the name of the file that holds the data for the directory DIRECTORY.
659 This operation exists because a directory is also a file, but its name as
660 a directory is different from its name as a file.
661 In Unix-syntax, this function just removes the final slash. */)
662 (Lisp_Object directory
)
666 Lisp_Object handler
, val
;
669 CHECK_STRING (directory
);
671 if (NILP (directory
))
674 /* If the file name has special constructs in it,
675 call the corresponding file handler. */
676 handler
= Ffind_file_name_handler (directory
, Qdirectory_file_name
);
679 Lisp_Object handled_name
= call2 (handler
, Qdirectory_file_name
,
681 if (STRINGP (handled_name
))
683 error ("Invalid handler in `file-name-handler-alist'");
687 if (!NILP (Vw32_downcase_file_names
))
688 directory
= Fdowncase (directory
);
690 buf
= SAFE_ALLOCA (SBYTES (directory
) + 1);
691 length
= directory_file_name (buf
, SSDATA (directory
), SBYTES (directory
),
692 STRING_MULTIBYTE (directory
));
693 val
= make_specified_string (buf
, -1, length
, STRING_MULTIBYTE (directory
));
698 static const char make_temp_name_tbl
[64] =
700 'A','B','C','D','E','F','G','H',
701 'I','J','K','L','M','N','O','P',
702 'Q','R','S','T','U','V','W','X',
703 'Y','Z','a','b','c','d','e','f',
704 'g','h','i','j','k','l','m','n',
705 'o','p','q','r','s','t','u','v',
706 'w','x','y','z','0','1','2','3',
707 '4','5','6','7','8','9','-','_'
710 static unsigned make_temp_name_count
, make_temp_name_count_initialized_p
;
712 /* Value is a temporary file name starting with PREFIX, a string.
714 The Emacs process number forms part of the result, so there is
715 no danger of generating a name being used by another process.
716 In addition, this function makes an attempt to choose a name
717 which has no existing file. To make this work, PREFIX should be
718 an absolute file name.
720 BASE64_P means add the pid as 3 characters in base64
721 encoding. In this case, 6 characters will be added to PREFIX to
722 form the file name. Otherwise, if Emacs is running on a system
723 with long file names, add the pid as a decimal number.
725 This function signals an error if no unique file name could be
729 make_temp_name (Lisp_Object prefix
, bool base64_p
)
731 Lisp_Object val
, encoded_prefix
;
735 char pidbuf
[INT_BUFSIZE_BOUND (printmax_t
)];
738 CHECK_STRING (prefix
);
740 /* VAL is created by adding 6 characters to PREFIX. The first
741 three are the PID of this process, in base 64, and the second
742 three are incremented if the file already exists. This ensures
743 262144 unique file names per PID per PREFIX. */
749 pidbuf
[0] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
750 pidbuf
[1] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
751 pidbuf
[2] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
756 #ifdef HAVE_LONG_FILE_NAMES
757 pidlen
= sprintf (pidbuf
, "%"pMd
, pid
);
759 pidbuf
[0] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
760 pidbuf
[1] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
761 pidbuf
[2] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
766 encoded_prefix
= ENCODE_FILE (prefix
);
767 len
= SBYTES (encoded_prefix
);
768 val
= make_uninit_string (len
+ 3 + pidlen
);
770 memcpy (data
, SSDATA (encoded_prefix
), len
);
773 memcpy (p
, pidbuf
, pidlen
);
776 /* Here we try to minimize useless stat'ing when this function is
777 invoked many times successively with the same PREFIX. We achieve
778 this by initializing count to a random value, and incrementing it
781 We don't want make-temp-name to be called while dumping,
782 because then make_temp_name_count_initialized_p would get set
783 and then make_temp_name_count would not be set when Emacs starts. */
785 if (!make_temp_name_count_initialized_p
)
787 make_temp_name_count
= time (NULL
);
788 make_temp_name_count_initialized_p
= 1;
793 unsigned num
= make_temp_name_count
;
795 p
[0] = make_temp_name_tbl
[num
& 63], num
>>= 6;
796 p
[1] = make_temp_name_tbl
[num
& 63], num
>>= 6;
797 p
[2] = make_temp_name_tbl
[num
& 63], num
>>= 6;
799 /* Poor man's congruential RN generator. Replace with
800 ++make_temp_name_count for debugging. */
801 make_temp_name_count
+= 25229;
802 make_temp_name_count
%= 225307;
804 if (!check_existing (data
))
806 /* We want to return only if errno is ENOENT. */
808 return DECODE_FILE (val
);
810 /* The error here is dubious, but there is little else we
811 can do. The alternatives are to return nil, which is
812 as bad as (and in many cases worse than) throwing the
813 error, or to ignore the error, which will likely result
814 in looping through 225307 stat's, which is not only
815 dog-slow, but also useless since eventually nil would
816 have to be returned anyway. */
817 report_file_error ("Cannot create temporary name for prefix",
825 DEFUN ("make-temp-name", Fmake_temp_name
, Smake_temp_name
, 1, 1, 0,
826 doc
: /* Generate temporary file name (string) starting with PREFIX (a string).
827 The Emacs process number forms part of the result,
828 so there is no danger of generating a name being used by another process.
830 In addition, this function makes an attempt to choose a name
831 which has no existing file. To make this work,
832 PREFIX should be an absolute file name.
834 There is a race condition between calling `make-temp-name' and creating the
835 file which opens all kinds of security holes. For that reason, you should
836 probably use `make-temp-file' instead, except in three circumstances:
838 * If you are creating the file in the user's home directory.
839 * If you are creating a directory rather than an ordinary file.
840 * If you are taking special precautions as `make-temp-file' does. */)
843 return make_temp_name (prefix
, 0);
846 DEFUN ("expand-file-name", Fexpand_file_name
, Sexpand_file_name
, 1, 2, 0,
847 doc
: /* Convert filename NAME to absolute, and canonicalize it.
848 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
849 \(does not start with slash or tilde); both the directory name and
850 a directory's file name are accepted. If DEFAULT-DIRECTORY is nil or
851 missing, the current buffer's value of `default-directory' is used.
852 NAME should be a string that is a valid file name for the underlying
854 File name components that are `.' are removed, and
855 so are file name components followed by `..', along with the `..' itself;
856 note that these simplifications are done without checking the resulting
857 file names in the file system.
858 Multiple consecutive slashes are collapsed into a single slash,
859 except at the beginning of the file name when they are significant (e.g.,
860 UNC file names on MS-Windows.)
861 An initial `~/' expands to your home directory.
862 An initial `~USER/' expands to USER's home directory.
863 See also the function `substitute-in-file-name'.
865 For technical reasons, this function can return correct but
866 non-intuitive results for the root directory; for instance,
867 \(expand-file-name ".." "/") returns "/..". For this reason, use
868 \(directory-file-name (file-name-directory dirname)) to traverse a
869 filesystem tree, not (expand-file-name ".." dirname). */)
870 (Lisp_Object name
, Lisp_Object default_directory
)
872 /* These point to SDATA and need to be careful with string-relocation
873 during GC (via DECODE_FILE). */
877 const char *newdirlim
;
878 /* This should only point to alloca'd data. */
885 bool collapse_newdir
= true;
888 ptrdiff_t length
, nbytes
;
889 Lisp_Object handler
, result
, handled_name
;
896 /* If the file name has special constructs in it,
897 call the corresponding file handler. */
898 handler
= Ffind_file_name_handler (name
, Qexpand_file_name
);
901 handled_name
= call3 (handler
, Qexpand_file_name
,
902 name
, default_directory
);
903 if (STRINGP (handled_name
))
905 error ("Invalid handler in `file-name-handler-alist'");
909 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
910 if (NILP (default_directory
))
911 default_directory
= BVAR (current_buffer
, directory
);
912 if (! STRINGP (default_directory
))
915 /* "/" is not considered a root directory on DOS_NT, so using "/"
916 here causes an infinite recursion in, e.g., the following:
918 (let (default-directory)
919 (expand-file-name "a"))
921 To avoid this, we set default_directory to the root of the
923 default_directory
= build_string (emacs_root_dir ());
925 default_directory
= build_string ("/");
929 if (!NILP (default_directory
))
931 handler
= Ffind_file_name_handler (default_directory
, Qexpand_file_name
);
934 handled_name
= call3 (handler
, Qexpand_file_name
,
935 name
, default_directory
);
936 if (STRINGP (handled_name
))
938 error ("Invalid handler in `file-name-handler-alist'");
943 char *o
= SSDATA (default_directory
);
945 /* Make sure DEFAULT_DIRECTORY is properly expanded.
946 It would be better to do this down below where we actually use
947 default_directory. Unfortunately, calling Fexpand_file_name recursively
948 could invoke GC, and the strings might be relocated. This would
949 be annoying because we have pointers into strings lying around
950 that would need adjusting, and people would add new pointers to
951 the code and forget to adjust them, resulting in intermittent bugs.
952 Putting this call here avoids all that crud.
954 The EQ test avoids infinite recursion. */
955 if (! NILP (default_directory
) && !EQ (default_directory
, name
)
956 /* Save time in some common cases - as long as default_directory
957 is not relative, it can be canonicalized with name below (if it
958 is needed at all) without requiring it to be expanded now. */
960 /* Detect MSDOS file names with drive specifiers. */
961 && ! (IS_DRIVE (o
[0]) && IS_DEVICE_SEP (o
[1])
962 && IS_DIRECTORY_SEP (o
[2]))
964 /* Detect Windows file names in UNC format. */
965 && ! (IS_DIRECTORY_SEP (o
[0]) && IS_DIRECTORY_SEP (o
[1]))
967 #else /* not DOS_NT */
968 /* Detect Unix absolute file names (/... alone is not absolute on
970 && ! (IS_DIRECTORY_SEP (o
[0]))
971 #endif /* not DOS_NT */
977 default_directory
= Fexpand_file_name (default_directory
, Qnil
);
981 multibyte
= STRING_MULTIBYTE (name
);
982 if (multibyte
!= STRING_MULTIBYTE (default_directory
))
986 unsigned char *p
= SDATA (name
);
988 while (*p
&& ASCII_CHAR_P (*p
))
992 /* NAME is a pure ASCII string, and DEFAULT_DIRECTORY is
993 unibyte. Do not convert DEFAULT_DIRECTORY to
994 multibyte; instead, convert NAME to a unibyte string,
995 so that the result of this function is also a unibyte
996 string. This is needed during bootstrapping and
997 dumping, when Emacs cannot decode file names, because
998 the locale environment is not set up. */
999 name
= make_unibyte_string (SSDATA (name
), SBYTES (name
));
1003 default_directory
= string_to_multibyte (default_directory
);
1007 name
= string_to_multibyte (name
);
1013 if (!NILP (Vw32_downcase_file_names
))
1014 default_directory
= Fdowncase (default_directory
);
1017 /* Make a local copy of NAME to protect it from GC in DECODE_FILE below. */
1018 SAFE_ALLOCA_STRING (nm
, name
);
1019 nmlim
= nm
+ SBYTES (name
);
1022 /* Note if special escape prefix is present, but remove for now. */
1023 if (nm
[0] == '/' && nm
[1] == ':')
1029 /* Find and remove drive specifier if present; this makes nm absolute
1030 even if the rest of the name appears to be relative. Only look for
1031 drive specifier at the beginning. */
1032 if (IS_DRIVE (nm
[0]) && IS_DEVICE_SEP (nm
[1]))
1034 drive
= (unsigned char) nm
[0];
1039 /* If we see "c://somedir", we want to strip the first slash after the
1040 colon when stripping the drive letter. Otherwise, this expands to
1042 if (drive
&& IS_DIRECTORY_SEP (nm
[0]) && IS_DIRECTORY_SEP (nm
[1]))
1045 /* Discard any previous drive specifier if nm is now in UNC format. */
1046 if (IS_DIRECTORY_SEP (nm
[0]) && IS_DIRECTORY_SEP (nm
[1])
1047 && !IS_DIRECTORY_SEP (nm
[2]))
1049 #endif /* WINDOWSNT */
1052 /* If nm is absolute, look for `/./' or `/../' or `//''sequences; if
1053 none are found, we can probably return right away. We will avoid
1054 allocating a new string if name is already fully expanded. */
1056 IS_DIRECTORY_SEP (nm
[0])
1058 && drive
&& !is_escaped
1061 && (drive
|| IS_DIRECTORY_SEP (nm
[1])) && !is_escaped
1065 /* If it turns out that the filename we want to return is just a
1066 suffix of FILENAME, we don't need to go through and edit
1067 things; we just need to construct a new string using data
1068 starting at the middle of FILENAME. If we set LOSE, that
1069 means we've discovered that we can't do that cool trick. */
1075 /* Since we know the name is absolute, we can assume that each
1076 element starts with a "/". */
1078 /* "." and ".." are hairy. */
1079 if (IS_DIRECTORY_SEP (p
[0])
1081 && (IS_DIRECTORY_SEP (p
[2])
1083 || (p
[2] == '.' && (IS_DIRECTORY_SEP (p
[3])
1086 /* Replace multiple slashes with a single one, except
1087 leave leading "//" alone. */
1088 else if (IS_DIRECTORY_SEP (p
[0])
1089 && IS_DIRECTORY_SEP (p
[1])
1090 && (p
!= nm
|| IS_DIRECTORY_SEP (p
[2])))
1097 /* Make sure directories are all separated with /, but
1098 avoid allocation of a new string when not required. */
1099 dostounix_filename (nm
);
1101 if (IS_DIRECTORY_SEP (nm
[1]))
1103 if (strcmp (nm
, SSDATA (name
)) != 0)
1104 name
= make_specified_string (nm
, -1, nmlim
- nm
, multibyte
);
1108 /* Drive must be set, so this is okay. */
1109 if (strcmp (nm
- 2, SSDATA (name
)) != 0)
1113 name
= make_specified_string (nm
, -1, p
- nm
, multibyte
);
1114 temp
[0] = DRIVE_LETTER (drive
);
1115 AUTO_STRING (drive_prefix
, temp
);
1116 name
= concat2 (drive_prefix
, name
);
1119 if (!NILP (Vw32_downcase_file_names
))
1120 name
= Fdowncase (name
);
1122 #else /* not DOS_NT */
1123 if (strcmp (nm
, SSDATA (name
)) != 0)
1124 name
= make_specified_string (nm
, -1, nmlim
- nm
, multibyte
);
1125 #endif /* not DOS_NT */
1131 /* At this point, nm might or might not be an absolute file name. We
1132 need to expand ~ or ~user if present, otherwise prefix nm with
1133 default_directory if nm is not absolute, and finally collapse /./
1134 and /foo/../ sequences.
1136 We set newdir to be the appropriate prefix if one is needed:
1137 - the relevant user directory if nm starts with ~ or ~user
1138 - the specified drive's working dir (DOS/NT only) if nm does not
1140 - the value of default_directory.
1142 Note that these prefixes are not guaranteed to be absolute (except
1143 for the working dir of a drive). Therefore, to ensure we always
1144 return an absolute name, if the final prefix is not absolute we
1145 append it to the current working directory. */
1147 newdir
= newdirlim
= 0;
1149 if (nm
[0] == '~') /* prefix ~ */
1151 if (IS_DIRECTORY_SEP (nm
[1])
1152 || nm
[1] == 0) /* ~ by itself */
1156 if (!(newdir
= egetenv ("HOME")))
1157 newdir
= newdirlim
= "";
1159 /* `egetenv' may return a unibyte string, which will bite us since
1160 we expect the directory to be multibyte. */
1164 char newdir_utf8
[MAX_UTF8_PATH
];
1166 filename_from_ansi (newdir
, newdir_utf8
);
1167 tem
= make_unibyte_string (newdir_utf8
, strlen (newdir_utf8
));
1171 tem
= build_string (newdir
);
1172 newdirlim
= newdir
+ SBYTES (tem
);
1173 if (multibyte
&& !STRING_MULTIBYTE (tem
))
1175 hdir
= DECODE_FILE (tem
);
1176 newdir
= SSDATA (hdir
);
1177 newdirlim
= newdir
+ SBYTES (hdir
);
1180 collapse_newdir
= false;
1183 else /* ~user/filename */
1186 for (p
= nm
; *p
&& !IS_DIRECTORY_SEP (*p
); p
++)
1188 o
= SAFE_ALLOCA (p
- nm
+ 1);
1189 memcpy (o
, nm
, p
- nm
);
1193 pw
= getpwnam (o
+ 1);
1199 newdir
= pw
->pw_dir
;
1200 /* `getpwnam' may return a unibyte string, which will
1201 bite us since we expect the directory to be
1203 tem
= make_unibyte_string (newdir
, strlen (newdir
));
1204 newdirlim
= newdir
+ SBYTES (tem
);
1205 if (multibyte
&& !STRING_MULTIBYTE (tem
))
1207 hdir
= DECODE_FILE (tem
);
1208 newdir
= SSDATA (hdir
);
1209 newdirlim
= newdir
+ SBYTES (hdir
);
1213 collapse_newdir
= false;
1217 /* If we don't find a user of that name, leave the name
1218 unchanged; don't move nm forward to p. */
1223 /* On DOS and Windows, nm is absolute if a drive name was specified;
1224 use the drive's current directory as the prefix if needed. */
1225 if (!newdir
&& drive
)
1227 /* Get default directory if needed to make nm absolute. */
1229 if (!IS_DIRECTORY_SEP (nm
[0]))
1231 adir
= alloca (MAXPATHLEN
+ 1);
1232 if (!getdefdir (c_toupper (drive
) - 'A' + 1, adir
))
1236 Lisp_Object tem
= build_string (adir
);
1238 tem
= DECODE_FILE (tem
);
1239 newdirlim
= adir
+ SBYTES (tem
);
1240 memcpy (adir
, SSDATA (tem
), SBYTES (tem
) + 1);
1243 newdirlim
= adir
+ strlen (adir
);
1247 /* Either nm starts with /, or drive isn't mounted. */
1249 adir
[0] = DRIVE_LETTER (drive
);
1253 newdirlim
= adir
+ 3;
1259 /* Finally, if no prefix has been specified and nm is not absolute,
1260 then it must be expanded relative to default_directory. */
1264 /* /... alone is not absolute on DOS and Windows. */
1265 && !IS_DIRECTORY_SEP (nm
[0])
1268 && !(IS_DIRECTORY_SEP (nm
[0]) && IS_DIRECTORY_SEP (nm
[1])
1269 && !IS_DIRECTORY_SEP (nm
[2]))
1273 newdir
= SSDATA (default_directory
);
1274 newdirlim
= newdir
+ SBYTES (default_directory
);
1276 /* Note if special escape prefix is present, but remove for now. */
1277 if (newdir
[0] == '/' && newdir
[1] == ':')
1288 /* First ensure newdir is an absolute name. */
1290 /* Detect MSDOS file names with drive specifiers. */
1291 ! (IS_DRIVE (newdir
[0])
1292 && IS_DEVICE_SEP (newdir
[1]) && IS_DIRECTORY_SEP (newdir
[2]))
1294 /* Detect Windows file names in UNC format. */
1295 && ! (IS_DIRECTORY_SEP (newdir
[0]) && IS_DIRECTORY_SEP (newdir
[1])
1296 && !IS_DIRECTORY_SEP (newdir
[2]))
1300 /* Effectively, let newdir be (expand-file-name newdir cwd).
1301 Because of the admonition against calling expand-file-name
1302 when we have pointers into lisp strings, we accomplish this
1303 indirectly by prepending newdir to nm if necessary, and using
1304 cwd (or the wd of newdir's drive) as the new newdir. */
1307 const int adir_size
= MAX_UTF8_PATH
;
1309 const int adir_size
= MAXPATHLEN
+ 1;
1312 if (IS_DRIVE (newdir
[0]) && IS_DEVICE_SEP (newdir
[1]))
1314 drive
= (unsigned char) newdir
[0];
1317 if (!IS_DIRECTORY_SEP (nm
[0]))
1319 ptrdiff_t nmlen
= nmlim
- nm
;
1320 ptrdiff_t newdirlen
= newdirlim
- newdir
;
1321 char *tmp
= alloca (newdirlen
+ file_name_as_directory_slop
1323 ptrdiff_t dlen
= file_name_as_directory (tmp
, newdir
, newdirlen
,
1325 memcpy (tmp
+ dlen
, nm
, nmlen
+ 1);
1327 nmlim
= nm
+ dlen
+ nmlen
;
1329 adir
= alloca (adir_size
);
1332 if (!getdefdir (c_toupper (drive
) - 'A' + 1, adir
))
1336 getcwd (adir
, adir_size
);
1339 Lisp_Object tem
= build_string (adir
);
1341 tem
= DECODE_FILE (tem
);
1342 newdirlim
= adir
+ SBYTES (tem
);
1343 memcpy (adir
, SSDATA (tem
), SBYTES (tem
) + 1);
1346 newdirlim
= adir
+ strlen (adir
);
1350 /* Strip off drive name from prefix, if present. */
1351 if (IS_DRIVE (newdir
[0]) && IS_DEVICE_SEP (newdir
[1]))
1357 /* Keep only a prefix from newdir if nm starts with slash
1358 (//server/share for UNC, nothing otherwise). */
1359 if (IS_DIRECTORY_SEP (nm
[0]) && collapse_newdir
)
1362 if (IS_DIRECTORY_SEP (newdir
[0]) && IS_DIRECTORY_SEP (newdir
[1])
1363 && !IS_DIRECTORY_SEP (newdir
[2]))
1365 char *adir
= strcpy (alloca (newdirlim
- newdir
+ 1), newdir
);
1367 while (*p
&& !IS_DIRECTORY_SEP (*p
)) p
++;
1369 while (*p
&& !IS_DIRECTORY_SEP (*p
)) p
++;
1372 newdirlim
= newdir
+ strlen (adir
);
1376 newdir
= newdirlim
= "";
1381 /* Ignore any slash at the end of newdir, unless newdir is
1382 just "/" or "//". */
1383 length
= newdirlim
- newdir
;
1384 while (length
> 1 && IS_DIRECTORY_SEP (newdir
[length
- 1])
1385 && ! (length
== 2 && IS_DIRECTORY_SEP (newdir
[0])))
1388 /* Now concatenate the directory and name to new space in the stack frame. */
1389 tlen
= length
+ file_name_as_directory_slop
+ (nmlim
- nm
) + 1;
1390 eassert (tlen
> file_name_as_directory_slop
+ 1);
1392 /* Reserve space for drive specifier and escape prefix, since either
1393 or both may need to be inserted. (The Microsoft x86 compiler
1394 produces incorrect code if the following two lines are combined.) */
1395 target
= alloca (tlen
+ 4);
1397 #else /* not DOS_NT */
1398 target
= SAFE_ALLOCA (tlen
);
1399 #endif /* not DOS_NT */
1405 if (nm
[0] == 0 || IS_DIRECTORY_SEP (nm
[0]))
1408 /* If newdir is effectively "C:/", then the drive letter will have
1409 been stripped and newdir will be "/". Concatenating with an
1410 absolute directory in nm produces "//", which will then be
1411 incorrectly treated as a network share. Ignore newdir in
1412 this case (keeping the drive letter). */
1413 if (!(drive
&& nm
[0] && IS_DIRECTORY_SEP (newdir
[0])
1414 && newdir
[1] == '\0'))
1417 memcpy (target
, newdir
, length
);
1423 nbytes
= file_name_as_directory (target
, newdir
, length
, multibyte
);
1426 memcpy (target
+ nbytes
, nm
, nmlim
- nm
+ 1);
1428 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they
1436 if (!IS_DIRECTORY_SEP (*p
))
1440 else if (p
[1] == '.'
1441 && (IS_DIRECTORY_SEP (p
[2])
1444 /* If "/." is the entire filename, keep the "/". Otherwise,
1445 just delete the whole "/.". */
1446 if (o
== target
&& p
[2] == '\0')
1450 else if (p
[1] == '.' && p
[2] == '.'
1451 /* `/../' is the "superroot" on certain file systems.
1452 Turned off on DOS_NT systems because they have no
1453 "superroot" and because this causes us to produce
1454 file names like "d:/../foo" which fail file-related
1455 functions of the underlying OS. (To reproduce, try a
1456 long series of "../../" in default_directory, longer
1457 than the number of levels from the root.) */
1461 && (IS_DIRECTORY_SEP (p
[3]) || p
[3] == 0))
1466 while (o
!= target
&& (--o
, !IS_DIRECTORY_SEP (*o
)))
1469 /* Don't go below server level in UNC filenames. */
1470 if (o
== target
+ 1 && IS_DIRECTORY_SEP (*o
)
1471 && IS_DIRECTORY_SEP (*target
))
1475 /* Keep initial / only if this is the whole name. */
1476 if (o
== target
&& IS_ANY_SEP (*o
) && p
[3] == 0)
1480 else if (IS_DIRECTORY_SEP (p
[1])
1481 && (p
!= target
|| IS_DIRECTORY_SEP (p
[2])))
1482 /* Collapse multiple "/", except leave leading "//" alone. */
1491 /* At last, set drive name. */
1493 /* Except for network file name. */
1494 if (!(IS_DIRECTORY_SEP (target
[0]) && IS_DIRECTORY_SEP (target
[1])))
1495 #endif /* WINDOWSNT */
1497 if (!drive
) emacs_abort ();
1499 target
[0] = DRIVE_LETTER (drive
);
1502 /* Reinsert the escape prefix if required. */
1509 result
= make_specified_string (target
, -1, o
- target
, multibyte
);
1510 dostounix_filename (SSDATA (result
));
1512 if (!NILP (Vw32_downcase_file_names
))
1513 result
= Fdowncase (result
);
1516 result
= make_specified_string (target
, -1, o
- target
, multibyte
);
1517 #endif /* !DOS_NT */
1520 /* Again look to see if the file name has special constructs in it
1521 and perhaps call the corresponding file handler. This is needed
1522 for filenames such as "/foo/../user@host:/bar/../baz". Expanding
1523 the ".." component gives us "/user@host:/bar/../baz" which needs
1524 to be expanded again. */
1525 handler
= Ffind_file_name_handler (result
, Qexpand_file_name
);
1526 if (!NILP (handler
))
1528 handled_name
= call3 (handler
, Qexpand_file_name
,
1529 result
, default_directory
);
1530 if (! STRINGP (handled_name
))
1531 error ("Invalid handler in `file-name-handler-alist'");
1532 result
= handled_name
;
1540 /* PLEASE DO NOT DELETE THIS COMMENTED-OUT VERSION!
1541 This is the old version of expand-file-name, before it was thoroughly
1542 rewritten for Emacs 10.31. We leave this version here commented-out,
1543 because the code is very complex and likely to have subtle bugs. If
1544 bugs _are_ found, it might be of interest to look at the old code and
1545 see what did it do in the relevant situation.
1547 Don't remove this code: it's true that it will be accessible
1548 from the repository, but a few years from deletion, people will
1549 forget it is there. */
1551 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1552 DEAFUN ("expand-file-name", Fexpand_file_name
, Sexpand_file_name
, 1, 2, 0,
1553 "Convert FILENAME to absolute, and canonicalize it.\n\
1554 Second arg DEFAULT is directory to start with if FILENAME is relative\n\
1555 \(does not start with slash); if DEFAULT is nil or missing,\n\
1556 the current buffer's value of default-directory is used.\n\
1557 Filenames containing `.' or `..' as components are simplified;\n\
1558 initial `~/' expands to your home directory.\n\
1559 See also the function `substitute-in-file-name'.")
1561 Lisp_Object name
, defalt
;
1565 register unsigned char *newdir
, *p
, *o
;
1567 unsigned char *target
;
1570 CHECK_STRING (name
);
1573 /* If nm is absolute, flush ...// and detect /./ and /../.
1574 If no /./ or /../ we can return right away. */
1581 if (p
[0] == '/' && p
[1] == '/')
1583 if (p
[0] == '/' && p
[1] == '~')
1584 nm
= p
+ 1, lose
= 1;
1585 if (p
[0] == '/' && p
[1] == '.'
1586 && (p
[2] == '/' || p
[2] == 0
1587 || (p
[2] == '.' && (p
[3] == '/' || p
[3] == 0))))
1593 if (nm
== SDATA (name
))
1595 return build_string (nm
);
1599 /* Now determine directory to start with and put it in NEWDIR. */
1603 if (nm
[0] == '~') /* prefix ~ */
1604 if (nm
[1] == '/' || nm
[1] == 0)/* ~/filename */
1606 if (!(newdir
= (unsigned char *) egetenv ("HOME")))
1607 newdir
= (unsigned char *) "";
1610 else /* ~user/filename */
1612 /* Get past ~ to user. */
1613 unsigned char *user
= nm
+ 1;
1614 /* Find end of name. */
1615 unsigned char *ptr
= (unsigned char *) strchr (user
, '/');
1616 ptrdiff_t len
= ptr
? ptr
- user
: strlen (user
);
1617 /* Copy the user name into temp storage. */
1618 o
= alloca (len
+ 1);
1619 memcpy (o
, user
, len
);
1622 /* Look up the user name. */
1624 pw
= (struct passwd
*) getpwnam (o
+ 1);
1627 error ("\"%s\" isn't a registered user", o
+ 1);
1629 newdir
= (unsigned char *) pw
->pw_dir
;
1631 /* Discard the user name from NM. */
1635 if (nm
[0] != '/' && !newdir
)
1638 defalt
= current_buffer
->directory
;
1639 CHECK_STRING (defalt
);
1640 newdir
= SDATA (defalt
);
1643 /* Now concatenate the directory and name to new space in the stack frame. */
1645 tlen
= (newdir
? strlen (newdir
) + 1 : 0) + strlen (nm
) + 1;
1646 target
= alloca (tlen
);
1651 if (nm
[0] == 0 || nm
[0] == '/')
1652 strcpy (target
, newdir
);
1654 file_name_as_directory (target
, newdir
);
1657 strcat (target
, nm
);
1659 /* Now canonicalize by removing /. and /foo/.. if they appear. */
1670 else if (!strncmp (p
, "//", 2)
1676 else if (p
[0] == '/' && p
[1] == '.'
1677 && (p
[2] == '/' || p
[2] == 0))
1679 else if (!strncmp (p
, "/..", 3)
1680 /* `/../' is the "superroot" on certain file systems. */
1682 && (p
[3] == '/' || p
[3] == 0))
1684 while (o
!= target
&& *--o
!= '/')
1686 if (o
== target
&& *o
== '/')
1696 return make_string (target
, o
- target
);
1700 /* If /~ or // appears, discard everything through first slash. */
1702 file_name_absolute_p (const char *filename
)
1705 (IS_DIRECTORY_SEP (*filename
) || *filename
== '~'
1707 || (IS_DRIVE (*filename
) && IS_DEVICE_SEP (filename
[1])
1708 && IS_DIRECTORY_SEP (filename
[2]))
1714 search_embedded_absfilename (char *nm
, char *endp
)
1718 for (p
= nm
+ 1; p
< endp
; p
++)
1720 if (IS_DIRECTORY_SEP (p
[-1])
1721 && file_name_absolute_p (p
)
1722 #if defined (WINDOWSNT) || defined (CYGWIN)
1723 /* // at start of file name is meaningful in Apollo,
1724 WindowsNT and Cygwin systems. */
1725 && !(IS_DIRECTORY_SEP (p
[0]) && p
- 1 == nm
)
1726 #endif /* not (WINDOWSNT || CYGWIN) */
1729 for (s
= p
; *s
&& !IS_DIRECTORY_SEP (*s
); s
++);
1730 if (p
[0] == '~' && s
> p
+ 1) /* We've got "/~something/". */
1733 char *o
= SAFE_ALLOCA (s
- p
+ 1);
1735 memcpy (o
, p
, s
- p
);
1738 /* If we have ~user and `user' exists, discard
1739 everything up to ~. But if `user' does not exist, leave
1740 ~user alone, it might be a literal file name. */
1742 pw
= getpwnam (o
+ 1);
1755 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name
,
1756 Ssubstitute_in_file_name
, 1, 1, 0,
1757 doc
: /* Substitute environment variables referred to in FILENAME.
1758 `$FOO' where FOO is an environment variable name means to substitute
1759 the value of that variable. The variable name should be terminated
1760 with a character not a letter, digit or underscore; otherwise, enclose
1761 the entire variable name in braces.
1763 If `/~' appears, all of FILENAME through that `/' is discarded.
1764 If `//' appears, everything up to and including the first of
1765 those `/' is discarded. */)
1766 (Lisp_Object filename
)
1768 char *nm
, *p
, *x
, *endp
;
1769 bool substituted
= false;
1772 Lisp_Object handler
;
1774 CHECK_STRING (filename
);
1776 multibyte
= STRING_MULTIBYTE (filename
);
1778 /* If the file name has special constructs in it,
1779 call the corresponding file handler. */
1780 handler
= Ffind_file_name_handler (filename
, Qsubstitute_in_file_name
);
1781 if (!NILP (handler
))
1783 Lisp_Object handled_name
= call2 (handler
, Qsubstitute_in_file_name
,
1785 if (STRINGP (handled_name
))
1786 return handled_name
;
1787 error ("Invalid handler in `file-name-handler-alist'");
1790 /* Always work on a copy of the string, in case GC happens during
1791 decode of environment variables, causing the original Lisp_String
1792 data to be relocated. */
1794 SAFE_ALLOCA_STRING (nm
, filename
);
1797 dostounix_filename (nm
);
1798 substituted
= (memcmp (nm
, SDATA (filename
), SBYTES (filename
)) != 0);
1800 endp
= nm
+ SBYTES (filename
);
1802 /* If /~ or // appears, discard everything through first slash. */
1803 p
= search_embedded_absfilename (nm
, endp
);
1805 /* Start over with the new string, so we check the file-name-handler
1806 again. Important with filenames like "/home/foo//:/hello///there"
1807 which would substitute to "/:/hello///there" rather than "/there". */
1810 = (Fsubstitute_in_file_name
1811 (make_specified_string (p
, -1, endp
- p
, multibyte
)));
1816 /* See if any variables are substituted into the string. */
1818 if (!NILP (Ffboundp (Qsubstitute_env_in_file_name
)))
1821 = (!substituted
? filename
1822 : make_specified_string (nm
, -1, endp
- nm
, multibyte
));
1823 Lisp_Object tmp
= call1 (Qsubstitute_env_in_file_name
, name
);
1825 if (!EQ (tmp
, name
))
1833 if (!NILP (Vw32_downcase_file_names
))
1834 filename
= Fdowncase (filename
);
1840 xnm
= SSDATA (filename
);
1841 x
= xnm
+ SBYTES (filename
);
1843 /* If /~ or // appears, discard everything through first slash. */
1844 while ((p
= search_embedded_absfilename (xnm
, x
)) != NULL
)
1845 /* This time we do not start over because we've already expanded envvars
1846 and replaced $$ with $. Maybe we should start over as well, but we'd
1847 need to quote some $ to $$ first. */
1851 if (!NILP (Vw32_downcase_file_names
))
1853 Lisp_Object xname
= make_specified_string (xnm
, -1, x
- xnm
, multibyte
);
1855 filename
= Fdowncase (xname
);
1859 if (xnm
!= SSDATA (filename
))
1860 filename
= make_specified_string (xnm
, -1, x
- xnm
, multibyte
);
1865 /* A slightly faster and more convenient way to get
1866 (directory-file-name (expand-file-name FOO)). */
1869 expand_and_dir_to_file (Lisp_Object filename
, Lisp_Object defdir
)
1871 register Lisp_Object absname
;
1873 absname
= Fexpand_file_name (filename
, defdir
);
1875 /* Remove final slash, if any (unless this is the root dir).
1876 stat behaves differently depending! */
1877 if (SCHARS (absname
) > 1
1878 && IS_DIRECTORY_SEP (SREF (absname
, SBYTES (absname
) - 1))
1879 && !IS_DEVICE_SEP (SREF (absname
, SBYTES (absname
) - 2)))
1880 /* We cannot take shortcuts; they might be wrong for magic file names. */
1881 absname
= Fdirectory_file_name (absname
);
1885 /* Signal an error if the file ABSNAME already exists.
1886 If KNOWN_TO_EXIST, the file is known to exist.
1887 QUERYSTRING is a name for the action that is being considered
1889 If INTERACTIVE, ask the user whether to proceed,
1890 and bypass the error if the user says to go ahead.
1891 If QUICK, ask for y or n, not yes or no. */
1894 barf_or_query_if_file_exists (Lisp_Object absname
, bool known_to_exist
,
1895 const char *querystring
, bool interactive
,
1898 Lisp_Object tem
, encoded_filename
;
1899 struct stat statbuf
;
1900 struct gcpro gcpro1
;
1902 encoded_filename
= ENCODE_FILE (absname
);
1904 if (! known_to_exist
&& lstat (SSDATA (encoded_filename
), &statbuf
) == 0)
1906 if (S_ISDIR (statbuf
.st_mode
))
1907 xsignal2 (Qfile_error
,
1908 build_string ("File is a directory"), absname
);
1909 known_to_exist
= true;
1915 xsignal2 (Qfile_already_exists
,
1916 build_string ("File already exists"), absname
);
1918 tem
= format2 ("File %s already exists; %s anyway? ",
1919 absname
, build_string (querystring
));
1921 tem
= call1 (intern ("y-or-n-p"), tem
);
1923 tem
= do_yes_or_no_p (tem
);
1926 xsignal2 (Qfile_already_exists
,
1927 build_string ("File already exists"), absname
);
1931 DEFUN ("copy-file", Fcopy_file
, Scopy_file
, 2, 6,
1932 "fCopy file: \nGCopy %s to file: \np\nP",
1933 doc
: /* Copy FILE to NEWNAME. Both args must be strings.
1934 If NEWNAME names a directory, copy FILE there.
1936 This function always sets the file modes of the output file to match
1939 The optional third argument OK-IF-ALREADY-EXISTS specifies what to do
1940 if file NEWNAME already exists. If OK-IF-ALREADY-EXISTS is nil, we
1941 signal a `file-already-exists' error without overwriting. If
1942 OK-IF-ALREADY-EXISTS is a number, we request confirmation from the user
1943 about overwriting; this is what happens in interactive use with M-x.
1944 Any other value for OK-IF-ALREADY-EXISTS means to overwrite the
1947 Fourth arg KEEP-TIME non-nil means give the output file the same
1948 last-modified time as the old one. (This works on only some systems.)
1950 A prefix arg makes KEEP-TIME non-nil.
1952 If PRESERVE-UID-GID is non-nil, we try to transfer the
1953 uid and gid of FILE to NEWNAME.
1955 If PRESERVE-PERMISSIONS is non-nil, copy permissions of FILE to NEWNAME;
1956 this includes the file modes, along with ACL entries and SELinux
1957 context if present. Otherwise, if NEWNAME is created its file
1958 permission bits are those of FILE, masked by the default file
1960 (Lisp_Object file
, Lisp_Object newname
, Lisp_Object ok_if_already_exists
,
1961 Lisp_Object keep_time
, Lisp_Object preserve_uid_gid
,
1962 Lisp_Object preserve_permissions
)
1964 Lisp_Object handler
;
1965 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1966 ptrdiff_t count
= SPECPDL_INDEX ();
1967 Lisp_Object encoded_file
, encoded_newname
;
1969 security_context_t con
;
1975 bool already_exists
= false;
1979 char buf
[16 * 1024];
1983 encoded_file
= encoded_newname
= Qnil
;
1984 GCPRO4 (file
, newname
, encoded_file
, encoded_newname
);
1985 CHECK_STRING (file
);
1986 CHECK_STRING (newname
);
1988 if (!NILP (Ffile_directory_p (newname
)))
1989 newname
= Fexpand_file_name (Ffile_name_nondirectory (file
), newname
);
1991 newname
= Fexpand_file_name (newname
, Qnil
);
1993 file
= Fexpand_file_name (file
, Qnil
);
1995 /* If the input file name has special constructs in it,
1996 call the corresponding file handler. */
1997 handler
= Ffind_file_name_handler (file
, Qcopy_file
);
1998 /* Likewise for output file name. */
2000 handler
= Ffind_file_name_handler (newname
, Qcopy_file
);
2001 if (!NILP (handler
))
2002 RETURN_UNGCPRO (call7 (handler
, Qcopy_file
, file
, newname
,
2003 ok_if_already_exists
, keep_time
, preserve_uid_gid
,
2004 preserve_permissions
));
2006 encoded_file
= ENCODE_FILE (file
);
2007 encoded_newname
= ENCODE_FILE (newname
);
2010 if (NILP (ok_if_already_exists
)
2011 || INTEGERP (ok_if_already_exists
))
2012 barf_or_query_if_file_exists (newname
, false, "copy to it",
2013 INTEGERP (ok_if_already_exists
), false);
2015 result
= w32_copy_file (SSDATA (encoded_file
), SSDATA (encoded_newname
),
2016 !NILP (keep_time
), !NILP (preserve_uid_gid
),
2017 !NILP (preserve_permissions
));
2021 report_file_error ("Copying file", list2 (file
, newname
));
2023 report_file_error ("Copying permissions from", file
);
2025 xsignal2 (Qfile_date_error
,
2026 build_string ("Resetting file times"), newname
);
2028 report_file_error ("Copying permissions to", newname
);
2030 #else /* not WINDOWSNT */
2032 ifd
= emacs_open (SSDATA (encoded_file
), O_RDONLY
, 0);
2036 report_file_error ("Opening input file", file
);
2038 record_unwind_protect_int (close_file_unwind
, ifd
);
2040 if (fstat (ifd
, &st
) != 0)
2041 report_file_error ("Input file status", file
);
2043 if (!NILP (preserve_permissions
))
2046 if (is_selinux_enabled ())
2048 conlength
= fgetfilecon (ifd
, &con
);
2049 if (conlength
== -1)
2050 report_file_error ("Doing fgetfilecon", file
);
2055 /* We can copy only regular files. */
2056 if (!S_ISREG (st
.st_mode
))
2057 report_file_errno ("Non-regular file", file
,
2058 S_ISDIR (st
.st_mode
) ? EISDIR
: EINVAL
);
2061 new_mask
= st
.st_mode
& (!NILP (preserve_uid_gid
) ? 0700 : 0777);
2063 new_mask
= S_IREAD
| S_IWRITE
;
2066 ofd
= emacs_open (SSDATA (encoded_newname
), O_WRONLY
| O_CREAT
| O_EXCL
,
2068 if (ofd
< 0 && errno
== EEXIST
)
2070 if (NILP (ok_if_already_exists
) || INTEGERP (ok_if_already_exists
))
2071 barf_or_query_if_file_exists (newname
, true, "copy to it",
2072 INTEGERP (ok_if_already_exists
), false);
2073 already_exists
= true;
2074 ofd
= emacs_open (SSDATA (encoded_newname
), O_WRONLY
, 0);
2077 report_file_error ("Opening output file", newname
);
2079 record_unwind_protect_int (close_file_unwind
, ofd
);
2084 if (fstat (ofd
, &out_st
) != 0)
2085 report_file_error ("Output file status", newname
);
2086 if (st
.st_dev
== out_st
.st_dev
&& st
.st_ino
== out_st
.st_ino
)
2087 report_file_errno ("Input and output files are the same",
2088 list2 (file
, newname
), 0);
2089 if (ftruncate (ofd
, 0) != 0)
2090 report_file_error ("Truncating output file", newname
);
2095 while ((n
= emacs_read (ifd
, buf
, sizeof buf
)) > 0)
2096 if (emacs_write_sig (ofd
, buf
, n
) != n
)
2097 report_file_error ("Write error", newname
);
2101 /* Preserve the original file permissions, and if requested, also its
2104 mode_t preserved_permissions
= st
.st_mode
& 07777;
2105 mode_t default_permissions
= st
.st_mode
& 0777 & ~realmask
;
2106 if (!NILP (preserve_uid_gid
))
2108 /* Attempt to change owner and group. If that doesn't work
2109 attempt to change just the group, as that is sometimes allowed.
2110 Adjust the mode mask to eliminate setuid or setgid bits
2111 or group permissions bits that are inappropriate if the
2112 owner or group are wrong. */
2113 if (fchown (ofd
, st
.st_uid
, st
.st_gid
) != 0)
2115 if (fchown (ofd
, -1, st
.st_gid
) == 0)
2116 preserved_permissions
&= ~04000;
2119 preserved_permissions
&= ~06000;
2121 /* Copy the other bits to the group bits, since the
2123 preserved_permissions
&= ~070;
2124 preserved_permissions
|= (preserved_permissions
& 7) << 3;
2125 default_permissions
&= ~070;
2126 default_permissions
|= (default_permissions
& 7) << 3;
2131 switch (!NILP (preserve_permissions
)
2132 ? qcopy_acl (SSDATA (encoded_file
), ifd
,
2133 SSDATA (encoded_newname
), ofd
,
2134 preserved_permissions
)
2136 || (new_mask
& ~realmask
) == default_permissions
)
2138 : fchmod (ofd
, default_permissions
))
2140 case -2: report_file_error ("Copying permissions from", file
);
2141 case -1: report_file_error ("Copying permissions to", newname
);
2144 #endif /* not MSDOS */
2149 /* Set the modified context back to the file. */
2150 bool fail
= fsetfilecon (ofd
, con
) != 0;
2151 /* See http://debbugs.gnu.org/11245 for ENOTSUP. */
2152 if (fail
&& errno
!= ENOTSUP
)
2153 report_file_error ("Doing fsetfilecon", newname
);
2159 if (!NILP (keep_time
))
2161 struct timespec atime
= get_stat_atime (&st
);
2162 struct timespec mtime
= get_stat_mtime (&st
);
2163 if (set_file_times (ofd
, SSDATA (encoded_newname
), atime
, mtime
) != 0)
2164 xsignal2 (Qfile_date_error
,
2165 build_string ("Cannot set file date"), newname
);
2168 if (emacs_close (ofd
) < 0)
2169 report_file_error ("Write error", newname
);
2174 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2175 and if it can't, it tells so. Otherwise, under MSDOS we usually
2176 get only the READ bit, which will make the copied file read-only,
2177 so it's better not to chmod at all. */
2178 if ((_djstat_flags
& _STFAIL_WRITEBIT
) == 0)
2179 chmod (SDATA (encoded_newname
), st
.st_mode
& 07777);
2181 #endif /* not WINDOWSNT */
2183 /* Discard the unwind protects. */
2184 specpdl_ptr
= specpdl
+ count
;
2190 DEFUN ("make-directory-internal", Fmake_directory_internal
,
2191 Smake_directory_internal
, 1, 1, 0,
2192 doc
: /* Create a new directory named DIRECTORY. */)
2193 (Lisp_Object directory
)
2196 Lisp_Object handler
;
2197 Lisp_Object encoded_dir
;
2199 CHECK_STRING (directory
);
2200 directory
= Fexpand_file_name (directory
, Qnil
);
2202 handler
= Ffind_file_name_handler (directory
, Qmake_directory_internal
);
2203 if (!NILP (handler
))
2204 return call2 (handler
, Qmake_directory_internal
, directory
);
2206 encoded_dir
= ENCODE_FILE (directory
);
2208 dir
= SSDATA (encoded_dir
);
2211 if (mkdir (dir
) != 0)
2213 if (mkdir (dir
, 0777 & ~auto_saving_dir_umask
) != 0)
2215 report_file_error ("Creating directory", directory
);
2220 DEFUN ("delete-directory-internal", Fdelete_directory_internal
,
2221 Sdelete_directory_internal
, 1, 1, 0,
2222 doc
: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
2223 (Lisp_Object directory
)
2226 Lisp_Object encoded_dir
;
2228 CHECK_STRING (directory
);
2229 directory
= Fdirectory_file_name (Fexpand_file_name (directory
, Qnil
));
2230 encoded_dir
= ENCODE_FILE (directory
);
2231 dir
= SSDATA (encoded_dir
);
2233 if (rmdir (dir
) != 0)
2234 report_file_error ("Removing directory", directory
);
2239 DEFUN ("delete-file", Fdelete_file
, Sdelete_file
, 1, 2,
2240 "(list (read-file-name \
2241 (if (and delete-by-moving-to-trash (null current-prefix-arg)) \
2242 \"Move file to trash: \" \"Delete file: \") \
2243 nil default-directory (confirm-nonexistent-file-or-buffer)) \
2244 (null current-prefix-arg))",
2245 doc
: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
2246 If file has multiple names, it continues to exist with the other names.
2247 TRASH non-nil means to trash the file instead of deleting, provided
2248 `delete-by-moving-to-trash' is non-nil.
2250 When called interactively, TRASH is t if no prefix argument is given.
2251 With a prefix argument, TRASH is nil. */)
2252 (Lisp_Object filename
, Lisp_Object trash
)
2254 Lisp_Object handler
;
2255 Lisp_Object encoded_file
;
2256 struct gcpro gcpro1
;
2259 if (!NILP (Ffile_directory_p (filename
))
2260 && NILP (Ffile_symlink_p (filename
)))
2261 xsignal2 (Qfile_error
,
2262 build_string ("Removing old name: is a directory"),
2265 filename
= Fexpand_file_name (filename
, Qnil
);
2267 handler
= Ffind_file_name_handler (filename
, Qdelete_file
);
2268 if (!NILP (handler
))
2269 return call3 (handler
, Qdelete_file
, filename
, trash
);
2271 if (delete_by_moving_to_trash
&& !NILP (trash
))
2272 return call1 (Qmove_file_to_trash
, filename
);
2274 encoded_file
= ENCODE_FILE (filename
);
2276 if (unlink (SSDATA (encoded_file
)) < 0)
2277 report_file_error ("Removing old name", filename
);
2282 internal_delete_file_1 (Lisp_Object ignore
)
2287 /* Delete file FILENAME, returning true if successful.
2288 This ignores `delete-by-moving-to-trash'. */
2291 internal_delete_file (Lisp_Object filename
)
2295 tem
= internal_condition_case_2 (Fdelete_file
, filename
, Qnil
,
2296 Qt
, internal_delete_file_1
);
2300 DEFUN ("rename-file", Frename_file
, Srename_file
, 2, 3,
2301 "fRename file: \nGRename %s to file: \np",
2302 doc
: /* Rename FILE as NEWNAME. Both args must be strings.
2303 If file has names other than FILE, it continues to have those names.
2304 Signals a `file-already-exists' error if a file NEWNAME already exists
2305 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2306 A number as third arg means request confirmation if NEWNAME already exists.
2307 This is what happens in interactive use with M-x. */)
2308 (Lisp_Object file
, Lisp_Object newname
, Lisp_Object ok_if_already_exists
)
2310 Lisp_Object handler
;
2311 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
2312 Lisp_Object encoded_file
, encoded_newname
, symlink_target
;
2314 symlink_target
= encoded_file
= encoded_newname
= Qnil
;
2315 GCPRO5 (file
, newname
, encoded_file
, encoded_newname
, symlink_target
);
2316 CHECK_STRING (file
);
2317 CHECK_STRING (newname
);
2318 file
= Fexpand_file_name (file
, Qnil
);
2320 if ((!NILP (Ffile_directory_p (newname
)))
2322 /* If the file names are identical but for the case,
2323 don't attempt to move directory to itself. */
2324 && (NILP (Fstring_equal (Fdowncase (file
), Fdowncase (newname
))))
2328 Lisp_Object fname
= (NILP (Ffile_directory_p (file
))
2329 ? file
: Fdirectory_file_name (file
));
2330 newname
= Fexpand_file_name (Ffile_name_nondirectory (fname
), newname
);
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
, Qrename_file
);
2339 handler
= Ffind_file_name_handler (newname
, Qrename_file
);
2340 if (!NILP (handler
))
2341 RETURN_UNGCPRO (call4 (handler
, Qrename_file
,
2342 file
, newname
, ok_if_already_exists
));
2344 encoded_file
= ENCODE_FILE (file
);
2345 encoded_newname
= ENCODE_FILE (newname
);
2348 /* If the file names are identical but for the case, don't ask for
2349 confirmation: they simply want to change the letter-case of the
2351 if (NILP (Fstring_equal (Fdowncase (file
), Fdowncase (newname
))))
2353 if (NILP (ok_if_already_exists
)
2354 || INTEGERP (ok_if_already_exists
))
2355 barf_or_query_if_file_exists (newname
, false, "rename to it",
2356 INTEGERP (ok_if_already_exists
), false);
2357 if (rename (SSDATA (encoded_file
), SSDATA (encoded_newname
)) < 0)
2359 int rename_errno
= errno
;
2360 if (rename_errno
== EXDEV
)
2363 symlink_target
= Ffile_symlink_p (file
);
2364 if (! NILP (symlink_target
))
2365 Fmake_symbolic_link (symlink_target
, newname
,
2366 NILP (ok_if_already_exists
) ? Qnil
: Qt
);
2367 else if (!NILP (Ffile_directory_p (file
)))
2368 call4 (Qcopy_directory
, file
, newname
, Qt
, Qnil
);
2370 /* We have already prompted if it was an integer, so don't
2371 have copy-file prompt again. */
2372 Fcopy_file (file
, newname
,
2373 NILP (ok_if_already_exists
) ? Qnil
: Qt
,
2376 count
= SPECPDL_INDEX ();
2377 specbind (Qdelete_by_moving_to_trash
, Qnil
);
2379 if (!NILP (Ffile_directory_p (file
)) && NILP (symlink_target
))
2380 call2 (Qdelete_directory
, file
, Qt
);
2382 Fdelete_file (file
, Qnil
);
2383 unbind_to (count
, Qnil
);
2386 report_file_errno ("Renaming", list2 (file
, newname
), rename_errno
);
2392 DEFUN ("add-name-to-file", Fadd_name_to_file
, Sadd_name_to_file
, 2, 3,
2393 "fAdd name to file: \nGName to add to %s: \np",
2394 doc
: /* Give FILE additional name NEWNAME. Both args must be strings.
2395 Signals a `file-already-exists' error if a file NEWNAME already exists
2396 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2397 A number as third arg means request confirmation if NEWNAME already exists.
2398 This is what happens in interactive use with M-x. */)
2399 (Lisp_Object file
, Lisp_Object newname
, Lisp_Object ok_if_already_exists
)
2401 Lisp_Object handler
;
2402 Lisp_Object encoded_file
, encoded_newname
;
2403 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
2405 GCPRO4 (file
, newname
, encoded_file
, encoded_newname
);
2406 encoded_file
= encoded_newname
= Qnil
;
2407 CHECK_STRING (file
);
2408 CHECK_STRING (newname
);
2409 file
= Fexpand_file_name (file
, Qnil
);
2411 if (!NILP (Ffile_directory_p (newname
)))
2412 newname
= Fexpand_file_name (Ffile_name_nondirectory (file
), newname
);
2414 newname
= Fexpand_file_name (newname
, Qnil
);
2416 /* If the file name has special constructs in it,
2417 call the corresponding file handler. */
2418 handler
= Ffind_file_name_handler (file
, Qadd_name_to_file
);
2419 if (!NILP (handler
))
2420 RETURN_UNGCPRO (call4 (handler
, Qadd_name_to_file
, file
,
2421 newname
, ok_if_already_exists
));
2423 /* If the new name has special constructs in it,
2424 call the corresponding file handler. */
2425 handler
= Ffind_file_name_handler (newname
, Qadd_name_to_file
);
2426 if (!NILP (handler
))
2427 RETURN_UNGCPRO (call4 (handler
, Qadd_name_to_file
, file
,
2428 newname
, ok_if_already_exists
));
2430 encoded_file
= ENCODE_FILE (file
);
2431 encoded_newname
= ENCODE_FILE (newname
);
2433 if (NILP (ok_if_already_exists
)
2434 || INTEGERP (ok_if_already_exists
))
2435 barf_or_query_if_file_exists (newname
, false, "make it a new name",
2436 INTEGERP (ok_if_already_exists
), false);
2438 unlink (SSDATA (newname
));
2439 if (link (SSDATA (encoded_file
), SSDATA (encoded_newname
)) < 0)
2441 int link_errno
= errno
;
2442 report_file_errno ("Adding new name", list2 (file
, newname
), link_errno
);
2449 DEFUN ("make-symbolic-link", Fmake_symbolic_link
, Smake_symbolic_link
, 2, 3,
2450 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np",
2451 doc
: /* Make a symbolic link to FILENAME, named LINKNAME.
2452 Both args must be strings.
2453 Signals a `file-already-exists' error if a file LINKNAME already exists
2454 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2455 A number as third arg means request confirmation if LINKNAME already exists.
2456 This happens for interactive use with M-x. */)
2457 (Lisp_Object filename
, Lisp_Object linkname
, Lisp_Object ok_if_already_exists
)
2459 Lisp_Object handler
;
2460 Lisp_Object encoded_filename
, encoded_linkname
;
2461 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
2463 GCPRO4 (filename
, linkname
, encoded_filename
, encoded_linkname
);
2464 encoded_filename
= encoded_linkname
= Qnil
;
2465 CHECK_STRING (filename
);
2466 CHECK_STRING (linkname
);
2467 /* If the link target has a ~, we must expand it to get
2468 a truly valid file name. Otherwise, do not expand;
2469 we want to permit links to relative file names. */
2470 if (SREF (filename
, 0) == '~')
2471 filename
= Fexpand_file_name (filename
, Qnil
);
2473 if (!NILP (Ffile_directory_p (linkname
)))
2474 linkname
= Fexpand_file_name (Ffile_name_nondirectory (filename
), linkname
);
2476 linkname
= Fexpand_file_name (linkname
, Qnil
);
2478 /* If the file name has special constructs in it,
2479 call the corresponding file handler. */
2480 handler
= Ffind_file_name_handler (filename
, Qmake_symbolic_link
);
2481 if (!NILP (handler
))
2482 RETURN_UNGCPRO (call4 (handler
, Qmake_symbolic_link
, filename
,
2483 linkname
, ok_if_already_exists
));
2485 /* If the new link name has special constructs in it,
2486 call the corresponding file handler. */
2487 handler
= Ffind_file_name_handler (linkname
, Qmake_symbolic_link
);
2488 if (!NILP (handler
))
2489 RETURN_UNGCPRO (call4 (handler
, Qmake_symbolic_link
, filename
,
2490 linkname
, ok_if_already_exists
));
2492 encoded_filename
= ENCODE_FILE (filename
);
2493 encoded_linkname
= ENCODE_FILE (linkname
);
2495 if (NILP (ok_if_already_exists
)
2496 || INTEGERP (ok_if_already_exists
))
2497 barf_or_query_if_file_exists (linkname
, false, "make it a link",
2498 INTEGERP (ok_if_already_exists
), false);
2499 if (symlink (SSDATA (encoded_filename
), SSDATA (encoded_linkname
)) < 0)
2501 /* If we didn't complain already, silently delete existing file. */
2503 if (errno
== EEXIST
)
2505 unlink (SSDATA (encoded_linkname
));
2506 if (symlink (SSDATA (encoded_filename
), SSDATA (encoded_linkname
))
2513 if (errno
== ENOSYS
)
2516 xsignal1 (Qfile_error
,
2517 build_string ("Symbolic links are not supported"));
2520 symlink_errno
= errno
;
2521 report_file_errno ("Making symbolic link", list2 (filename
, linkname
),
2529 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p
, Sfile_name_absolute_p
,
2531 doc
: /* Return t if file FILENAME specifies an absolute file name.
2532 On Unix, this is a name starting with a `/' or a `~'. */)
2533 (Lisp_Object filename
)
2535 CHECK_STRING (filename
);
2536 return file_name_absolute_p (SSDATA (filename
)) ? Qt
: Qnil
;
2539 DEFUN ("file-exists-p", Ffile_exists_p
, Sfile_exists_p
, 1, 1, 0,
2540 doc
: /* Return t if file FILENAME exists (whether or not you can read it.)
2541 See also `file-readable-p' and `file-attributes'.
2542 This returns nil for a symlink to a nonexistent file.
2543 Use `file-symlink-p' to test for such links. */)
2544 (Lisp_Object filename
)
2546 Lisp_Object absname
;
2547 Lisp_Object handler
;
2549 CHECK_STRING (filename
);
2550 absname
= Fexpand_file_name (filename
, Qnil
);
2552 /* If the file name has special constructs in it,
2553 call the corresponding file handler. */
2554 handler
= Ffind_file_name_handler (absname
, Qfile_exists_p
);
2555 if (!NILP (handler
))
2557 Lisp_Object result
= call2 (handler
, Qfile_exists_p
, absname
);
2562 absname
= ENCODE_FILE (absname
);
2564 return check_existing (SSDATA (absname
)) ? Qt
: Qnil
;
2567 DEFUN ("file-executable-p", Ffile_executable_p
, Sfile_executable_p
, 1, 1, 0,
2568 doc
: /* Return t if FILENAME can be executed by you.
2569 For a directory, this means you can access files in that directory.
2570 \(It is generally better to use `file-accessible-directory-p' for that
2571 purpose, though.) */)
2572 (Lisp_Object filename
)
2574 Lisp_Object absname
;
2575 Lisp_Object handler
;
2577 CHECK_STRING (filename
);
2578 absname
= Fexpand_file_name (filename
, Qnil
);
2580 /* If the file name has special constructs in it,
2581 call the corresponding file handler. */
2582 handler
= Ffind_file_name_handler (absname
, Qfile_executable_p
);
2583 if (!NILP (handler
))
2584 return call2 (handler
, Qfile_executable_p
, absname
);
2586 absname
= ENCODE_FILE (absname
);
2588 return (check_executable (SSDATA (absname
)) ? Qt
: Qnil
);
2591 DEFUN ("file-readable-p", Ffile_readable_p
, Sfile_readable_p
, 1, 1, 0,
2592 doc
: /* Return t if file FILENAME exists and you can read it.
2593 See also `file-exists-p' and `file-attributes'. */)
2594 (Lisp_Object filename
)
2596 Lisp_Object absname
;
2597 Lisp_Object handler
;
2599 CHECK_STRING (filename
);
2600 absname
= Fexpand_file_name (filename
, Qnil
);
2602 /* If the file name has special constructs in it,
2603 call the corresponding file handler. */
2604 handler
= Ffind_file_name_handler (absname
, Qfile_readable_p
);
2605 if (!NILP (handler
))
2606 return call2 (handler
, Qfile_readable_p
, absname
);
2608 absname
= ENCODE_FILE (absname
);
2609 return (faccessat (AT_FDCWD
, SSDATA (absname
), R_OK
, AT_EACCESS
) == 0
2613 DEFUN ("file-writable-p", Ffile_writable_p
, Sfile_writable_p
, 1, 1, 0,
2614 doc
: /* Return t if file FILENAME can be written or created by you. */)
2615 (Lisp_Object filename
)
2617 Lisp_Object absname
, dir
, encoded
;
2618 Lisp_Object handler
;
2620 CHECK_STRING (filename
);
2621 absname
= Fexpand_file_name (filename
, Qnil
);
2623 /* If the file name has special constructs in it,
2624 call the corresponding file handler. */
2625 handler
= Ffind_file_name_handler (absname
, Qfile_writable_p
);
2626 if (!NILP (handler
))
2627 return call2 (handler
, Qfile_writable_p
, absname
);
2629 encoded
= ENCODE_FILE (absname
);
2630 if (check_writable (SSDATA (encoded
), W_OK
))
2632 if (errno
!= ENOENT
)
2635 dir
= Ffile_name_directory (absname
);
2636 eassert (!NILP (dir
));
2638 dir
= Fdirectory_file_name (dir
);
2641 dir
= ENCODE_FILE (dir
);
2643 /* The read-only attribute of the parent directory doesn't affect
2644 whether a file or directory can be created within it. Some day we
2645 should check ACLs though, which do affect this. */
2646 return file_directory_p (SDATA (dir
)) ? Qt
: Qnil
;
2648 return check_writable (SSDATA (dir
), W_OK
| X_OK
) ? Qt
: Qnil
;
2652 DEFUN ("access-file", Faccess_file
, Saccess_file
, 2, 2, 0,
2653 doc
: /* Access file FILENAME, and get an error if that does not work.
2654 The second argument STRING is used in the error message.
2655 If there is no error, returns nil. */)
2656 (Lisp_Object filename
, Lisp_Object string
)
2658 Lisp_Object handler
, encoded_filename
, absname
;
2660 CHECK_STRING (filename
);
2661 absname
= Fexpand_file_name (filename
, Qnil
);
2663 CHECK_STRING (string
);
2665 /* If the file name has special constructs in it,
2666 call the corresponding file handler. */
2667 handler
= Ffind_file_name_handler (absname
, Qaccess_file
);
2668 if (!NILP (handler
))
2669 return call3 (handler
, Qaccess_file
, absname
, string
);
2671 encoded_filename
= ENCODE_FILE (absname
);
2673 if (faccessat (AT_FDCWD
, SSDATA (encoded_filename
), R_OK
, AT_EACCESS
) != 0)
2674 report_file_error (SSDATA (string
), filename
);
2679 /* Relative to directory FD, return the symbolic link value of FILENAME.
2680 On failure, return nil. */
2682 emacs_readlinkat (int fd
, char const *filename
)
2684 static struct allocator
const emacs_norealloc_allocator
=
2685 { xmalloc
, NULL
, xfree
, memory_full
};
2687 char readlink_buf
[1024];
2688 char *buf
= careadlinkat (fd
, filename
, readlink_buf
, sizeof readlink_buf
,
2689 &emacs_norealloc_allocator
, readlinkat
);
2693 val
= build_unibyte_string (buf
);
2694 if (buf
[0] == '/' && strchr (buf
, ':'))
2696 AUTO_STRING (slash_colon
, "/:");
2697 val
= concat2 (slash_colon
, val
);
2699 if (buf
!= readlink_buf
)
2701 val
= DECODE_FILE (val
);
2705 DEFUN ("file-symlink-p", Ffile_symlink_p
, Sfile_symlink_p
, 1, 1, 0,
2706 doc
: /* Return non-nil if file FILENAME is the name of a symbolic link.
2707 The value is the link target, as a string.
2708 Otherwise it returns nil.
2710 This function does not check whether the link target exists. */)
2711 (Lisp_Object filename
)
2713 Lisp_Object handler
;
2715 CHECK_STRING (filename
);
2716 filename
= Fexpand_file_name (filename
, Qnil
);
2718 /* If the file name has special constructs in it,
2719 call the corresponding file handler. */
2720 handler
= Ffind_file_name_handler (filename
, Qfile_symlink_p
);
2721 if (!NILP (handler
))
2722 return call2 (handler
, Qfile_symlink_p
, filename
);
2724 filename
= ENCODE_FILE (filename
);
2726 return emacs_readlinkat (AT_FDCWD
, SSDATA (filename
));
2729 DEFUN ("file-directory-p", Ffile_directory_p
, Sfile_directory_p
, 1, 1, 0,
2730 doc
: /* Return t if FILENAME names an existing directory.
2731 Symbolic links to directories count as directories.
2732 See `file-symlink-p' to distinguish symlinks. */)
2733 (Lisp_Object filename
)
2735 Lisp_Object absname
;
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 return file_directory_p (SSDATA (absname
)) ? Qt
: Qnil
;
2751 /* Return true if FILE is a directory or a symlink to a directory. */
2753 file_directory_p (char const *file
)
2756 /* This is cheaper than 'stat'. */
2757 return faccessat (AT_FDCWD
, file
, D_OK
, AT_EACCESS
) == 0;
2760 return stat (file
, &st
) == 0 && S_ISDIR (st
.st_mode
);
2764 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p
,
2765 Sfile_accessible_directory_p
, 1, 1, 0,
2766 doc
: /* Return t if file FILENAME names a directory you can open.
2767 For the value to be t, FILENAME must specify the name of a directory as a file,
2768 and the directory must allow you to open files in it. In order to use a
2769 directory as a buffer's current directory, this predicate must return true.
2770 A directory name spec may be given instead; then the value is t
2771 if the directory so specified exists and really is a readable and
2772 searchable directory. */)
2773 (Lisp_Object filename
)
2775 Lisp_Object absname
;
2776 Lisp_Object handler
;
2778 CHECK_STRING (filename
);
2779 absname
= Fexpand_file_name (filename
, Qnil
);
2781 /* If the file name has special constructs in it,
2782 call the corresponding file handler. */
2783 handler
= Ffind_file_name_handler (absname
, Qfile_accessible_directory_p
);
2784 if (!NILP (handler
))
2786 Lisp_Object r
= call2 (handler
, Qfile_accessible_directory_p
, absname
);
2791 absname
= ENCODE_FILE (absname
);
2792 return file_accessible_directory_p (absname
) ? Qt
: Qnil
;
2795 /* If FILE is a searchable directory or a symlink to a
2796 searchable directory, return true. Otherwise return
2797 false and set errno to an error number. */
2799 file_accessible_directory_p (Lisp_Object file
)
2802 /* There's no need to test whether FILE is searchable, as the
2803 searchable/executable bit is invented on DOS_NT platforms. */
2804 return file_directory_p (SSDATA (file
));
2806 /* On POSIXish platforms, use just one system call; this avoids a
2807 race and is typically faster. */
2808 const char *data
= SSDATA (file
);
2809 ptrdiff_t len
= SBYTES (file
);
2815 /* Normally a file "FOO" is an accessible directory if "FOO/." exists.
2816 There are three exceptions: "", "/", and "//". Leave "" alone,
2817 as it's invalid. Append only "." to the other two exceptions as
2818 "/" and "//" are distinct on some platforms, whereas "/", "///",
2819 "////", etc. are all equivalent. */
2824 /* Just check for trailing '/' when deciding whether to append '/'.
2825 That's simpler than testing the two special cases "/" and "//",
2826 and it's a safe optimization here. */
2827 char *buf
= SAFE_ALLOCA (len
+ 3);
2828 memcpy (buf
, data
, len
);
2829 strcpy (buf
+ len
, &"/."[data
[len
- 1] == '/']);
2833 ok
= check_existing (dir
);
2834 saved_errno
= errno
;
2836 errno
= saved_errno
;
2841 DEFUN ("file-regular-p", Ffile_regular_p
, Sfile_regular_p
, 1, 1, 0,
2842 doc
: /* Return t if FILENAME names a regular file.
2843 This is the sort of file that holds an ordinary stream of data bytes.
2844 Symbolic links to regular files count as regular files.
2845 See `file-symlink-p' to distinguish symlinks. */)
2846 (Lisp_Object filename
)
2848 register Lisp_Object absname
;
2850 Lisp_Object handler
;
2852 absname
= expand_and_dir_to_file (filename
, BVAR (current_buffer
, directory
));
2854 /* If the file name has special constructs in it,
2855 call the corresponding file handler. */
2856 handler
= Ffind_file_name_handler (absname
, Qfile_regular_p
);
2857 if (!NILP (handler
))
2858 return call2 (handler
, Qfile_regular_p
, absname
);
2860 absname
= ENCODE_FILE (absname
);
2865 Lisp_Object tem
= Vw32_get_true_file_attributes
;
2867 /* Tell stat to use expensive method to get accurate info. */
2868 Vw32_get_true_file_attributes
= Qt
;
2869 result
= stat (SDATA (absname
), &st
);
2870 Vw32_get_true_file_attributes
= tem
;
2874 return S_ISREG (st
.st_mode
) ? Qt
: Qnil
;
2877 if (stat (SSDATA (absname
), &st
) < 0)
2879 return S_ISREG (st
.st_mode
) ? Qt
: Qnil
;
2883 DEFUN ("file-selinux-context", Ffile_selinux_context
,
2884 Sfile_selinux_context
, 1, 1, 0,
2885 doc
: /* Return SELinux context of file named FILENAME.
2886 The return value is a list (USER ROLE TYPE RANGE), where the list
2887 elements are strings naming the user, role, type, and range of the
2888 file's SELinux security context.
2890 Return (nil nil nil nil) if the file is nonexistent or inaccessible,
2891 or if SELinux is disabled, or if Emacs lacks SELinux support. */)
2892 (Lisp_Object filename
)
2894 Lisp_Object absname
;
2895 Lisp_Object values
[4];
2896 Lisp_Object handler
;
2898 security_context_t con
;
2903 absname
= expand_and_dir_to_file (filename
, BVAR (current_buffer
, directory
));
2905 /* If the file name has special constructs in it,
2906 call the corresponding file handler. */
2907 handler
= Ffind_file_name_handler (absname
, Qfile_selinux_context
);
2908 if (!NILP (handler
))
2909 return call2 (handler
, Qfile_selinux_context
, absname
);
2911 absname
= ENCODE_FILE (absname
);
2918 if (is_selinux_enabled ())
2920 conlength
= lgetfilecon (SSDATA (absname
), &con
);
2923 context
= context_new (con
);
2924 if (context_user_get (context
))
2925 values
[0] = build_string (context_user_get (context
));
2926 if (context_role_get (context
))
2927 values
[1] = build_string (context_role_get (context
));
2928 if (context_type_get (context
))
2929 values
[2] = build_string (context_type_get (context
));
2930 if (context_range_get (context
))
2931 values
[3] = build_string (context_range_get (context
));
2932 context_free (context
);
2938 return Flist (ARRAYELTS (values
), values
);
2941 DEFUN ("set-file-selinux-context", Fset_file_selinux_context
,
2942 Sset_file_selinux_context
, 2, 2, 0,
2943 doc
: /* Set SELinux context of file named FILENAME to CONTEXT.
2944 CONTEXT should be a list (USER ROLE TYPE RANGE), where the list
2945 elements are strings naming the components of a SELinux context.
2947 Value is t if setting of SELinux context was successful, nil otherwise.
2949 This function does nothing and returns nil if SELinux is disabled,
2950 or if Emacs was not compiled with SELinux support. */)
2951 (Lisp_Object filename
, Lisp_Object context
)
2953 Lisp_Object absname
;
2954 Lisp_Object handler
;
2956 Lisp_Object encoded_absname
;
2957 Lisp_Object user
= CAR_SAFE (context
);
2958 Lisp_Object role
= CAR_SAFE (CDR_SAFE (context
));
2959 Lisp_Object type
= CAR_SAFE (CDR_SAFE (CDR_SAFE (context
)));
2960 Lisp_Object range
= CAR_SAFE (CDR_SAFE (CDR_SAFE (CDR_SAFE (context
))));
2961 security_context_t con
;
2964 context_t parsed_con
;
2967 absname
= Fexpand_file_name (filename
, BVAR (current_buffer
, directory
));
2969 /* If the file name has special constructs in it,
2970 call the corresponding file handler. */
2971 handler
= Ffind_file_name_handler (absname
, Qset_file_selinux_context
);
2972 if (!NILP (handler
))
2973 return call3 (handler
, Qset_file_selinux_context
, absname
, context
);
2976 if (is_selinux_enabled ())
2978 /* Get current file context. */
2979 encoded_absname
= ENCODE_FILE (absname
);
2980 conlength
= lgetfilecon (SSDATA (encoded_absname
), &con
);
2983 parsed_con
= context_new (con
);
2984 /* Change the parts defined in the parameter.*/
2987 if (context_user_set (parsed_con
, SSDATA (user
)))
2988 error ("Doing context_user_set");
2992 if (context_role_set (parsed_con
, SSDATA (role
)))
2993 error ("Doing context_role_set");
2997 if (context_type_set (parsed_con
, SSDATA (type
)))
2998 error ("Doing context_type_set");
3000 if (STRINGP (range
))
3002 if (context_range_set (parsed_con
, SSDATA (range
)))
3003 error ("Doing context_range_set");
3006 /* Set the modified context back to the file. */
3007 fail
= (lsetfilecon (SSDATA (encoded_absname
),
3008 context_str (parsed_con
))
3010 /* See http://debbugs.gnu.org/11245 for ENOTSUP. */
3011 if (fail
&& errno
!= ENOTSUP
)
3012 report_file_error ("Doing lsetfilecon", absname
);
3014 context_free (parsed_con
);
3016 return fail
? Qnil
: Qt
;
3019 report_file_error ("Doing lgetfilecon", absname
);
3026 DEFUN ("file-acl", Ffile_acl
, Sfile_acl
, 1, 1, 0,
3027 doc
: /* Return ACL entries of file named FILENAME.
3028 The entries are returned in a format suitable for use in `set-file-acl'
3029 but is otherwise undocumented and subject to change.
3030 Return nil if file does not exist or is not accessible, or if Emacs
3031 was unable to determine the ACL entries. */)
3032 (Lisp_Object filename
)
3034 Lisp_Object absname
;
3035 Lisp_Object handler
;
3036 #ifdef HAVE_ACL_SET_FILE
3038 Lisp_Object acl_string
;
3040 # ifndef HAVE_ACL_TYPE_EXTENDED
3041 acl_type_t ACL_TYPE_EXTENDED
= ACL_TYPE_ACCESS
;
3045 absname
= expand_and_dir_to_file (filename
,
3046 BVAR (current_buffer
, directory
));
3048 /* If the file name has special constructs in it,
3049 call the corresponding file handler. */
3050 handler
= Ffind_file_name_handler (absname
, Qfile_acl
);
3051 if (!NILP (handler
))
3052 return call2 (handler
, Qfile_acl
, absname
);
3054 #ifdef HAVE_ACL_SET_FILE
3055 absname
= ENCODE_FILE (absname
);
3057 acl
= acl_get_file (SSDATA (absname
), ACL_TYPE_EXTENDED
);
3061 str
= acl_to_text (acl
, NULL
);
3068 acl_string
= build_string (str
);
3078 DEFUN ("set-file-acl", Fset_file_acl
, Sset_file_acl
,
3080 doc
: /* Set ACL of file named FILENAME to ACL-STRING.
3081 ACL-STRING should contain the textual representation of the ACL
3082 entries in a format suitable for the platform.
3084 Value is t if setting of ACL was successful, nil otherwise.
3086 Setting ACL for local files requires Emacs to be built with ACL
3088 (Lisp_Object filename
, Lisp_Object acl_string
)
3090 Lisp_Object absname
;
3091 Lisp_Object handler
;
3092 #ifdef HAVE_ACL_SET_FILE
3093 Lisp_Object encoded_absname
;
3098 absname
= Fexpand_file_name (filename
, BVAR (current_buffer
, directory
));
3100 /* If the file name has special constructs in it,
3101 call the corresponding file handler. */
3102 handler
= Ffind_file_name_handler (absname
, Qset_file_acl
);
3103 if (!NILP (handler
))
3104 return call3 (handler
, Qset_file_acl
, absname
, acl_string
);
3106 #ifdef HAVE_ACL_SET_FILE
3107 if (STRINGP (acl_string
))
3109 acl
= acl_from_text (SSDATA (acl_string
));
3112 report_file_error ("Converting ACL", absname
);
3116 encoded_absname
= ENCODE_FILE (absname
);
3118 fail
= (acl_set_file (SSDATA (encoded_absname
), ACL_TYPE_ACCESS
,
3121 if (fail
&& acl_errno_valid (errno
))
3122 report_file_error ("Setting ACL", absname
);
3125 return fail
? Qnil
: Qt
;
3132 DEFUN ("file-modes", Ffile_modes
, Sfile_modes
, 1, 1, 0,
3133 doc
: /* Return mode bits of file named FILENAME, as an integer.
3134 Return nil, if file does not exist or is not accessible. */)
3135 (Lisp_Object filename
)
3137 Lisp_Object absname
;
3139 Lisp_Object handler
;
3141 absname
= expand_and_dir_to_file (filename
, BVAR (current_buffer
, directory
));
3143 /* If the file name has special constructs in it,
3144 call the corresponding file handler. */
3145 handler
= Ffind_file_name_handler (absname
, Qfile_modes
);
3146 if (!NILP (handler
))
3147 return call2 (handler
, Qfile_modes
, absname
);
3149 absname
= ENCODE_FILE (absname
);
3151 if (stat (SSDATA (absname
), &st
) < 0)
3154 return make_number (st
.st_mode
& 07777);
3157 DEFUN ("set-file-modes", Fset_file_modes
, Sset_file_modes
, 2, 2,
3158 "(let ((file (read-file-name \"File: \"))) \
3159 (list file (read-file-modes nil file)))",
3160 doc
: /* Set mode bits of file named FILENAME to MODE (an integer).
3161 Only the 12 low bits of MODE are used.
3163 Interactively, mode bits are read by `read-file-modes', which accepts
3164 symbolic notation, like the `chmod' command from GNU Coreutils. */)
3165 (Lisp_Object filename
, Lisp_Object mode
)
3167 Lisp_Object absname
, encoded_absname
;
3168 Lisp_Object handler
;
3170 absname
= Fexpand_file_name (filename
, BVAR (current_buffer
, directory
));
3171 CHECK_NUMBER (mode
);
3173 /* If the file name has special constructs in it,
3174 call the corresponding file handler. */
3175 handler
= Ffind_file_name_handler (absname
, Qset_file_modes
);
3176 if (!NILP (handler
))
3177 return call3 (handler
, Qset_file_modes
, absname
, mode
);
3179 encoded_absname
= ENCODE_FILE (absname
);
3181 if (chmod (SSDATA (encoded_absname
), XINT (mode
) & 07777) < 0)
3182 report_file_error ("Doing chmod", absname
);
3187 DEFUN ("set-default-file-modes", Fset_default_file_modes
, Sset_default_file_modes
, 1, 1, 0,
3188 doc
: /* Set the file permission bits for newly created files.
3189 The argument MODE should be an integer; only the low 9 bits are used.
3190 This setting is inherited by subprocesses. */)
3193 mode_t oldrealmask
, oldumask
, newumask
;
3194 CHECK_NUMBER (mode
);
3195 oldrealmask
= realmask
;
3196 newumask
= ~ XINT (mode
) & 0777;
3199 realmask
= newumask
;
3200 oldumask
= umask (newumask
);
3203 eassert (oldumask
== oldrealmask
);
3207 DEFUN ("default-file-modes", Fdefault_file_modes
, Sdefault_file_modes
, 0, 0, 0,
3208 doc
: /* Return the default file protection for created files.
3209 The value is an integer. */)
3213 XSETINT (value
, (~ realmask
) & 0777);
3218 DEFUN ("set-file-times", Fset_file_times
, Sset_file_times
, 1, 2, 0,
3219 doc
: /* Set times of file FILENAME to TIMESTAMP.
3220 Set both access and modification times.
3221 Return t on success, else nil.
3222 Use the current time if TIMESTAMP is nil. TIMESTAMP is in the format of
3224 (Lisp_Object filename
, Lisp_Object timestamp
)
3226 Lisp_Object absname
, encoded_absname
;
3227 Lisp_Object handler
;
3228 struct timespec t
= lisp_time_argument (timestamp
);
3230 absname
= Fexpand_file_name (filename
, BVAR (current_buffer
, directory
));
3232 /* If the file name has special constructs in it,
3233 call the corresponding file handler. */
3234 handler
= Ffind_file_name_handler (absname
, Qset_file_times
);
3235 if (!NILP (handler
))
3236 return call3 (handler
, Qset_file_times
, absname
, timestamp
);
3238 encoded_absname
= ENCODE_FILE (absname
);
3241 if (set_file_times (-1, SSDATA (encoded_absname
), t
, t
) != 0)
3244 /* Setting times on a directory always fails. */
3245 if (file_directory_p (SSDATA (encoded_absname
)))
3248 report_file_error ("Setting file times", absname
);
3256 DEFUN ("unix-sync", Funix_sync
, Sunix_sync
, 0, 0, "",
3257 doc
: /* Tell Unix to finish all pending disk updates. */)
3264 #endif /* HAVE_SYNC */
3266 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p
, Sfile_newer_than_file_p
, 2, 2, 0,
3267 doc
: /* Return t if file FILE1 is newer than file FILE2.
3268 If FILE1 does not exist, the answer is nil;
3269 otherwise, if FILE2 does not exist, the answer is t. */)
3270 (Lisp_Object file1
, Lisp_Object file2
)
3272 Lisp_Object absname1
, absname2
;
3273 struct stat st1
, st2
;
3274 Lisp_Object handler
;
3275 struct gcpro gcpro1
, gcpro2
;
3277 CHECK_STRING (file1
);
3278 CHECK_STRING (file2
);
3281 GCPRO2 (absname1
, file2
);
3282 absname1
= expand_and_dir_to_file (file1
, BVAR (current_buffer
, directory
));
3283 absname2
= expand_and_dir_to_file (file2
, BVAR (current_buffer
, directory
));
3286 /* If the file name has special constructs in it,
3287 call the corresponding file handler. */
3288 handler
= Ffind_file_name_handler (absname1
, Qfile_newer_than_file_p
);
3290 handler
= Ffind_file_name_handler (absname2
, Qfile_newer_than_file_p
);
3291 if (!NILP (handler
))
3292 return call3 (handler
, Qfile_newer_than_file_p
, absname1
, absname2
);
3294 GCPRO2 (absname1
, absname2
);
3295 absname1
= ENCODE_FILE (absname1
);
3296 absname2
= ENCODE_FILE (absname2
);
3299 if (stat (SSDATA (absname1
), &st1
) < 0)
3302 if (stat (SSDATA (absname2
), &st2
) < 0)
3305 return (timespec_cmp (get_stat_mtime (&st2
), get_stat_mtime (&st1
)) < 0
3309 #ifndef READ_BUF_SIZE
3310 #define READ_BUF_SIZE (64 << 10)
3312 /* Some buffer offsets are stored in 'int' variables. */
3313 verify (READ_BUF_SIZE
<= INT_MAX
);
3315 /* This function is called after Lisp functions to decide a coding
3316 system are called, or when they cause an error. Before they are
3317 called, the current buffer is set unibyte and it contains only a
3318 newly inserted text (thus the buffer was empty before the
3321 The functions may set markers, overlays, text properties, or even
3322 alter the buffer contents, change the current buffer.
3324 Here, we reset all those changes by:
3325 o set back the current buffer.
3326 o move all markers and overlays to BEG.
3327 o remove all text properties.
3328 o set back the buffer multibyteness. */
3331 decide_coding_unwind (Lisp_Object unwind_data
)
3333 Lisp_Object multibyte
, undo_list
, buffer
;
3335 multibyte
= XCAR (unwind_data
);
3336 unwind_data
= XCDR (unwind_data
);
3337 undo_list
= XCAR (unwind_data
);
3338 buffer
= XCDR (unwind_data
);
3340 set_buffer_internal (XBUFFER (buffer
));
3341 adjust_markers_for_delete (BEG
, BEG_BYTE
, Z
, Z_BYTE
);
3342 adjust_overlays_for_delete (BEG
, Z
- BEG
);
3343 set_buffer_intervals (current_buffer
, NULL
);
3344 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
3346 /* Now we are safe to change the buffer's multibyteness directly. */
3347 bset_enable_multibyte_characters (current_buffer
, multibyte
);
3348 bset_undo_list (current_buffer
, undo_list
);
3351 /* Read from a non-regular file. STATE is a Lisp_Save_Value
3352 object where slot 0 is the file descriptor, slot 1 specifies
3353 an offset to put the read bytes, and slot 2 is the maximum
3354 amount of bytes to read. Value is the number of bytes read. */
3357 read_non_regular (Lisp_Object state
)
3363 nbytes
= emacs_read (XSAVE_INTEGER (state
, 0),
3364 ((char *) BEG_ADDR
+ PT_BYTE
- BEG_BYTE
3365 + XSAVE_INTEGER (state
, 1)),
3366 XSAVE_INTEGER (state
, 2));
3368 /* Fast recycle this object for the likely next call. */
3370 return make_number (nbytes
);
3374 /* Condition-case handler used when reading from non-regular files
3375 in insert-file-contents. */
3378 read_non_regular_quit (Lisp_Object ignore
)
3383 /* Return the file offset that VAL represents, checking for type
3384 errors and overflow. */
3386 file_offset (Lisp_Object val
)
3388 if (RANGED_INTEGERP (0, val
, TYPE_MAXIMUM (off_t
)))
3393 double v
= XFLOAT_DATA (val
);
3395 && (sizeof (off_t
) < sizeof v
3396 ? v
<= TYPE_MAXIMUM (off_t
)
3397 : v
< TYPE_MAXIMUM (off_t
)))
3401 wrong_type_argument (intern ("file-offset"), val
);
3404 /* Return a special time value indicating the error number ERRNUM. */
3405 static struct timespec
3406 time_error_value (int errnum
)
3408 int ns
= (errnum
== ENOENT
|| errnum
== EACCES
|| errnum
== ENOTDIR
3409 ? NONEXISTENT_MODTIME_NSECS
3410 : UNKNOWN_MODTIME_NSECS
);
3411 return make_timespec (0, ns
);
3415 get_window_points_and_markers (void)
3417 Lisp_Object pt_marker
= Fpoint_marker ();
3419 = call3 (Qget_buffer_window_list
, Fcurrent_buffer (), Qnil
, Qt
);
3420 Lisp_Object window_markers
= windows
;
3421 /* Window markers (and point) are handled specially: rather than move to
3422 just before or just after the modified text, we try to keep the
3423 markers at the same distance (bug#19161).
3424 In general, this is wrong, but for window-markers, this should be harmless
3425 and is convenient for the end user when most of the file is unmodified,
3426 except for a few minor details near the beginning and near the end. */
3427 for (; CONSP (windows
); windows
= XCDR (windows
))
3428 if (WINDOWP (XCAR (windows
)))
3430 Lisp_Object window_marker
= XWINDOW (XCAR (windows
))->pointm
;
3432 Fcons (window_marker
, Fmarker_position (window_marker
)));
3434 return Fcons (Fcons (pt_marker
, Fpoint ()), window_markers
);
3438 restore_window_points (Lisp_Object window_markers
, ptrdiff_t inserted
,
3439 ptrdiff_t same_at_start
, ptrdiff_t same_at_end
)
3441 for (; CONSP (window_markers
); window_markers
= XCDR (window_markers
))
3442 if (CONSP (XCAR (window_markers
)))
3444 Lisp_Object car
= XCAR (window_markers
);
3445 Lisp_Object marker
= XCAR (car
);
3446 Lisp_Object oldpos
= XCDR (car
);
3447 if (MARKERP (marker
) && INTEGERP (oldpos
)
3448 && XINT (oldpos
) > same_at_start
3449 && XINT (oldpos
) < same_at_end
)
3451 ptrdiff_t oldsize
= same_at_end
- same_at_start
;
3452 ptrdiff_t newsize
= inserted
;
3453 double growth
= newsize
/ (double)oldsize
;
3455 = same_at_start
+ growth
* (XINT (oldpos
) - same_at_start
);
3456 Fset_marker (marker
, make_number (newpos
), Qnil
);
3461 /* FIXME: insert-file-contents should be split with the top-level moved to
3462 Elisp and only the core kept in C. */
3464 DEFUN ("insert-file-contents", Finsert_file_contents
, Sinsert_file_contents
,
3466 doc
: /* Insert contents of file FILENAME after point.
3467 Returns list of absolute file name and number of characters inserted.
3468 If second argument VISIT is non-nil, the buffer's visited filename and
3469 last save file modtime are set, and it is marked unmodified. If
3470 visiting and the file does not exist, visiting is completed before the
3473 The optional third and fourth arguments BEG and END specify what portion
3474 of the file to insert. These arguments count bytes in the file, not
3475 characters in the buffer. If VISIT is non-nil, BEG and END must be nil.
3477 If optional fifth argument REPLACE is non-nil, replace the current
3478 buffer contents (in the accessible portion) with the file contents.
3479 This is better than simply deleting and inserting the whole thing
3480 because (1) it preserves some marker positions and (2) it puts less data
3481 in the undo list. When REPLACE is non-nil, the second return value is
3482 the number of characters that replace previous buffer contents.
3484 This function does code conversion according to the value of
3485 `coding-system-for-read' or `file-coding-system-alist', and sets the
3486 variable `last-coding-system-used' to the coding system actually used.
3488 In addition, this function decodes the inserted text from known formats
3489 by calling `format-decode', which see. */)
3490 (Lisp_Object filename
, Lisp_Object visit
, Lisp_Object beg
, Lisp_Object end
, Lisp_Object replace
)
3493 struct timespec mtime
;
3495 ptrdiff_t inserted
= 0;
3497 off_t beg_offset
, end_offset
;
3499 ptrdiff_t count
= SPECPDL_INDEX ();
3500 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
3501 Lisp_Object handler
, val
, insval
, orig_filename
, old_undo
;
3503 ptrdiff_t total
= 0;
3504 bool not_regular
= 0;
3506 char read_buf
[READ_BUF_SIZE
];
3507 struct coding_system coding
;
3508 bool replace_handled
= false;
3509 bool set_coding_system
= false;
3510 Lisp_Object coding_system
;
3511 bool read_quit
= false;
3512 /* If the undo log only contains the insertion, there's no point
3513 keeping it. It's typically when we first fill a file-buffer. */
3514 bool empty_undo_list_p
3515 = (!NILP (visit
) && NILP (BVAR (current_buffer
, undo_list
))
3517 Lisp_Object old_Vdeactivate_mark
= Vdeactivate_mark
;
3518 bool we_locked_file
= false;
3520 Lisp_Object window_markers
= Qnil
;
3521 /* same_at_start and same_at_end count bytes, because file access counts
3522 bytes and BEG and END count bytes. */
3523 ptrdiff_t same_at_start
= BEGV_BYTE
;
3524 ptrdiff_t same_at_end
= ZV_BYTE
;
3525 /* SAME_AT_END_CHARPOS counts characters, because
3526 restore_window_points needs the old character count. */
3527 ptrdiff_t same_at_end_charpos
= ZV
;
3529 if (current_buffer
->base_buffer
&& ! NILP (visit
))
3530 error ("Cannot do file visiting in an indirect buffer");
3532 if (!NILP (BVAR (current_buffer
, read_only
)))
3533 Fbarf_if_buffer_read_only (Qnil
);
3537 orig_filename
= Qnil
;
3540 GCPRO5 (filename
, val
, p
, orig_filename
, old_undo
);
3542 CHECK_STRING (filename
);
3543 filename
= Fexpand_file_name (filename
, Qnil
);
3545 /* The value Qnil means that the coding system is not yet
3547 coding_system
= Qnil
;
3549 /* If the file name has special constructs in it,
3550 call the corresponding file handler. */
3551 handler
= Ffind_file_name_handler (filename
, Qinsert_file_contents
);
3552 if (!NILP (handler
))
3554 val
= call6 (handler
, Qinsert_file_contents
, filename
,
3555 visit
, beg
, end
, replace
);
3556 if (CONSP (val
) && CONSP (XCDR (val
))
3557 && RANGED_INTEGERP (0, XCAR (XCDR (val
)), ZV
- PT
))
3558 inserted
= XINT (XCAR (XCDR (val
)));
3562 orig_filename
= filename
;
3563 filename
= ENCODE_FILE (filename
);
3565 fd
= emacs_open (SSDATA (filename
), O_RDONLY
, 0);
3570 report_file_error ("Opening input file", orig_filename
);
3571 mtime
= time_error_value (save_errno
);
3573 if (!NILP (Vcoding_system_for_read
))
3574 Fset (Qbuffer_file_coding_system
, Vcoding_system_for_read
);
3578 fd_index
= SPECPDL_INDEX ();
3579 record_unwind_protect_int (close_file_unwind
, fd
);
3581 /* Replacement should preserve point as it preserves markers. */
3582 if (!NILP (replace
))
3584 window_markers
= get_window_points_and_markers ();
3585 record_unwind_protect (restore_point_unwind
,
3586 XCAR (XCAR (window_markers
)));
3589 if (fstat (fd
, &st
) != 0)
3590 report_file_error ("Input file status", orig_filename
);
3591 mtime
= get_stat_mtime (&st
);
3593 /* This code will need to be changed in order to work on named
3594 pipes, and it's probably just not worth it. So we should at
3595 least signal an error. */
3596 if (!S_ISREG (st
.st_mode
))
3603 if (! NILP (replace
) || ! NILP (beg
) || ! NILP (end
))
3604 xsignal2 (Qfile_error
,
3605 build_string ("not a regular file"), orig_filename
);
3610 if (!NILP (beg
) || !NILP (end
))
3611 error ("Attempt to visit less than an entire file");
3612 if (BEG
< Z
&& NILP (replace
))
3613 error ("Cannot do file visiting in a non-empty buffer");
3617 beg_offset
= file_offset (beg
);
3622 end_offset
= file_offset (end
);
3626 end_offset
= TYPE_MAXIMUM (off_t
);
3629 end_offset
= st
.st_size
;
3631 /* A negative size can happen on a platform that allows file
3632 sizes greater than the maximum off_t value. */
3636 /* The file size returned from stat may be zero, but data
3637 may be readable nonetheless, for example when this is a
3638 file in the /proc filesystem. */
3639 if (end_offset
== 0)
3640 end_offset
= READ_BUF_SIZE
;
3644 /* Check now whether the buffer will become too large,
3645 in the likely case where the file's length is not changing.
3646 This saves a lot of needless work before a buffer overflow. */
3649 /* The likely offset where we will stop reading. We could read
3650 more (or less), if the file grows (or shrinks) as we read it. */
3651 off_t likely_end
= min (end_offset
, st
.st_size
);
3653 if (beg_offset
< likely_end
)
3656 = Z_BYTE
- (!NILP (replace
) ? ZV_BYTE
- BEGV_BYTE
: 0);
3657 ptrdiff_t buf_growth_max
= BUF_BYTES_MAX
- buf_bytes
;
3658 off_t likely_growth
= likely_end
- beg_offset
;
3659 if (buf_growth_max
< likely_growth
)
3664 /* Prevent redisplay optimizations. */
3665 current_buffer
->clip_changed
= true;
3667 if (EQ (Vcoding_system_for_read
, Qauto_save_coding
))
3669 coding_system
= coding_inherit_eol_type (Qutf_8_emacs
, Qunix
);
3670 setup_coding_system (coding_system
, &coding
);
3671 /* Ensure we set Vlast_coding_system_used. */
3672 set_coding_system
= true;
3676 /* Decide the coding system to use for reading the file now
3677 because we can't use an optimized method for handling
3678 `coding:' tag if the current buffer is not empty. */
3679 if (!NILP (Vcoding_system_for_read
))
3680 coding_system
= Vcoding_system_for_read
;
3683 /* Don't try looking inside a file for a coding system
3684 specification if it is not seekable. */
3685 if (! not_regular
&& ! NILP (Vset_auto_coding_function
))
3687 /* Find a coding system specified in the heading two
3688 lines or in the tailing several lines of the file.
3689 We assume that the 1K-byte and 3K-byte for heading
3690 and tailing respectively are sufficient for this
3694 if (st
.st_size
<= (1024 * 4))
3695 nread
= emacs_read (fd
, read_buf
, 1024 * 4);
3698 nread
= emacs_read (fd
, read_buf
, 1024);
3702 if (lseek (fd
, - (1024 * 3), SEEK_END
) < 0)
3703 report_file_error ("Setting file position",
3705 ntail
= emacs_read (fd
, read_buf
+ nread
, 1024 * 3);
3706 nread
= ntail
< 0 ? ntail
: nread
+ ntail
;
3711 report_file_error ("Read error", orig_filename
);
3714 AUTO_STRING (name
, " *code-converting-work*");
3715 struct buffer
*prev
= current_buffer
;
3716 Lisp_Object workbuf
;
3719 record_unwind_current_buffer ();
3721 workbuf
= Fget_buffer_create (name
);
3722 buf
= XBUFFER (workbuf
);
3724 delete_all_overlays (buf
);
3725 bset_directory (buf
, BVAR (current_buffer
, directory
));
3726 bset_read_only (buf
, Qnil
);
3727 bset_filename (buf
, Qnil
);
3728 bset_undo_list (buf
, Qt
);
3729 eassert (buf
->overlays_before
== NULL
);
3730 eassert (buf
->overlays_after
== NULL
);
3732 set_buffer_internal (buf
);
3734 bset_enable_multibyte_characters (buf
, Qnil
);
3736 insert_1_both ((char *) read_buf
, nread
, nread
, 0, 0, 0);
3737 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
3738 coding_system
= call2 (Vset_auto_coding_function
,
3739 filename
, make_number (nread
));
3740 set_buffer_internal (prev
);
3742 /* Discard the unwind protect for recovering the
3746 /* Rewind the file for the actual read done later. */
3747 if (lseek (fd
, 0, SEEK_SET
) < 0)
3748 report_file_error ("Setting file position", orig_filename
);
3752 if (NILP (coding_system
))
3754 /* If we have not yet decided a coding system, check
3755 file-coding-system-alist. */
3756 Lisp_Object args
[6];
3758 args
[0] = Qinsert_file_contents
, args
[1] = orig_filename
;
3759 args
[2] = visit
, args
[3] = beg
, args
[4] = end
, args
[5] = replace
;
3760 coding_system
= Ffind_operation_coding_system (6, args
);
3761 if (CONSP (coding_system
))
3762 coding_system
= XCAR (coding_system
);
3766 if (NILP (coding_system
))
3767 coding_system
= Qundecided
;
3769 CHECK_CODING_SYSTEM (coding_system
);
3771 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
3772 /* We must suppress all character code conversion except for
3773 end-of-line conversion. */
3774 coding_system
= raw_text_coding_system (coding_system
);
3776 setup_coding_system (coding_system
, &coding
);
3777 /* Ensure we set Vlast_coding_system_used. */
3778 set_coding_system
= true;
3781 /* If requested, replace the accessible part of the buffer
3782 with the file contents. Avoid replacing text at the
3783 beginning or end of the buffer that matches the file contents;
3784 that preserves markers pointing to the unchanged parts.
3786 Here we implement this feature in an optimized way
3787 for the case where code conversion is NOT needed.
3788 The following if-statement handles the case of conversion
3789 in a less optimal way.
3791 If the code conversion is "automatic" then we try using this
3792 method and hope for the best.
3793 But if we discover the need for conversion, we give up on this method
3794 and let the following if-statement handle the replace job. */
3797 && (NILP (coding_system
)
3798 || ! CODING_REQUIRE_DECODING (&coding
)))
3801 /* There is still a possibility we will find the need to do code
3802 conversion. If that happens, set this variable to
3803 give up on handling REPLACE in the optimized way. */
3804 bool giveup_match_end
= false;
3806 if (beg_offset
!= 0)
3808 if (lseek (fd
, beg_offset
, SEEK_SET
) < 0)
3809 report_file_error ("Setting file position", orig_filename
);
3814 /* Count how many chars at the start of the file
3815 match the text at the beginning of the buffer. */
3820 nread
= emacs_read (fd
, read_buf
, sizeof read_buf
);
3822 report_file_error ("Read error", orig_filename
);
3823 else if (nread
== 0)
3826 if (CODING_REQUIRE_DETECTION (&coding
))
3828 coding_system
= detect_coding_system ((unsigned char *) read_buf
,
3831 setup_coding_system (coding_system
, &coding
);
3834 if (CODING_REQUIRE_DECODING (&coding
))
3835 /* We found that the file should be decoded somehow.
3836 Let's give up here. */
3838 giveup_match_end
= true;
3843 while (bufpos
< nread
&& same_at_start
< ZV_BYTE
3844 && FETCH_BYTE (same_at_start
) == read_buf
[bufpos
])
3845 same_at_start
++, bufpos
++;
3846 /* If we found a discrepancy, stop the scan.
3847 Otherwise loop around and scan the next bufferful. */
3848 if (bufpos
!= nread
)
3851 immediate_quit
= false;
3852 /* If the file matches the buffer completely,
3853 there's no need to replace anything. */
3854 if (same_at_start
- BEGV_BYTE
== end_offset
- beg_offset
)
3857 clear_unwind_protect (fd_index
);
3859 /* Truncate the buffer to the size of the file. */
3860 del_range_1 (same_at_start
, same_at_end
, 0, 0);
3863 immediate_quit
= true;
3865 /* Count how many chars at the end of the file
3866 match the text at the end of the buffer. But, if we have
3867 already found that decoding is necessary, don't waste time. */
3868 while (!giveup_match_end
)
3870 int total_read
, nread
, bufpos
, trial
;
3873 /* At what file position are we now scanning? */
3874 curpos
= end_offset
- (ZV_BYTE
- same_at_end
);
3875 /* If the entire file matches the buffer tail, stop the scan. */
3878 /* How much can we scan in the next step? */
3879 trial
= min (curpos
, sizeof read_buf
);
3880 if (lseek (fd
, curpos
- trial
, SEEK_SET
) < 0)
3881 report_file_error ("Setting file position", orig_filename
);
3883 total_read
= nread
= 0;
3884 while (total_read
< trial
)
3886 nread
= emacs_read (fd
, read_buf
+ total_read
, trial
- total_read
);
3888 report_file_error ("Read error", orig_filename
);
3889 else if (nread
== 0)
3891 total_read
+= nread
;
3894 /* Scan this bufferful from the end, comparing with
3895 the Emacs buffer. */
3896 bufpos
= total_read
;
3898 /* Compare with same_at_start to avoid counting some buffer text
3899 as matching both at the file's beginning and at the end. */
3900 while (bufpos
> 0 && same_at_end
> same_at_start
3901 && FETCH_BYTE (same_at_end
- 1) == read_buf
[bufpos
- 1])
3902 same_at_end
--, bufpos
--;
3904 /* If we found a discrepancy, stop the scan.
3905 Otherwise loop around and scan the preceding bufferful. */
3908 /* If this discrepancy is because of code conversion,
3909 we cannot use this method; giveup and try the other. */
3910 if (same_at_end
> same_at_start
3911 && FETCH_BYTE (same_at_end
- 1) >= 0200
3912 && ! NILP (BVAR (current_buffer
, enable_multibyte_characters
))
3913 && (CODING_MAY_REQUIRE_DECODING (&coding
)))
3914 giveup_match_end
= true;
3923 if (! giveup_match_end
)
3927 /* We win! We can handle REPLACE the optimized way. */
3929 /* Extend the start of non-matching text area to multibyte
3930 character boundary. */
3931 if (! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
3932 while (same_at_start
> BEGV_BYTE
3933 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start
)))
3936 /* Extend the end of non-matching text area to multibyte
3937 character boundary. */
3938 if (! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
3939 while (same_at_end
< ZV_BYTE
3940 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end
)))
3943 /* Don't try to reuse the same piece of text twice. */
3944 overlap
= (same_at_start
- BEGV_BYTE
3946 + (! NILP (end
) ? end_offset
: st
.st_size
) - ZV_BYTE
));
3948 same_at_end
+= overlap
;
3949 same_at_end_charpos
= BYTE_TO_CHAR (same_at_end
);
3951 /* Arrange to read only the nonmatching middle part of the file. */
3952 beg_offset
+= same_at_start
- BEGV_BYTE
;
3953 end_offset
-= ZV_BYTE
- same_at_end
;
3955 invalidate_buffer_caches (current_buffer
,
3956 BYTE_TO_CHAR (same_at_start
),
3957 same_at_end_charpos
);
3958 del_range_byte (same_at_start
, same_at_end
, 0);
3959 /* Insert from the file at the proper position. */
3960 temp
= BYTE_TO_CHAR (same_at_start
);
3961 SET_PT_BOTH (temp
, same_at_start
);
3963 /* If display currently starts at beginning of line,
3964 keep it that way. */
3965 if (XBUFFER (XWINDOW (selected_window
)->contents
) == current_buffer
)
3966 XWINDOW (selected_window
)->start_at_line_beg
= !NILP (Fbolp ());
3968 replace_handled
= true;
3972 /* If requested, replace the accessible part of the buffer
3973 with the file contents. Avoid replacing text at the
3974 beginning or end of the buffer that matches the file contents;
3975 that preserves markers pointing to the unchanged parts.
3977 Here we implement this feature for the case where code conversion
3978 is needed, in a simple way that needs a lot of memory.
3979 The preceding if-statement handles the case of no conversion
3980 in a more optimized way. */
3981 if (!NILP (replace
) && ! replace_handled
&& BEGV
< ZV
)
3983 ptrdiff_t same_at_start_charpos
;
3984 ptrdiff_t inserted_chars
;
3987 unsigned char *decoded
;
3990 ptrdiff_t this_count
= SPECPDL_INDEX ();
3992 = ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
3993 Lisp_Object conversion_buffer
;
3994 struct gcpro gcpro1
;
3996 conversion_buffer
= code_conversion_save (1, multibyte
);
3998 /* First read the whole file, performing code conversion into
3999 CONVERSION_BUFFER. */
4001 if (lseek (fd
, beg_offset
, SEEK_SET
) < 0)
4002 report_file_error ("Setting file position", orig_filename
);
4004 inserted
= 0; /* Bytes put into CONVERSION_BUFFER so far. */
4005 unprocessed
= 0; /* Bytes not processed in previous loop. */
4007 GCPRO1 (conversion_buffer
);
4010 /* Read at most READ_BUF_SIZE bytes at a time, to allow
4011 quitting while reading a huge file. */
4013 /* Allow quitting out of the actual I/O. */
4016 this = emacs_read (fd
, read_buf
+ unprocessed
,
4017 READ_BUF_SIZE
- unprocessed
);
4023 BUF_TEMP_SET_PT (XBUFFER (conversion_buffer
),
4024 BUF_Z (XBUFFER (conversion_buffer
)));
4025 decode_coding_c_string (&coding
, (unsigned char *) read_buf
,
4026 unprocessed
+ this, conversion_buffer
);
4027 unprocessed
= coding
.carryover_bytes
;
4028 if (coding
.carryover_bytes
> 0)
4029 memcpy (read_buf
, coding
.carryover
, unprocessed
);
4033 report_file_error ("Read error", orig_filename
);
4035 clear_unwind_protect (fd_index
);
4037 if (unprocessed
> 0)
4039 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
4040 decode_coding_c_string (&coding
, (unsigned char *) read_buf
,
4041 unprocessed
, conversion_buffer
);
4042 coding
.mode
&= ~CODING_MODE_LAST_BLOCK
;
4045 coding_system
= CODING_ID_NAME (coding
.id
);
4046 set_coding_system
= true;
4047 decoded
= BUF_BEG_ADDR (XBUFFER (conversion_buffer
));
4048 inserted
= (BUF_Z_BYTE (XBUFFER (conversion_buffer
))
4049 - BUF_BEG_BYTE (XBUFFER (conversion_buffer
)));
4051 /* Compare the beginning of the converted string with the buffer
4055 while (bufpos
< inserted
&& same_at_start
< same_at_end
4056 && FETCH_BYTE (same_at_start
) == decoded
[bufpos
])
4057 same_at_start
++, bufpos
++;
4059 /* If the file matches the head of buffer completely,
4060 there's no need to replace anything. */
4062 if (bufpos
== inserted
)
4064 /* Truncate the buffer to the size of the file. */
4065 if (same_at_start
!= same_at_end
)
4067 invalidate_buffer_caches (current_buffer
,
4068 BYTE_TO_CHAR (same_at_start
),
4069 BYTE_TO_CHAR (same_at_end
));
4070 del_range_byte (same_at_start
, same_at_end
, 0);
4074 unbind_to (this_count
, Qnil
);
4078 /* Extend the start of non-matching text area to the previous
4079 multibyte character boundary. */
4080 if (! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
4081 while (same_at_start
> BEGV_BYTE
4082 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start
)))
4085 /* Scan this bufferful from the end, comparing with
4086 the Emacs buffer. */
4089 /* Compare with same_at_start to avoid counting some buffer text
4090 as matching both at the file's beginning and at the end. */
4091 while (bufpos
> 0 && same_at_end
> same_at_start
4092 && FETCH_BYTE (same_at_end
- 1) == decoded
[bufpos
- 1])
4093 same_at_end
--, bufpos
--;
4095 /* Extend the end of non-matching text area to the next
4096 multibyte character boundary. */
4097 if (! NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
4098 while (same_at_end
< ZV_BYTE
4099 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end
)))
4102 /* Don't try to reuse the same piece of text twice. */
4103 overlap
= same_at_start
- BEGV_BYTE
- (same_at_end
+ inserted
- ZV_BYTE
);
4105 same_at_end
+= overlap
;
4106 same_at_end_charpos
= BYTE_TO_CHAR (same_at_end
);
4108 /* If display currently starts at beginning of line,
4109 keep it that way. */
4110 if (XBUFFER (XWINDOW (selected_window
)->contents
) == current_buffer
)
4111 XWINDOW (selected_window
)->start_at_line_beg
= !NILP (Fbolp ());
4113 /* Replace the chars that we need to replace,
4114 and update INSERTED to equal the number of bytes
4115 we are taking from the decoded string. */
4116 inserted
-= (ZV_BYTE
- same_at_end
) + (same_at_start
- BEGV_BYTE
);
4118 if (same_at_end
!= same_at_start
)
4120 invalidate_buffer_caches (current_buffer
,
4121 BYTE_TO_CHAR (same_at_start
),
4122 same_at_end_charpos
);
4123 del_range_byte (same_at_start
, same_at_end
, 0);
4125 eassert (same_at_start
== GPT_BYTE
);
4126 same_at_start
= GPT_BYTE
;
4130 temp
= same_at_end_charpos
;
4132 /* Insert from the file at the proper position. */
4133 SET_PT_BOTH (temp
, same_at_start
);
4134 same_at_start_charpos
4135 = buf_bytepos_to_charpos (XBUFFER (conversion_buffer
),
4136 same_at_start
- BEGV_BYTE
4137 + BUF_BEG_BYTE (XBUFFER (conversion_buffer
)));
4138 eassert (same_at_start_charpos
== temp
- (BEGV
- BEG
));
4140 = (buf_bytepos_to_charpos (XBUFFER (conversion_buffer
),
4141 same_at_start
+ inserted
- BEGV_BYTE
4142 + BUF_BEG_BYTE (XBUFFER (conversion_buffer
)))
4143 - same_at_start_charpos
);
4144 /* This binding is to avoid ask-user-about-supersession-threat
4145 being called in insert_from_buffer (via in
4146 prepare_to_modify_buffer). */
4147 specbind (intern ("buffer-file-name"), Qnil
);
4148 insert_from_buffer (XBUFFER (conversion_buffer
),
4149 same_at_start_charpos
, inserted_chars
, 0);
4150 /* Set `inserted' to the number of inserted characters. */
4151 inserted
= PT
- temp
;
4152 /* Set point before the inserted characters. */
4153 SET_PT_BOTH (temp
, same_at_start
);
4155 unbind_to (this_count
, Qnil
);
4161 total
= end_offset
- beg_offset
;
4163 /* For a special file, all we can do is guess. */
4164 total
= READ_BUF_SIZE
;
4166 if (NILP (visit
) && total
> 0)
4168 if (!NILP (BVAR (current_buffer
, file_truename
))
4169 /* Make binding buffer-file-name to nil effective. */
4170 && !NILP (BVAR (current_buffer
, filename
))
4171 && SAVE_MODIFF
>= MODIFF
)
4172 we_locked_file
= true;
4173 prepare_to_modify_buffer (PT
, PT
, NULL
);
4176 move_gap_both (PT
, PT_BYTE
);
4177 if (GAP_SIZE
< total
)
4178 make_gap (total
- GAP_SIZE
);
4180 if (beg_offset
!= 0 || !NILP (replace
))
4182 if (lseek (fd
, beg_offset
, SEEK_SET
) < 0)
4183 report_file_error ("Setting file position", orig_filename
);
4186 /* In the following loop, HOW_MUCH contains the total bytes read so
4187 far for a regular file, and not changed for a special file. But,
4188 before exiting the loop, it is set to a negative value if I/O
4192 /* Total bytes inserted. */
4195 /* Here, we don't do code conversion in the loop. It is done by
4196 decode_coding_gap after all data are read into the buffer. */
4198 ptrdiff_t gap_size
= GAP_SIZE
;
4200 while (how_much
< total
)
4202 /* `try' is reserved in some compilers (Microsoft C). */
4203 ptrdiff_t trytry
= min (total
- how_much
, READ_BUF_SIZE
);
4210 /* Maybe make more room. */
4211 if (gap_size
< trytry
)
4213 make_gap (trytry
- gap_size
);
4214 gap_size
= GAP_SIZE
- inserted
;
4217 /* Read from the file, capturing `quit'. When an
4218 error occurs, end the loop, and arrange for a quit
4219 to be signaled after decoding the text we read. */
4220 nbytes
= internal_condition_case_1
4222 make_save_int_int_int (fd
, inserted
, trytry
),
4223 Qerror
, read_non_regular_quit
);
4231 this = XINT (nbytes
);
4235 /* Allow quitting out of the actual I/O. We don't make text
4236 part of the buffer until all the reading is done, so a C-g
4237 here doesn't do any harm. */
4240 this = emacs_read (fd
,
4241 ((char *) BEG_ADDR
+ PT_BYTE
- BEG_BYTE
4255 /* For a regular file, where TOTAL is the real size,
4256 count HOW_MUCH to compare with it.
4257 For a special file, where TOTAL is just a buffer size,
4258 so don't bother counting in HOW_MUCH.
4259 (INSERTED is where we count the number of characters inserted.) */
4266 /* Now we have either read all the file data into the gap,
4267 or stop reading on I/O error or quit. If nothing was
4268 read, undo marking the buffer modified. */
4273 unlock_file (BVAR (current_buffer
, file_truename
));
4274 Vdeactivate_mark
= old_Vdeactivate_mark
;
4277 Vdeactivate_mark
= Qt
;
4280 clear_unwind_protect (fd_index
);
4283 report_file_error ("Read error", orig_filename
);
4285 /* Make the text read part of the buffer. */
4286 GAP_SIZE
-= inserted
;
4288 GPT_BYTE
+= inserted
;
4290 ZV_BYTE
+= inserted
;
4295 /* Put an anchor to ensure multi-byte form ends at gap. */
4300 if (NILP (coding_system
))
4302 /* The coding system is not yet decided. Decide it by an
4303 optimized method for handling `coding:' tag.
4305 Note that we can get here only if the buffer was empty
4306 before the insertion. */
4308 if (!NILP (Vcoding_system_for_read
))
4309 coding_system
= Vcoding_system_for_read
;
4312 /* Since we are sure that the current buffer was empty
4313 before the insertion, we can toggle
4314 enable-multibyte-characters directly here without taking
4315 care of marker adjustment. By this way, we can run Lisp
4316 program safely before decoding the inserted text. */
4317 Lisp_Object unwind_data
;
4318 ptrdiff_t count1
= SPECPDL_INDEX ();
4320 unwind_data
= Fcons (BVAR (current_buffer
, enable_multibyte_characters
),
4321 Fcons (BVAR (current_buffer
, undo_list
),
4322 Fcurrent_buffer ()));
4323 bset_enable_multibyte_characters (current_buffer
, Qnil
);
4324 bset_undo_list (current_buffer
, Qt
);
4325 record_unwind_protect (decide_coding_unwind
, unwind_data
);
4327 if (inserted
> 0 && ! NILP (Vset_auto_coding_function
))
4329 coding_system
= call2 (Vset_auto_coding_function
,
4330 filename
, make_number (inserted
));
4333 if (NILP (coding_system
))
4335 /* If the coding system is not yet decided, check
4336 file-coding-system-alist. */
4337 Lisp_Object args
[6];
4339 args
[0] = Qinsert_file_contents
, args
[1] = orig_filename
;
4340 args
[2] = visit
, args
[3] = beg
, args
[4] = end
, args
[5] = Qnil
;
4341 coding_system
= Ffind_operation_coding_system (6, args
);
4342 if (CONSP (coding_system
))
4343 coding_system
= XCAR (coding_system
);
4345 unbind_to (count1
, Qnil
);
4346 inserted
= Z_BYTE
- BEG_BYTE
;
4349 if (NILP (coding_system
))
4350 coding_system
= Qundecided
;
4352 CHECK_CODING_SYSTEM (coding_system
);
4354 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
4355 /* We must suppress all character code conversion except for
4356 end-of-line conversion. */
4357 coding_system
= raw_text_coding_system (coding_system
);
4358 setup_coding_system (coding_system
, &coding
);
4359 /* Ensure we set Vlast_coding_system_used. */
4360 set_coding_system
= true;
4365 /* When we visit a file by raw-text, we change the buffer to
4367 if (CODING_FOR_UNIBYTE (&coding
)
4368 /* Can't do this if part of the buffer might be preserved. */
4370 /* Visiting a file with these coding system makes the buffer
4372 bset_enable_multibyte_characters (current_buffer
, Qnil
);
4375 coding
.dst_multibyte
= ! NILP (BVAR (current_buffer
, enable_multibyte_characters
));
4376 if (CODING_MAY_REQUIRE_DECODING (&coding
)
4377 && (inserted
> 0 || CODING_REQUIRE_FLUSHING (&coding
)))
4379 move_gap_both (PT
, PT_BYTE
);
4380 GAP_SIZE
+= inserted
;
4381 ZV_BYTE
-= inserted
;
4385 decode_coding_gap (&coding
, inserted
, inserted
);
4386 inserted
= coding
.produced_char
;
4387 coding_system
= CODING_ID_NAME (coding
.id
);
4389 else if (inserted
> 0)
4391 invalidate_buffer_caches (current_buffer
, PT
, PT
+ inserted
);
4392 adjust_after_insert (PT
, PT_BYTE
, PT
+ inserted
, PT_BYTE
+ inserted
,
4396 /* Call after-change hooks for the inserted text, aside from the case
4397 of normal visiting (not with REPLACE), which is done in a new buffer
4398 "before" the buffer is changed. */
4399 if (inserted
> 0 && total
> 0
4400 && (NILP (visit
) || !NILP (replace
)))
4402 signal_after_change (PT
, 0, inserted
);
4403 update_compositions (PT
, PT
, CHECK_BORDER
);
4406 /* Now INSERTED is measured in characters. */
4411 restore_window_points (window_markers
, inserted
,
4412 BYTE_TO_CHAR (same_at_start
),
4413 same_at_end_charpos
);
4417 if (empty_undo_list_p
)
4418 bset_undo_list (current_buffer
, Qnil
);
4422 current_buffer
->modtime
= mtime
;
4423 current_buffer
->modtime_size
= st
.st_size
;
4424 bset_filename (current_buffer
, orig_filename
);
4427 SAVE_MODIFF
= MODIFF
;
4428 BUF_AUTOSAVE_MODIFF (current_buffer
) = MODIFF
;
4429 XSETFASTINT (BVAR (current_buffer
, save_length
), Z
- BEG
);
4432 if (!NILP (BVAR (current_buffer
, file_truename
)))
4433 unlock_file (BVAR (current_buffer
, file_truename
));
4434 unlock_file (filename
);
4437 xsignal2 (Qfile_error
,
4438 build_string ("not a regular file"), orig_filename
);
4441 if (set_coding_system
)
4442 Vlast_coding_system_used
= coding_system
;
4444 if (! NILP (Ffboundp (Qafter_insert_file_set_coding
)))
4446 insval
= call2 (Qafter_insert_file_set_coding
, make_number (inserted
),
4448 if (! NILP (insval
))
4450 if (! RANGED_INTEGERP (0, insval
, ZV
- PT
))
4451 wrong_type_argument (intern ("inserted-chars"), insval
);
4452 inserted
= XFASTINT (insval
);
4456 /* Decode file format. */
4459 /* Don't run point motion or modification hooks when decoding. */
4460 ptrdiff_t count1
= SPECPDL_INDEX ();
4461 ptrdiff_t old_inserted
= inserted
;
4462 specbind (Qinhibit_point_motion_hooks
, Qt
);
4463 specbind (Qinhibit_modification_hooks
, Qt
);
4465 /* Save old undo list and don't record undo for decoding. */
4466 old_undo
= BVAR (current_buffer
, undo_list
);
4467 bset_undo_list (current_buffer
, Qt
);
4471 insval
= call3 (Qformat_decode
,
4472 Qnil
, make_number (inserted
), visit
);
4473 if (! RANGED_INTEGERP (0, insval
, ZV
- PT
))
4474 wrong_type_argument (intern ("inserted-chars"), insval
);
4475 inserted
= XFASTINT (insval
);
4479 /* If REPLACE is non-nil and we succeeded in not replacing the
4480 beginning or end of the buffer text with the file's contents,
4481 call format-decode with `point' positioned at the beginning
4482 of the buffer and `inserted' equaling the number of
4483 characters in the buffer. Otherwise, format-decode might
4484 fail to correctly analyze the beginning or end of the buffer.
4485 Hence we temporarily save `point' and `inserted' here and
4486 restore `point' iff format-decode did not insert or delete
4487 any text. Otherwise we leave `point' at point-min. */
4488 ptrdiff_t opoint
= PT
;
4489 ptrdiff_t opoint_byte
= PT_BYTE
;
4490 ptrdiff_t oinserted
= ZV
- BEGV
;
4491 EMACS_INT ochars_modiff
= CHARS_MODIFF
;
4493 TEMP_SET_PT_BOTH (BEGV
, BEGV_BYTE
);
4494 insval
= call3 (Qformat_decode
,
4495 Qnil
, make_number (oinserted
), visit
);
4496 if (! RANGED_INTEGERP (0, insval
, ZV
- PT
))
4497 wrong_type_argument (intern ("inserted-chars"), insval
);
4498 if (ochars_modiff
== CHARS_MODIFF
)
4499 /* format_decode didn't modify buffer's characters => move
4500 point back to position before inserted text and leave
4501 value of inserted alone. */
4502 SET_PT_BOTH (opoint
, opoint_byte
);
4504 /* format_decode modified buffer's characters => consider
4505 entire buffer changed and leave point at point-min. */
4506 inserted
= XFASTINT (insval
);
4509 /* For consistency with format-decode call these now iff inserted > 0
4510 (martin 2007-06-28). */
4511 p
= Vafter_insert_file_functions
;
4516 insval
= call1 (XCAR (p
), make_number (inserted
));
4519 if (! RANGED_INTEGERP (0, insval
, ZV
- PT
))
4520 wrong_type_argument (intern ("inserted-chars"), insval
);
4521 inserted
= XFASTINT (insval
);
4526 /* For the rationale of this see the comment on
4527 format-decode above. */
4528 ptrdiff_t opoint
= PT
;
4529 ptrdiff_t opoint_byte
= PT_BYTE
;
4530 ptrdiff_t oinserted
= ZV
- BEGV
;
4531 EMACS_INT ochars_modiff
= CHARS_MODIFF
;
4533 TEMP_SET_PT_BOTH (BEGV
, BEGV_BYTE
);
4534 insval
= call1 (XCAR (p
), make_number (oinserted
));
4537 if (! RANGED_INTEGERP (0, insval
, ZV
- PT
))
4538 wrong_type_argument (intern ("inserted-chars"), insval
);
4539 if (ochars_modiff
== CHARS_MODIFF
)
4540 /* after_insert_file_functions didn't modify
4541 buffer's characters => move point back to
4542 position before inserted text and leave value of
4544 SET_PT_BOTH (opoint
, opoint_byte
);
4546 /* after_insert_file_functions did modify buffer's
4547 characters => consider entire buffer changed and
4548 leave point at point-min. */
4549 inserted
= XFASTINT (insval
);
4557 if (!empty_undo_list_p
)
4559 bset_undo_list (current_buffer
, old_undo
);
4560 if (CONSP (old_undo
) && inserted
!= old_inserted
)
4562 /* Adjust the last undo record for the size change during
4563 the format conversion. */
4564 Lisp_Object tem
= XCAR (old_undo
);
4565 if (CONSP (tem
) && INTEGERP (XCAR (tem
))
4566 && INTEGERP (XCDR (tem
))
4567 && XFASTINT (XCDR (tem
)) == PT
+ old_inserted
)
4568 XSETCDR (tem
, make_number (PT
+ inserted
));
4572 /* If undo_list was Qt before, keep it that way.
4573 Otherwise start with an empty undo_list. */
4574 bset_undo_list (current_buffer
, EQ (old_undo
, Qt
) ? Qt
: Qnil
);
4576 unbind_to (count1
, Qnil
);
4580 && current_buffer
->modtime
.tv_nsec
== NONEXISTENT_MODTIME_NSECS
)
4582 /* If visiting nonexistent file, return nil. */
4583 report_file_errno ("Opening input file", orig_filename
, save_errno
);
4586 /* We made a lot of deletions and insertions above, so invalidate
4587 the newline cache for the entire region of the inserted
4589 if (current_buffer
->base_buffer
&& current_buffer
->base_buffer
->newline_cache
)
4590 invalidate_region_cache (current_buffer
->base_buffer
,
4591 current_buffer
->base_buffer
->newline_cache
,
4592 PT
- BEG
, Z
- PT
- inserted
);
4593 else if (current_buffer
->newline_cache
)
4594 invalidate_region_cache (current_buffer
,
4595 current_buffer
->newline_cache
,
4596 PT
- BEG
, Z
- PT
- inserted
);
4599 Fsignal (Qquit
, Qnil
);
4601 /* Retval needs to be dealt with in all cases consistently. */
4603 val
= list2 (orig_filename
, make_number (inserted
));
4605 RETURN_UNGCPRO (unbind_to (count
, val
));
4608 static Lisp_Object
build_annotations (Lisp_Object
, Lisp_Object
);
4611 build_annotations_unwind (Lisp_Object arg
)
4613 Vwrite_region_annotation_buffers
= arg
;
4616 /* Decide the coding-system to encode the data with. */
4619 choose_write_coding_system (Lisp_Object start
, Lisp_Object end
, Lisp_Object filename
,
4620 Lisp_Object append
, Lisp_Object visit
, Lisp_Object lockname
,
4621 struct coding_system
*coding
)
4624 Lisp_Object eol_parent
= Qnil
;
4627 && NILP (Fstring_equal (BVAR (current_buffer
, filename
),
4628 BVAR (current_buffer
, auto_save_file_name
))))
4633 else if (!NILP (Vcoding_system_for_write
))
4635 val
= Vcoding_system_for_write
;
4636 if (coding_system_require_warning
4637 && !NILP (Ffboundp (Vselect_safe_coding_system_function
)))
4638 /* Confirm that VAL can surely encode the current region. */
4639 val
= call5 (Vselect_safe_coding_system_function
,
4640 start
, end
, list2 (Qt
, val
),
4645 /* If the variable `buffer-file-coding-system' is set locally,
4646 it means that the file was read with some kind of code
4647 conversion or the variable is explicitly set by users. We
4648 had better write it out with the same coding system even if
4649 `enable-multibyte-characters' is nil.
4651 If it is not set locally, we anyway have to convert EOL
4652 format if the default value of `buffer-file-coding-system'
4653 tells that it is not Unix-like (LF only) format. */
4654 bool using_default_coding
= 0;
4655 bool force_raw_text
= 0;
4657 val
= BVAR (current_buffer
, buffer_file_coding_system
);
4659 || NILP (Flocal_variable_p (Qbuffer_file_coding_system
, Qnil
)))
4662 if (NILP (BVAR (current_buffer
, enable_multibyte_characters
)))
4668 /* Check file-coding-system-alist. */
4669 Lisp_Object args
[7], coding_systems
;
4671 args
[0] = Qwrite_region
; args
[1] = start
; args
[2] = end
;
4672 args
[3] = filename
; args
[4] = append
; args
[5] = visit
;
4674 coding_systems
= Ffind_operation_coding_system (7, args
);
4675 if (CONSP (coding_systems
) && !NILP (XCDR (coding_systems
)))
4676 val
= XCDR (coding_systems
);
4681 /* If we still have not decided a coding system, use the
4682 default value of buffer-file-coding-system. */
4683 val
= BVAR (current_buffer
, buffer_file_coding_system
);
4684 using_default_coding
= 1;
4687 if (! NILP (val
) && ! force_raw_text
)
4689 Lisp_Object spec
, attrs
;
4691 CHECK_CODING_SYSTEM_GET_SPEC (val
, spec
);
4692 attrs
= AREF (spec
, 0);
4693 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
4698 && !NILP (Ffboundp (Vselect_safe_coding_system_function
)))
4699 /* Confirm that VAL can surely encode the current region. */
4700 val
= call5 (Vselect_safe_coding_system_function
,
4701 start
, end
, val
, Qnil
, filename
);
4703 /* If the decided coding-system doesn't specify end-of-line
4704 format, we use that of
4705 `default-buffer-file-coding-system'. */
4706 if (! using_default_coding
4707 && ! NILP (BVAR (&buffer_defaults
, buffer_file_coding_system
)))
4708 val
= (coding_inherit_eol_type
4709 (val
, BVAR (&buffer_defaults
, buffer_file_coding_system
)));
4711 /* If we decide not to encode text, use `raw-text' or one of its
4714 val
= raw_text_coding_system (val
);
4717 val
= coding_inherit_eol_type (val
, eol_parent
);
4718 setup_coding_system (val
, coding
);
4720 if (!STRINGP (start
) && !NILP (BVAR (current_buffer
, selective_display
)))
4721 coding
->mode
|= CODING_MODE_SELECTIVE_DISPLAY
;
4725 DEFUN ("write-region", Fwrite_region
, Swrite_region
, 3, 7,
4726 "r\nFWrite region to file: \ni\ni\ni\np",
4727 doc
: /* Write current region into specified file.
4728 When called from a program, requires three arguments:
4729 START, END and FILENAME. START and END are normally buffer positions
4730 specifying the part of the buffer to write.
4731 If START is nil, that means to use the entire buffer contents.
4732 If START is a string, then output that string to the file
4733 instead of any buffer contents; END is ignored.
4735 Optional fourth argument APPEND if non-nil means
4736 append to existing file contents (if any). If it is a number,
4737 seek to that offset in the file before writing.
4738 Optional fifth argument VISIT, if t or a string, means
4739 set the last-save-file-modtime of buffer to this file's modtime
4740 and mark buffer not modified.
4741 If VISIT is a string, it is a second file name;
4742 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4743 VISIT is also the file name to lock and unlock for clash detection.
4744 If VISIT is neither t nor nil nor a string,
4745 that means do not display the \"Wrote file\" message.
4746 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4747 use for locking and unlocking, overriding FILENAME and VISIT.
4748 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4749 for an existing file with the same name. If MUSTBENEW is `excl',
4750 that means to get an error if the file already exists; never overwrite.
4751 If MUSTBENEW is neither nil nor `excl', that means ask for
4752 confirmation before overwriting, but do go ahead and overwrite the file
4753 if the user confirms.
4755 This does code conversion according to the value of
4756 `coding-system-for-write', `buffer-file-coding-system', or
4757 `file-coding-system-alist', and sets the variable
4758 `last-coding-system-used' to the coding system actually used.
4760 This calls `write-region-annotate-functions' at the start, and
4761 `write-region-post-annotation-function' at the end. */)
4762 (Lisp_Object start
, Lisp_Object end
, Lisp_Object filename
, Lisp_Object append
,
4763 Lisp_Object visit
, Lisp_Object lockname
, Lisp_Object mustbenew
)
4765 return write_region (start
, end
, filename
, append
, visit
, lockname
, mustbenew
,
4769 /* Like Fwrite_region, except that if DESC is nonnegative, it is a file
4770 descriptor for FILENAME, so do not open or close FILENAME. */
4773 write_region (Lisp_Object start
, Lisp_Object end
, Lisp_Object filename
,
4774 Lisp_Object append
, Lisp_Object visit
, Lisp_Object lockname
,
4775 Lisp_Object mustbenew
, int desc
)
4779 off_t offset
IF_LINT (= 0);
4780 bool open_and_close_file
= desc
< 0;
4785 struct timespec modtime
;
4786 ptrdiff_t count
= SPECPDL_INDEX ();
4787 ptrdiff_t count1
IF_LINT (= 0);
4788 Lisp_Object handler
;
4789 Lisp_Object visit_file
;
4790 Lisp_Object annotations
;
4791 Lisp_Object encoded_filename
;
4792 bool visiting
= (EQ (visit
, Qt
) || STRINGP (visit
));
4793 bool quietly
= !NILP (visit
);
4794 bool file_locked
= 0;
4795 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
4796 struct buffer
*given_buffer
;
4797 struct coding_system coding
;
4799 if (current_buffer
->base_buffer
&& visiting
)
4800 error ("Cannot do file visiting in an indirect buffer");
4802 if (!NILP (start
) && !STRINGP (start
))
4803 validate_region (&start
, &end
);
4806 GCPRO5 (start
, filename
, visit
, visit_file
, lockname
);
4808 filename
= Fexpand_file_name (filename
, Qnil
);
4810 if (!NILP (mustbenew
) && !EQ (mustbenew
, Qexcl
))
4811 barf_or_query_if_file_exists (filename
, false, "overwrite", true, true);
4813 if (STRINGP (visit
))
4814 visit_file
= Fexpand_file_name (visit
, Qnil
);
4816 visit_file
= filename
;
4818 if (NILP (lockname
))
4819 lockname
= visit_file
;
4823 /* If the file name has special constructs in it,
4824 call the corresponding file handler. */
4825 handler
= Ffind_file_name_handler (filename
, Qwrite_region
);
4826 /* If FILENAME has no handler, see if VISIT has one. */
4827 if (NILP (handler
) && STRINGP (visit
))
4828 handler
= Ffind_file_name_handler (visit
, Qwrite_region
);
4830 if (!NILP (handler
))
4833 val
= call6 (handler
, Qwrite_region
, start
, end
,
4834 filename
, append
, visit
);
4838 SAVE_MODIFF
= MODIFF
;
4839 XSETFASTINT (BVAR (current_buffer
, save_length
), Z
- BEG
);
4840 bset_filename (current_buffer
, visit_file
);
4846 record_unwind_protect (save_restriction_restore
, save_restriction_save ());
4848 /* Special kludge to simplify auto-saving. */
4851 /* Do it later, so write-region-annotate-function can work differently
4852 if we save "the buffer" vs "a region".
4853 This is useful in tar-mode. --Stef
4854 XSETFASTINT (start, BEG);
4855 XSETFASTINT (end, Z); */
4859 record_unwind_protect (build_annotations_unwind
,
4860 Vwrite_region_annotation_buffers
);
4861 Vwrite_region_annotation_buffers
= list1 (Fcurrent_buffer ());
4863 given_buffer
= current_buffer
;
4865 if (!STRINGP (start
))
4867 annotations
= build_annotations (start
, end
);
4869 if (current_buffer
!= given_buffer
)
4871 XSETFASTINT (start
, BEGV
);
4872 XSETFASTINT (end
, ZV
);
4878 XSETFASTINT (start
, BEGV
);
4879 XSETFASTINT (end
, ZV
);
4884 GCPRO5 (start
, filename
, annotations
, visit_file
, lockname
);
4886 /* Decide the coding-system to encode the data with.
4887 We used to make this choice before calling build_annotations, but that
4888 leads to problems when a write-annotate-function takes care of
4889 unsavable chars (as was the case with X-Symbol). */
4890 Vlast_coding_system_used
4891 = choose_write_coding_system (start
, end
, filename
,
4892 append
, visit
, lockname
, &coding
);
4894 if (open_and_close_file
&& !auto_saving
)
4896 lock_file (lockname
);
4900 encoded_filename
= ENCODE_FILE (filename
);
4901 fn
= SSDATA (encoded_filename
);
4902 open_flags
= O_WRONLY
| O_BINARY
| O_CREAT
;
4903 open_flags
|= EQ (mustbenew
, Qexcl
) ? O_EXCL
: !NILP (append
) ? 0 : O_TRUNC
;
4904 if (NUMBERP (append
))
4905 offset
= file_offset (append
);
4906 else if (!NILP (append
))
4907 open_flags
|= O_APPEND
;
4909 mode
= S_IREAD
| S_IWRITE
;
4911 mode
= auto_saving
? auto_save_mode_bits
: 0666;
4914 if (open_and_close_file
)
4916 desc
= emacs_open (fn
, open_flags
, mode
);
4919 int open_errno
= errno
;
4921 unlock_file (lockname
);
4923 report_file_errno ("Opening output file", filename
, open_errno
);
4926 count1
= SPECPDL_INDEX ();
4927 record_unwind_protect_int (close_file_unwind
, desc
);
4930 if (NUMBERP (append
))
4932 off_t ret
= lseek (desc
, offset
, SEEK_SET
);
4935 int lseek_errno
= errno
;
4937 unlock_file (lockname
);
4939 report_file_errno ("Lseek error", filename
, lseek_errno
);
4947 if (STRINGP (start
))
4948 ok
= a_write (desc
, start
, 0, SCHARS (start
), &annotations
, &coding
);
4949 else if (XINT (start
) != XINT (end
))
4950 ok
= a_write (desc
, Qnil
, XINT (start
), XINT (end
) - XINT (start
),
4951 &annotations
, &coding
);
4954 /* If file was empty, still need to write the annotations. */
4955 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
4956 ok
= a_write (desc
, Qnil
, XINT (end
), 0, &annotations
, &coding
);
4960 if (ok
&& CODING_REQUIRE_FLUSHING (&coding
)
4961 && !(coding
.mode
& CODING_MODE_LAST_BLOCK
))
4963 /* We have to flush out a data. */
4964 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
4965 ok
= e_write (desc
, Qnil
, 1, 1, &coding
);
4971 /* fsync is not crucial for temporary files. Nor for auto-save
4972 files, since they might lose some work anyway. */
4973 if (open_and_close_file
&& !auto_saving
&& !write_region_inhibit_fsync
)
4975 /* Transfer data and metadata to disk, retrying if interrupted.
4976 fsync can report a write failure here, e.g., due to disk full
4977 under NFS. But ignore EINVAL, which means fsync is not
4978 supported on this file. */
4979 while (fsync (desc
) != 0)
4982 if (errno
!= EINVAL
)
4983 ok
= 0, save_errno
= errno
;
4988 modtime
= invalid_timespec ();
4991 if (fstat (desc
, &st
) == 0)
4992 modtime
= get_stat_mtime (&st
);
4994 ok
= 0, save_errno
= errno
;
4997 if (open_and_close_file
)
4999 /* NFS can report a write failure now. */
5000 if (emacs_close (desc
) < 0)
5001 ok
= 0, save_errno
= errno
;
5003 /* Discard the unwind protect for close_file_unwind. */
5004 specpdl_ptr
= specpdl
+ count1
;
5007 /* Some file systems have a bug where st_mtime is not updated
5008 properly after a write. For example, CIFS might not see the
5009 st_mtime change until after the file is opened again.
5011 Attempt to detect this file system bug, and update MODTIME to the
5012 newer st_mtime if the bug appears to be present. This introduces
5013 a race condition, so to avoid most instances of the race condition
5014 on non-buggy file systems, skip this check if the most recently
5015 encountered non-buggy file system was the current file system.
5017 A race condition can occur if some other process modifies the
5018 file between the fstat above and the fstat below, but the race is
5019 unlikely and a similar race between the last write and the fstat
5020 above cannot possibly be closed anyway. */
5022 if (timespec_valid_p (modtime
)
5023 && ! (valid_timestamp_file_system
&& st
.st_dev
== timestamp_file_system
))
5025 int desc1
= emacs_open (fn
, O_WRONLY
| O_BINARY
, 0);
5029 if (fstat (desc1
, &st1
) == 0
5030 && st
.st_dev
== st1
.st_dev
&& st
.st_ino
== st1
.st_ino
)
5032 /* Use the heuristic if it appears to be valid. With neither
5033 O_EXCL nor O_TRUNC, if Emacs happened to write nothing to the
5034 file, the time stamp won't change. Also, some non-POSIX
5035 systems don't update an empty file's time stamp when
5036 truncating it. Finally, file systems with 100 ns or worse
5037 resolution sometimes seem to have bugs: on a system with ns
5038 resolution, checking ns % 100 incorrectly avoids the heuristic
5039 1% of the time, but the problem should be temporary as we will
5040 try again on the next time stamp. */
5042 = ((open_flags
& (O_EXCL
| O_TRUNC
)) != 0
5044 && modtime
.tv_nsec
% 100 != 0);
5046 struct timespec modtime1
= get_stat_mtime (&st1
);
5048 && timespec_cmp (modtime
, modtime1
) == 0
5049 && st
.st_size
== st1
.st_size
)
5051 timestamp_file_system
= st
.st_dev
;
5052 valid_timestamp_file_system
= 1;
5056 st
.st_size
= st1
.st_size
;
5060 emacs_close (desc1
);
5064 /* Call write-region-post-annotation-function. */
5065 while (CONSP (Vwrite_region_annotation_buffers
))
5067 Lisp_Object buf
= XCAR (Vwrite_region_annotation_buffers
);
5068 if (!NILP (Fbuffer_live_p (buf
)))
5071 if (FUNCTIONP (Vwrite_region_post_annotation_function
))
5072 call0 (Vwrite_region_post_annotation_function
);
5074 Vwrite_region_annotation_buffers
5075 = XCDR (Vwrite_region_annotation_buffers
);
5078 unbind_to (count
, Qnil
);
5081 unlock_file (lockname
);
5083 /* Do this before reporting IO error
5084 to avoid a "file has changed on disk" warning on
5085 next attempt to save. */
5086 if (timespec_valid_p (modtime
))
5088 current_buffer
->modtime
= modtime
;
5089 current_buffer
->modtime_size
= st
.st_size
;
5093 report_file_errno ("Write error", filename
, save_errno
);
5097 SAVE_MODIFF
= MODIFF
;
5098 XSETFASTINT (BVAR (current_buffer
, save_length
), Z
- BEG
);
5099 bset_filename (current_buffer
, visit_file
);
5100 update_mode_lines
= 14;
5105 && ! NILP (Fstring_equal (BVAR (current_buffer
, filename
),
5106 BVAR (current_buffer
, auto_save_file_name
))))
5107 SAVE_MODIFF
= MODIFF
;
5113 message_with_string ((NUMBERP (append
)
5123 DEFUN ("car-less-than-car", Fcar_less_than_car
, Scar_less_than_car
, 2, 2, 0,
5124 doc
: /* Return t if (car A) is numerically less than (car B). */)
5125 (Lisp_Object a
, Lisp_Object b
)
5127 Lisp_Object args
[2];
5130 return Flss (2, args
);
5133 /* Build the complete list of annotations appropriate for writing out
5134 the text between START and END, by calling all the functions in
5135 write-region-annotate-functions and merging the lists they return.
5136 If one of these functions switches to a different buffer, we assume
5137 that buffer contains altered text. Therefore, the caller must
5138 make sure to restore the current buffer in all cases,
5139 as save-excursion would do. */
5142 build_annotations (Lisp_Object start
, Lisp_Object end
)
5144 Lisp_Object annotations
;
5146 struct gcpro gcpro1
, gcpro2
;
5147 Lisp_Object original_buffer
;
5149 bool used_global
= 0;
5151 XSETBUFFER (original_buffer
, current_buffer
);
5154 p
= Vwrite_region_annotate_functions
;
5155 GCPRO2 (annotations
, p
);
5158 struct buffer
*given_buffer
= current_buffer
;
5159 if (EQ (Qt
, XCAR (p
)) && !used_global
)
5160 { /* Use the global value of the hook. */
5163 arg
[0] = Fdefault_value (Qwrite_region_annotate_functions
);
5165 p
= Fappend (2, arg
);
5168 Vwrite_region_annotations_so_far
= annotations
;
5169 res
= call2 (XCAR (p
), start
, end
);
5170 /* If the function makes a different buffer current,
5171 assume that means this buffer contains altered text to be output.
5172 Reset START and END from the buffer bounds
5173 and discard all previous annotations because they should have
5174 been dealt with by this function. */
5175 if (current_buffer
!= given_buffer
)
5177 Vwrite_region_annotation_buffers
5178 = Fcons (Fcurrent_buffer (),
5179 Vwrite_region_annotation_buffers
);
5180 XSETFASTINT (start
, BEGV
);
5181 XSETFASTINT (end
, ZV
);
5184 Flength (res
); /* Check basic validity of return value */
5185 annotations
= merge (annotations
, res
, Qcar_less_than_car
);
5189 /* Now do the same for annotation functions implied by the file-format */
5190 if (auto_saving
&& (!EQ (BVAR (current_buffer
, auto_save_file_format
), Qt
)))
5191 p
= BVAR (current_buffer
, auto_save_file_format
);
5193 p
= BVAR (current_buffer
, file_format
);
5194 for (i
= 0; CONSP (p
); p
= XCDR (p
), ++i
)
5196 struct buffer
*given_buffer
= current_buffer
;
5198 Vwrite_region_annotations_so_far
= annotations
;
5200 /* Value is either a list of annotations or nil if the function
5201 has written annotations to a temporary buffer, which is now
5203 res
= call5 (Qformat_annotate_function
, XCAR (p
), start
, end
,
5204 original_buffer
, make_number (i
));
5205 if (current_buffer
!= given_buffer
)
5207 XSETFASTINT (start
, BEGV
);
5208 XSETFASTINT (end
, ZV
);
5213 annotations
= merge (annotations
, res
, Qcar_less_than_car
);
5221 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
5222 If STRING is nil, POS is the character position in the current buffer.
5223 Intersperse with them the annotations from *ANNOT
5224 which fall within the range of POS to POS + NCHARS,
5225 each at its appropriate position.
5227 We modify *ANNOT by discarding elements as we use them up.
5229 Return true if successful. */
5232 a_write (int desc
, Lisp_Object string
, ptrdiff_t pos
,
5233 ptrdiff_t nchars
, Lisp_Object
*annot
,
5234 struct coding_system
*coding
)
5238 ptrdiff_t lastpos
= pos
+ nchars
;
5240 while (NILP (*annot
) || CONSP (*annot
))
5242 tem
= Fcar_safe (Fcar (*annot
));
5245 nextpos
= XFASTINT (tem
);
5247 /* If there are no more annotations in this range,
5248 output the rest of the range all at once. */
5249 if (! (nextpos
>= pos
&& nextpos
<= lastpos
))
5250 return e_write (desc
, string
, pos
, lastpos
, coding
);
5252 /* Output buffer text up to the next annotation's position. */
5255 if (!e_write (desc
, string
, pos
, nextpos
, coding
))
5259 /* Output the annotation. */
5260 tem
= Fcdr (Fcar (*annot
));
5263 if (!e_write (desc
, tem
, 0, SCHARS (tem
), coding
))
5266 *annot
= Fcdr (*annot
);
5271 /* Maximum number of characters that the next
5272 function encodes per one loop iteration. */
5274 enum { E_WRITE_MAX
= 8 * 1024 * 1024 };
5276 /* Write text in the range START and END into descriptor DESC,
5277 encoding them with coding system CODING. If STRING is nil, START
5278 and END are character positions of the current buffer, else they
5279 are indexes to the string STRING. Return true if successful. */
5282 e_write (int desc
, Lisp_Object string
, ptrdiff_t start
, ptrdiff_t end
,
5283 struct coding_system
*coding
)
5285 if (STRINGP (string
))
5288 end
= SCHARS (string
);
5291 /* We used to have a code for handling selective display here. But,
5292 now it is handled within encode_coding. */
5296 if (STRINGP (string
))
5298 coding
->src_multibyte
= SCHARS (string
) < SBYTES (string
);
5299 if (CODING_REQUIRE_ENCODING (coding
))
5301 ptrdiff_t nchars
= min (end
- start
, E_WRITE_MAX
);
5303 /* Avoid creating huge Lisp string in encode_coding_object. */
5304 if (nchars
== E_WRITE_MAX
)
5305 coding
->raw_destination
= 1;
5307 encode_coding_object
5308 (coding
, string
, start
, string_char_to_byte (string
, start
),
5309 start
+ nchars
, string_char_to_byte (string
, start
+ nchars
),
5314 coding
->dst_object
= string
;
5315 coding
->consumed_char
= SCHARS (string
);
5316 coding
->produced
= SBYTES (string
);
5321 ptrdiff_t start_byte
= CHAR_TO_BYTE (start
);
5322 ptrdiff_t end_byte
= CHAR_TO_BYTE (end
);
5324 coding
->src_multibyte
= (end
- start
) < (end_byte
- start_byte
);
5325 if (CODING_REQUIRE_ENCODING (coding
))
5327 ptrdiff_t nchars
= min (end
- start
, E_WRITE_MAX
);
5330 if (nchars
== E_WRITE_MAX
)
5331 coding
->raw_destination
= 1;
5333 encode_coding_object
5334 (coding
, Fcurrent_buffer (), start
, start_byte
,
5335 start
+ nchars
, CHAR_TO_BYTE (start
+ nchars
), Qt
);
5339 coding
->dst_object
= Qnil
;
5340 coding
->dst_pos_byte
= start_byte
;
5341 if (start
>= GPT
|| end
<= GPT
)
5343 coding
->consumed_char
= end
- start
;
5344 coding
->produced
= end_byte
- start_byte
;
5348 coding
->consumed_char
= GPT
- start
;
5349 coding
->produced
= GPT_BYTE
- start_byte
;
5354 if (coding
->produced
> 0)
5356 char *buf
= (coding
->raw_destination
? (char *) coding
->destination
5357 : (STRINGP (coding
->dst_object
)
5358 ? SSDATA (coding
->dst_object
)
5359 : (char *) BYTE_POS_ADDR (coding
->dst_pos_byte
)));
5360 coding
->produced
-= emacs_write_sig (desc
, buf
, coding
->produced
);
5362 if (coding
->raw_destination
)
5364 /* We're responsible for freeing this, see
5365 encode_coding_object to check why. */
5366 xfree (coding
->destination
);
5367 coding
->raw_destination
= 0;
5369 if (coding
->produced
)
5372 start
+= coding
->consumed_char
;
5378 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime
,
5379 Sverify_visited_file_modtime
, 0, 1, 0,
5380 doc
: /* Return t if last mod time of BUF's visited file matches what BUF records.
5381 This means that the file has not been changed since it was visited or saved.
5382 If BUF is omitted or nil, it defaults to the current buffer.
5383 See Info node `(elisp)Modification Time' for more details. */)
5386 struct buffer
*b
= decode_buffer (buf
);
5388 Lisp_Object handler
;
5389 Lisp_Object filename
;
5390 struct timespec mtime
;
5392 if (!STRINGP (BVAR (b
, filename
))) return Qt
;
5393 if (b
->modtime
.tv_nsec
== UNKNOWN_MODTIME_NSECS
) return Qt
;
5395 /* If the file name has special constructs in it,
5396 call the corresponding file handler. */
5397 handler
= Ffind_file_name_handler (BVAR (b
, filename
),
5398 Qverify_visited_file_modtime
);
5399 if (!NILP (handler
))
5400 return call2 (handler
, Qverify_visited_file_modtime
, buf
);
5402 filename
= ENCODE_FILE (BVAR (b
, filename
));
5404 mtime
= (stat (SSDATA (filename
), &st
) == 0
5405 ? get_stat_mtime (&st
)
5406 : time_error_value (errno
));
5407 if (timespec_cmp (mtime
, b
->modtime
) == 0
5408 && (b
->modtime_size
< 0
5409 || st
.st_size
== b
->modtime_size
))
5414 DEFUN ("visited-file-modtime", Fvisited_file_modtime
,
5415 Svisited_file_modtime
, 0, 0, 0,
5416 doc
: /* Return the current buffer's recorded visited file modification time.
5417 The value is a list of the form (HIGH LOW USEC PSEC), like the time values that
5418 `file-attributes' returns. If the current buffer has no recorded file
5419 modification time, this function returns 0. If the visited file
5420 doesn't exist, return -1.
5421 See Info node `(elisp)Modification Time' for more details. */)
5424 int ns
= current_buffer
->modtime
.tv_nsec
;
5426 return make_number (UNKNOWN_MODTIME_NSECS
- ns
);
5427 return make_lisp_time (current_buffer
->modtime
);
5430 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime
,
5431 Sset_visited_file_modtime
, 0, 1, 0,
5432 doc
: /* Update buffer's recorded modification time from the visited file's time.
5433 Useful if the buffer was not read from the file normally
5434 or if the file itself has been changed for some known benign reason.
5435 An argument specifies the modification time value to use
5436 \(instead of that of the visited file), in the form of a list
5437 \(HIGH LOW USEC PSEC) or an integer flag as returned by
5438 `visited-file-modtime'. */)
5439 (Lisp_Object time_flag
)
5441 if (!NILP (time_flag
))
5443 struct timespec mtime
;
5444 if (INTEGERP (time_flag
))
5446 CHECK_RANGED_INTEGER (time_flag
, -1, 0);
5447 mtime
= make_timespec (0, UNKNOWN_MODTIME_NSECS
- XINT (time_flag
));
5450 mtime
= lisp_time_argument (time_flag
);
5452 current_buffer
->modtime
= mtime
;
5453 current_buffer
->modtime_size
= -1;
5457 register Lisp_Object filename
;
5459 Lisp_Object handler
;
5461 filename
= Fexpand_file_name (BVAR (current_buffer
, filename
), Qnil
);
5463 /* If the file name has special constructs in it,
5464 call the corresponding file handler. */
5465 handler
= Ffind_file_name_handler (filename
, Qset_visited_file_modtime
);
5466 if (!NILP (handler
))
5467 /* The handler can find the file name the same way we did. */
5468 return call2 (handler
, Qset_visited_file_modtime
, Qnil
);
5470 filename
= ENCODE_FILE (filename
);
5472 if (stat (SSDATA (filename
), &st
) >= 0)
5474 current_buffer
->modtime
= get_stat_mtime (&st
);
5475 current_buffer
->modtime_size
= st
.st_size
;
5483 auto_save_error (Lisp_Object error_val
)
5487 struct gcpro gcpro1
;
5489 auto_save_error_occurred
= 1;
5491 ring_bell (XFRAME (selected_frame
));
5493 AUTO_STRING (format
, "Auto-saving %s: %s");
5494 msg
= Fformat (3, ((Lisp_Object
[])
5495 {format
, BVAR (current_buffer
, name
),
5496 Ferror_message_string (error_val
)}));
5499 for (i
= 0; i
< 3; ++i
)
5504 message3_nolog (msg
);
5505 Fsleep_for (make_number (1), Qnil
);
5518 auto_save_mode_bits
= 0666;
5520 /* Get visited file's mode to become the auto save file's mode. */
5521 if (! NILP (BVAR (current_buffer
, filename
)))
5523 if (stat (SSDATA (BVAR (current_buffer
, filename
)), &st
) >= 0)
5524 /* But make sure we can overwrite it later! */
5525 auto_save_mode_bits
= (st
.st_mode
| 0600) & 0777;
5526 else if (modes
= Ffile_modes (BVAR (current_buffer
, filename
)),
5528 /* Remote files don't cooperate with stat. */
5529 auto_save_mode_bits
= (XINT (modes
) | 0600) & 0777;
5533 Fwrite_region (Qnil
, Qnil
, BVAR (current_buffer
, auto_save_file_name
), Qnil
,
5534 NILP (Vauto_save_visited_file_name
) ? Qlambda
: Qt
,
5538 struct auto_save_unwind
5545 do_auto_save_unwind (void *arg
)
5547 struct auto_save_unwind
*p
= arg
;
5548 FILE *stream
= p
->stream
;
5549 minibuffer_auto_raise
= p
->auto_raise
;
5560 do_auto_save_make_dir (Lisp_Object dir
)
5564 auto_saving_dir_umask
= 077;
5565 result
= call2 (Qmake_directory
, dir
, Qt
);
5566 auto_saving_dir_umask
= 0;
5571 do_auto_save_eh (Lisp_Object ignore
)
5573 auto_saving_dir_umask
= 0;
5577 DEFUN ("do-auto-save", Fdo_auto_save
, Sdo_auto_save
, 0, 2, "",
5578 doc
: /* Auto-save all buffers that need it.
5579 This is all buffers that have auto-saving enabled
5580 and are changed since last auto-saved.
5581 Auto-saving writes the buffer into a file
5582 so that your editing is not lost if the system crashes.
5583 This file is not the file you visited; that changes only when you save.
5584 Normally we run the normal hook `auto-save-hook' before saving.
5586 A non-nil NO-MESSAGE argument means do not print any message if successful.
5587 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5588 (Lisp_Object no_message
, Lisp_Object current_only
)
5590 struct buffer
*old
= current_buffer
, *b
;
5591 Lisp_Object tail
, buf
, hook
;
5592 bool auto_saved
= 0;
5593 int do_handled_files
;
5595 FILE *stream
= NULL
;
5596 ptrdiff_t count
= SPECPDL_INDEX ();
5597 bool orig_minibuffer_auto_raise
= minibuffer_auto_raise
;
5598 bool old_message_p
= 0;
5599 struct auto_save_unwind auto_save_unwind
;
5600 struct gcpro gcpro1
, gcpro2
;
5602 if (max_specpdl_size
< specpdl_size
+ 40)
5603 max_specpdl_size
= specpdl_size
+ 40;
5608 if (NILP (no_message
))
5610 old_message_p
= push_message ();
5611 record_unwind_protect_void (pop_message_unwind
);
5614 /* Ordinarily don't quit within this function,
5615 but don't make it impossible to quit (in case we get hung in I/O). */
5619 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5620 point to non-strings reached from Vbuffer_alist. */
5622 hook
= intern ("auto-save-hook");
5623 safe_run_hooks (hook
);
5625 if (STRINGP (Vauto_save_list_file_name
))
5627 Lisp_Object listfile
;
5629 listfile
= Fexpand_file_name (Vauto_save_list_file_name
, Qnil
);
5631 /* Don't try to create the directory when shutting down Emacs,
5632 because creating the directory might signal an error, and
5633 that would leave Emacs in a strange state. */
5634 if (!NILP (Vrun_hooks
))
5638 GCPRO2 (dir
, listfile
);
5639 dir
= Ffile_name_directory (listfile
);
5640 if (NILP (Ffile_directory_p (dir
)))
5641 internal_condition_case_1 (do_auto_save_make_dir
,
5647 stream
= emacs_fopen (SSDATA (listfile
), "w");
5650 auto_save_unwind
.stream
= stream
;
5651 auto_save_unwind
.auto_raise
= minibuffer_auto_raise
;
5652 record_unwind_protect_ptr (do_auto_save_unwind
, &auto_save_unwind
);
5653 minibuffer_auto_raise
= 0;
5655 auto_save_error_occurred
= 0;
5657 /* On first pass, save all files that don't have handlers.
5658 On second pass, save all files that do have handlers.
5660 If Emacs is crashing, the handlers may tweak what is causing
5661 Emacs to crash in the first place, and it would be a shame if
5662 Emacs failed to autosave perfectly ordinary files because it
5663 couldn't handle some ange-ftp'd file. */
5665 for (do_handled_files
= 0; do_handled_files
< 2; do_handled_files
++)
5666 FOR_EACH_LIVE_BUFFER (tail
, buf
)
5670 /* Record all the buffers that have auto save mode
5671 in the special file that lists them. For each of these buffers,
5672 Record visited name (if any) and auto save name. */
5673 if (STRINGP (BVAR (b
, auto_save_file_name
))
5674 && stream
!= NULL
&& do_handled_files
== 0)
5677 if (!NILP (BVAR (b
, filename
)))
5679 fwrite (SDATA (BVAR (b
, filename
)), 1,
5680 SBYTES (BVAR (b
, filename
)), stream
);
5682 putc ('\n', stream
);
5683 fwrite (SDATA (BVAR (b
, auto_save_file_name
)), 1,
5684 SBYTES (BVAR (b
, auto_save_file_name
)), stream
);
5685 putc ('\n', stream
);
5689 if (!NILP (current_only
)
5690 && b
!= current_buffer
)
5693 /* Don't auto-save indirect buffers.
5694 The base buffer takes care of it. */
5698 /* Check for auto save enabled
5699 and file changed since last auto save
5700 and file changed since last real save. */
5701 if (STRINGP (BVAR (b
, auto_save_file_name
))
5702 && BUF_SAVE_MODIFF (b
) < BUF_MODIFF (b
)
5703 && BUF_AUTOSAVE_MODIFF (b
) < BUF_MODIFF (b
)
5704 /* -1 means we've turned off autosaving for a while--see below. */
5705 && XINT (BVAR (b
, save_length
)) >= 0
5706 && (do_handled_files
5707 || NILP (Ffind_file_name_handler (BVAR (b
, auto_save_file_name
),
5710 struct timespec before_time
= current_timespec ();
5711 struct timespec after_time
;
5713 /* If we had a failure, don't try again for 20 minutes. */
5714 if (b
->auto_save_failure_time
> 0
5715 && before_time
.tv_sec
- b
->auto_save_failure_time
< 1200)
5718 set_buffer_internal (b
);
5719 if (NILP (Vauto_save_include_big_deletions
)
5720 && (XFASTINT (BVAR (b
, save_length
)) * 10
5721 > (BUF_Z (b
) - BUF_BEG (b
)) * 13)
5722 /* A short file is likely to change a large fraction;
5723 spare the user annoying messages. */
5724 && XFASTINT (BVAR (b
, save_length
)) > 5000
5725 /* These messages are frequent and annoying for `*mail*'. */
5726 && !EQ (BVAR (b
, filename
), Qnil
)
5727 && NILP (no_message
))
5729 /* It has shrunk too much; turn off auto-saving here. */
5730 minibuffer_auto_raise
= orig_minibuffer_auto_raise
;
5731 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5733 minibuffer_auto_raise
= 0;
5734 /* Turn off auto-saving until there's a real save,
5735 and prevent any more warnings. */
5736 XSETINT (BVAR (b
, save_length
), -1);
5737 Fsleep_for (make_number (1), Qnil
);
5740 if (!auto_saved
&& NILP (no_message
))
5741 message1 ("Auto-saving...");
5742 internal_condition_case (auto_save_1
, Qt
, auto_save_error
);
5744 BUF_AUTOSAVE_MODIFF (b
) = BUF_MODIFF (b
);
5745 XSETFASTINT (BVAR (current_buffer
, save_length
), Z
- BEG
);
5746 set_buffer_internal (old
);
5748 after_time
= current_timespec ();
5750 /* If auto-save took more than 60 seconds,
5751 assume it was an NFS failure that got a timeout. */
5752 if (after_time
.tv_sec
- before_time
.tv_sec
> 60)
5753 b
->auto_save_failure_time
= after_time
.tv_sec
;
5757 /* Prevent another auto save till enough input events come in. */
5758 record_auto_save ();
5760 if (auto_saved
&& NILP (no_message
))
5764 /* If we are going to restore an old message,
5765 give time to read ours. */
5766 sit_for (make_number (1), 0, 0);
5769 else if (!auto_save_error_occurred
)
5770 /* Don't overwrite the error message if an error occurred.
5771 If we displayed a message and then restored a state
5772 with no message, leave a "done" message on the screen. */
5773 message1 ("Auto-saving...done");
5778 /* This restores the message-stack status. */
5779 unbind_to (count
, Qnil
);
5783 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved
,
5784 Sset_buffer_auto_saved
, 0, 0, 0,
5785 doc
: /* Mark current buffer as auto-saved with its current text.
5786 No auto-save file will be written until the buffer changes again. */)
5789 /* FIXME: This should not be called in indirect buffers, since
5790 they're not autosaved. */
5791 BUF_AUTOSAVE_MODIFF (current_buffer
) = MODIFF
;
5792 XSETFASTINT (BVAR (current_buffer
, save_length
), Z
- BEG
);
5793 current_buffer
->auto_save_failure_time
= 0;
5797 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure
,
5798 Sclear_buffer_auto_save_failure
, 0, 0, 0,
5799 doc
: /* Clear any record of a recent auto-save failure in the current buffer. */)
5802 current_buffer
->auto_save_failure_time
= 0;
5806 DEFUN ("recent-auto-save-p", Frecent_auto_save_p
, Srecent_auto_save_p
,
5808 doc
: /* Return t if current buffer has been auto-saved recently.
5809 More precisely, if it has been auto-saved since last read from or saved
5810 in the visited file. If the buffer has no visited file,
5811 then any auto-save counts as "recent". */)
5814 /* FIXME: maybe we should return nil for indirect buffers since
5815 they're never autosaved. */
5816 return (SAVE_MODIFF
< BUF_AUTOSAVE_MODIFF (current_buffer
) ? Qt
: Qnil
);
5819 /* Reading and completing file names */
5821 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p
,
5822 Snext_read_file_uses_dialog_p
, 0, 0, 0,
5823 doc
: /* Return t if a call to `read-file-name' will use a dialog.
5824 The return value is only relevant for a call to `read-file-name' that happens
5825 before any other event (mouse or keypress) is handled. */)
5828 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK) \
5829 || defined (HAVE_NS)
5830 if ((NILP (last_nonmenu_event
) || CONSP (last_nonmenu_event
))
5833 && window_system_available (SELECTED_FRAME ()))
5842 realmask
= umask (0);
5845 valid_timestamp_file_system
= 0;
5847 /* fsync can be a significant performance hit. Often it doesn't
5848 suffice to make the file-save operation survive a crash. For
5849 batch scripts, which are typically part of larger shell commands
5850 that don't fsync other files, its effect on performance can be
5851 significant so its utility is particularly questionable.
5852 Hence, for now by default fsync is used only when interactive.
5854 For more on why fsync often fails to work on today's hardware, see:
5855 Zheng M et al. Understanding the robustness of SSDs under power fault.
5856 11th USENIX Conf. on File and Storage Technologies, 2013 (FAST '13), 271-84
5857 http://www.usenix.org/system/files/conference/fast13/fast13-final80.pdf
5859 For more on why fsync does not suffice even if it works properly, see:
5860 Roche X. Necessary step(s) to synchronize filename operations on disk.
5861 Austin Group Defect 672, 2013-03-19
5862 http://austingroupbugs.net/view.php?id=672 */
5863 write_region_inhibit_fsync
= noninteractive
;
5867 syms_of_fileio (void)
5869 DEFSYM (Qoperations
, "operations");
5870 DEFSYM (Qexpand_file_name
, "expand-file-name");
5871 DEFSYM (Qsubstitute_in_file_name
, "substitute-in-file-name");
5872 DEFSYM (Qdirectory_file_name
, "directory-file-name");
5873 DEFSYM (Qfile_name_directory
, "file-name-directory");
5874 DEFSYM (Qfile_name_nondirectory
, "file-name-nondirectory");
5875 DEFSYM (Qunhandled_file_name_directory
, "unhandled-file-name-directory");
5876 DEFSYM (Qfile_name_as_directory
, "file-name-as-directory");
5877 DEFSYM (Qcopy_file
, "copy-file");
5878 DEFSYM (Qmake_directory_internal
, "make-directory-internal");
5879 DEFSYM (Qmake_directory
, "make-directory");
5880 DEFSYM (Qdelete_directory_internal
, "delete-directory-internal");
5881 DEFSYM (Qdelete_file
, "delete-file");
5882 DEFSYM (Qrename_file
, "rename-file");
5883 DEFSYM (Qadd_name_to_file
, "add-name-to-file");
5884 DEFSYM (Qmake_symbolic_link
, "make-symbolic-link");
5885 DEFSYM (Qfile_exists_p
, "file-exists-p");
5886 DEFSYM (Qfile_executable_p
, "file-executable-p");
5887 DEFSYM (Qfile_readable_p
, "file-readable-p");
5888 DEFSYM (Qfile_writable_p
, "file-writable-p");
5889 DEFSYM (Qfile_symlink_p
, "file-symlink-p");
5890 DEFSYM (Qaccess_file
, "access-file");
5891 DEFSYM (Qfile_directory_p
, "file-directory-p");
5892 DEFSYM (Qfile_regular_p
, "file-regular-p");
5893 DEFSYM (Qfile_accessible_directory_p
, "file-accessible-directory-p");
5894 DEFSYM (Qfile_modes
, "file-modes");
5895 DEFSYM (Qset_file_modes
, "set-file-modes");
5896 DEFSYM (Qset_file_times
, "set-file-times");
5897 DEFSYM (Qfile_selinux_context
, "file-selinux-context");
5898 DEFSYM (Qset_file_selinux_context
, "set-file-selinux-context");
5899 DEFSYM (Qfile_acl
, "file-acl");
5900 DEFSYM (Qset_file_acl
, "set-file-acl");
5901 DEFSYM (Qfile_newer_than_file_p
, "file-newer-than-file-p");
5902 DEFSYM (Qinsert_file_contents
, "insert-file-contents");
5903 DEFSYM (Qwrite_region
, "write-region");
5904 DEFSYM (Qverify_visited_file_modtime
, "verify-visited-file-modtime");
5905 DEFSYM (Qset_visited_file_modtime
, "set-visited-file-modtime");
5906 DEFSYM (Qauto_save_coding
, "auto-save-coding");
5908 DEFSYM (Qfile_name_history
, "file-name-history");
5909 Fset (Qfile_name_history
, Qnil
);
5911 DEFSYM (Qfile_error
, "file-error");
5912 DEFSYM (Qfile_already_exists
, "file-already-exists");
5913 DEFSYM (Qfile_date_error
, "file-date-error");
5914 DEFSYM (Qfile_notify_error
, "file-notify-error");
5915 DEFSYM (Qexcl
, "excl");
5917 DEFVAR_LISP ("file-name-coding-system", Vfile_name_coding_system
,
5918 doc
: /* Coding system for encoding file names.
5919 If it is nil, `default-file-name-coding-system' (which see) is used.
5921 On MS-Windows, the value of this variable is largely ignored if
5922 \`w32-unicode-filenames' (which see) is non-nil. Emacs on Windows
5923 behaves as if file names were encoded in `utf-8'. */);
5924 Vfile_name_coding_system
= Qnil
;
5926 DEFVAR_LISP ("default-file-name-coding-system",
5927 Vdefault_file_name_coding_system
,
5928 doc
: /* Default coding system for encoding file names.
5929 This variable is used only when `file-name-coding-system' is nil.
5931 This variable is set/changed by the command `set-language-environment'.
5932 User should not set this variable manually,
5933 instead use `file-name-coding-system' to get a constant encoding
5934 of file names regardless of the current language environment.
5936 On MS-Windows, the value of this variable is largely ignored if
5937 \`w32-unicode-filenames' (which see) is non-nil. Emacs on Windows
5938 behaves as if file names were encoded in `utf-8'. */);
5939 Vdefault_file_name_coding_system
= Qnil
;
5941 DEFSYM (Qformat_decode
, "format-decode");
5942 DEFSYM (Qformat_annotate_function
, "format-annotate-function");
5943 DEFSYM (Qafter_insert_file_set_coding
, "after-insert-file-set-coding");
5944 DEFSYM (Qcar_less_than_car
, "car-less-than-car");
5946 Fput (Qfile_error
, Qerror_conditions
,
5947 Fpurecopy (list2 (Qfile_error
, Qerror
)));
5948 Fput (Qfile_error
, Qerror_message
,
5949 build_pure_c_string ("File error"));
5951 Fput (Qfile_already_exists
, Qerror_conditions
,
5952 Fpurecopy (list3 (Qfile_already_exists
, Qfile_error
, Qerror
)));
5953 Fput (Qfile_already_exists
, Qerror_message
,
5954 build_pure_c_string ("File already exists"));
5956 Fput (Qfile_date_error
, Qerror_conditions
,
5957 Fpurecopy (list3 (Qfile_date_error
, Qfile_error
, Qerror
)));
5958 Fput (Qfile_date_error
, Qerror_message
,
5959 build_pure_c_string ("Cannot set file date"));
5961 Fput (Qfile_notify_error
, Qerror_conditions
,
5962 Fpurecopy (list3 (Qfile_notify_error
, Qfile_error
, Qerror
)));
5963 Fput (Qfile_notify_error
, Qerror_message
,
5964 build_pure_c_string ("File notification error"));
5966 DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist
,
5967 doc
: /* Alist of elements (REGEXP . HANDLER) for file names handled specially.
5968 If a file name matches REGEXP, all I/O on that file is done by calling
5969 HANDLER. If a file name matches more than one handler, the handler
5970 whose match starts last in the file name gets precedence. The
5971 function `find-file-name-handler' checks this list for a handler for
5974 HANDLER should be a function. The first argument given to it is the
5975 name of the I/O primitive to be handled; the remaining arguments are
5976 the arguments that were passed to that primitive. For example, if you
5977 do (file-exists-p FILENAME) and FILENAME is handled by HANDLER, then
5978 HANDLER is called like this:
5980 (funcall HANDLER 'file-exists-p FILENAME)
5982 Note that HANDLER must be able to handle all I/O primitives; if it has
5983 nothing special to do for a primitive, it should reinvoke the
5984 primitive to handle the operation \"the usual way\".
5985 See Info node `(elisp)Magic File Names' for more details. */);
5986 Vfile_name_handler_alist
= Qnil
;
5988 DEFVAR_LISP ("set-auto-coding-function",
5989 Vset_auto_coding_function
,
5990 doc
: /* If non-nil, a function to call to decide a coding system of file.
5991 Two arguments are passed to this function: the file name
5992 and the length of a file contents following the point.
5993 This function should return a coding system to decode the file contents.
5994 It should check the file name against `auto-coding-alist'.
5995 If no coding system is decided, it should check a coding system
5996 specified in the heading lines with the format:
5997 -*- ... coding: CODING-SYSTEM; ... -*-
5998 or local variable spec of the tailing lines with `coding:' tag. */);
5999 Vset_auto_coding_function
= Qnil
;
6001 DEFVAR_LISP ("after-insert-file-functions", Vafter_insert_file_functions
,
6002 doc
: /* A list of functions to be called at the end of `insert-file-contents'.
6003 Each is passed one argument, the number of characters inserted,
6004 with point at the start of the inserted text. Each function
6005 should leave point the same, and return the new character count.
6006 If `insert-file-contents' is intercepted by a handler from
6007 `file-name-handler-alist', that handler is responsible for calling the
6008 functions in `after-insert-file-functions' if appropriate. */);
6009 Vafter_insert_file_functions
= Qnil
;
6011 DEFVAR_LISP ("write-region-annotate-functions", Vwrite_region_annotate_functions
,
6012 doc
: /* A list of functions to be called at the start of `write-region'.
6013 Each is passed two arguments, START and END as for `write-region'.
6014 These are usually two numbers but not always; see the documentation
6015 for `write-region'. The function should return a list of pairs
6016 of the form (POSITION . STRING), consisting of strings to be effectively
6017 inserted at the specified positions of the file being written (1 means to
6018 insert before the first byte written). The POSITIONs must be sorted into
6021 If there are several annotation functions, the lists returned by these
6022 functions are merged destructively. As each annotation function runs,
6023 the variable `write-region-annotations-so-far' contains a list of all
6024 annotations returned by previous annotation functions.
6026 An annotation function can return with a different buffer current.
6027 Doing so removes the annotations returned by previous functions, and
6028 resets START and END to `point-min' and `point-max' of the new buffer.
6030 After `write-region' completes, Emacs calls the function stored in
6031 `write-region-post-annotation-function', once for each buffer that was
6032 current when building the annotations (i.e., at least once), with that
6033 buffer current. */);
6034 Vwrite_region_annotate_functions
= Qnil
;
6035 DEFSYM (Qwrite_region_annotate_functions
, "write-region-annotate-functions");
6037 DEFVAR_LISP ("write-region-post-annotation-function",
6038 Vwrite_region_post_annotation_function
,
6039 doc
: /* Function to call after `write-region' completes.
6040 The function is called with no arguments. If one or more of the
6041 annotation functions in `write-region-annotate-functions' changed the
6042 current buffer, the function stored in this variable is called for
6043 each of those additional buffers as well, in addition to the original
6044 buffer. The relevant buffer is current during each function call. */);
6045 Vwrite_region_post_annotation_function
= Qnil
;
6046 staticpro (&Vwrite_region_annotation_buffers
);
6048 DEFVAR_LISP ("write-region-annotations-so-far",
6049 Vwrite_region_annotations_so_far
,
6050 doc
: /* When an annotation function is called, this holds the previous annotations.
6051 These are the annotations made by other annotation functions
6052 that were already called. See also `write-region-annotate-functions'. */);
6053 Vwrite_region_annotations_so_far
= Qnil
;
6055 DEFVAR_LISP ("inhibit-file-name-handlers", Vinhibit_file_name_handlers
,
6056 doc
: /* A list of file name handlers that temporarily should not be used.
6057 This applies only to the operation `inhibit-file-name-operation'. */);
6058 Vinhibit_file_name_handlers
= Qnil
;
6060 DEFVAR_LISP ("inhibit-file-name-operation", Vinhibit_file_name_operation
,
6061 doc
: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
6062 Vinhibit_file_name_operation
= Qnil
;
6064 DEFVAR_LISP ("auto-save-list-file-name", Vauto_save_list_file_name
,
6065 doc
: /* File name in which we write a list of all auto save file names.
6066 This variable is initialized automatically from `auto-save-list-file-prefix'
6067 shortly after Emacs reads your init file, if you have not yet given it
6068 a non-nil value. */);
6069 Vauto_save_list_file_name
= Qnil
;
6071 DEFVAR_LISP ("auto-save-visited-file-name", Vauto_save_visited_file_name
,
6072 doc
: /* Non-nil says auto-save a buffer in the file it is visiting, when practical.
6073 Normally auto-save files are written under other names. */);
6074 Vauto_save_visited_file_name
= Qnil
;
6076 DEFVAR_LISP ("auto-save-include-big-deletions", Vauto_save_include_big_deletions
,
6077 doc
: /* If non-nil, auto-save even if a large part of the text is deleted.
6078 If nil, deleting a substantial portion of the text disables auto-save
6079 in the buffer; this is the default behavior, because the auto-save
6080 file is usually more useful if it contains the deleted text. */);
6081 Vauto_save_include_big_deletions
= Qnil
;
6083 DEFVAR_BOOL ("write-region-inhibit-fsync", write_region_inhibit_fsync
,
6084 doc
: /* Non-nil means don't call fsync in `write-region'.
6085 This variable affects calls to `write-region' as well as save commands.
6086 Setting this to nil may avoid data loss if the system loses power or
6087 the operating system crashes. By default, it is non-nil in batch mode. */);
6088 write_region_inhibit_fsync
= 0; /* See also `init_fileio' above. */
6090 DEFVAR_BOOL ("delete-by-moving-to-trash", delete_by_moving_to_trash
,
6091 doc
: /* Specifies whether to use the system's trash can.
6092 When non-nil, certain file deletion commands use the function
6093 `move-file-to-trash' instead of deleting files outright.
6094 This includes interactive calls to `delete-file' and
6095 `delete-directory' and the Dired deletion commands. */);
6096 delete_by_moving_to_trash
= 0;
6097 Qdelete_by_moving_to_trash
= intern_c_string ("delete-by-moving-to-trash");
6099 DEFSYM (Qmove_file_to_trash
, "move-file-to-trash");
6100 DEFSYM (Qcopy_directory
, "copy-directory");
6101 DEFSYM (Qdelete_directory
, "delete-directory");
6102 DEFSYM (Qsubstitute_env_in_file_name
, "substitute-env-in-file-name");
6103 DEFSYM (Qget_buffer_window_list
, "get-buffer-window-list");
6105 defsubr (&Sfind_file_name_handler
);
6106 defsubr (&Sfile_name_directory
);
6107 defsubr (&Sfile_name_nondirectory
);
6108 defsubr (&Sunhandled_file_name_directory
);
6109 defsubr (&Sfile_name_as_directory
);
6110 defsubr (&Sdirectory_file_name
);
6111 defsubr (&Smake_temp_name
);
6112 defsubr (&Sexpand_file_name
);
6113 defsubr (&Ssubstitute_in_file_name
);
6114 defsubr (&Scopy_file
);
6115 defsubr (&Smake_directory_internal
);
6116 defsubr (&Sdelete_directory_internal
);
6117 defsubr (&Sdelete_file
);
6118 defsubr (&Srename_file
);
6119 defsubr (&Sadd_name_to_file
);
6120 defsubr (&Smake_symbolic_link
);
6121 defsubr (&Sfile_name_absolute_p
);
6122 defsubr (&Sfile_exists_p
);
6123 defsubr (&Sfile_executable_p
);
6124 defsubr (&Sfile_readable_p
);
6125 defsubr (&Sfile_writable_p
);
6126 defsubr (&Saccess_file
);
6127 defsubr (&Sfile_symlink_p
);
6128 defsubr (&Sfile_directory_p
);
6129 defsubr (&Sfile_accessible_directory_p
);
6130 defsubr (&Sfile_regular_p
);
6131 defsubr (&Sfile_modes
);
6132 defsubr (&Sset_file_modes
);
6133 defsubr (&Sset_file_times
);
6134 defsubr (&Sfile_selinux_context
);
6135 defsubr (&Sfile_acl
);
6136 defsubr (&Sset_file_acl
);
6137 defsubr (&Sset_file_selinux_context
);
6138 defsubr (&Sset_default_file_modes
);
6139 defsubr (&Sdefault_file_modes
);
6140 defsubr (&Sfile_newer_than_file_p
);
6141 defsubr (&Sinsert_file_contents
);
6142 defsubr (&Swrite_region
);
6143 defsubr (&Scar_less_than_car
);
6144 defsubr (&Sverify_visited_file_modtime
);
6145 defsubr (&Svisited_file_modtime
);
6146 defsubr (&Sset_visited_file_modtime
);
6147 defsubr (&Sdo_auto_save
);
6148 defsubr (&Sset_buffer_auto_saved
);
6149 defsubr (&Sclear_buffer_auto_save_failure
);
6150 defsubr (&Srecent_auto_save_p
);
6152 defsubr (&Snext_read_file_uses_dialog_p
);
6155 defsubr (&Sunix_sync
);