1 /* File IO for GNU Emacs.
3 Copyright (C) 1985-1988, 1993-2011 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>
29 #if !defined (S_ISLNK) && defined (S_IFLNK)
30 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
33 #if !defined (S_ISFIFO) && defined (S_IFIFO)
34 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
37 #if !defined (S_ISREG) && defined (S_IFREG)
38 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
48 #ifdef HAVE_LIBSELINUX
49 #include <selinux/selinux.h>
50 #include <selinux/context.h>
54 #include "intervals.h"
56 #include "character.h"
59 #include "blockinput.h"
61 #include "dispextern.h"
67 #endif /* not WINDOWSNT */
71 #include <sys/param.h>
76 /* On Windows, drive letters must be alphabetic - on DOS, the Netware
77 redirector allows the six letters between 'Z' and 'a' as well. */
79 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
82 #define IS_DRIVE(x) isalpha (x)
84 /* Need to lower-case the drive letter, or else expanded
85 filenames will sometimes compare inequal, because
86 `expand-file-name' doesn't always down-case the drive letter. */
87 #define DRIVE_LETTER(x) (tolower (x))
102 #ifndef FILE_SYSTEM_CASE
103 #define FILE_SYSTEM_CASE(filename) (filename)
106 /* Nonzero during writing of auto-save files */
109 /* Set by auto_save_1 to mode of original file so Fwrite_region will create
110 a new file with the same mode as the original */
111 int auto_save_mode_bits
;
113 /* Set by auto_save_1 if an error occurred during the last auto-save. */
114 int auto_save_error_occurred
;
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 Lisp_Object Qauto_save_coding
;
123 /* Property name of a file name handler,
124 which gives a list of operations it handles.. */
125 Lisp_Object Qoperations
;
127 /* Lisp functions for translating file formats */
128 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 Lisp_Object Qafter_insert_file_set_coding
;
134 Lisp_Object Qwrite_region_annotate_functions
;
135 /* Each time an annotation function changes the buffer, the new buffer
137 Lisp_Object Vwrite_region_annotation_buffers
;
142 Lisp_Object Qdelete_by_moving_to_trash
;
144 /* Lisp function for moving files to trash. */
145 Lisp_Object Qmove_file_to_trash
;
147 /* Lisp function for recursively copying directories. */
148 Lisp_Object Qcopy_directory
;
150 /* Lisp function for recursively deleting directories. */
151 Lisp_Object Qdelete_directory
;
156 Lisp_Object Qfile_error
, Qfile_already_exists
, Qfile_date_error
;
158 Lisp_Object Qfile_name_history
;
160 Lisp_Object Qcar_less_than_car
;
162 static int a_write (int, Lisp_Object
, int, int,
163 Lisp_Object
*, struct coding_system
*);
164 static int e_write (int, Lisp_Object
, int, int, struct coding_system
*);
168 report_file_error (const char *string
, Lisp_Object data
)
170 Lisp_Object errstring
;
174 synchronize_system_messages_locale ();
175 str
= strerror (errorno
);
176 errstring
= code_convert_string_norecord (make_unibyte_string (str
,
178 Vlocale_coding_system
, 0);
184 xsignal (Qfile_already_exists
, Fcons (errstring
, data
));
187 /* System error messages are capitalized. Downcase the initial
188 unless it is followed by a slash. (The slash case caters to
189 error messages that begin with "I/O" or, in German, "E/A".) */
190 if (STRING_MULTIBYTE (errstring
)
191 && ! EQ (Faref (errstring
, make_number (1)), make_number ('/')))
195 str
= SSDATA (errstring
);
196 c
= STRING_CHAR (str
);
197 Faset (errstring
, make_number (0), make_number (DOWNCASE (c
)));
200 xsignal (Qfile_error
,
201 Fcons (build_string (string
), Fcons (errstring
, data
)));
206 close_file_unwind (Lisp_Object fd
)
208 emacs_close (XFASTINT (fd
));
212 /* Restore point, having saved it as a marker. */
215 restore_point_unwind (Lisp_Object location
)
217 Fgoto_char (location
);
218 Fset_marker (location
, Qnil
, Qnil
);
223 Lisp_Object Qexpand_file_name
;
224 Lisp_Object Qsubstitute_in_file_name
;
225 Lisp_Object Qdirectory_file_name
;
226 Lisp_Object Qfile_name_directory
;
227 Lisp_Object Qfile_name_nondirectory
;
228 Lisp_Object Qunhandled_file_name_directory
;
229 Lisp_Object Qfile_name_as_directory
;
230 Lisp_Object Qcopy_file
;
231 Lisp_Object Qmake_directory_internal
;
232 Lisp_Object Qmake_directory
;
233 Lisp_Object Qdelete_directory_internal
;
234 Lisp_Object Qdelete_file
;
235 Lisp_Object Qrename_file
;
236 Lisp_Object Qadd_name_to_file
;
237 Lisp_Object Qmake_symbolic_link
;
238 Lisp_Object Qfile_exists_p
;
239 Lisp_Object Qfile_executable_p
;
240 Lisp_Object Qfile_readable_p
;
241 Lisp_Object Qfile_writable_p
;
242 Lisp_Object Qfile_symlink_p
;
243 Lisp_Object Qaccess_file
;
244 Lisp_Object Qfile_directory_p
;
245 Lisp_Object Qfile_regular_p
;
246 Lisp_Object Qfile_accessible_directory_p
;
247 Lisp_Object Qfile_modes
;
248 Lisp_Object Qset_file_modes
;
249 Lisp_Object Qset_file_times
;
250 Lisp_Object Qfile_selinux_context
;
251 Lisp_Object Qset_file_selinux_context
;
252 Lisp_Object Qfile_newer_than_file_p
;
253 Lisp_Object Qinsert_file_contents
;
254 Lisp_Object Qwrite_region
;
255 Lisp_Object Qverify_visited_file_modtime
;
256 Lisp_Object Qset_visited_file_modtime
;
258 DEFUN ("find-file-name-handler", Ffind_file_name_handler
, Sfind_file_name_handler
, 2, 2, 0,
259 doc
: /* Return FILENAME's handler function for OPERATION, if it has one.
260 Otherwise, return nil.
261 A file name is handled if one of the regular expressions in
262 `file-name-handler-alist' matches it.
264 If OPERATION equals `inhibit-file-name-operation', then we ignore
265 any handlers that are members of `inhibit-file-name-handlers',
266 but we still do run any other handlers. This lets handlers
267 use the standard functions without calling themselves recursively. */)
268 (Lisp_Object filename
, Lisp_Object operation
)
270 /* This function must not munge the match data. */
271 Lisp_Object chain
, inhibited_handlers
, result
;
275 CHECK_STRING (filename
);
277 if (EQ (operation
, Vinhibit_file_name_operation
))
278 inhibited_handlers
= Vinhibit_file_name_handlers
;
280 inhibited_handlers
= Qnil
;
282 for (chain
= Vfile_name_handler_alist
; CONSP (chain
);
283 chain
= XCDR (chain
))
289 Lisp_Object string
= XCAR (elt
);
291 Lisp_Object handler
= XCDR (elt
);
292 Lisp_Object operations
= Qnil
;
294 if (SYMBOLP (handler
))
295 operations
= Fget (handler
, Qoperations
);
298 && (match_pos
= fast_string_match (string
, filename
)) > pos
299 && (NILP (operations
) || ! NILP (Fmemq (operation
, operations
))))
303 handler
= XCDR (elt
);
304 tem
= Fmemq (handler
, inhibited_handlers
);
318 DEFUN ("file-name-directory", Ffile_name_directory
, Sfile_name_directory
,
320 doc
: /* Return the directory component in file name FILENAME.
321 Return nil if FILENAME does not include a directory.
322 Otherwise return a directory name.
323 Given a Unix syntax file name, returns a string ending in slash. */)
324 (Lisp_Object filename
)
327 register const unsigned char *beg
;
329 register unsigned char *beg
;
331 register const unsigned char *p
;
334 CHECK_STRING (filename
);
336 /* If the file name has special constructs in it,
337 call the corresponding file handler. */
338 handler
= Ffind_file_name_handler (filename
, Qfile_name_directory
);
340 return call2 (handler
, Qfile_name_directory
, filename
);
342 filename
= FILE_SYSTEM_CASE (filename
);
344 beg
= (unsigned char *) alloca (SBYTES (filename
) + 1);
345 memcpy (beg
, SDATA (filename
), SBYTES (filename
) + 1);
347 beg
= SDATA (filename
);
349 p
= beg
+ SBYTES (filename
);
351 while (p
!= beg
&& !IS_DIRECTORY_SEP (p
[-1])
353 /* only recognise drive specifier at the beginning */
355 /* handle the "/:d:foo" and "/:foo" cases correctly */
356 && ((p
== beg
+ 2 && !IS_DIRECTORY_SEP (*beg
))
357 || (p
== beg
+ 4 && IS_DIRECTORY_SEP (*beg
))))
364 /* Expansion of "c:" to drive and default directory. */
367 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
368 unsigned char *res
= alloca (MAXPATHLEN
+ 1);
369 unsigned char *r
= res
;
371 if (p
== beg
+ 4 && IS_DIRECTORY_SEP (*beg
) && beg
[1] == ':')
373 strncpy (res
, beg
, 2);
378 if (getdefdir (toupper (*beg
) - 'A' + 1, r
))
380 if (!IS_DIRECTORY_SEP (res
[strlen (res
) - 1]))
383 p
= beg
+ strlen (beg
);
386 dostounix_filename (beg
);
389 return make_specified_string (beg
, -1, p
- beg
, STRING_MULTIBYTE (filename
));
392 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory
,
393 Sfile_name_nondirectory
, 1, 1, 0,
394 doc
: /* Return file name FILENAME sans its directory.
395 For example, in a Unix-syntax file name,
396 this is everything after the last slash,
397 or the entire name if it contains no slash. */)
398 (Lisp_Object filename
)
400 register const unsigned char *beg
, *p
, *end
;
403 CHECK_STRING (filename
);
405 /* If the file name has special constructs in it,
406 call the corresponding file handler. */
407 handler
= Ffind_file_name_handler (filename
, Qfile_name_nondirectory
);
409 return call2 (handler
, Qfile_name_nondirectory
, filename
);
411 beg
= SDATA (filename
);
412 end
= p
= beg
+ SBYTES (filename
);
414 while (p
!= beg
&& !IS_DIRECTORY_SEP (p
[-1])
416 /* only recognise drive specifier at beginning */
418 /* handle the "/:d:foo" case correctly */
419 && (p
== beg
+ 2 || (p
== beg
+ 4 && IS_DIRECTORY_SEP (*beg
))))
424 return make_specified_string (p
, -1, end
- p
, STRING_MULTIBYTE (filename
));
427 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory
,
428 Sunhandled_file_name_directory
, 1, 1, 0,
429 doc
: /* Return a directly usable directory name somehow associated with FILENAME.
430 A `directly usable' directory name is one that may be used without the
431 intervention of any file handler.
432 If FILENAME is a directly usable file itself, return
433 \(file-name-directory FILENAME).
434 If FILENAME refers to a file which is not accessible from a local process,
435 then this should return nil.
436 The `call-process' and `start-process' functions use this function to
437 get a current directory to run processes in. */)
438 (Lisp_Object filename
)
442 /* If the file name has special constructs in it,
443 call the corresponding file handler. */
444 handler
= Ffind_file_name_handler (filename
, Qunhandled_file_name_directory
);
446 return call2 (handler
, Qunhandled_file_name_directory
, filename
);
448 return Ffile_name_directory (filename
);
453 file_name_as_directory (char *out
, char *in
)
455 int size
= strlen (in
) - 1;
467 /* For Unix syntax, Append a slash if necessary */
468 if (!IS_DIRECTORY_SEP (out
[size
]))
470 out
[size
+ 1] = DIRECTORY_SEP
;
471 out
[size
+ 2] = '\0';
474 dostounix_filename (out
);
479 DEFUN ("file-name-as-directory", Ffile_name_as_directory
,
480 Sfile_name_as_directory
, 1, 1, 0,
481 doc
: /* Return a string representing the file name FILE interpreted as a directory.
482 This operation exists because a directory is also a file, but its name as
483 a directory is different from its name as a file.
484 The result can be used as the value of `default-directory'
485 or passed as second argument to `expand-file-name'.
486 For a Unix-syntax file name, just appends a slash. */)
496 /* If the file name has special constructs in it,
497 call the corresponding file handler. */
498 handler
= Ffind_file_name_handler (file
, Qfile_name_as_directory
);
500 return call2 (handler
, Qfile_name_as_directory
, file
);
502 buf
= (char *) alloca (SBYTES (file
) + 10);
503 file_name_as_directory (buf
, SSDATA (file
));
504 return make_specified_string (buf
, -1, strlen (buf
),
505 STRING_MULTIBYTE (file
));
509 * Convert from directory name to filename.
510 * On UNIX, it's simple: just make sure there isn't a terminating /
512 * Value is nonzero if the string output is different from the input.
516 directory_file_name (char *src
, char *dst
)
522 /* Process as Unix format: just remove any final slash.
523 But leave "/" unchanged; do not change it to "". */
526 && IS_DIRECTORY_SEP (dst
[slen
- 1])
528 && !IS_ANY_SEP (dst
[slen
- 2])
533 dostounix_filename (dst
);
538 DEFUN ("directory-file-name", Fdirectory_file_name
, Sdirectory_file_name
,
540 doc
: /* Returns the file name of the directory named DIRECTORY.
541 This is the name of the file that holds the data for the directory DIRECTORY.
542 This operation exists because a directory is also a file, but its name as
543 a directory is different from its name as a file.
544 In Unix-syntax, this function just removes the final slash. */)
545 (Lisp_Object directory
)
550 CHECK_STRING (directory
);
552 if (NILP (directory
))
555 /* If the file name has special constructs in it,
556 call the corresponding file handler. */
557 handler
= Ffind_file_name_handler (directory
, Qdirectory_file_name
);
559 return call2 (handler
, Qdirectory_file_name
, directory
);
561 buf
= (char *) alloca (SBYTES (directory
) + 20);
562 directory_file_name (SSDATA (directory
), buf
);
563 return make_specified_string (buf
, -1, strlen (buf
),
564 STRING_MULTIBYTE (directory
));
567 static const char make_temp_name_tbl
[64] =
569 'A','B','C','D','E','F','G','H',
570 'I','J','K','L','M','N','O','P',
571 'Q','R','S','T','U','V','W','X',
572 'Y','Z','a','b','c','d','e','f',
573 'g','h','i','j','k','l','m','n',
574 'o','p','q','r','s','t','u','v',
575 'w','x','y','z','0','1','2','3',
576 '4','5','6','7','8','9','-','_'
579 static unsigned make_temp_name_count
, make_temp_name_count_initialized_p
;
581 /* Value is a temporary file name starting with PREFIX, a string.
583 The Emacs process number forms part of the result, so there is
584 no danger of generating a name being used by another process.
585 In addition, this function makes an attempt to choose a name
586 which has no existing file. To make this work, PREFIX should be
587 an absolute file name.
589 BASE64_P non-zero means add the pid as 3 characters in base64
590 encoding. In this case, 6 characters will be added to PREFIX to
591 form the file name. Otherwise, if Emacs is running on a system
592 with long file names, add the pid as a decimal number.
594 This function signals an error if no unique file name could be
598 make_temp_name (Lisp_Object prefix
, int base64_p
)
603 unsigned char *p
, *data
;
607 CHECK_STRING (prefix
);
609 /* VAL is created by adding 6 characters to PREFIX. The first
610 three are the PID of this process, in base 64, and the second
611 three are incremented if the file already exists. This ensures
612 262144 unique file names per PID per PREFIX. */
614 pid
= (int) getpid ();
618 pidbuf
[0] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
619 pidbuf
[1] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
620 pidbuf
[2] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
625 #ifdef HAVE_LONG_FILE_NAMES
626 sprintf (pidbuf
, "%d", pid
);
627 pidlen
= strlen (pidbuf
);
629 pidbuf
[0] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
630 pidbuf
[1] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
631 pidbuf
[2] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
636 len
= SBYTES (prefix
); clen
= SCHARS (prefix
);
637 val
= make_uninit_multibyte_string (clen
+ 3 + pidlen
, len
+ 3 + pidlen
);
638 if (!STRING_MULTIBYTE (prefix
))
639 STRING_SET_UNIBYTE (val
);
641 memcpy (data
, SDATA (prefix
), len
);
644 memcpy (p
, pidbuf
, pidlen
);
647 /* Here we try to minimize useless stat'ing when this function is
648 invoked many times successively with the same PREFIX. We achieve
649 this by initializing count to a random value, and incrementing it
652 We don't want make-temp-name to be called while dumping,
653 because then make_temp_name_count_initialized_p would get set
654 and then make_temp_name_count would not be set when Emacs starts. */
656 if (!make_temp_name_count_initialized_p
)
658 make_temp_name_count
= (unsigned) time (NULL
);
659 make_temp_name_count_initialized_p
= 1;
665 unsigned num
= make_temp_name_count
;
667 p
[0] = make_temp_name_tbl
[num
& 63], num
>>= 6;
668 p
[1] = make_temp_name_tbl
[num
& 63], num
>>= 6;
669 p
[2] = make_temp_name_tbl
[num
& 63], num
>>= 6;
671 /* Poor man's congruential RN generator. Replace with
672 ++make_temp_name_count for debugging. */
673 make_temp_name_count
+= 25229;
674 make_temp_name_count
%= 225307;
676 if (stat (data
, &ignored
) < 0)
678 /* We want to return only if errno is ENOENT. */
682 /* The error here is dubious, but there is little else we
683 can do. The alternatives are to return nil, which is
684 as bad as (and in many cases worse than) throwing the
685 error, or to ignore the error, which will likely result
686 in looping through 225307 stat's, which is not only
687 dog-slow, but also useless since eventually nil would
688 have to be returned anyway. */
689 report_file_error ("Cannot create temporary name for prefix",
690 Fcons (prefix
, Qnil
));
697 DEFUN ("make-temp-name", Fmake_temp_name
, Smake_temp_name
, 1, 1, 0,
698 doc
: /* Generate temporary file name (string) starting with PREFIX (a string).
699 The Emacs process number forms part of the result,
700 so there is no danger of generating a name being used by another process.
702 In addition, this function makes an attempt to choose a name
703 which has no existing file. To make this work,
704 PREFIX should be an absolute file name.
706 There is a race condition between calling `make-temp-name' and creating the
707 file which opens all kinds of security holes. For that reason, you should
708 probably use `make-temp-file' instead, except in three circumstances:
710 * If you are creating the file in the user's home directory.
711 * If you are creating a directory rather than an ordinary file.
712 * If you are taking special precautions as `make-temp-file' does. */)
715 return make_temp_name (prefix
, 0);
720 DEFUN ("expand-file-name", Fexpand_file_name
, Sexpand_file_name
, 1, 2, 0,
721 doc
: /* Convert filename NAME to absolute, and canonicalize it.
722 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
723 \(does not start with slash or tilde); if DEFAULT-DIRECTORY is nil or missing,
724 the current buffer's value of `default-directory' is used.
725 NAME should be a string that is a valid file name for the underlying
727 File name components that are `.' are removed, and
728 so are file name components followed by `..', along with the `..' itself;
729 note that these simplifications are done without checking the resulting
730 file names in the file system.
731 Multiple consecutive slashes are collapsed into a single slash,
732 except at the beginning of the file name when they are significant (e.g.,
733 UNC file names on MS-Windows.)
734 An initial `~/' expands to your home directory.
735 An initial `~USER/' expands to USER's home directory.
736 See also the function `substitute-in-file-name'.
738 For technical reasons, this function can return correct but
739 non-intuitive results for the root directory; for instance,
740 \(expand-file-name ".." "/") returns "/..". For this reason, use
741 \(directory-file-name (file-name-directory dirname)) to traverse a
742 filesystem tree, not (expand-file-name ".." dirname). */)
743 (Lisp_Object name
, Lisp_Object default_directory
)
745 /* These point to SDATA and need to be careful with string-relocation
746 during GC (via DECODE_FILE). */
747 unsigned char *nm
, *newdir
;
748 /* This should only point to alloca'd data. */
749 unsigned char *target
;
755 int collapse_newdir
= 1;
759 Lisp_Object handler
, result
;
765 /* If the file name has special constructs in it,
766 call the corresponding file handler. */
767 handler
= Ffind_file_name_handler (name
, Qexpand_file_name
);
769 return call3 (handler
, Qexpand_file_name
, name
, default_directory
);
771 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
772 if (NILP (default_directory
))
773 default_directory
= current_buffer
->directory
;
774 if (! STRINGP (default_directory
))
777 /* "/" is not considered a root directory on DOS_NT, so using "/"
778 here causes an infinite recursion in, e.g., the following:
780 (let (default-directory)
781 (expand-file-name "a"))
783 To avoid this, we set default_directory to the root of the
785 default_directory
= build_string (emacs_root_dir ());
787 default_directory
= build_string ("/");
791 if (!NILP (default_directory
))
793 handler
= Ffind_file_name_handler (default_directory
, Qexpand_file_name
);
795 return call3 (handler
, Qexpand_file_name
, name
, default_directory
);
799 unsigned char *o
= SDATA (default_directory
);
801 /* Make sure DEFAULT_DIRECTORY is properly expanded.
802 It would be better to do this down below where we actually use
803 default_directory. Unfortunately, calling Fexpand_file_name recursively
804 could invoke GC, and the strings might be relocated. This would
805 be annoying because we have pointers into strings lying around
806 that would need adjusting, and people would add new pointers to
807 the code and forget to adjust them, resulting in intermittent bugs.
808 Putting this call here avoids all that crud.
810 The EQ test avoids infinite recursion. */
811 if (! NILP (default_directory
) && !EQ (default_directory
, name
)
812 /* Save time in some common cases - as long as default_directory
813 is not relative, it can be canonicalized with name below (if it
814 is needed at all) without requiring it to be expanded now. */
816 /* Detect MSDOS file names with drive specifiers. */
817 && ! (IS_DRIVE (o
[0]) && IS_DEVICE_SEP (o
[1])
818 && IS_DIRECTORY_SEP (o
[2]))
820 /* Detect Windows file names in UNC format. */
821 && ! (IS_DIRECTORY_SEP (o
[0]) && IS_DIRECTORY_SEP (o
[1]))
823 #else /* not DOS_NT */
824 /* Detect Unix absolute file names (/... alone is not absolute on
826 && ! (IS_DIRECTORY_SEP (o
[0]))
827 #endif /* not DOS_NT */
833 default_directory
= Fexpand_file_name (default_directory
, Qnil
);
837 name
= FILE_SYSTEM_CASE (name
);
838 multibyte
= STRING_MULTIBYTE (name
);
839 if (multibyte
!= STRING_MULTIBYTE (default_directory
))
842 default_directory
= string_to_multibyte (default_directory
);
845 name
= string_to_multibyte (name
);
850 /* Make a local copy of nm[] to protect it from GC in DECODE_FILE below. */
851 nm
= (unsigned char *) alloca (SBYTES (name
) + 1);
852 memcpy (nm
, SDATA (name
), SBYTES (name
) + 1);
855 /* Note if special escape prefix is present, but remove for now. */
856 if (nm
[0] == '/' && nm
[1] == ':')
862 /* Find and remove drive specifier if present; this makes nm absolute
863 even if the rest of the name appears to be relative. Only look for
864 drive specifier at the beginning. */
865 if (IS_DRIVE (nm
[0]) && IS_DEVICE_SEP (nm
[1]))
872 /* If we see "c://somedir", we want to strip the first slash after the
873 colon when stripping the drive letter. Otherwise, this expands to
875 if (drive
&& IS_DIRECTORY_SEP (nm
[0]) && IS_DIRECTORY_SEP (nm
[1]))
878 /* Discard any previous drive specifier if nm is now in UNC format. */
879 if (IS_DIRECTORY_SEP (nm
[0]) && IS_DIRECTORY_SEP (nm
[1]))
883 #endif /* WINDOWSNT */
886 /* If nm is absolute, look for `/./' or `/../' or `//''sequences; if
887 none are found, we can probably return right away. We will avoid
888 allocating a new string if name is already fully expanded. */
890 IS_DIRECTORY_SEP (nm
[0])
892 && drive
&& !is_escaped
895 && (drive
|| IS_DIRECTORY_SEP (nm
[1])) && !is_escaped
899 /* If it turns out that the filename we want to return is just a
900 suffix of FILENAME, we don't need to go through and edit
901 things; we just need to construct a new string using data
902 starting at the middle of FILENAME. If we set lose to a
903 non-zero value, that means we've discovered that we can't do
906 unsigned char *p
= nm
;
910 /* Since we know the name is absolute, we can assume that each
911 element starts with a "/". */
913 /* "." and ".." are hairy. */
914 if (IS_DIRECTORY_SEP (p
[0])
916 && (IS_DIRECTORY_SEP (p
[2])
918 || (p
[2] == '.' && (IS_DIRECTORY_SEP (p
[3])
921 /* We want to replace multiple `/' in a row with a single
924 && IS_DIRECTORY_SEP (p
[0])
925 && IS_DIRECTORY_SEP (p
[1]))
932 /* Make sure directories are all separated with /, but
933 avoid allocation of a new string when not required. */
934 dostounix_filename (nm
);
936 if (IS_DIRECTORY_SEP (nm
[1]))
938 if (strcmp (nm
, SSDATA (name
)) != 0)
939 name
= make_specified_string (nm
, -1, strlen (nm
), multibyte
);
943 /* drive must be set, so this is okay */
944 if (strcmp (nm
- 2, SDATA (name
)) != 0)
948 name
= make_specified_string (nm
, -1, p
- nm
, multibyte
);
949 temp
[0] = DRIVE_LETTER (drive
);
950 name
= concat2 (build_string (temp
), name
);
953 #else /* not DOS_NT */
954 if (strcmp (nm
, SSDATA (name
)) == 0)
956 return make_specified_string (nm
, -1, strlen (nm
), multibyte
);
957 #endif /* not DOS_NT */
961 /* At this point, nm might or might not be an absolute file name. We
962 need to expand ~ or ~user if present, otherwise prefix nm with
963 default_directory if nm is not absolute, and finally collapse /./
964 and /foo/../ sequences.
966 We set newdir to be the appropriate prefix if one is needed:
967 - the relevant user directory if nm starts with ~ or ~user
968 - the specified drive's working dir (DOS/NT only) if nm does not
970 - the value of default_directory.
972 Note that these prefixes are not guaranteed to be absolute (except
973 for the working dir of a drive). Therefore, to ensure we always
974 return an absolute name, if the final prefix is not absolute we
975 append it to the current working directory. */
979 if (nm
[0] == '~') /* prefix ~ */
981 if (IS_DIRECTORY_SEP (nm
[1])
982 || nm
[1] == 0) /* ~ by itself */
986 if (!(newdir
= (unsigned char *) egetenv ("HOME")))
987 newdir
= (unsigned char *) "";
989 /* egetenv may return a unibyte string, which will bite us since
990 we expect the directory to be multibyte. */
991 tem
= build_string (newdir
);
992 if (!STRING_MULTIBYTE (tem
))
994 hdir
= DECODE_FILE (tem
);
995 newdir
= SDATA (hdir
);
1001 else /* ~user/filename */
1003 unsigned char *o
, *p
;
1004 for (p
= nm
; *p
&& (!IS_DIRECTORY_SEP (*p
)); p
++);
1005 o
= alloca (p
- nm
+ 1);
1006 memcpy (o
, nm
, p
- nm
);
1010 pw
= (struct passwd
*) getpwnam (o
+ 1);
1014 newdir
= (unsigned char *) pw
-> pw_dir
;
1017 collapse_newdir
= 0;
1021 /* If we don't find a user of that name, leave the name
1022 unchanged; don't move nm forward to p. */
1027 /* On DOS and Windows, nm is absolute if a drive name was specified;
1028 use the drive's current directory as the prefix if needed. */
1029 if (!newdir
&& drive
)
1031 /* Get default directory if needed to make nm absolute. */
1032 if (!IS_DIRECTORY_SEP (nm
[0]))
1034 newdir
= alloca (MAXPATHLEN
+ 1);
1035 if (!getdefdir (toupper (drive
) - 'A' + 1, newdir
))
1040 /* Either nm starts with /, or drive isn't mounted. */
1041 newdir
= alloca (4);
1042 newdir
[0] = DRIVE_LETTER (drive
);
1050 /* Finally, if no prefix has been specified and nm is not absolute,
1051 then it must be expanded relative to default_directory. */
1055 /* /... alone is not absolute on DOS and Windows. */
1056 && !IS_DIRECTORY_SEP (nm
[0])
1059 && !(IS_DIRECTORY_SEP (nm
[0]) && IS_DIRECTORY_SEP (nm
[1]))
1063 newdir
= SDATA (default_directory
);
1065 /* Note if special escape prefix is present, but remove for now. */
1066 if (newdir
[0] == '/' && newdir
[1] == ':')
1077 /* First ensure newdir is an absolute name. */
1079 /* Detect MSDOS file names with drive specifiers. */
1080 ! (IS_DRIVE (newdir
[0])
1081 && IS_DEVICE_SEP (newdir
[1]) && IS_DIRECTORY_SEP (newdir
[2]))
1083 /* Detect Windows file names in UNC format. */
1084 && ! (IS_DIRECTORY_SEP (newdir
[0]) && IS_DIRECTORY_SEP (newdir
[1]))
1088 /* Effectively, let newdir be (expand-file-name newdir cwd).
1089 Because of the admonition against calling expand-file-name
1090 when we have pointers into lisp strings, we accomplish this
1091 indirectly by prepending newdir to nm if necessary, and using
1092 cwd (or the wd of newdir's drive) as the new newdir. */
1094 if (IS_DRIVE (newdir
[0]) && IS_DEVICE_SEP (newdir
[1]))
1099 if (!IS_DIRECTORY_SEP (nm
[0]))
1101 char * tmp
= alloca (strlen (newdir
) + strlen (nm
) + 2);
1102 file_name_as_directory (tmp
, newdir
);
1106 newdir
= alloca (MAXPATHLEN
+ 1);
1109 if (!getdefdir (toupper (drive
) - 'A' + 1, newdir
))
1116 /* Strip off drive name from prefix, if present. */
1117 if (IS_DRIVE (newdir
[0]) && IS_DEVICE_SEP (newdir
[1]))
1123 /* Keep only a prefix from newdir if nm starts with slash
1124 (//server/share for UNC, nothing otherwise). */
1125 if (IS_DIRECTORY_SEP (nm
[0]) && collapse_newdir
)
1128 if (IS_DIRECTORY_SEP (newdir
[0]) && IS_DIRECTORY_SEP (newdir
[1]))
1131 newdir
= strcpy (alloca (strlen (newdir
) + 1), newdir
);
1133 while (*p
&& !IS_DIRECTORY_SEP (*p
)) p
++;
1135 while (*p
&& !IS_DIRECTORY_SEP (*p
)) p
++;
1147 /* Get rid of any slash at the end of newdir, unless newdir is
1148 just / or // (an incomplete UNC name). */
1149 length
= strlen (newdir
);
1150 if (length
> 1 && IS_DIRECTORY_SEP (newdir
[length
- 1])
1152 && !(length
== 2 && IS_DIRECTORY_SEP (newdir
[0]))
1156 unsigned char *temp
= (unsigned char *) alloca (length
);
1157 memcpy (temp
, newdir
, length
- 1);
1158 temp
[length
- 1] = 0;
1166 /* Now concatenate the directory and name to new space in the stack frame */
1167 tlen
+= strlen (nm
) + 1;
1169 /* Reserve space for drive specifier and escape prefix, since either
1170 or both may need to be inserted. (The Microsoft x86 compiler
1171 produces incorrect code if the following two lines are combined.) */
1172 target
= (unsigned char *) alloca (tlen
+ 4);
1174 #else /* not DOS_NT */
1175 target
= (unsigned char *) alloca (tlen
);
1176 #endif /* not DOS_NT */
1181 if (nm
[0] == 0 || IS_DIRECTORY_SEP (nm
[0]))
1184 /* If newdir is effectively "C:/", then the drive letter will have
1185 been stripped and newdir will be "/". Concatenating with an
1186 absolute directory in nm produces "//", which will then be
1187 incorrectly treated as a network share. Ignore newdir in
1188 this case (keeping the drive letter). */
1189 if (!(drive
&& nm
[0] && IS_DIRECTORY_SEP (newdir
[0])
1190 && newdir
[1] == '\0'))
1192 strcpy (target
, newdir
);
1195 file_name_as_directory (target
, newdir
);
1198 strcat (target
, nm
);
1200 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they
1203 unsigned char *p
= target
;
1204 unsigned char *o
= target
;
1208 if (!IS_DIRECTORY_SEP (*p
))
1212 else if (p
[1] == '.'
1213 && (IS_DIRECTORY_SEP (p
[2])
1216 /* If "/." is the entire filename, keep the "/". Otherwise,
1217 just delete the whole "/.". */
1218 if (o
== target
&& p
[2] == '\0')
1222 else if (p
[1] == '.' && p
[2] == '.'
1223 /* `/../' is the "superroot" on certain file systems.
1224 Turned off on DOS_NT systems because they have no
1225 "superroot" and because this causes us to produce
1226 file names like "d:/../foo" which fail file-related
1227 functions of the underlying OS. (To reproduce, try a
1228 long series of "../../" in default_directory, longer
1229 than the number of levels from the root.) */
1233 && (IS_DIRECTORY_SEP (p
[3]) || p
[3] == 0))
1236 unsigned char *prev_o
= o
;
1238 while (o
!= target
&& (--o
) && !IS_DIRECTORY_SEP (*o
))
1241 /* Don't go below server level in UNC filenames. */
1242 if (o
== target
+ 1 && IS_DIRECTORY_SEP (*o
)
1243 && IS_DIRECTORY_SEP (*target
))
1247 /* Keep initial / only if this is the whole name. */
1248 if (o
== target
&& IS_ANY_SEP (*o
) && p
[3] == 0)
1252 else if (p
> target
&& IS_DIRECTORY_SEP (p
[1]))
1253 /* Collapse multiple `/' in a row. */
1262 /* At last, set drive name. */
1264 /* Except for network file name. */
1265 if (!(IS_DIRECTORY_SEP (target
[0]) && IS_DIRECTORY_SEP (target
[1])))
1266 #endif /* WINDOWSNT */
1268 if (!drive
) abort ();
1270 target
[0] = DRIVE_LETTER (drive
);
1273 /* Reinsert the escape prefix if required. */
1280 dostounix_filename (target
);
1283 result
= make_specified_string (target
, -1, o
- target
, multibyte
);
1286 /* Again look to see if the file name has special constructs in it
1287 and perhaps call the corresponding file handler. This is needed
1288 for filenames such as "/foo/../user@host:/bar/../baz". Expanding
1289 the ".." component gives us "/user@host:/bar/../baz" which needs
1290 to be expanded again. */
1291 handler
= Ffind_file_name_handler (result
, Qexpand_file_name
);
1292 if (!NILP (handler
))
1293 return call3 (handler
, Qexpand_file_name
, result
, default_directory
);
1299 /* PLEASE DO NOT DELETE THIS COMMENTED-OUT VERSION!
1300 This is the old version of expand-file-name, before it was thoroughly
1301 rewritten for Emacs 10.31. We leave this version here commented-out,
1302 because the code is very complex and likely to have subtle bugs. If
1303 bugs _are_ found, it might be of interest to look at the old code and
1304 see what did it do in the relevant situation.
1306 Don't remove this code: it's true that it will be accessible
1307 from the repository, but a few years from deletion, people will
1308 forget it is there. */
1310 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1311 DEAFUN ("expand-file-name", Fexpand_file_name
, Sexpand_file_name
, 1, 2, 0,
1312 "Convert FILENAME to absolute, and canonicalize it.\n\
1313 Second arg DEFAULT is directory to start with if FILENAME is relative\n\
1314 \(does not start with slash); if DEFAULT is nil or missing,\n\
1315 the current buffer's value of default-directory is used.\n\
1316 Filenames containing `.' or `..' as components are simplified;\n\
1317 initial `~/' expands to your home directory.\n\
1318 See also the function `substitute-in-file-name'.")
1320 Lisp_Object name
, defalt
;
1324 register unsigned char *newdir
, *p
, *o
;
1326 unsigned char *target
;
1330 CHECK_STRING (name
);
1333 /* If nm is absolute, flush ...// and detect /./ and /../.
1334 If no /./ or /../ we can return right away. */
1341 if (p
[0] == '/' && p
[1] == '/'
1344 if (p
[0] == '/' && p
[1] == '~')
1345 nm
= p
+ 1, lose
= 1;
1346 if (p
[0] == '/' && p
[1] == '.'
1347 && (p
[2] == '/' || p
[2] == 0
1348 || (p
[2] == '.' && (p
[3] == '/' || p
[3] == 0))))
1354 if (nm
== SDATA (name
))
1356 return build_string (nm
);
1360 /* Now determine directory to start with and put it in NEWDIR */
1364 if (nm
[0] == '~') /* prefix ~ */
1365 if (nm
[1] == '/' || nm
[1] == 0)/* ~/filename */
1367 if (!(newdir
= (unsigned char *) egetenv ("HOME")))
1368 newdir
= (unsigned char *) "";
1371 else /* ~user/filename */
1373 /* Get past ~ to user */
1374 unsigned char *user
= nm
+ 1;
1375 /* Find end of name. */
1376 unsigned char *ptr
= (unsigned char *) strchr (user
, '/');
1377 int len
= ptr
? ptr
- user
: strlen (user
);
1378 /* Copy the user name into temp storage. */
1379 o
= (unsigned char *) alloca (len
+ 1);
1380 memcpy (o
, user
, len
);
1383 /* Look up the user name. */
1385 pw
= (struct passwd
*) getpwnam (o
+ 1);
1388 error ("\"%s\" isn't a registered user", o
+ 1);
1390 newdir
= (unsigned char *) pw
->pw_dir
;
1392 /* Discard the user name from NM. */
1396 if (nm
[0] != '/' && !newdir
)
1399 defalt
= current_buffer
->directory
;
1400 CHECK_STRING (defalt
);
1401 newdir
= SDATA (defalt
);
1404 /* Now concatenate the directory and name to new space in the stack frame */
1406 tlen
= (newdir
? strlen (newdir
) + 1 : 0) + strlen (nm
) + 1;
1407 target
= (unsigned char *) alloca (tlen
);
1412 if (nm
[0] == 0 || nm
[0] == '/')
1413 strcpy (target
, newdir
);
1415 file_name_as_directory (target
, newdir
);
1418 strcat (target
, nm
);
1420 /* Now canonicalize by removing /. and /foo/.. if they appear */
1431 else if (!strncmp (p
, "//", 2)
1437 else if (p
[0] == '/' && p
[1] == '.'
1438 && (p
[2] == '/' || p
[2] == 0))
1440 else if (!strncmp (p
, "/..", 3)
1441 /* `/../' is the "superroot" on certain file systems. */
1443 && (p
[3] == '/' || p
[3] == 0))
1445 while (o
!= target
&& *--o
!= '/')
1447 if (o
== target
&& *o
== '/')
1457 return make_string (target
, o
- target
);
1461 /* If /~ or // appears, discard everything through first slash. */
1463 file_name_absolute_p (const unsigned char *filename
)
1466 (IS_DIRECTORY_SEP (*filename
) || *filename
== '~'
1468 || (IS_DRIVE (*filename
) && IS_DEVICE_SEP (filename
[1])
1469 && IS_DIRECTORY_SEP (filename
[2]))
1474 static unsigned char *
1475 search_embedded_absfilename (unsigned char *nm
, unsigned char *endp
)
1477 unsigned char *p
, *s
;
1479 for (p
= nm
+ 1; p
< endp
; p
++)
1482 || IS_DIRECTORY_SEP (p
[-1]))
1483 && file_name_absolute_p (p
)
1484 #if defined (WINDOWSNT) || defined(CYGWIN)
1485 /* // at start of file name is meaningful in Apollo,
1486 WindowsNT and Cygwin systems. */
1487 && !(IS_DIRECTORY_SEP (p
[0]) && p
- 1 == nm
)
1488 #endif /* not (WINDOWSNT || CYGWIN) */
1491 for (s
= p
; *s
&& (!IS_DIRECTORY_SEP (*s
)); s
++);
1492 if (p
[0] == '~' && s
> p
+ 1) /* we've got "/~something/" */
1494 unsigned char *o
= alloca (s
- p
+ 1);
1496 memcpy (o
, p
, s
- p
);
1499 /* If we have ~user and `user' exists, discard
1500 everything up to ~. But if `user' does not exist, leave
1501 ~user alone, it might be a literal file name. */
1503 pw
= getpwnam (o
+ 1);
1515 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name
,
1516 Ssubstitute_in_file_name
, 1, 1, 0,
1517 doc
: /* Substitute environment variables referred to in FILENAME.
1518 `$FOO' where FOO is an environment variable name means to substitute
1519 the value of that variable. The variable name should be terminated
1520 with a character not a letter, digit or underscore; otherwise, enclose
1521 the entire variable name in braces.
1523 If `/~' appears, all of FILENAME through that `/' is discarded.
1524 If `//' appears, everything up to and including the first of
1525 those `/' is discarded. */)
1526 (Lisp_Object filename
)
1530 register unsigned char *s
, *p
, *o
, *x
, *endp
;
1531 unsigned char *target
= NULL
;
1533 int substituted
= 0;
1536 Lisp_Object handler
;
1538 CHECK_STRING (filename
);
1540 multibyte
= STRING_MULTIBYTE (filename
);
1542 /* If the file name has special constructs in it,
1543 call the corresponding file handler. */
1544 handler
= Ffind_file_name_handler (filename
, Qsubstitute_in_file_name
);
1545 if (!NILP (handler
))
1546 return call2 (handler
, Qsubstitute_in_file_name
, filename
);
1548 /* Always work on a copy of the string, in case GC happens during
1549 decode of environment variables, causing the original Lisp_String
1550 data to be relocated. */
1551 nm
= (unsigned char *) alloca (SBYTES (filename
) + 1);
1552 memcpy (nm
, SDATA (filename
), SBYTES (filename
) + 1);
1555 dostounix_filename (nm
);
1556 substituted
= (strcmp (nm
, SDATA (filename
)) != 0);
1558 endp
= nm
+ SBYTES (filename
);
1560 /* If /~ or // appears, discard everything through first slash. */
1561 p
= search_embedded_absfilename (nm
, endp
);
1563 /* Start over with the new string, so we check the file-name-handler
1564 again. Important with filenames like "/home/foo//:/hello///there"
1565 which whould substitute to "/:/hello///there" rather than "/there". */
1566 return Fsubstitute_in_file_name
1567 (make_specified_string (p
, -1, endp
- p
, multibyte
));
1569 /* See if any variables are substituted into the string
1570 and find the total length of their values in `total' */
1572 for (p
= nm
; p
!= endp
;)
1582 /* "$$" means a single "$" */
1591 while (p
!= endp
&& *p
!= '}') p
++;
1592 if (*p
!= '}') goto missingclose
;
1598 while (p
!= endp
&& (isalnum (*p
) || *p
== '_')) p
++;
1602 /* Copy out the variable name */
1603 target
= (unsigned char *) alloca (s
- o
+ 1);
1604 strncpy (target
, o
, s
- o
);
1607 strupr (target
); /* $home == $HOME etc. */
1610 /* Get variable value */
1611 o
= (unsigned char *) egetenv (target
);
1614 /* Don't try to guess a maximum length - UTF8 can use up to
1615 four bytes per character. This code is unlikely to run
1616 in a situation that requires performance, so decoding the
1617 env variables twice should be acceptable. Note that
1618 decoding may cause a garbage collect. */
1619 Lisp_Object orig
, decoded
;
1620 orig
= make_unibyte_string (o
, strlen (o
));
1621 decoded
= DECODE_FILE (orig
);
1622 total
+= SBYTES (decoded
);
1632 /* If substitution required, recopy the string and do it */
1633 /* Make space in stack frame for the new copy */
1634 xnm
= (unsigned char *) alloca (SBYTES (filename
) + total
+ 1);
1637 /* Copy the rest of the name through, replacing $ constructs with values */
1654 while (p
!= endp
&& *p
!= '}') p
++;
1655 if (*p
!= '}') goto missingclose
;
1661 while (p
!= endp
&& (isalnum (*p
) || *p
== '_')) p
++;
1665 /* Copy out the variable name */
1666 target
= (unsigned char *) alloca (s
- o
+ 1);
1667 strncpy (target
, o
, s
- o
);
1670 strupr (target
); /* $home == $HOME etc. */
1673 /* Get variable value */
1674 o
= (unsigned char *) egetenv (target
);
1678 strcpy (x
, target
); x
+= strlen (target
);
1682 Lisp_Object orig
, decoded
;
1683 int orig_length
, decoded_length
;
1684 orig_length
= strlen (o
);
1685 orig
= make_unibyte_string (o
, orig_length
);
1686 decoded
= DECODE_FILE (orig
);
1687 decoded_length
= SBYTES (decoded
);
1688 strncpy (x
, SSDATA (decoded
), decoded_length
);
1689 x
+= decoded_length
;
1691 /* If environment variable needed decoding, return value
1692 needs to be multibyte. */
1693 if (decoded_length
!= orig_length
1694 || strncmp (SSDATA (decoded
), o
, orig_length
))
1701 /* If /~ or // appears, discard everything through first slash. */
1702 while ((p
= search_embedded_absfilename (xnm
, x
)))
1703 /* This time we do not start over because we've already expanded envvars
1704 and replaced $$ with $. Maybe we should start over as well, but we'd
1705 need to quote some $ to $$ first. */
1708 return make_specified_string (xnm
, -1, x
- xnm
, multibyte
);
1711 error ("Bad format environment-variable substitution");
1713 error ("Missing \"}\" in environment-variable substitution");
1715 error ("Substituting nonexistent environment variable \"%s\"", target
);
1721 /* A slightly faster and more convenient way to get
1722 (directory-file-name (expand-file-name FOO)). */
1725 expand_and_dir_to_file (Lisp_Object filename
, Lisp_Object defdir
)
1727 register Lisp_Object absname
;
1729 absname
= Fexpand_file_name (filename
, defdir
);
1731 /* Remove final slash, if any (unless this is the root dir).
1732 stat behaves differently depending! */
1733 if (SCHARS (absname
) > 1
1734 && IS_DIRECTORY_SEP (SREF (absname
, SBYTES (absname
) - 1))
1735 && !IS_DEVICE_SEP (SREF (absname
, SBYTES (absname
)-2)))
1736 /* We cannot take shortcuts; they might be wrong for magic file names. */
1737 absname
= Fdirectory_file_name (absname
);
1741 /* Signal an error if the file ABSNAME already exists.
1742 If INTERACTIVE is nonzero, ask the user whether to proceed,
1743 and bypass the error if the user says to go ahead.
1744 QUERYSTRING is a name for the action that is being considered
1747 *STATPTR is used to store the stat information if the file exists.
1748 If the file does not exist, STATPTR->st_mode is set to 0.
1749 If STATPTR is null, we don't store into it.
1751 If QUICK is nonzero, we ask for y or n, not yes or no. */
1754 barf_or_query_if_file_exists (Lisp_Object absname
, const unsigned char *querystring
, int interactive
, struct stat
*statptr
, int quick
)
1756 register Lisp_Object tem
, encoded_filename
;
1757 struct stat statbuf
;
1758 struct gcpro gcpro1
;
1760 encoded_filename
= ENCODE_FILE (absname
);
1762 /* stat is a good way to tell whether the file exists,
1763 regardless of what access permissions it has. */
1764 if (lstat (SSDATA (encoded_filename
), &statbuf
) >= 0)
1767 xsignal2 (Qfile_already_exists
,
1768 build_string ("File already exists"), absname
);
1770 tem
= format2 ("File %s already exists; %s anyway? ",
1771 absname
, build_string (querystring
));
1773 tem
= call1 (intern ("y-or-n-p"), tem
);
1775 tem
= do_yes_or_no_p (tem
);
1778 xsignal2 (Qfile_already_exists
,
1779 build_string ("File already exists"), absname
);
1786 statptr
->st_mode
= 0;
1791 DEFUN ("copy-file", Fcopy_file
, Scopy_file
, 2, 6,
1792 "fCopy file: \nGCopy %s to file: \np\nP",
1793 doc
: /* Copy FILE to NEWNAME. Both args must be strings.
1794 If NEWNAME names a directory, copy FILE there.
1796 This function always sets the file modes of the output file to match
1799 The optional third argument OK-IF-ALREADY-EXISTS specifies what to do
1800 if file NEWNAME already exists. If OK-IF-ALREADY-EXISTS is nil, we
1801 signal a `file-already-exists' error without overwriting. If
1802 OK-IF-ALREADY-EXISTS is a number, we request confirmation from the user
1803 about overwriting; this is what happens in interactive use with M-x.
1804 Any other value for OK-IF-ALREADY-EXISTS means to overwrite the
1807 Fourth arg KEEP-TIME non-nil means give the output file the same
1808 last-modified time as the old one. (This works on only some systems.)
1810 A prefix arg makes KEEP-TIME non-nil.
1812 If PRESERVE-UID-GID is non-nil, we try to transfer the
1813 uid and gid of FILE to NEWNAME.
1815 If PRESERVE-SELINUX-CONTEXT is non-nil and SELinux is enabled
1816 on the system, we copy the SELinux context of FILE to NEWNAME. */)
1817 (Lisp_Object file
, Lisp_Object newname
, Lisp_Object ok_if_already_exists
, Lisp_Object keep_time
, Lisp_Object preserve_uid_gid
, Lisp_Object preserve_selinux_context
)
1820 char buf
[16 * 1024];
1821 struct stat st
, out_st
;
1822 Lisp_Object handler
;
1823 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
1824 int count
= SPECPDL_INDEX ();
1825 int input_file_statable_p
;
1826 Lisp_Object encoded_file
, encoded_newname
;
1828 security_context_t con
;
1829 int fail
, conlength
= 0;
1832 encoded_file
= encoded_newname
= Qnil
;
1833 GCPRO4 (file
, newname
, encoded_file
, encoded_newname
);
1834 CHECK_STRING (file
);
1835 CHECK_STRING (newname
);
1837 if (!NILP (Ffile_directory_p (newname
)))
1838 newname
= Fexpand_file_name (Ffile_name_nondirectory (file
), newname
);
1840 newname
= Fexpand_file_name (newname
, Qnil
);
1842 file
= Fexpand_file_name (file
, Qnil
);
1844 /* If the input file name has special constructs in it,
1845 call the corresponding file handler. */
1846 handler
= Ffind_file_name_handler (file
, Qcopy_file
);
1847 /* Likewise for output file name. */
1849 handler
= Ffind_file_name_handler (newname
, Qcopy_file
);
1850 if (!NILP (handler
))
1851 RETURN_UNGCPRO (call7 (handler
, Qcopy_file
, file
, newname
,
1852 ok_if_already_exists
, keep_time
, preserve_uid_gid
,
1853 preserve_selinux_context
));
1855 encoded_file
= ENCODE_FILE (file
);
1856 encoded_newname
= ENCODE_FILE (newname
);
1858 if (NILP (ok_if_already_exists
)
1859 || INTEGERP (ok_if_already_exists
))
1860 barf_or_query_if_file_exists (newname
, "copy to it",
1861 INTEGERP (ok_if_already_exists
), &out_st
, 0);
1862 else if (stat (SSDATA (encoded_newname
), &out_st
) < 0)
1866 if (!CopyFile (SDATA (encoded_file
),
1867 SDATA (encoded_newname
),
1869 report_file_error ("Copying file", Fcons (file
, Fcons (newname
, Qnil
)));
1870 /* CopyFile retains the timestamp by default. */
1871 else if (NILP (keep_time
))
1877 EMACS_GET_TIME (now
);
1878 filename
= SDATA (encoded_newname
);
1880 /* Ensure file is writable while its modified time is set. */
1881 attributes
= GetFileAttributes (filename
);
1882 SetFileAttributes (filename
, attributes
& ~FILE_ATTRIBUTE_READONLY
);
1883 if (set_file_times (filename
, now
, now
))
1885 /* Restore original attributes. */
1886 SetFileAttributes (filename
, attributes
);
1887 xsignal2 (Qfile_date_error
,
1888 build_string ("Cannot set file date"), newname
);
1890 /* Restore original attributes. */
1891 SetFileAttributes (filename
, attributes
);
1893 #else /* not WINDOWSNT */
1895 ifd
= emacs_open (SSDATA (encoded_file
), O_RDONLY
, 0);
1899 report_file_error ("Opening input file", Fcons (file
, Qnil
));
1901 record_unwind_protect (close_file_unwind
, make_number (ifd
));
1903 /* We can only copy regular files and symbolic links. Other files are not
1905 input_file_statable_p
= (fstat (ifd
, &st
) >= 0);
1908 if (!NILP (preserve_selinux_context
) && is_selinux_enabled ())
1910 conlength
= fgetfilecon (ifd
, &con
);
1911 if (conlength
== -1)
1912 report_file_error ("Doing fgetfilecon", Fcons (file
, Qnil
));
1916 if (out_st
.st_mode
!= 0
1917 && st
.st_dev
== out_st
.st_dev
&& st
.st_ino
== out_st
.st_ino
)
1920 report_file_error ("Input and output files are the same",
1921 Fcons (file
, Fcons (newname
, Qnil
)));
1924 #if defined (S_ISREG) && defined (S_ISLNK)
1925 if (input_file_statable_p
)
1927 if (!(S_ISREG (st
.st_mode
)) && !(S_ISLNK (st
.st_mode
)))
1929 #if defined (EISDIR)
1930 /* Get a better looking error message. */
1933 report_file_error ("Non-regular file", Fcons (file
, Qnil
));
1936 #endif /* S_ISREG && S_ISLNK */
1939 /* System's default file type was set to binary by _fmode in emacs.c. */
1940 ofd
= emacs_open (SDATA (encoded_newname
),
1941 O_WRONLY
| O_TRUNC
| O_CREAT
1942 | (NILP (ok_if_already_exists
) ? O_EXCL
: 0),
1943 S_IREAD
| S_IWRITE
);
1944 #else /* not MSDOS */
1945 ofd
= emacs_open (SSDATA (encoded_newname
),
1946 O_WRONLY
| O_TRUNC
| O_CREAT
1947 | (NILP (ok_if_already_exists
) ? O_EXCL
: 0),
1949 #endif /* not MSDOS */
1951 report_file_error ("Opening output file", Fcons (newname
, Qnil
));
1953 record_unwind_protect (close_file_unwind
, make_number (ofd
));
1957 while ((n
= emacs_read (ifd
, buf
, sizeof buf
)) > 0)
1958 if (emacs_write (ofd
, buf
, n
) != n
)
1959 report_file_error ("I/O error", Fcons (newname
, Qnil
));
1963 /* Preserve the original file modes, and if requested, also its
1965 if (input_file_statable_p
)
1967 if (! NILP (preserve_uid_gid
))
1968 fchown (ofd
, st
.st_uid
, st
.st_gid
);
1969 fchmod (ofd
, st
.st_mode
& 07777);
1971 #endif /* not MSDOS */
1976 /* Set the modified context back to the file. */
1977 fail
= fsetfilecon (ofd
, con
);
1979 report_file_error ("Doing fsetfilecon", Fcons (newname
, Qnil
));
1985 /* Closing the output clobbers the file times on some systems. */
1986 if (emacs_close (ofd
) < 0)
1987 report_file_error ("I/O error", Fcons (newname
, Qnil
));
1989 if (input_file_statable_p
)
1991 if (!NILP (keep_time
))
1993 EMACS_TIME atime
, mtime
;
1994 EMACS_SET_SECS_USECS (atime
, st
.st_atime
, 0);
1995 EMACS_SET_SECS_USECS (mtime
, st
.st_mtime
, 0);
1996 if (set_file_times (SSDATA (encoded_newname
),
1998 xsignal2 (Qfile_date_error
,
1999 build_string ("Cannot set file date"), newname
);
2006 if (input_file_statable_p
)
2008 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2009 and if it can't, it tells so. Otherwise, under MSDOS we usually
2010 get only the READ bit, which will make the copied file read-only,
2011 so it's better not to chmod at all. */
2012 if ((_djstat_flags
& _STFAIL_WRITEBIT
) == 0)
2013 chmod (SDATA (encoded_newname
), st
.st_mode
& 07777);
2016 #endif /* not WINDOWSNT */
2018 /* Discard the unwind protects. */
2019 specpdl_ptr
= specpdl
+ count
;
2025 DEFUN ("make-directory-internal", Fmake_directory_internal
,
2026 Smake_directory_internal
, 1, 1, 0,
2027 doc
: /* Create a new directory named DIRECTORY. */)
2028 (Lisp_Object directory
)
2030 const unsigned char *dir
;
2031 Lisp_Object handler
;
2032 Lisp_Object encoded_dir
;
2034 CHECK_STRING (directory
);
2035 directory
= Fexpand_file_name (directory
, Qnil
);
2037 handler
= Ffind_file_name_handler (directory
, Qmake_directory_internal
);
2038 if (!NILP (handler
))
2039 return call2 (handler
, Qmake_directory_internal
, directory
);
2041 encoded_dir
= ENCODE_FILE (directory
);
2043 dir
= SDATA (encoded_dir
);
2046 if (mkdir (dir
) != 0)
2048 if (mkdir (dir
, 0777) != 0)
2050 report_file_error ("Creating directory", list1 (directory
));
2055 DEFUN ("delete-directory-internal", Fdelete_directory_internal
,
2056 Sdelete_directory_internal
, 1, 1, 0,
2057 doc
: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
2058 (Lisp_Object directory
)
2060 const unsigned char *dir
;
2061 Lisp_Object handler
;
2062 Lisp_Object encoded_dir
;
2064 CHECK_STRING (directory
);
2065 directory
= Fdirectory_file_name (Fexpand_file_name (directory
, Qnil
));
2066 encoded_dir
= ENCODE_FILE (directory
);
2067 dir
= SDATA (encoded_dir
);
2069 if (rmdir (dir
) != 0)
2070 report_file_error ("Removing directory", list1 (directory
));
2075 DEFUN ("delete-file", Fdelete_file
, Sdelete_file
, 1, 2,
2076 "(list (read-file-name \
2077 (if (and delete-by-moving-to-trash (null current-prefix-arg)) \
2078 \"Move file to trash: \" \"Delete file: \") \
2079 nil default-directory (confirm-nonexistent-file-or-buffer)) \
2080 (null current-prefix-arg))",
2081 doc
: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
2082 If file has multiple names, it continues to exist with the other names.
2083 TRASH non-nil means to trash the file instead of deleting, provided
2084 `delete-by-moving-to-trash' is non-nil.
2086 When called interactively, TRASH is t if no prefix argument is given.
2087 With a prefix argument, TRASH is nil. */)
2088 (Lisp_Object filename
, Lisp_Object trash
)
2090 Lisp_Object handler
;
2091 Lisp_Object encoded_file
;
2092 struct gcpro gcpro1
;
2095 if (!NILP (Ffile_directory_p (filename
))
2096 && NILP (Ffile_symlink_p (filename
)))
2097 xsignal2 (Qfile_error
,
2098 build_string ("Removing old name: is a directory"),
2101 filename
= Fexpand_file_name (filename
, Qnil
);
2103 handler
= Ffind_file_name_handler (filename
, Qdelete_file
);
2104 if (!NILP (handler
))
2105 return call3 (handler
, Qdelete_file
, filename
, trash
);
2107 if (delete_by_moving_to_trash
&& !NILP (trash
))
2108 return call1 (Qmove_file_to_trash
, filename
);
2110 encoded_file
= ENCODE_FILE (filename
);
2112 if (0 > unlink (SSDATA (encoded_file
)))
2113 report_file_error ("Removing old name", list1 (filename
));
2118 internal_delete_file_1 (Lisp_Object ignore
)
2123 /* Delete file FILENAME, returning 1 if successful and 0 if failed.
2124 This ignores `delete-by-moving-to-trash'. */
2127 internal_delete_file (Lisp_Object filename
)
2131 tem
= internal_condition_case_2 (Fdelete_file
, filename
, Qnil
,
2132 Qt
, internal_delete_file_1
);
2136 DEFUN ("rename-file", Frename_file
, Srename_file
, 2, 3,
2137 "fRename file: \nGRename %s to file: \np",
2138 doc
: /* Rename FILE as NEWNAME. Both args must be strings.
2139 If file has names other than FILE, it continues to have those names.
2140 Signals a `file-already-exists' error if a file NEWNAME already exists
2141 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2142 A number as third arg means request confirmation if NEWNAME already exists.
2143 This is what happens in interactive use with M-x. */)
2144 (Lisp_Object file
, Lisp_Object newname
, Lisp_Object ok_if_already_exists
)
2146 Lisp_Object handler
;
2147 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
2148 Lisp_Object encoded_file
, encoded_newname
, symlink_target
;
2150 symlink_target
= encoded_file
= encoded_newname
= Qnil
;
2151 GCPRO5 (file
, newname
, encoded_file
, encoded_newname
, symlink_target
);
2152 CHECK_STRING (file
);
2153 CHECK_STRING (newname
);
2154 file
= Fexpand_file_name (file
, Qnil
);
2156 if ((!NILP (Ffile_directory_p (newname
)))
2158 /* If the file names are identical but for the case,
2159 don't attempt to move directory to itself. */
2160 && (NILP (Fstring_equal (Fdowncase (file
), Fdowncase (newname
))))
2164 Lisp_Object fname
= NILP (Ffile_directory_p (file
))
2165 ? file
: Fdirectory_file_name (file
);
2166 newname
= Fexpand_file_name (Ffile_name_nondirectory (fname
), newname
);
2169 newname
= Fexpand_file_name (newname
, Qnil
);
2171 /* If the file name has special constructs in it,
2172 call the corresponding file handler. */
2173 handler
= Ffind_file_name_handler (file
, Qrename_file
);
2175 handler
= Ffind_file_name_handler (newname
, Qrename_file
);
2176 if (!NILP (handler
))
2177 RETURN_UNGCPRO (call4 (handler
, Qrename_file
,
2178 file
, newname
, ok_if_already_exists
));
2180 encoded_file
= ENCODE_FILE (file
);
2181 encoded_newname
= ENCODE_FILE (newname
);
2184 /* If the file names are identical but for the case, don't ask for
2185 confirmation: they simply want to change the letter-case of the
2187 if (NILP (Fstring_equal (Fdowncase (file
), Fdowncase (newname
))))
2189 if (NILP (ok_if_already_exists
)
2190 || INTEGERP (ok_if_already_exists
))
2191 barf_or_query_if_file_exists (newname
, "rename to it",
2192 INTEGERP (ok_if_already_exists
), 0, 0);
2193 if (0 > rename (SSDATA (encoded_file
), SSDATA (encoded_newname
)))
2199 symlink_target
= Ffile_symlink_p (file
);
2200 if (! NILP (symlink_target
))
2201 Fmake_symbolic_link (symlink_target
, newname
,
2202 NILP (ok_if_already_exists
) ? Qnil
: Qt
);
2205 if (!NILP (Ffile_directory_p (file
)))
2206 call4 (Qcopy_directory
, file
, newname
, Qt
, Qnil
);
2208 /* We have already prompted if it was an integer, so don't
2209 have copy-file prompt again. */
2210 Fcopy_file (file
, newname
,
2211 NILP (ok_if_already_exists
) ? Qnil
: Qt
,
2214 count
= SPECPDL_INDEX ();
2215 specbind (Qdelete_by_moving_to_trash
, Qnil
);
2217 if (!NILP (Ffile_directory_p (file
))
2219 && NILP (symlink_target
)
2222 call2 (Qdelete_directory
, file
, Qt
);
2224 Fdelete_file (file
, Qnil
);
2225 unbind_to (count
, Qnil
);
2228 report_file_error ("Renaming", list2 (file
, newname
));
2234 DEFUN ("add-name-to-file", Fadd_name_to_file
, Sadd_name_to_file
, 2, 3,
2235 "fAdd name to file: \nGName to add to %s: \np",
2236 doc
: /* Give FILE additional name NEWNAME. Both args must be strings.
2237 Signals a `file-already-exists' error if a file NEWNAME already exists
2238 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2239 A number as third arg means request confirmation if NEWNAME already exists.
2240 This is what happens in interactive use with M-x. */)
2241 (Lisp_Object file
, Lisp_Object newname
, Lisp_Object ok_if_already_exists
)
2243 Lisp_Object handler
;
2244 Lisp_Object encoded_file
, encoded_newname
;
2245 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
2247 GCPRO4 (file
, newname
, encoded_file
, encoded_newname
);
2248 encoded_file
= encoded_newname
= Qnil
;
2249 CHECK_STRING (file
);
2250 CHECK_STRING (newname
);
2251 file
= Fexpand_file_name (file
, Qnil
);
2253 if (!NILP (Ffile_directory_p (newname
)))
2254 newname
= Fexpand_file_name (Ffile_name_nondirectory (file
), newname
);
2256 newname
= Fexpand_file_name (newname
, Qnil
);
2258 /* If the file name has special constructs in it,
2259 call the corresponding file handler. */
2260 handler
= Ffind_file_name_handler (file
, Qadd_name_to_file
);
2261 if (!NILP (handler
))
2262 RETURN_UNGCPRO (call4 (handler
, Qadd_name_to_file
, file
,
2263 newname
, ok_if_already_exists
));
2265 /* If the new name has special constructs in it,
2266 call the corresponding file handler. */
2267 handler
= Ffind_file_name_handler (newname
, Qadd_name_to_file
);
2268 if (!NILP (handler
))
2269 RETURN_UNGCPRO (call4 (handler
, Qadd_name_to_file
, file
,
2270 newname
, ok_if_already_exists
));
2272 encoded_file
= ENCODE_FILE (file
);
2273 encoded_newname
= ENCODE_FILE (newname
);
2275 if (NILP (ok_if_already_exists
)
2276 || INTEGERP (ok_if_already_exists
))
2277 barf_or_query_if_file_exists (newname
, "make it a new name",
2278 INTEGERP (ok_if_already_exists
), 0, 0);
2280 unlink (SSDATA (newname
));
2281 if (0 > link (SSDATA (encoded_file
), SSDATA (encoded_newname
)))
2282 report_file_error ("Adding new name", list2 (file
, newname
));
2288 DEFUN ("make-symbolic-link", Fmake_symbolic_link
, Smake_symbolic_link
, 2, 3,
2289 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np",
2290 doc
: /* Make a symbolic link to FILENAME, named LINKNAME.
2291 Both args must be strings.
2292 Signals a `file-already-exists' error if a file LINKNAME already exists
2293 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2294 A number as third arg means request confirmation if LINKNAME already exists.
2295 This happens for interactive use with M-x. */)
2296 (Lisp_Object filename
, Lisp_Object linkname
, Lisp_Object ok_if_already_exists
)
2298 Lisp_Object handler
;
2299 Lisp_Object encoded_filename
, encoded_linkname
;
2300 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
2302 GCPRO4 (filename
, linkname
, encoded_filename
, encoded_linkname
);
2303 encoded_filename
= encoded_linkname
= Qnil
;
2304 CHECK_STRING (filename
);
2305 CHECK_STRING (linkname
);
2306 /* If the link target has a ~, we must expand it to get
2307 a truly valid file name. Otherwise, do not expand;
2308 we want to permit links to relative file names. */
2309 if (SREF (filename
, 0) == '~')
2310 filename
= Fexpand_file_name (filename
, Qnil
);
2312 if (!NILP (Ffile_directory_p (linkname
)))
2313 linkname
= Fexpand_file_name (Ffile_name_nondirectory (filename
), linkname
);
2315 linkname
= Fexpand_file_name (linkname
, Qnil
);
2317 /* If the file name has special constructs in it,
2318 call the corresponding file handler. */
2319 handler
= Ffind_file_name_handler (filename
, Qmake_symbolic_link
);
2320 if (!NILP (handler
))
2321 RETURN_UNGCPRO (call4 (handler
, Qmake_symbolic_link
, filename
,
2322 linkname
, ok_if_already_exists
));
2324 /* If the new link name has special constructs in it,
2325 call the corresponding file handler. */
2326 handler
= Ffind_file_name_handler (linkname
, Qmake_symbolic_link
);
2327 if (!NILP (handler
))
2328 RETURN_UNGCPRO (call4 (handler
, Qmake_symbolic_link
, filename
,
2329 linkname
, ok_if_already_exists
));
2332 encoded_filename
= ENCODE_FILE (filename
);
2333 encoded_linkname
= ENCODE_FILE (linkname
);
2335 if (NILP (ok_if_already_exists
)
2336 || INTEGERP (ok_if_already_exists
))
2337 barf_or_query_if_file_exists (linkname
, "make it a link",
2338 INTEGERP (ok_if_already_exists
), 0, 0);
2339 if (0 > symlink (SSDATA (encoded_filename
),
2340 SSDATA (encoded_linkname
)))
2342 /* If we didn't complain already, silently delete existing file. */
2343 if (errno
== EEXIST
)
2345 unlink (SSDATA (encoded_linkname
));
2346 if (0 <= symlink (SSDATA (encoded_filename
),
2347 SSDATA (encoded_linkname
)))
2354 report_file_error ("Making symbolic link", list2 (filename
, linkname
));
2361 xsignal1 (Qfile_error
, build_string ("Symbolic links are not supported"));
2363 #endif /* S_IFLNK */
2367 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p
, Sfile_name_absolute_p
,
2369 doc
: /* Return t if file FILENAME specifies an absolute file name.
2370 On Unix, this is a name starting with a `/' or a `~'. */)
2371 (Lisp_Object filename
)
2373 CHECK_STRING (filename
);
2374 return file_name_absolute_p (SDATA (filename
)) ? Qt
: Qnil
;
2377 /* Return nonzero if file FILENAME exists and can be executed. */
2380 check_executable (char *filename
)
2383 int len
= strlen (filename
);
2386 if (stat (filename
, &st
) < 0)
2388 return ((st
.st_mode
& S_IEXEC
) != 0);
2389 #else /* not DOS_NT */
2390 #ifdef HAVE_EUIDACCESS
2391 return (euidaccess (filename
, 1) >= 0);
2393 /* Access isn't quite right because it uses the real uid
2394 and we really want to test with the effective uid.
2395 But Unix doesn't give us a right way to do it. */
2396 return (access (filename
, 1) >= 0);
2398 #endif /* not DOS_NT */
2401 /* Return nonzero if file FILENAME exists and can be written. */
2404 check_writable (const char *filename
)
2408 if (stat (filename
, &st
) < 0)
2410 return (st
.st_mode
& S_IWRITE
|| (st
.st_mode
& S_IFMT
) == S_IFDIR
);
2411 #else /* not MSDOS */
2412 #ifdef HAVE_EUIDACCESS
2413 return (euidaccess (filename
, 2) >= 0);
2415 /* Access isn't quite right because it uses the real uid
2416 and we really want to test with the effective uid.
2417 But Unix doesn't give us a right way to do it.
2418 Opening with O_WRONLY could work for an ordinary file,
2419 but would lose for directories. */
2420 return (access (filename
, 2) >= 0);
2422 #endif /* not MSDOS */
2425 DEFUN ("file-exists-p", Ffile_exists_p
, Sfile_exists_p
, 1, 1, 0,
2426 doc
: /* Return t if file FILENAME exists (whether or not you can read it.)
2427 See also `file-readable-p' and `file-attributes'.
2428 This returns nil for a symlink to a nonexistent file.
2429 Use `file-symlink-p' to test for such links. */)
2430 (Lisp_Object filename
)
2432 Lisp_Object absname
;
2433 Lisp_Object handler
;
2434 struct stat statbuf
;
2436 CHECK_STRING (filename
);
2437 absname
= Fexpand_file_name (filename
, Qnil
);
2439 /* If the file name has special constructs in it,
2440 call the corresponding file handler. */
2441 handler
= Ffind_file_name_handler (absname
, Qfile_exists_p
);
2442 if (!NILP (handler
))
2443 return call2 (handler
, Qfile_exists_p
, absname
);
2445 absname
= ENCODE_FILE (absname
);
2447 return (stat (SSDATA (absname
), &statbuf
) >= 0) ? Qt
: Qnil
;
2450 DEFUN ("file-executable-p", Ffile_executable_p
, Sfile_executable_p
, 1, 1, 0,
2451 doc
: /* Return t if FILENAME can be executed by you.
2452 For a directory, this means you can access files in that directory. */)
2453 (Lisp_Object filename
)
2455 Lisp_Object absname
;
2456 Lisp_Object handler
;
2458 CHECK_STRING (filename
);
2459 absname
= Fexpand_file_name (filename
, Qnil
);
2461 /* If the file name has special constructs in it,
2462 call the corresponding file handler. */
2463 handler
= Ffind_file_name_handler (absname
, Qfile_executable_p
);
2464 if (!NILP (handler
))
2465 return call2 (handler
, Qfile_executable_p
, absname
);
2467 absname
= ENCODE_FILE (absname
);
2469 return (check_executable (SSDATA (absname
)) ? Qt
: Qnil
);
2472 DEFUN ("file-readable-p", Ffile_readable_p
, Sfile_readable_p
, 1, 1, 0,
2473 doc
: /* Return t if file FILENAME exists and you can read it.
2474 See also `file-exists-p' and `file-attributes'. */)
2475 (Lisp_Object filename
)
2477 Lisp_Object absname
;
2478 Lisp_Object handler
;
2481 struct stat statbuf
;
2483 CHECK_STRING (filename
);
2484 absname
= Fexpand_file_name (filename
, Qnil
);
2486 /* If the file name has special constructs in it,
2487 call the corresponding file handler. */
2488 handler
= Ffind_file_name_handler (absname
, Qfile_readable_p
);
2489 if (!NILP (handler
))
2490 return call2 (handler
, Qfile_readable_p
, absname
);
2492 absname
= ENCODE_FILE (absname
);
2494 #if defined(DOS_NT) || defined(macintosh)
2495 /* Under MS-DOS, Windows, and Macintosh, open does not work for
2497 if (access (SDATA (absname
), 0) == 0)
2500 #else /* not DOS_NT and not macintosh */
2502 #if defined (S_ISFIFO) && defined (O_NONBLOCK)
2503 /* Opening a fifo without O_NONBLOCK can wait.
2504 We don't want to wait. But we don't want to mess wth O_NONBLOCK
2505 except in the case of a fifo, on a system which handles it. */
2506 desc
= stat (SSDATA (absname
), &statbuf
);
2509 if (S_ISFIFO (statbuf
.st_mode
))
2510 flags
|= O_NONBLOCK
;
2512 desc
= emacs_open (SSDATA (absname
), flags
, 0);
2517 #endif /* not DOS_NT and not macintosh */
2520 /* Having this before file-symlink-p mysteriously caused it to be forgotten
2522 DEFUN ("file-writable-p", Ffile_writable_p
, Sfile_writable_p
, 1, 1, 0,
2523 doc
: /* Return t if file FILENAME can be written or created by you. */)
2524 (Lisp_Object filename
)
2526 Lisp_Object absname
, dir
, encoded
;
2527 Lisp_Object handler
;
2528 struct stat statbuf
;
2530 CHECK_STRING (filename
);
2531 absname
= Fexpand_file_name (filename
, Qnil
);
2533 /* If the file name has special constructs in it,
2534 call the corresponding file handler. */
2535 handler
= Ffind_file_name_handler (absname
, Qfile_writable_p
);
2536 if (!NILP (handler
))
2537 return call2 (handler
, Qfile_writable_p
, absname
);
2539 encoded
= ENCODE_FILE (absname
);
2540 if (stat (SSDATA (encoded
), &statbuf
) >= 0)
2541 return (check_writable (SSDATA (encoded
))
2544 dir
= Ffile_name_directory (absname
);
2547 dir
= Fdirectory_file_name (dir
);
2550 dir
= ENCODE_FILE (dir
);
2552 /* The read-only attribute of the parent directory doesn't affect
2553 whether a file or directory can be created within it. Some day we
2554 should check ACLs though, which do affect this. */
2555 if (stat (SDATA (dir
), &statbuf
) < 0)
2557 return (statbuf
.st_mode
& S_IFMT
) == S_IFDIR
? Qt
: Qnil
;
2559 return (check_writable (!NILP (dir
) ? SSDATA (dir
) : "")
2564 DEFUN ("access-file", Faccess_file
, Saccess_file
, 2, 2, 0,
2565 doc
: /* Access file FILENAME, and get an error if that does not work.
2566 The second argument STRING is used in the error message.
2567 If there is no error, returns nil. */)
2568 (Lisp_Object filename
, Lisp_Object string
)
2570 Lisp_Object handler
, encoded_filename
, absname
;
2573 CHECK_STRING (filename
);
2574 absname
= Fexpand_file_name (filename
, Qnil
);
2576 CHECK_STRING (string
);
2578 /* If the file name has special constructs in it,
2579 call the corresponding file handler. */
2580 handler
= Ffind_file_name_handler (absname
, Qaccess_file
);
2581 if (!NILP (handler
))
2582 return call3 (handler
, Qaccess_file
, absname
, string
);
2584 encoded_filename
= ENCODE_FILE (absname
);
2586 fd
= emacs_open (SSDATA (encoded_filename
), O_RDONLY
, 0);
2588 report_file_error (SSDATA (string
), Fcons (filename
, Qnil
));
2594 DEFUN ("file-symlink-p", Ffile_symlink_p
, Sfile_symlink_p
, 1, 1, 0,
2595 doc
: /* Return non-nil if file FILENAME is the name of a symbolic link.
2596 The value is the link target, as a string.
2597 Otherwise it returns nil.
2599 This function returns t when given the name of a symlink that
2600 points to a nonexistent file. */)
2601 (Lisp_Object filename
)
2603 Lisp_Object handler
;
2605 CHECK_STRING (filename
);
2606 filename
= Fexpand_file_name (filename
, Qnil
);
2608 /* If the file name has special constructs in it,
2609 call the corresponding file handler. */
2610 handler
= Ffind_file_name_handler (filename
, Qfile_symlink_p
);
2611 if (!NILP (handler
))
2612 return call2 (handler
, Qfile_symlink_p
, filename
);
2621 filename
= ENCODE_FILE (filename
);
2628 buf
= (char *) xrealloc (buf
, bufsize
);
2629 memset (buf
, 0, bufsize
);
2632 valsize
= readlink (SSDATA (filename
), buf
, bufsize
);
2636 /* HP-UX reports ERANGE if buffer is too small. */
2637 if (errno
== ERANGE
)
2647 while (valsize
>= bufsize
);
2649 val
= make_string (buf
, valsize
);
2650 if (buf
[0] == '/' && strchr (buf
, ':'))
2651 val
= concat2 (build_string ("/:"), val
);
2653 val
= DECODE_FILE (val
);
2656 #else /* not S_IFLNK */
2658 #endif /* not S_IFLNK */
2661 DEFUN ("file-directory-p", Ffile_directory_p
, Sfile_directory_p
, 1, 1, 0,
2662 doc
: /* Return t if FILENAME names an existing directory.
2663 Symbolic links to directories count as directories.
2664 See `file-symlink-p' to distinguish symlinks. */)
2665 (Lisp_Object filename
)
2667 register Lisp_Object absname
;
2669 Lisp_Object handler
;
2671 absname
= expand_and_dir_to_file (filename
, current_buffer
->directory
);
2673 /* If the file name has special constructs in it,
2674 call the corresponding file handler. */
2675 handler
= Ffind_file_name_handler (absname
, Qfile_directory_p
);
2676 if (!NILP (handler
))
2677 return call2 (handler
, Qfile_directory_p
, absname
);
2679 absname
= ENCODE_FILE (absname
);
2681 if (stat (SSDATA (absname
), &st
) < 0)
2683 return (st
.st_mode
& S_IFMT
) == S_IFDIR
? Qt
: Qnil
;
2686 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p
, Sfile_accessible_directory_p
, 1, 1, 0,
2687 doc
: /* Return t if file FILENAME names a directory you can open.
2688 For the value to be t, FILENAME must specify the name of a directory as a file,
2689 and the directory must allow you to open files in it. In order to use a
2690 directory as a buffer's current directory, this predicate must return true.
2691 A directory name spec may be given instead; then the value is t
2692 if the directory so specified exists and really is a readable and
2693 searchable directory. */)
2694 (Lisp_Object filename
)
2696 Lisp_Object handler
;
2698 struct gcpro gcpro1
;
2700 /* If the file name has special constructs in it,
2701 call the corresponding file handler. */
2702 handler
= Ffind_file_name_handler (filename
, Qfile_accessible_directory_p
);
2703 if (!NILP (handler
))
2704 return call2 (handler
, Qfile_accessible_directory_p
, filename
);
2707 tem
= (NILP (Ffile_directory_p (filename
))
2708 || NILP (Ffile_executable_p (filename
)));
2710 return tem
? Qnil
: Qt
;
2713 DEFUN ("file-regular-p", Ffile_regular_p
, Sfile_regular_p
, 1, 1, 0,
2714 doc
: /* Return t if FILENAME names a regular file.
2715 This is the sort of file that holds an ordinary stream of data bytes.
2716 Symbolic links to regular files count as regular files.
2717 See `file-symlink-p' to distinguish symlinks. */)
2718 (Lisp_Object filename
)
2720 register Lisp_Object absname
;
2722 Lisp_Object handler
;
2724 absname
= expand_and_dir_to_file (filename
, current_buffer
->directory
);
2726 /* If the file name has special constructs in it,
2727 call the corresponding file handler. */
2728 handler
= Ffind_file_name_handler (absname
, Qfile_regular_p
);
2729 if (!NILP (handler
))
2730 return call2 (handler
, Qfile_regular_p
, absname
);
2732 absname
= ENCODE_FILE (absname
);
2737 Lisp_Object tem
= Vw32_get_true_file_attributes
;
2739 /* Tell stat to use expensive method to get accurate info. */
2740 Vw32_get_true_file_attributes
= Qt
;
2741 result
= stat (SDATA (absname
), &st
);
2742 Vw32_get_true_file_attributes
= tem
;
2746 return (st
.st_mode
& S_IFMT
) == S_IFREG
? Qt
: Qnil
;
2749 if (stat (SSDATA (absname
), &st
) < 0)
2751 return (st
.st_mode
& S_IFMT
) == S_IFREG
? Qt
: Qnil
;
2755 DEFUN ("file-selinux-context", Ffile_selinux_context
,
2756 Sfile_selinux_context
, 1, 1, 0,
2757 doc
: /* Return SELinux context of file named FILENAME,
2758 as a list ("user", "role", "type", "range"). Return (nil, nil, nil, nil)
2759 if file does not exist, is not accessible, or SELinux is disabled */)
2760 (Lisp_Object filename
)
2762 Lisp_Object absname
;
2763 Lisp_Object values
[4];
2764 Lisp_Object handler
;
2766 security_context_t con
;
2771 absname
= expand_and_dir_to_file (filename
, current_buffer
->directory
);
2773 /* If the file name has special constructs in it,
2774 call the corresponding file handler. */
2775 handler
= Ffind_file_name_handler (absname
, Qfile_selinux_context
);
2776 if (!NILP (handler
))
2777 return call2 (handler
, Qfile_selinux_context
, absname
);
2779 absname
= ENCODE_FILE (absname
);
2786 if (is_selinux_enabled ())
2788 conlength
= lgetfilecon (SDATA (absname
), &con
);
2791 context
= context_new (con
);
2792 if (context_user_get (context
))
2793 values
[0] = build_string (context_user_get (context
));
2794 if (context_role_get (context
))
2795 values
[1] = build_string (context_role_get (context
));
2796 if (context_type_get (context
))
2797 values
[2] = build_string (context_type_get (context
));
2798 if (context_range_get (context
))
2799 values
[3] = build_string (context_range_get (context
));
2800 context_free (context
);
2807 return Flist (sizeof(values
) / sizeof(values
[0]), values
);
2810 DEFUN ("set-file-selinux-context", Fset_file_selinux_context
,
2811 Sset_file_selinux_context
, 2, 2, 0,
2812 doc
: /* Set SELinux context of file named FILENAME to CONTEXT
2813 as a list ("user", "role", "type", "range"). Has no effect if SELinux
2815 (Lisp_Object filename
, Lisp_Object context
)
2817 Lisp_Object absname
, encoded_absname
;
2818 Lisp_Object handler
;
2819 Lisp_Object user
= CAR_SAFE (context
);
2820 Lisp_Object role
= CAR_SAFE (CDR_SAFE (context
));
2821 Lisp_Object type
= CAR_SAFE (CDR_SAFE (CDR_SAFE (context
)));
2822 Lisp_Object range
= CAR_SAFE (CDR_SAFE (CDR_SAFE (CDR_SAFE (context
))));
2824 security_context_t con
;
2825 int fail
, conlength
;
2826 context_t parsed_con
;
2829 absname
= Fexpand_file_name (filename
, current_buffer
->directory
);
2831 /* If the file name has special constructs in it,
2832 call the corresponding file handler. */
2833 handler
= Ffind_file_name_handler (absname
, Qset_file_selinux_context
);
2834 if (!NILP (handler
))
2835 return call3 (handler
, Qset_file_selinux_context
, absname
, context
);
2837 encoded_absname
= ENCODE_FILE (absname
);
2840 if (is_selinux_enabled ())
2842 /* Get current file context. */
2843 conlength
= lgetfilecon (SDATA (encoded_absname
), &con
);
2846 parsed_con
= context_new (con
);
2847 /* Change the parts defined in the parameter.*/
2850 if (context_user_set (parsed_con
, SDATA (user
)))
2851 error ("Doing context_user_set");
2855 if (context_role_set (parsed_con
, SDATA (role
)))
2856 error ("Doing context_role_set");
2860 if (context_type_set (parsed_con
, SDATA (type
)))
2861 error ("Doing context_type_set");
2863 if (STRINGP (range
))
2865 if (context_range_set (parsed_con
, SDATA (range
)))
2866 error ("Doing context_range_set");
2869 /* Set the modified context back to the file. */
2870 fail
= lsetfilecon (SDATA (encoded_absname
), context_str (parsed_con
));
2872 report_file_error ("Doing lsetfilecon", Fcons (absname
, Qnil
));
2874 context_free (parsed_con
);
2877 report_file_error("Doing lgetfilecon", Fcons (absname
, Qnil
));
2887 DEFUN ("file-modes", Ffile_modes
, Sfile_modes
, 1, 1, 0,
2888 doc
: /* Return mode bits of file named FILENAME, as an integer.
2889 Return nil, if file does not exist or is not accessible. */)
2890 (Lisp_Object filename
)
2892 Lisp_Object absname
;
2894 Lisp_Object handler
;
2896 absname
= expand_and_dir_to_file (filename
, current_buffer
->directory
);
2898 /* If the file name has special constructs in it,
2899 call the corresponding file handler. */
2900 handler
= Ffind_file_name_handler (absname
, Qfile_modes
);
2901 if (!NILP (handler
))
2902 return call2 (handler
, Qfile_modes
, absname
);
2904 absname
= ENCODE_FILE (absname
);
2906 if (stat (SSDATA (absname
), &st
) < 0)
2909 return make_number (st
.st_mode
& 07777);
2912 DEFUN ("set-file-modes", Fset_file_modes
, Sset_file_modes
, 2, 2,
2913 "(let ((file (read-file-name \"File: \"))) \
2914 (list file (read-file-modes nil file)))",
2915 doc
: /* Set mode bits of file named FILENAME to MODE (an integer).
2916 Only the 12 low bits of MODE are used.
2918 Interactively, mode bits are read by `read-file-modes', which accepts
2919 symbolic notation, like the `chmod' command from GNU Coreutils. */)
2920 (Lisp_Object filename
, Lisp_Object mode
)
2922 Lisp_Object absname
, encoded_absname
;
2923 Lisp_Object handler
;
2925 absname
= Fexpand_file_name (filename
, current_buffer
->directory
);
2926 CHECK_NUMBER (mode
);
2928 /* If the file name has special constructs in it,
2929 call the corresponding file handler. */
2930 handler
= Ffind_file_name_handler (absname
, Qset_file_modes
);
2931 if (!NILP (handler
))
2932 return call3 (handler
, Qset_file_modes
, absname
, mode
);
2934 encoded_absname
= ENCODE_FILE (absname
);
2936 if (chmod (SSDATA (encoded_absname
), XINT (mode
)) < 0)
2937 report_file_error ("Doing chmod", Fcons (absname
, Qnil
));
2942 DEFUN ("set-default-file-modes", Fset_default_file_modes
, Sset_default_file_modes
, 1, 1, 0,
2943 doc
: /* Set the file permission bits for newly created files.
2944 The argument MODE should be an integer; only the low 9 bits are used.
2945 This setting is inherited by subprocesses. */)
2948 CHECK_NUMBER (mode
);
2950 umask ((~ XINT (mode
)) & 0777);
2955 DEFUN ("default-file-modes", Fdefault_file_modes
, Sdefault_file_modes
, 0, 0, 0,
2956 doc
: /* Return the default file protection for created files.
2957 The value is an integer. */)
2963 realmask
= umask (0);
2966 XSETINT (value
, (~ realmask
) & 0777);
2971 DEFUN ("set-file-times", Fset_file_times
, Sset_file_times
, 1, 2, 0,
2972 doc
: /* Set times of file FILENAME to TIME.
2973 Set both access and modification times.
2974 Return t on success, else nil.
2975 Use the current time if TIME is nil. TIME is in the format of
2977 (Lisp_Object filename
, Lisp_Object time
)
2979 Lisp_Object absname
, encoded_absname
;
2980 Lisp_Object handler
;
2984 if (! lisp_time_argument (time
, &sec
, &usec
))
2985 error ("Invalid time specification");
2987 absname
= Fexpand_file_name (filename
, current_buffer
->directory
);
2989 /* If the file name has special constructs in it,
2990 call the corresponding file handler. */
2991 handler
= Ffind_file_name_handler (absname
, Qset_file_times
);
2992 if (!NILP (handler
))
2993 return call3 (handler
, Qset_file_times
, absname
, time
);
2995 encoded_absname
= ENCODE_FILE (absname
);
3000 EMACS_SET_SECS (t
, sec
);
3001 EMACS_SET_USECS (t
, usec
);
3003 if (set_file_times (SSDATA (encoded_absname
), t
, t
))
3008 /* Setting times on a directory always fails. */
3009 if (stat (SDATA (encoded_absname
), &st
) == 0
3010 && (st
.st_mode
& S_IFMT
) == S_IFDIR
)
3013 report_file_error ("Setting file times", Fcons (absname
, Qnil
));
3022 DEFUN ("unix-sync", Funix_sync
, Sunix_sync
, 0, 0, "",
3023 doc
: /* Tell Unix to finish all pending disk updates. */)
3030 #endif /* HAVE_SYNC */
3032 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p
, Sfile_newer_than_file_p
, 2, 2, 0,
3033 doc
: /* Return t if file FILE1 is newer than file FILE2.
3034 If FILE1 does not exist, the answer is nil;
3035 otherwise, if FILE2 does not exist, the answer is t. */)
3036 (Lisp_Object file1
, Lisp_Object file2
)
3038 Lisp_Object absname1
, absname2
;
3041 Lisp_Object handler
;
3042 struct gcpro gcpro1
, gcpro2
;
3044 CHECK_STRING (file1
);
3045 CHECK_STRING (file2
);
3048 GCPRO2 (absname1
, file2
);
3049 absname1
= expand_and_dir_to_file (file1
, current_buffer
->directory
);
3050 absname2
= expand_and_dir_to_file (file2
, current_buffer
->directory
);
3053 /* If the file name has special constructs in it,
3054 call the corresponding file handler. */
3055 handler
= Ffind_file_name_handler (absname1
, Qfile_newer_than_file_p
);
3057 handler
= Ffind_file_name_handler (absname2
, Qfile_newer_than_file_p
);
3058 if (!NILP (handler
))
3059 return call3 (handler
, Qfile_newer_than_file_p
, absname1
, absname2
);
3061 GCPRO2 (absname1
, absname2
);
3062 absname1
= ENCODE_FILE (absname1
);
3063 absname2
= ENCODE_FILE (absname2
);
3066 if (stat (SSDATA (absname1
), &st
) < 0)
3069 mtime1
= st
.st_mtime
;
3071 if (stat (SSDATA (absname2
), &st
) < 0)
3074 return (mtime1
> st
.st_mtime
) ? Qt
: Qnil
;
3078 Lisp_Object Qfind_buffer_file_type
;
3081 #ifndef READ_BUF_SIZE
3082 #define READ_BUF_SIZE (64 << 10)
3085 /* This function is called after Lisp functions to decide a coding
3086 system are called, or when they cause an error. Before they are
3087 called, the current buffer is set unibyte and it contains only a
3088 newly inserted text (thus the buffer was empty before the
3091 The functions may set markers, overlays, text properties, or even
3092 alter the buffer contents, change the current buffer.
3094 Here, we reset all those changes by:
3095 o set back the current buffer.
3096 o move all markers and overlays to BEG.
3097 o remove all text properties.
3098 o set back the buffer multibyteness. */
3101 decide_coding_unwind (Lisp_Object unwind_data
)
3103 Lisp_Object multibyte
, undo_list
, buffer
;
3105 multibyte
= XCAR (unwind_data
);
3106 unwind_data
= XCDR (unwind_data
);
3107 undo_list
= XCAR (unwind_data
);
3108 buffer
= XCDR (unwind_data
);
3110 if (current_buffer
!= XBUFFER (buffer
))
3111 set_buffer_internal (XBUFFER (buffer
));
3112 adjust_markers_for_delete (BEG
, BEG_BYTE
, Z
, Z_BYTE
);
3113 adjust_overlays_for_delete (BEG
, Z
- BEG
);
3114 BUF_INTERVALS (current_buffer
) = 0;
3115 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
3117 /* Now we are safe to change the buffer's multibyteness directly. */
3118 current_buffer
->enable_multibyte_characters
= multibyte
;
3119 current_buffer
->undo_list
= undo_list
;
3125 /* Used to pass values from insert-file-contents to read_non_regular. */
3127 static int non_regular_fd
;
3128 static EMACS_INT non_regular_inserted
;
3129 static EMACS_INT non_regular_nbytes
;
3132 /* Read from a non-regular file.
3133 Read non_regular_nbytes bytes max from non_regular_fd.
3134 Non_regular_inserted specifies where to put the read bytes.
3135 Value is the number of bytes read. */
3138 read_non_regular (Lisp_Object ignore
)
3144 nbytes
= emacs_read (non_regular_fd
,
3145 BEG_ADDR
+ PT_BYTE
- BEG_BYTE
+ non_regular_inserted
,
3146 non_regular_nbytes
);
3148 return make_number (nbytes
);
3152 /* Condition-case handler used when reading from non-regular files
3153 in insert-file-contents. */
3156 read_non_regular_quit (Lisp_Object ignore
)
3162 DEFUN ("insert-file-contents", Finsert_file_contents
, Sinsert_file_contents
,
3164 doc
: /* Insert contents of file FILENAME after point.
3165 Returns list of absolute file name and number of characters inserted.
3166 If second argument VISIT is non-nil, the buffer's visited filename and
3167 last save file modtime are set, and it is marked unmodified. If
3168 visiting and the file does not exist, visiting is completed before the
3171 The optional third and fourth arguments BEG and END specify what portion
3172 of the file to insert. These arguments count bytes in the file, not
3173 characters in the buffer. If VISIT is non-nil, BEG and END must be nil.
3175 If optional fifth argument REPLACE is non-nil, replace the current
3176 buffer contents (in the accessible portion) with the file contents.
3177 This is better than simply deleting and inserting the whole thing
3178 because (1) it preserves some marker positions and (2) it puts less data
3179 in the undo list. When REPLACE is non-nil, the second return value is
3180 the number of characters that replace previous buffer contents.
3182 This function does code conversion according to the value of
3183 `coding-system-for-read' or `file-coding-system-alist', and sets the
3184 variable `last-coding-system-used' to the coding system actually used. */)
3185 (Lisp_Object filename
, Lisp_Object visit
, Lisp_Object beg
, Lisp_Object end
, Lisp_Object replace
)
3189 EMACS_INT inserted
= 0;
3191 register EMACS_INT how_much
;
3192 register EMACS_INT unprocessed
;
3193 int count
= SPECPDL_INDEX ();
3194 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
3195 Lisp_Object handler
, val
, insval
, orig_filename
, old_undo
;
3197 EMACS_INT total
= 0;
3198 int not_regular
= 0;
3199 unsigned char read_buf
[READ_BUF_SIZE
];
3200 struct coding_system coding
;
3201 unsigned char buffer
[1 << 14];
3202 int replace_handled
= 0;
3203 int set_coding_system
= 0;
3204 Lisp_Object coding_system
;
3206 Lisp_Object old_Vdeactivate_mark
= Vdeactivate_mark
;
3207 int we_locked_file
= 0;
3208 int deferred_remove_unwind_protect
= 0;
3210 if (current_buffer
->base_buffer
&& ! NILP (visit
))
3211 error ("Cannot do file visiting in an indirect buffer");
3213 if (!NILP (current_buffer
->read_only
))
3214 Fbarf_if_buffer_read_only ();
3218 orig_filename
= Qnil
;
3221 GCPRO5 (filename
, val
, p
, orig_filename
, old_undo
);
3223 CHECK_STRING (filename
);
3224 filename
= Fexpand_file_name (filename
, Qnil
);
3226 /* The value Qnil means that the coding system is not yet
3228 coding_system
= Qnil
;
3230 /* If the file name has special constructs in it,
3231 call the corresponding file handler. */
3232 handler
= Ffind_file_name_handler (filename
, Qinsert_file_contents
);
3233 if (!NILP (handler
))
3235 val
= call6 (handler
, Qinsert_file_contents
, filename
,
3236 visit
, beg
, end
, replace
);
3237 if (CONSP (val
) && CONSP (XCDR (val
)))
3238 inserted
= XINT (XCAR (XCDR (val
)));
3242 orig_filename
= filename
;
3243 filename
= ENCODE_FILE (filename
);
3249 Lisp_Object tem
= Vw32_get_true_file_attributes
;
3251 /* Tell stat to use expensive method to get accurate info. */
3252 Vw32_get_true_file_attributes
= Qt
;
3253 total
= stat (SSDATA (filename
), &st
);
3254 Vw32_get_true_file_attributes
= tem
;
3258 if (stat (SSDATA (filename
), &st
) < 0)
3259 #endif /* WINDOWSNT */
3261 if (fd
>= 0) emacs_close (fd
);
3264 report_file_error ("Opening input file", Fcons (orig_filename
, Qnil
));
3267 if (!NILP (Vcoding_system_for_read
))
3268 Fset (Qbuffer_file_coding_system
, Vcoding_system_for_read
);
3273 /* This code will need to be changed in order to work on named
3274 pipes, and it's probably just not worth it. So we should at
3275 least signal an error. */
3276 if (!S_ISREG (st
.st_mode
))
3283 if (! NILP (replace
) || ! NILP (beg
) || ! NILP (end
))
3284 xsignal2 (Qfile_error
,
3285 build_string ("not a regular file"), orig_filename
);
3290 if ((fd
= emacs_open (SSDATA (filename
), O_RDONLY
, 0)) < 0)
3293 /* Replacement should preserve point as it preserves markers. */
3294 if (!NILP (replace
))
3295 record_unwind_protect (restore_point_unwind
, Fpoint_marker ());
3297 record_unwind_protect (close_file_unwind
, make_number (fd
));
3299 /* Can happen on any platform that uses long as type of off_t, but allows
3300 file sizes to exceed 2Gb, so give a suitable message. */
3301 if (! not_regular
&& st
.st_size
< 0)
3302 error ("Maximum buffer size exceeded");
3304 /* Prevent redisplay optimizations. */
3305 current_buffer
->clip_changed
= 1;
3309 if (!NILP (beg
) || !NILP (end
))
3310 error ("Attempt to visit less than an entire file");
3311 if (BEG
< Z
&& NILP (replace
))
3312 error ("Cannot do file visiting in a non-empty buffer");
3318 XSETFASTINT (beg
, 0);
3326 XSETINT (end
, st
.st_size
);
3328 /* Arithmetic overflow can occur if an Emacs integer cannot
3329 represent the file size, or if the calculations below
3330 overflow. The calculations below double the file size
3331 twice, so check that it can be multiplied by 4 safely. */
3332 if (XINT (end
) != st
.st_size
3333 /* Actually, it should test either INT_MAX or LONG_MAX
3334 depending on which one is used for EMACS_INT. But in
3335 any case, in practice, this test is redundant with the
3337 || st.st_size > INT_MAX / 4 */)
3338 error ("Maximum buffer size exceeded");
3340 /* The file size returned from stat may be zero, but data
3341 may be readable nonetheless, for example when this is a
3342 file in the /proc filesystem. */
3343 if (st
.st_size
== 0)
3344 XSETINT (end
, READ_BUF_SIZE
);
3348 if (EQ (Vcoding_system_for_read
, Qauto_save_coding
))
3350 coding_system
= coding_inherit_eol_type (Qutf_8_emacs
, Qunix
);
3351 setup_coding_system (coding_system
, &coding
);
3352 /* Ensure we set Vlast_coding_system_used. */
3353 set_coding_system
= 1;
3357 /* Decide the coding system to use for reading the file now
3358 because we can't use an optimized method for handling
3359 `coding:' tag if the current buffer is not empty. */
3360 if (!NILP (Vcoding_system_for_read
))
3361 coding_system
= Vcoding_system_for_read
;
3364 /* Don't try looking inside a file for a coding system
3365 specification if it is not seekable. */
3366 if (! not_regular
&& ! NILP (Vset_auto_coding_function
))
3368 /* Find a coding system specified in the heading two
3369 lines or in the tailing several lines of the file.
3370 We assume that the 1K-byte and 3K-byte for heading
3371 and tailing respectively are sufficient for this
3375 if (st
.st_size
<= (1024 * 4))
3376 nread
= emacs_read (fd
, read_buf
, 1024 * 4);
3379 nread
= emacs_read (fd
, read_buf
, 1024);
3382 if (lseek (fd
, st
.st_size
- (1024 * 3), 0) < 0)
3383 report_file_error ("Setting file position",
3384 Fcons (orig_filename
, Qnil
));
3385 nread
+= emacs_read (fd
, read_buf
+ nread
, 1024 * 3);
3390 error ("IO error reading %s: %s",
3391 SDATA (orig_filename
), emacs_strerror (errno
));
3394 struct buffer
*prev
= current_buffer
;
3398 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
3400 buffer
= Fget_buffer_create (build_string (" *code-converting-work*"));
3401 buf
= XBUFFER (buffer
);
3403 delete_all_overlays (buf
);
3404 buf
->directory
= current_buffer
->directory
;
3405 buf
->read_only
= Qnil
;
3406 buf
->filename
= Qnil
;
3407 buf
->undo_list
= Qt
;
3408 eassert (buf
->overlays_before
== NULL
);
3409 eassert (buf
->overlays_after
== NULL
);
3411 set_buffer_internal (buf
);
3413 buf
->enable_multibyte_characters
= Qnil
;
3415 insert_1_both (read_buf
, nread
, nread
, 0, 0, 0);
3416 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
3417 coding_system
= call2 (Vset_auto_coding_function
,
3418 filename
, make_number (nread
));
3419 set_buffer_internal (prev
);
3421 /* Discard the unwind protect for recovering the
3425 /* Rewind the file for the actual read done later. */
3426 if (lseek (fd
, 0, 0) < 0)
3427 report_file_error ("Setting file position",
3428 Fcons (orig_filename
, Qnil
));
3432 if (NILP (coding_system
))
3434 /* If we have not yet decided a coding system, check
3435 file-coding-system-alist. */
3436 Lisp_Object args
[6];
3438 args
[0] = Qinsert_file_contents
, args
[1] = orig_filename
;
3439 args
[2] = visit
, args
[3] = beg
, args
[4] = end
, args
[5] = replace
;
3440 coding_system
= Ffind_operation_coding_system (6, args
);
3441 if (CONSP (coding_system
))
3442 coding_system
= XCAR (coding_system
);
3446 if (NILP (coding_system
))
3447 coding_system
= Qundecided
;
3449 CHECK_CODING_SYSTEM (coding_system
);
3451 if (NILP (current_buffer
->enable_multibyte_characters
))
3452 /* We must suppress all character code conversion except for
3453 end-of-line conversion. */
3454 coding_system
= raw_text_coding_system (coding_system
);
3456 setup_coding_system (coding_system
, &coding
);
3457 /* Ensure we set Vlast_coding_system_used. */
3458 set_coding_system
= 1;
3461 /* If requested, replace the accessible part of the buffer
3462 with the file contents. Avoid replacing text at the
3463 beginning or end of the buffer that matches the file contents;
3464 that preserves markers pointing to the unchanged parts.
3466 Here we implement this feature in an optimized way
3467 for the case where code conversion is NOT needed.
3468 The following if-statement handles the case of conversion
3469 in a less optimal way.
3471 If the code conversion is "automatic" then we try using this
3472 method and hope for the best.
3473 But if we discover the need for conversion, we give up on this method
3474 and let the following if-statement handle the replace job. */
3477 && (NILP (coding_system
)
3478 || ! CODING_REQUIRE_DECODING (&coding
)))
3480 /* same_at_start and same_at_end count bytes,
3481 because file access counts bytes
3482 and BEG and END count bytes. */
3483 EMACS_INT same_at_start
= BEGV_BYTE
;
3484 EMACS_INT same_at_end
= ZV_BYTE
;
3486 /* There is still a possibility we will find the need to do code
3487 conversion. If that happens, we set this variable to 1 to
3488 give up on handling REPLACE in the optimized way. */
3489 int giveup_match_end
= 0;
3491 if (XINT (beg
) != 0)
3493 if (lseek (fd
, XINT (beg
), 0) < 0)
3494 report_file_error ("Setting file position",
3495 Fcons (orig_filename
, Qnil
));
3500 /* Count how many chars at the start of the file
3501 match the text at the beginning of the buffer. */
3504 EMACS_INT nread
, bufpos
;
3506 nread
= emacs_read (fd
, buffer
, sizeof buffer
);
3508 error ("IO error reading %s: %s",
3509 SDATA (orig_filename
), emacs_strerror (errno
));
3510 else if (nread
== 0)
3513 if (CODING_REQUIRE_DETECTION (&coding
))
3515 coding_system
= detect_coding_system (buffer
, nread
, nread
, 1, 0,
3517 setup_coding_system (coding_system
, &coding
);
3520 if (CODING_REQUIRE_DECODING (&coding
))
3521 /* We found that the file should be decoded somehow.
3522 Let's give up here. */
3524 giveup_match_end
= 1;
3529 while (bufpos
< nread
&& same_at_start
< ZV_BYTE
3530 && FETCH_BYTE (same_at_start
) == buffer
[bufpos
])
3531 same_at_start
++, bufpos
++;
3532 /* If we found a discrepancy, stop the scan.
3533 Otherwise loop around and scan the next bufferful. */
3534 if (bufpos
!= nread
)
3538 /* If the file matches the buffer completely,
3539 there's no need to replace anything. */
3540 if (same_at_start
- BEGV_BYTE
== XINT (end
))
3544 /* Truncate the buffer to the size of the file. */
3545 del_range_1 (same_at_start
, same_at_end
, 0, 0);
3550 /* Count how many chars at the end of the file
3551 match the text at the end of the buffer. But, if we have
3552 already found that decoding is necessary, don't waste time. */
3553 while (!giveup_match_end
)
3555 EMACS_INT total_read
, nread
, bufpos
, curpos
, trial
;
3557 /* At what file position are we now scanning? */
3558 curpos
= XINT (end
) - (ZV_BYTE
- same_at_end
);
3559 /* If the entire file matches the buffer tail, stop the scan. */
3562 /* How much can we scan in the next step? */
3563 trial
= min (curpos
, sizeof buffer
);
3564 if (lseek (fd
, curpos
- trial
, 0) < 0)
3565 report_file_error ("Setting file position",
3566 Fcons (orig_filename
, Qnil
));
3568 total_read
= nread
= 0;
3569 while (total_read
< trial
)
3571 nread
= emacs_read (fd
, buffer
+ total_read
, trial
- total_read
);
3573 error ("IO error reading %s: %s",
3574 SDATA (orig_filename
), emacs_strerror (errno
));
3575 else if (nread
== 0)
3577 total_read
+= nread
;
3580 /* Scan this bufferful from the end, comparing with
3581 the Emacs buffer. */
3582 bufpos
= total_read
;
3584 /* Compare with same_at_start to avoid counting some buffer text
3585 as matching both at the file's beginning and at the end. */
3586 while (bufpos
> 0 && same_at_end
> same_at_start
3587 && FETCH_BYTE (same_at_end
- 1) == buffer
[bufpos
- 1])
3588 same_at_end
--, bufpos
--;
3590 /* If we found a discrepancy, stop the scan.
3591 Otherwise loop around and scan the preceding bufferful. */
3594 /* If this discrepancy is because of code conversion,
3595 we cannot use this method; giveup and try the other. */
3596 if (same_at_end
> same_at_start
3597 && FETCH_BYTE (same_at_end
- 1) >= 0200
3598 && ! NILP (current_buffer
->enable_multibyte_characters
)
3599 && (CODING_MAY_REQUIRE_DECODING (&coding
)))
3600 giveup_match_end
= 1;
3609 if (! giveup_match_end
)
3613 /* We win! We can handle REPLACE the optimized way. */
3615 /* Extend the start of non-matching text area to multibyte
3616 character boundary. */
3617 if (! NILP (current_buffer
->enable_multibyte_characters
))
3618 while (same_at_start
> BEGV_BYTE
3619 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start
)))
3622 /* Extend the end of non-matching text area to multibyte
3623 character boundary. */
3624 if (! NILP (current_buffer
->enable_multibyte_characters
))
3625 while (same_at_end
< ZV_BYTE
3626 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end
)))
3629 /* Don't try to reuse the same piece of text twice. */
3630 overlap
= (same_at_start
- BEGV_BYTE
3631 - (same_at_end
+ st
.st_size
- ZV
));
3633 same_at_end
+= overlap
;
3635 /* Arrange to read only the nonmatching middle part of the file. */
3636 XSETFASTINT (beg
, XINT (beg
) + (same_at_start
- BEGV_BYTE
));
3637 XSETFASTINT (end
, XINT (end
) - (ZV_BYTE
- same_at_end
));
3639 del_range_byte (same_at_start
, same_at_end
, 0);
3640 /* Insert from the file at the proper position. */
3641 temp
= BYTE_TO_CHAR (same_at_start
);
3642 SET_PT_BOTH (temp
, same_at_start
);
3644 /* If display currently starts at beginning of line,
3645 keep it that way. */
3646 if (XBUFFER (XWINDOW (selected_window
)->buffer
) == current_buffer
)
3647 XWINDOW (selected_window
)->start_at_line_beg
= Fbolp ();
3649 replace_handled
= 1;
3653 /* If requested, replace the accessible part of the buffer
3654 with the file contents. Avoid replacing text at the
3655 beginning or end of the buffer that matches the file contents;
3656 that preserves markers pointing to the unchanged parts.
3658 Here we implement this feature for the case where code conversion
3659 is needed, in a simple way that needs a lot of memory.
3660 The preceding if-statement handles the case of no conversion
3661 in a more optimized way. */
3662 if (!NILP (replace
) && ! replace_handled
&& BEGV
< ZV
)
3664 EMACS_INT same_at_start
= BEGV_BYTE
;
3665 EMACS_INT same_at_end
= ZV_BYTE
;
3666 EMACS_INT same_at_start_charpos
;
3667 EMACS_INT inserted_chars
;
3670 unsigned char *decoded
;
3672 int this_count
= SPECPDL_INDEX ();
3673 int multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
3674 Lisp_Object conversion_buffer
;
3676 conversion_buffer
= code_conversion_save (1, multibyte
);
3678 /* First read the whole file, performing code conversion into
3679 CONVERSION_BUFFER. */
3681 if (lseek (fd
, XINT (beg
), 0) < 0)
3682 report_file_error ("Setting file position",
3683 Fcons (orig_filename
, Qnil
));
3685 total
= st
.st_size
; /* Total bytes in the file. */
3686 how_much
= 0; /* Bytes read from file so far. */
3687 inserted
= 0; /* Bytes put into CONVERSION_BUFFER so far. */
3688 unprocessed
= 0; /* Bytes not processed in previous loop. */
3690 GCPRO1 (conversion_buffer
);
3691 while (how_much
< total
)
3693 /* We read one bunch by one (READ_BUF_SIZE bytes) to allow
3694 quitting while reading a huge while. */
3695 /* try is reserved in some compilers (Microsoft C) */
3696 EMACS_INT trytry
= min (total
- how_much
,
3697 READ_BUF_SIZE
- unprocessed
);
3700 /* Allow quitting out of the actual I/O. */
3703 this = emacs_read (fd
, read_buf
+ unprocessed
, trytry
);
3715 BUF_TEMP_SET_PT (XBUFFER (conversion_buffer
),
3716 BUF_Z (XBUFFER (conversion_buffer
)));
3717 decode_coding_c_string (&coding
, read_buf
, unprocessed
+ this,
3719 unprocessed
= coding
.carryover_bytes
;
3720 if (coding
.carryover_bytes
> 0)
3721 memcpy (read_buf
, coding
.carryover
, unprocessed
);
3726 /* We should remove the unwind_protect calling
3727 close_file_unwind, but other stuff has been added the stack,
3728 so defer the removal till we reach the `handled' label. */
3729 deferred_remove_unwind_protect
= 1;
3731 /* At this point, HOW_MUCH should equal TOTAL, or should be <= 0
3732 if we couldn't read the file. */
3735 error ("IO error reading %s: %s",
3736 SDATA (orig_filename
), emacs_strerror (errno
));
3738 if (unprocessed
> 0)
3740 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
3741 decode_coding_c_string (&coding
, read_buf
, unprocessed
,
3743 coding
.mode
&= ~CODING_MODE_LAST_BLOCK
;
3746 coding_system
= CODING_ID_NAME (coding
.id
);
3747 set_coding_system
= 1;
3748 decoded
= BUF_BEG_ADDR (XBUFFER (conversion_buffer
));
3749 inserted
= (BUF_Z_BYTE (XBUFFER (conversion_buffer
))
3750 - BUF_BEG_BYTE (XBUFFER (conversion_buffer
)));
3752 /* Compare the beginning of the converted string with the buffer
3756 while (bufpos
< inserted
&& same_at_start
< same_at_end
3757 && FETCH_BYTE (same_at_start
) == decoded
[bufpos
])
3758 same_at_start
++, bufpos
++;
3760 /* If the file matches the head of buffer completely,
3761 there's no need to replace anything. */
3763 if (bufpos
== inserted
)
3765 /* Truncate the buffer to the size of the file. */
3766 if (same_at_start
== same_at_end
)
3769 del_range_byte (same_at_start
, same_at_end
, 0);
3772 unbind_to (this_count
, Qnil
);
3776 /* Extend the start of non-matching text area to the previous
3777 multibyte character boundary. */
3778 if (! NILP (current_buffer
->enable_multibyte_characters
))
3779 while (same_at_start
> BEGV_BYTE
3780 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start
)))
3783 /* Scan this bufferful from the end, comparing with
3784 the Emacs buffer. */
3787 /* Compare with same_at_start to avoid counting some buffer text
3788 as matching both at the file's beginning and at the end. */
3789 while (bufpos
> 0 && same_at_end
> same_at_start
3790 && FETCH_BYTE (same_at_end
- 1) == decoded
[bufpos
- 1])
3791 same_at_end
--, bufpos
--;
3793 /* Extend the end of non-matching text area to the next
3794 multibyte character boundary. */
3795 if (! NILP (current_buffer
->enable_multibyte_characters
))
3796 while (same_at_end
< ZV_BYTE
3797 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end
)))
3800 /* Don't try to reuse the same piece of text twice. */
3801 overlap
= same_at_start
- BEGV_BYTE
- (same_at_end
+ inserted
- ZV_BYTE
);
3803 same_at_end
+= overlap
;
3805 /* If display currently starts at beginning of line,
3806 keep it that way. */
3807 if (XBUFFER (XWINDOW (selected_window
)->buffer
) == current_buffer
)
3808 XWINDOW (selected_window
)->start_at_line_beg
= Fbolp ();
3810 /* Replace the chars that we need to replace,
3811 and update INSERTED to equal the number of bytes
3812 we are taking from the decoded string. */
3813 inserted
-= (ZV_BYTE
- same_at_end
) + (same_at_start
- BEGV_BYTE
);
3815 if (same_at_end
!= same_at_start
)
3817 del_range_byte (same_at_start
, same_at_end
, 0);
3819 same_at_start
= GPT_BYTE
;
3823 temp
= BYTE_TO_CHAR (same_at_start
);
3825 /* Insert from the file at the proper position. */
3826 SET_PT_BOTH (temp
, same_at_start
);
3827 same_at_start_charpos
3828 = buf_bytepos_to_charpos (XBUFFER (conversion_buffer
),
3829 same_at_start
- BEGV_BYTE
3830 + BUF_BEG_BYTE (XBUFFER (conversion_buffer
)));
3832 = (buf_bytepos_to_charpos (XBUFFER (conversion_buffer
),
3833 same_at_start
+ inserted
- BEGV_BYTE
3834 + BUF_BEG_BYTE (XBUFFER (conversion_buffer
)))
3835 - same_at_start_charpos
);
3836 /* This binding is to avoid ask-user-about-supersession-threat
3837 being called in insert_from_buffer (via in
3838 prepare_to_modify_buffer). */
3839 specbind (intern ("buffer-file-name"), Qnil
);
3840 insert_from_buffer (XBUFFER (conversion_buffer
),
3841 same_at_start_charpos
, inserted_chars
, 0);
3842 /* Set `inserted' to the number of inserted characters. */
3843 inserted
= PT
- temp
;
3844 /* Set point before the inserted characters. */
3845 SET_PT_BOTH (temp
, same_at_start
);
3847 unbind_to (this_count
, Qnil
);
3854 register Lisp_Object temp
;
3856 total
= XINT (end
) - XINT (beg
);
3858 /* Make sure point-max won't overflow after this insertion. */
3859 XSETINT (temp
, total
);
3860 if (total
!= XINT (temp
))
3861 error ("Maximum buffer size exceeded");
3864 /* For a special file, all we can do is guess. */
3865 total
= READ_BUF_SIZE
;
3867 if (NILP (visit
) && inserted
> 0)
3869 #ifdef CLASH_DETECTION
3870 if (!NILP (current_buffer
->file_truename
)
3871 /* Make binding buffer-file-name to nil effective. */
3872 && !NILP (current_buffer
->filename
)
3873 && SAVE_MODIFF
>= MODIFF
)
3875 #endif /* CLASH_DETECTION */
3876 prepare_to_modify_buffer (GPT
, GPT
, NULL
);
3880 if (GAP_SIZE
< total
)
3881 make_gap (total
- GAP_SIZE
);
3883 if (XINT (beg
) != 0 || !NILP (replace
))
3885 if (lseek (fd
, XINT (beg
), 0) < 0)
3886 report_file_error ("Setting file position",
3887 Fcons (orig_filename
, Qnil
));
3890 /* In the following loop, HOW_MUCH contains the total bytes read so
3891 far for a regular file, and not changed for a special file. But,
3892 before exiting the loop, it is set to a negative value if I/O
3896 /* Total bytes inserted. */
3899 /* Here, we don't do code conversion in the loop. It is done by
3900 decode_coding_gap after all data are read into the buffer. */
3902 EMACS_INT gap_size
= GAP_SIZE
;
3904 while (how_much
< total
)
3906 /* try is reserved in some compilers (Microsoft C) */
3907 EMACS_INT trytry
= min (total
- how_much
, READ_BUF_SIZE
);
3914 /* Maybe make more room. */
3915 if (gap_size
< trytry
)
3917 make_gap (total
- gap_size
);
3918 gap_size
= GAP_SIZE
;
3921 /* Read from the file, capturing `quit'. When an
3922 error occurs, end the loop, and arrange for a quit
3923 to be signaled after decoding the text we read. */
3924 non_regular_fd
= fd
;
3925 non_regular_inserted
= inserted
;
3926 non_regular_nbytes
= trytry
;
3927 val
= internal_condition_case_1 (read_non_regular
, Qnil
, Qerror
,
3928 read_non_regular_quit
);
3939 /* Allow quitting out of the actual I/O. We don't make text
3940 part of the buffer until all the reading is done, so a C-g
3941 here doesn't do any harm. */
3944 this = emacs_read (fd
, BEG_ADDR
+ PT_BYTE
- BEG_BYTE
+ inserted
, trytry
);
3956 /* For a regular file, where TOTAL is the real size,
3957 count HOW_MUCH to compare with it.
3958 For a special file, where TOTAL is just a buffer size,
3959 so don't bother counting in HOW_MUCH.
3960 (INSERTED is where we count the number of characters inserted.) */
3967 /* Now we have read all the file data into the gap.
3968 If it was empty, undo marking the buffer modified. */
3972 #ifdef CLASH_DETECTION
3974 unlock_file (current_buffer
->file_truename
);
3976 Vdeactivate_mark
= old_Vdeactivate_mark
;
3979 Vdeactivate_mark
= Qt
;
3981 /* Make the text read part of the buffer. */
3982 GAP_SIZE
-= inserted
;
3984 GPT_BYTE
+= inserted
;
3986 ZV_BYTE
+= inserted
;
3991 /* Put an anchor to ensure multi-byte form ends at gap. */
3996 /* Discard the unwind protect for closing the file. */
4000 error ("IO error reading %s: %s",
4001 SDATA (orig_filename
), emacs_strerror (errno
));
4005 if (NILP (coding_system
))
4007 /* The coding system is not yet decided. Decide it by an
4008 optimized method for handling `coding:' tag.
4010 Note that we can get here only if the buffer was empty
4011 before the insertion. */
4013 if (!NILP (Vcoding_system_for_read
))
4014 coding_system
= Vcoding_system_for_read
;
4017 /* Since we are sure that the current buffer was empty
4018 before the insertion, we can toggle
4019 enable-multibyte-characters directly here without taking
4020 care of marker adjustment. By this way, we can run Lisp
4021 program safely before decoding the inserted text. */
4022 Lisp_Object unwind_data
;
4023 int count
= SPECPDL_INDEX ();
4025 unwind_data
= Fcons (current_buffer
->enable_multibyte_characters
,
4026 Fcons (current_buffer
->undo_list
,
4027 Fcurrent_buffer ()));
4028 current_buffer
->enable_multibyte_characters
= Qnil
;
4029 current_buffer
->undo_list
= Qt
;
4030 record_unwind_protect (decide_coding_unwind
, unwind_data
);
4032 if (inserted
> 0 && ! NILP (Vset_auto_coding_function
))
4034 coding_system
= call2 (Vset_auto_coding_function
,
4035 filename
, make_number (inserted
));
4038 if (NILP (coding_system
))
4040 /* If the coding system is not yet decided, check
4041 file-coding-system-alist. */
4042 Lisp_Object args
[6];
4044 args
[0] = Qinsert_file_contents
, args
[1] = orig_filename
;
4045 args
[2] = visit
, args
[3] = beg
, args
[4] = end
, args
[5] = Qnil
;
4046 coding_system
= Ffind_operation_coding_system (6, args
);
4047 if (CONSP (coding_system
))
4048 coding_system
= XCAR (coding_system
);
4050 unbind_to (count
, Qnil
);
4051 inserted
= Z_BYTE
- BEG_BYTE
;
4054 if (NILP (coding_system
))
4055 coding_system
= Qundecided
;
4057 CHECK_CODING_SYSTEM (coding_system
);
4059 if (NILP (current_buffer
->enable_multibyte_characters
))
4060 /* We must suppress all character code conversion except for
4061 end-of-line conversion. */
4062 coding_system
= raw_text_coding_system (coding_system
);
4063 setup_coding_system (coding_system
, &coding
);
4064 /* Ensure we set Vlast_coding_system_used. */
4065 set_coding_system
= 1;
4070 /* When we visit a file by raw-text, we change the buffer to
4072 if (CODING_FOR_UNIBYTE (&coding
)
4073 /* Can't do this if part of the buffer might be preserved. */
4075 /* Visiting a file with these coding system makes the buffer
4077 current_buffer
->enable_multibyte_characters
= Qnil
;
4080 coding
.dst_multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
4081 if (CODING_MAY_REQUIRE_DECODING (&coding
)
4082 && (inserted
> 0 || CODING_REQUIRE_FLUSHING (&coding
)))
4084 move_gap_both (PT
, PT_BYTE
);
4085 GAP_SIZE
+= inserted
;
4086 ZV_BYTE
-= inserted
;
4090 decode_coding_gap (&coding
, inserted
, inserted
);
4091 inserted
= coding
.produced_char
;
4092 coding_system
= CODING_ID_NAME (coding
.id
);
4094 else if (inserted
> 0)
4095 adjust_after_insert (PT
, PT_BYTE
, PT
+ inserted
, PT_BYTE
+ inserted
,
4098 /* Now INSERTED is measured in characters. */
4101 /* Use the conversion type to determine buffer-file-type
4102 (find-buffer-file-type is now used to help determine the
4104 if ((VECTORP (CODING_ID_EOL_TYPE (coding
.id
))
4105 || EQ (CODING_ID_EOL_TYPE (coding
.id
), Qunix
))
4106 && ! CODING_REQUIRE_DECODING (&coding
))
4107 current_buffer
->buffer_file_type
= Qt
;
4109 current_buffer
->buffer_file_type
= Qnil
;
4114 if (deferred_remove_unwind_protect
)
4115 /* If requested above, discard the unwind protect for closing the
4121 if (!EQ (current_buffer
->undo_list
, Qt
) && !nochange
)
4122 current_buffer
->undo_list
= Qnil
;
4126 current_buffer
->modtime
= st
.st_mtime
;
4127 current_buffer
->modtime_size
= st
.st_size
;
4128 current_buffer
->filename
= orig_filename
;
4131 SAVE_MODIFF
= MODIFF
;
4132 BUF_AUTOSAVE_MODIFF (current_buffer
) = MODIFF
;
4133 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
4134 #ifdef CLASH_DETECTION
4137 if (!NILP (current_buffer
->file_truename
))
4138 unlock_file (current_buffer
->file_truename
);
4139 unlock_file (filename
);
4141 #endif /* CLASH_DETECTION */
4143 xsignal2 (Qfile_error
,
4144 build_string ("not a regular file"), orig_filename
);
4147 if (set_coding_system
)
4148 Vlast_coding_system_used
= coding_system
;
4150 if (! NILP (Ffboundp (Qafter_insert_file_set_coding
)))
4152 insval
= call2 (Qafter_insert_file_set_coding
, make_number (inserted
),
4154 if (! NILP (insval
))
4156 CHECK_NUMBER (insval
);
4157 inserted
= XFASTINT (insval
);
4161 /* Decode file format. */
4164 /* Don't run point motion or modification hooks when decoding. */
4165 int count
= SPECPDL_INDEX ();
4166 EMACS_INT old_inserted
= inserted
;
4167 specbind (Qinhibit_point_motion_hooks
, Qt
);
4168 specbind (Qinhibit_modification_hooks
, Qt
);
4170 /* Save old undo list and don't record undo for decoding. */
4171 old_undo
= current_buffer
->undo_list
;
4172 current_buffer
->undo_list
= Qt
;
4176 insval
= call3 (Qformat_decode
,
4177 Qnil
, make_number (inserted
), visit
);
4178 CHECK_NUMBER (insval
);
4179 inserted
= XFASTINT (insval
);
4183 /* If REPLACE is non-nil and we succeeded in not replacing the
4184 beginning or end of the buffer text with the file's contents,
4185 call format-decode with `point' positioned at the beginning
4186 of the buffer and `inserted' equalling the number of
4187 characters in the buffer. Otherwise, format-decode might
4188 fail to correctly analyze the beginning or end of the buffer.
4189 Hence we temporarily save `point' and `inserted' here and
4190 restore `point' iff format-decode did not insert or delete
4191 any text. Otherwise we leave `point' at point-min. */
4192 EMACS_INT opoint
= PT
;
4193 EMACS_INT opoint_byte
= PT_BYTE
;
4194 EMACS_INT oinserted
= ZV
- BEGV
;
4195 int ochars_modiff
= CHARS_MODIFF
;
4197 TEMP_SET_PT_BOTH (BEGV
, BEGV_BYTE
);
4198 insval
= call3 (Qformat_decode
,
4199 Qnil
, make_number (oinserted
), visit
);
4200 CHECK_NUMBER (insval
);
4201 if (ochars_modiff
== CHARS_MODIFF
)
4202 /* format_decode didn't modify buffer's characters => move
4203 point back to position before inserted text and leave
4204 value of inserted alone. */
4205 SET_PT_BOTH (opoint
, opoint_byte
);
4207 /* format_decode modified buffer's characters => consider
4208 entire buffer changed and leave point at point-min. */
4209 inserted
= XFASTINT (insval
);
4212 /* For consistency with format-decode call these now iff inserted > 0
4213 (martin 2007-06-28). */
4214 p
= Vafter_insert_file_functions
;
4219 insval
= call1 (XCAR (p
), make_number (inserted
));
4222 CHECK_NUMBER (insval
);
4223 inserted
= XFASTINT (insval
);
4228 /* For the rationale of this see the comment on
4229 format-decode above. */
4230 EMACS_INT opoint
= PT
;
4231 EMACS_INT opoint_byte
= PT_BYTE
;
4232 EMACS_INT oinserted
= ZV
- BEGV
;
4233 int ochars_modiff
= CHARS_MODIFF
;
4235 TEMP_SET_PT_BOTH (BEGV
, BEGV_BYTE
);
4236 insval
= call1 (XCAR (p
), make_number (oinserted
));
4239 CHECK_NUMBER (insval
);
4240 if (ochars_modiff
== CHARS_MODIFF
)
4241 /* after_insert_file_functions didn't modify
4242 buffer's characters => move point back to
4243 position before inserted text and leave value of
4245 SET_PT_BOTH (opoint
, opoint_byte
);
4247 /* after_insert_file_functions did modify buffer's
4248 characters => consider entire buffer changed and
4249 leave point at point-min. */
4250 inserted
= XFASTINT (insval
);
4260 current_buffer
->undo_list
= old_undo
;
4261 if (CONSP (old_undo
) && inserted
!= old_inserted
)
4263 /* Adjust the last undo record for the size change during
4264 the format conversion. */
4265 Lisp_Object tem
= XCAR (old_undo
);
4266 if (CONSP (tem
) && INTEGERP (XCAR (tem
))
4267 && INTEGERP (XCDR (tem
))
4268 && XFASTINT (XCDR (tem
)) == PT
+ old_inserted
)
4269 XSETCDR (tem
, make_number (PT
+ inserted
));
4273 /* If undo_list was Qt before, keep it that way.
4274 Otherwise start with an empty undo_list. */
4275 current_buffer
->undo_list
= EQ (old_undo
, Qt
) ? Qt
: Qnil
;
4277 unbind_to (count
, Qnil
);
4280 /* Call after-change hooks for the inserted text, aside from the case
4281 of normal visiting (not with REPLACE), which is done in a new buffer
4282 "before" the buffer is changed. */
4283 if (inserted
> 0 && total
> 0
4284 && (NILP (visit
) || !NILP (replace
)))
4286 signal_after_change (PT
, 0, inserted
);
4287 update_compositions (PT
, PT
, CHECK_BORDER
);
4291 && current_buffer
->modtime
== -1)
4293 /* If visiting nonexistent file, return nil. */
4294 report_file_error ("Opening input file", Fcons (orig_filename
, Qnil
));
4298 Fsignal (Qquit
, Qnil
);
4300 /* ??? Retval needs to be dealt with in all cases consistently. */
4302 val
= Fcons (orig_filename
,
4303 Fcons (make_number (inserted
),
4306 RETURN_UNGCPRO (unbind_to (count
, val
));
4309 static Lisp_Object
build_annotations (Lisp_Object
, Lisp_Object
);
4312 build_annotations_unwind (Lisp_Object arg
)
4314 Vwrite_region_annotation_buffers
= arg
;
4318 /* Decide the coding-system to encode the data with. */
4321 choose_write_coding_system (Lisp_Object start
, Lisp_Object end
, Lisp_Object filename
,
4322 Lisp_Object append
, Lisp_Object visit
, Lisp_Object lockname
,
4323 struct coding_system
*coding
)
4326 Lisp_Object eol_parent
= Qnil
;
4329 && NILP (Fstring_equal (current_buffer
->filename
,
4330 current_buffer
->auto_save_file_name
)))
4335 else if (!NILP (Vcoding_system_for_write
))
4337 val
= Vcoding_system_for_write
;
4338 if (coding_system_require_warning
4339 && !NILP (Ffboundp (Vselect_safe_coding_system_function
)))
4340 /* Confirm that VAL can surely encode the current region. */
4341 val
= call5 (Vselect_safe_coding_system_function
,
4342 start
, end
, Fcons (Qt
, Fcons (val
, Qnil
)),
4347 /* If the variable `buffer-file-coding-system' is set locally,
4348 it means that the file was read with some kind of code
4349 conversion or the variable is explicitly set by users. We
4350 had better write it out with the same coding system even if
4351 `enable-multibyte-characters' is nil.
4353 If it is not set locally, we anyway have to convert EOL
4354 format if the default value of `buffer-file-coding-system'
4355 tells that it is not Unix-like (LF only) format. */
4356 int using_default_coding
= 0;
4357 int force_raw_text
= 0;
4359 val
= current_buffer
->buffer_file_coding_system
;
4361 || NILP (Flocal_variable_p (Qbuffer_file_coding_system
, Qnil
)))
4364 if (NILP (current_buffer
->enable_multibyte_characters
))
4370 /* Check file-coding-system-alist. */
4371 Lisp_Object args
[7], coding_systems
;
4373 args
[0] = Qwrite_region
; args
[1] = start
; args
[2] = end
;
4374 args
[3] = filename
; args
[4] = append
; args
[5] = visit
;
4376 coding_systems
= Ffind_operation_coding_system (7, args
);
4377 if (CONSP (coding_systems
) && !NILP (XCDR (coding_systems
)))
4378 val
= XCDR (coding_systems
);
4383 /* If we still have not decided a coding system, use the
4384 default value of buffer-file-coding-system. */
4385 val
= current_buffer
->buffer_file_coding_system
;
4386 using_default_coding
= 1;
4389 if (! NILP (val
) && ! force_raw_text
)
4391 Lisp_Object spec
, attrs
;
4393 CHECK_CODING_SYSTEM_GET_SPEC (val
, spec
);
4394 attrs
= AREF (spec
, 0);
4395 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
4400 && !NILP (Ffboundp (Vselect_safe_coding_system_function
)))
4401 /* Confirm that VAL can surely encode the current region. */
4402 val
= call5 (Vselect_safe_coding_system_function
,
4403 start
, end
, val
, Qnil
, filename
);
4405 /* If the decided coding-system doesn't specify end-of-line
4406 format, we use that of
4407 `default-buffer-file-coding-system'. */
4408 if (! using_default_coding
4409 && ! NILP (buffer_defaults
.buffer_file_coding_system
))
4410 val
= (coding_inherit_eol_type
4411 (val
, buffer_defaults
.buffer_file_coding_system
));
4413 /* If we decide not to encode text, use `raw-text' or one of its
4416 val
= raw_text_coding_system (val
);
4419 val
= coding_inherit_eol_type (val
, eol_parent
);
4420 setup_coding_system (val
, coding
);
4422 if (!STRINGP (start
) && !NILP (current_buffer
->selective_display
))
4423 coding
->mode
|= CODING_MODE_SELECTIVE_DISPLAY
;
4427 DEFUN ("write-region", Fwrite_region
, Swrite_region
, 3, 7,
4428 "r\nFWrite region to file: \ni\ni\ni\np",
4429 doc
: /* Write current region into specified file.
4430 When called from a program, requires three arguments:
4431 START, END and FILENAME. START and END are normally buffer positions
4432 specifying the part of the buffer to write.
4433 If START is nil, that means to use the entire buffer contents.
4434 If START is a string, then output that string to the file
4435 instead of any buffer contents; END is ignored.
4437 Optional fourth argument APPEND if non-nil means
4438 append to existing file contents (if any). If it is an integer,
4439 seek to that offset in the file before writing.
4440 Optional fifth argument VISIT, if t or a string, means
4441 set the last-save-file-modtime of buffer to this file's modtime
4442 and mark buffer not modified.
4443 If VISIT is a string, it is a second file name;
4444 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4445 VISIT is also the file name to lock and unlock for clash detection.
4446 If VISIT is neither t nor nil nor a string,
4447 that means do not display the \"Wrote file\" message.
4448 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4449 use for locking and unlocking, overriding FILENAME and VISIT.
4450 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4451 for an existing file with the same name. If MUSTBENEW is `excl',
4452 that means to get an error if the file already exists; never overwrite.
4453 If MUSTBENEW is neither nil nor `excl', that means ask for
4454 confirmation before overwriting, but do go ahead and overwrite the file
4455 if the user confirms.
4457 This does code conversion according to the value of
4458 `coding-system-for-write', `buffer-file-coding-system', or
4459 `file-coding-system-alist', and sets the variable
4460 `last-coding-system-used' to the coding system actually used.
4462 This calls `write-region-annotate-functions' at the start, and
4463 `write-region-post-annotation-function' at the end. */)
4464 (Lisp_Object start
, Lisp_Object end
, Lisp_Object filename
, Lisp_Object append
, Lisp_Object visit
, Lisp_Object lockname
, Lisp_Object mustbenew
)
4469 const unsigned char *fn
;
4471 int count
= SPECPDL_INDEX ();
4473 Lisp_Object handler
;
4474 Lisp_Object visit_file
;
4475 Lisp_Object annotations
;
4476 Lisp_Object encoded_filename
;
4477 int visiting
= (EQ (visit
, Qt
) || STRINGP (visit
));
4478 int quietly
= !NILP (visit
);
4479 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
4480 struct buffer
*given_buffer
;
4482 int buffer_file_type
= O_BINARY
;
4484 struct coding_system coding
;
4486 if (current_buffer
->base_buffer
&& visiting
)
4487 error ("Cannot do file visiting in an indirect buffer");
4489 if (!NILP (start
) && !STRINGP (start
))
4490 validate_region (&start
, &end
);
4493 GCPRO5 (start
, filename
, visit
, visit_file
, lockname
);
4495 filename
= Fexpand_file_name (filename
, Qnil
);
4497 if (!NILP (mustbenew
) && !EQ (mustbenew
, Qexcl
))
4498 barf_or_query_if_file_exists (filename
, "overwrite", 1, 0, 1);
4500 if (STRINGP (visit
))
4501 visit_file
= Fexpand_file_name (visit
, Qnil
);
4503 visit_file
= filename
;
4505 if (NILP (lockname
))
4506 lockname
= visit_file
;
4510 /* If the file name has special constructs in it,
4511 call the corresponding file handler. */
4512 handler
= Ffind_file_name_handler (filename
, Qwrite_region
);
4513 /* If FILENAME has no handler, see if VISIT has one. */
4514 if (NILP (handler
) && STRINGP (visit
))
4515 handler
= Ffind_file_name_handler (visit
, Qwrite_region
);
4517 if (!NILP (handler
))
4520 val
= call6 (handler
, Qwrite_region
, start
, end
,
4521 filename
, append
, visit
);
4525 SAVE_MODIFF
= MODIFF
;
4526 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
4527 current_buffer
->filename
= visit_file
;
4533 record_unwind_protect (save_restriction_restore
, save_restriction_save ());
4535 /* Special kludge to simplify auto-saving. */
4538 /* Do it later, so write-region-annotate-function can work differently
4539 if we save "the buffer" vs "a region".
4540 This is useful in tar-mode. --Stef
4541 XSETFASTINT (start, BEG);
4542 XSETFASTINT (end, Z); */
4546 record_unwind_protect (build_annotations_unwind
,
4547 Vwrite_region_annotation_buffers
);
4548 Vwrite_region_annotation_buffers
= Fcons (Fcurrent_buffer (), Qnil
);
4549 count1
= SPECPDL_INDEX ();
4551 given_buffer
= current_buffer
;
4553 if (!STRINGP (start
))
4555 annotations
= build_annotations (start
, end
);
4557 if (current_buffer
!= given_buffer
)
4559 XSETFASTINT (start
, BEGV
);
4560 XSETFASTINT (end
, ZV
);
4566 XSETFASTINT (start
, BEGV
);
4567 XSETFASTINT (end
, ZV
);
4572 GCPRO5 (start
, filename
, annotations
, visit_file
, lockname
);
4574 /* Decide the coding-system to encode the data with.
4575 We used to make this choice before calling build_annotations, but that
4576 leads to problems when a write-annotate-function takes care of
4577 unsavable chars (as was the case with X-Symbol). */
4578 Vlast_coding_system_used
4579 = choose_write_coding_system (start
, end
, filename
,
4580 append
, visit
, lockname
, &coding
);
4582 #ifdef CLASH_DETECTION
4584 lock_file (lockname
);
4585 #endif /* CLASH_DETECTION */
4587 encoded_filename
= ENCODE_FILE (filename
);
4589 fn
= SDATA (encoded_filename
);
4593 desc
= emacs_open (fn
, O_WRONLY
| buffer_file_type
, 0);
4594 #else /* not DOS_NT */
4595 desc
= emacs_open (fn
, O_WRONLY
, 0);
4596 #endif /* not DOS_NT */
4598 if (desc
< 0 && (NILP (append
) || errno
== ENOENT
))
4600 desc
= emacs_open (fn
,
4601 O_WRONLY
| O_CREAT
| buffer_file_type
4602 | (EQ (mustbenew
, Qexcl
) ? O_EXCL
: O_TRUNC
),
4603 S_IREAD
| S_IWRITE
);
4604 #else /* not DOS_NT */
4605 desc
= emacs_open (fn
, O_WRONLY
| O_TRUNC
| O_CREAT
4606 | (EQ (mustbenew
, Qexcl
) ? O_EXCL
: 0),
4607 auto_saving
? auto_save_mode_bits
: 0666);
4608 #endif /* not DOS_NT */
4612 #ifdef CLASH_DETECTION
4614 if (!auto_saving
) unlock_file (lockname
);
4616 #endif /* CLASH_DETECTION */
4618 report_file_error ("Opening output file", Fcons (filename
, Qnil
));
4621 record_unwind_protect (close_file_unwind
, make_number (desc
));
4623 if (!NILP (append
) && !NILP (Ffile_regular_p (filename
)))
4627 if (NUMBERP (append
))
4628 ret
= lseek (desc
, XINT (append
), 1);
4630 ret
= lseek (desc
, 0, 2);
4633 #ifdef CLASH_DETECTION
4634 if (!auto_saving
) unlock_file (lockname
);
4635 #endif /* CLASH_DETECTION */
4637 report_file_error ("Lseek error", Fcons (filename
, Qnil
));
4646 if (STRINGP (start
))
4648 failure
= 0 > a_write (desc
, start
, 0, SCHARS (start
),
4649 &annotations
, &coding
);
4652 else if (XINT (start
) != XINT (end
))
4654 failure
= 0 > a_write (desc
, Qnil
,
4655 XINT (start
), XINT (end
) - XINT (start
),
4656 &annotations
, &coding
);
4661 /* If file was empty, still need to write the annotations */
4662 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
4663 failure
= 0 > a_write (desc
, Qnil
, XINT (end
), 0, &annotations
, &coding
);
4667 if (CODING_REQUIRE_FLUSHING (&coding
)
4668 && !(coding
.mode
& CODING_MODE_LAST_BLOCK
)
4671 /* We have to flush out a data. */
4672 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
4673 failure
= 0 > e_write (desc
, Qnil
, 1, 1, &coding
);
4680 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
4681 Disk full in NFS may be reported here. */
4682 /* mib says that closing the file will try to write as fast as NFS can do
4683 it, and that means the fsync here is not crucial for autosave files. */
4684 if (!auto_saving
&& !write_region_inhibit_fsync
&& fsync (desc
) < 0)
4686 /* If fsync fails with EINTR, don't treat that as serious. Also
4687 ignore EINVAL which happens when fsync is not supported on this
4689 if (errno
!= EINTR
&& errno
!= EINVAL
)
4690 failure
= 1, save_errno
= errno
;
4694 /* NFS can report a write failure now. */
4695 if (emacs_close (desc
) < 0)
4696 failure
= 1, save_errno
= errno
;
4700 /* Discard the unwind protect for close_file_unwind. */
4701 specpdl_ptr
= specpdl
+ count1
;
4703 /* Call write-region-post-annotation-function. */
4704 while (CONSP (Vwrite_region_annotation_buffers
))
4706 Lisp_Object buf
= XCAR (Vwrite_region_annotation_buffers
);
4707 if (!NILP (Fbuffer_live_p (buf
)))
4710 if (FUNCTIONP (Vwrite_region_post_annotation_function
))
4711 call0 (Vwrite_region_post_annotation_function
);
4713 Vwrite_region_annotation_buffers
4714 = XCDR (Vwrite_region_annotation_buffers
);
4717 unbind_to (count
, Qnil
);
4719 #ifdef CLASH_DETECTION
4721 unlock_file (lockname
);
4722 #endif /* CLASH_DETECTION */
4724 /* Do this before reporting IO error
4725 to avoid a "file has changed on disk" warning on
4726 next attempt to save. */
4729 current_buffer
->modtime
= st
.st_mtime
;
4730 current_buffer
->modtime_size
= st
.st_size
;
4734 error ("IO error writing %s: %s", SDATA (filename
),
4735 emacs_strerror (save_errno
));
4739 SAVE_MODIFF
= MODIFF
;
4740 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
4741 current_buffer
->filename
= visit_file
;
4742 update_mode_lines
++;
4747 && ! NILP (Fstring_equal (current_buffer
->filename
,
4748 current_buffer
->auto_save_file_name
)))
4749 SAVE_MODIFF
= MODIFF
;
4755 message_with_string ((INTEGERP (append
)
4765 Lisp_Object
merge (Lisp_Object
, Lisp_Object
, Lisp_Object
);
4767 DEFUN ("car-less-than-car", Fcar_less_than_car
, Scar_less_than_car
, 2, 2, 0,
4768 doc
: /* Return t if (car A) is numerically less than (car B). */)
4769 (Lisp_Object a
, Lisp_Object b
)
4771 return Flss (Fcar (a
), Fcar (b
));
4774 /* Build the complete list of annotations appropriate for writing out
4775 the text between START and END, by calling all the functions in
4776 write-region-annotate-functions and merging the lists they return.
4777 If one of these functions switches to a different buffer, we assume
4778 that buffer contains altered text. Therefore, the caller must
4779 make sure to restore the current buffer in all cases,
4780 as save-excursion would do. */
4783 build_annotations (Lisp_Object start
, Lisp_Object end
)
4785 Lisp_Object annotations
;
4787 struct gcpro gcpro1
, gcpro2
;
4788 Lisp_Object original_buffer
;
4789 int i
, used_global
= 0;
4791 XSETBUFFER (original_buffer
, current_buffer
);
4794 p
= Vwrite_region_annotate_functions
;
4795 GCPRO2 (annotations
, p
);
4798 struct buffer
*given_buffer
= current_buffer
;
4799 if (EQ (Qt
, XCAR (p
)) && !used_global
)
4800 { /* Use the global value of the hook. */
4803 arg
[0] = Fdefault_value (Qwrite_region_annotate_functions
);
4805 p
= Fappend (2, arg
);
4808 Vwrite_region_annotations_so_far
= annotations
;
4809 res
= call2 (XCAR (p
), start
, end
);
4810 /* If the function makes a different buffer current,
4811 assume that means this buffer contains altered text to be output.
4812 Reset START and END from the buffer bounds
4813 and discard all previous annotations because they should have
4814 been dealt with by this function. */
4815 if (current_buffer
!= given_buffer
)
4817 Vwrite_region_annotation_buffers
4818 = Fcons (Fcurrent_buffer (),
4819 Vwrite_region_annotation_buffers
);
4820 XSETFASTINT (start
, BEGV
);
4821 XSETFASTINT (end
, ZV
);
4824 Flength (res
); /* Check basic validity of return value */
4825 annotations
= merge (annotations
, res
, Qcar_less_than_car
);
4829 /* Now do the same for annotation functions implied by the file-format */
4830 if (auto_saving
&& (!EQ (current_buffer
->auto_save_file_format
, Qt
)))
4831 p
= current_buffer
->auto_save_file_format
;
4833 p
= current_buffer
->file_format
;
4834 for (i
= 0; CONSP (p
); p
= XCDR (p
), ++i
)
4836 struct buffer
*given_buffer
= current_buffer
;
4838 Vwrite_region_annotations_so_far
= annotations
;
4840 /* Value is either a list of annotations or nil if the function
4841 has written annotations to a temporary buffer, which is now
4843 res
= call5 (Qformat_annotate_function
, XCAR (p
), start
, end
,
4844 original_buffer
, make_number (i
));
4845 if (current_buffer
!= given_buffer
)
4847 XSETFASTINT (start
, BEGV
);
4848 XSETFASTINT (end
, ZV
);
4853 annotations
= merge (annotations
, res
, Qcar_less_than_car
);
4861 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
4862 If STRING is nil, POS is the character position in the current buffer.
4863 Intersperse with them the annotations from *ANNOT
4864 which fall within the range of POS to POS + NCHARS,
4865 each at its appropriate position.
4867 We modify *ANNOT by discarding elements as we use them up.
4869 The return value is negative in case of system call failure. */
4872 a_write (int desc
, Lisp_Object string
, int pos
, register int nchars
, Lisp_Object
*annot
, struct coding_system
*coding
)
4876 int lastpos
= pos
+ nchars
;
4878 while (NILP (*annot
) || CONSP (*annot
))
4880 tem
= Fcar_safe (Fcar (*annot
));
4883 nextpos
= XFASTINT (tem
);
4885 /* If there are no more annotations in this range,
4886 output the rest of the range all at once. */
4887 if (! (nextpos
>= pos
&& nextpos
<= lastpos
))
4888 return e_write (desc
, string
, pos
, lastpos
, coding
);
4890 /* Output buffer text up to the next annotation's position. */
4893 if (0 > e_write (desc
, string
, pos
, nextpos
, coding
))
4897 /* Output the annotation. */
4898 tem
= Fcdr (Fcar (*annot
));
4901 if (0 > e_write (desc
, tem
, 0, SCHARS (tem
), coding
))
4904 *annot
= Fcdr (*annot
);
4910 /* Write text in the range START and END into descriptor DESC,
4911 encoding them with coding system CODING. If STRING is nil, START
4912 and END are character positions of the current buffer, else they
4913 are indexes to the string STRING. */
4916 e_write (int desc
, Lisp_Object string
, int start
, int end
, struct coding_system
*coding
)
4918 if (STRINGP (string
))
4921 end
= SCHARS (string
);
4924 /* We used to have a code for handling selective display here. But,
4925 now it is handled within encode_coding. */
4929 if (STRINGP (string
))
4931 coding
->src_multibyte
= SCHARS (string
) < SBYTES (string
);
4932 if (CODING_REQUIRE_ENCODING (coding
))
4934 encode_coding_object (coding
, string
,
4935 start
, string_char_to_byte (string
, start
),
4936 end
, string_char_to_byte (string
, end
), Qt
);
4940 coding
->dst_object
= string
;
4941 coding
->consumed_char
= SCHARS (string
);
4942 coding
->produced
= SBYTES (string
);
4947 int start_byte
= CHAR_TO_BYTE (start
);
4948 int end_byte
= CHAR_TO_BYTE (end
);
4950 coding
->src_multibyte
= (end
- start
) < (end_byte
- start_byte
);
4951 if (CODING_REQUIRE_ENCODING (coding
))
4953 encode_coding_object (coding
, Fcurrent_buffer (),
4954 start
, start_byte
, end
, end_byte
, Qt
);
4958 coding
->dst_object
= Qnil
;
4959 coding
->dst_pos_byte
= start_byte
;
4960 if (start
>= GPT
|| end
<= GPT
)
4962 coding
->consumed_char
= end
- start
;
4963 coding
->produced
= end_byte
- start_byte
;
4967 coding
->consumed_char
= GPT
- start
;
4968 coding
->produced
= GPT_BYTE
- start_byte
;
4973 if (coding
->produced
> 0)
4977 STRINGP (coding
->dst_object
)
4978 ? SSDATA (coding
->dst_object
)
4979 : (char *) BYTE_POS_ADDR (coding
->dst_pos_byte
),
4982 if (coding
->produced
)
4985 start
+= coding
->consumed_char
;
4991 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime
,
4992 Sverify_visited_file_modtime
, 0, 1, 0,
4993 doc
: /* Return t if last mod time of BUF's visited file matches what BUF records.
4994 This means that the file has not been changed since it was visited or saved.
4995 If BUF is omitted or nil, it defaults to the current buffer.
4996 See Info node `(elisp)Modification Time' for more details. */)
5001 Lisp_Object handler
;
5002 Lisp_Object filename
;
5012 if (!STRINGP (b
->filename
)) return Qt
;
5013 if (b
->modtime
== 0) return Qt
;
5015 /* If the file name has special constructs in it,
5016 call the corresponding file handler. */
5017 handler
= Ffind_file_name_handler (b
->filename
,
5018 Qverify_visited_file_modtime
);
5019 if (!NILP (handler
))
5020 return call2 (handler
, Qverify_visited_file_modtime
, buf
);
5022 filename
= ENCODE_FILE (b
->filename
);
5024 if (stat (SSDATA (filename
), &st
) < 0)
5026 /* If the file doesn't exist now and didn't exist before,
5027 we say that it isn't modified, provided the error is a tame one. */
5028 if (errno
== ENOENT
|| errno
== EACCES
|| errno
== ENOTDIR
)
5033 if ((st
.st_mtime
== b
->modtime
5034 /* If both are positive, accept them if they are off by one second. */
5035 || (st
.st_mtime
> 0 && b
->modtime
> 0
5036 && (st
.st_mtime
== b
->modtime
+ 1
5037 || st
.st_mtime
== b
->modtime
- 1)))
5038 && (st
.st_size
== b
->modtime_size
5039 || b
->modtime_size
< 0))
5044 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime
,
5045 Sclear_visited_file_modtime
, 0, 0, 0,
5046 doc
: /* Clear out records of last mod time of visited file.
5047 Next attempt to save will certainly not complain of a discrepancy. */)
5050 current_buffer
->modtime
= 0;
5051 current_buffer
->modtime_size
= -1;
5055 DEFUN ("visited-file-modtime", Fvisited_file_modtime
,
5056 Svisited_file_modtime
, 0, 0, 0,
5057 doc
: /* Return the current buffer's recorded visited file modification time.
5058 The value is a list of the form (HIGH LOW), like the time values
5059 that `file-attributes' returns. If the current buffer has no recorded
5060 file modification time, this function returns 0.
5061 See Info node `(elisp)Modification Time' for more details. */)
5064 if (! current_buffer
->modtime
)
5065 return make_number (0);
5066 return make_time ((time_t) current_buffer
->modtime
);
5069 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime
,
5070 Sset_visited_file_modtime
, 0, 1, 0,
5071 doc
: /* Update buffer's recorded modification time from the visited file's time.
5072 Useful if the buffer was not read from the file normally
5073 or if the file itself has been changed for some known benign reason.
5074 An argument specifies the modification time value to use
5075 \(instead of that of the visited file), in the form of a list
5076 \(HIGH . LOW) or (HIGH LOW). */)
5077 (Lisp_Object time_list
)
5079 if (!NILP (time_list
))
5081 current_buffer
->modtime
= cons_to_long (time_list
);
5082 current_buffer
->modtime_size
= -1;
5086 register Lisp_Object filename
;
5088 Lisp_Object handler
;
5090 filename
= Fexpand_file_name (current_buffer
->filename
, Qnil
);
5092 /* If the file name has special constructs in it,
5093 call the corresponding file handler. */
5094 handler
= Ffind_file_name_handler (filename
, Qset_visited_file_modtime
);
5095 if (!NILP (handler
))
5096 /* The handler can find the file name the same way we did. */
5097 return call2 (handler
, Qset_visited_file_modtime
, Qnil
);
5099 filename
= ENCODE_FILE (filename
);
5101 if (stat (SSDATA (filename
), &st
) >= 0)
5103 current_buffer
->modtime
= st
.st_mtime
;
5104 current_buffer
->modtime_size
= st
.st_size
;
5112 auto_save_error (Lisp_Object error
)
5114 Lisp_Object args
[3], msg
;
5116 struct gcpro gcpro1
;
5120 auto_save_error_occurred
= 1;
5122 ring_bell (XFRAME (selected_frame
));
5124 args
[0] = build_string ("Auto-saving %s: %s");
5125 args
[1] = current_buffer
->name
;
5126 args
[2] = Ferror_message_string (error
);
5127 msg
= Fformat (3, args
);
5129 nbytes
= SBYTES (msg
);
5130 SAFE_ALLOCA (msgbuf
, char *, nbytes
);
5131 memcpy (msgbuf
, SDATA (msg
), nbytes
);
5133 for (i
= 0; i
< 3; ++i
)
5136 message2 (msgbuf
, nbytes
, STRING_MULTIBYTE (msg
));
5138 message2_nolog (msgbuf
, nbytes
, STRING_MULTIBYTE (msg
));
5139 Fsleep_for (make_number (1), Qnil
);
5153 auto_save_mode_bits
= 0666;
5155 /* Get visited file's mode to become the auto save file's mode. */
5156 if (! NILP (current_buffer
->filename
))
5158 if (stat (SSDATA (current_buffer
->filename
), &st
) >= 0)
5159 /* But make sure we can overwrite it later! */
5160 auto_save_mode_bits
= st
.st_mode
| 0600;
5161 else if ((modes
= Ffile_modes (current_buffer
->filename
),
5163 /* Remote files don't cooperate with stat. */
5164 auto_save_mode_bits
= XINT (modes
) | 0600;
5168 Fwrite_region (Qnil
, Qnil
, current_buffer
->auto_save_file_name
, Qnil
,
5169 NILP (Vauto_save_visited_file_name
) ? Qlambda
: Qt
,
5174 do_auto_save_unwind (Lisp_Object arg
) /* used as unwind-protect function */
5177 FILE *stream
= (FILE *) XSAVE_VALUE (arg
)->pointer
;
5189 do_auto_save_unwind_1 (Lisp_Object value
) /* used as unwind-protect function */
5192 minibuffer_auto_raise
= XINT (value
);
5197 do_auto_save_make_dir (Lisp_Object dir
)
5201 call2 (Qmake_directory
, dir
, Qt
);
5202 XSETFASTINT (mode
, 0700);
5203 return Fset_file_modes (dir
, mode
);
5207 do_auto_save_eh (Lisp_Object ignore
)
5212 DEFUN ("do-auto-save", Fdo_auto_save
, Sdo_auto_save
, 0, 2, "",
5213 doc
: /* Auto-save all buffers that need it.
5214 This is all buffers that have auto-saving enabled
5215 and are changed since last auto-saved.
5216 Auto-saving writes the buffer into a file
5217 so that your editing is not lost if the system crashes.
5218 This file is not the file you visited; that changes only when you save.
5219 Normally we run the normal hook `auto-save-hook' before saving.
5221 A non-nil NO-MESSAGE argument means do not print any message if successful.
5222 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5223 (Lisp_Object no_message
, Lisp_Object current_only
)
5225 struct buffer
*old
= current_buffer
, *b
;
5226 Lisp_Object tail
, buf
;
5228 int do_handled_files
;
5230 FILE *stream
= NULL
;
5231 int count
= SPECPDL_INDEX ();
5232 int orig_minibuffer_auto_raise
= minibuffer_auto_raise
;
5233 int old_message_p
= 0;
5234 struct gcpro gcpro1
, gcpro2
;
5236 if (max_specpdl_size
< specpdl_size
+ 40)
5237 max_specpdl_size
= specpdl_size
+ 40;
5242 if (NILP (no_message
))
5244 old_message_p
= push_message ();
5245 record_unwind_protect (pop_message_unwind
, Qnil
);
5248 /* Ordinarily don't quit within this function,
5249 but don't make it impossible to quit (in case we get hung in I/O). */
5253 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5254 point to non-strings reached from Vbuffer_alist. */
5256 if (!NILP (Vrun_hooks
))
5257 call1 (Vrun_hooks
, intern ("auto-save-hook"));
5259 if (STRINGP (Vauto_save_list_file_name
))
5261 Lisp_Object listfile
;
5263 listfile
= Fexpand_file_name (Vauto_save_list_file_name
, Qnil
);
5265 /* Don't try to create the directory when shutting down Emacs,
5266 because creating the directory might signal an error, and
5267 that would leave Emacs in a strange state. */
5268 if (!NILP (Vrun_hooks
))
5272 GCPRO2 (dir
, listfile
);
5273 dir
= Ffile_name_directory (listfile
);
5274 if (NILP (Ffile_directory_p (dir
)))
5275 internal_condition_case_1 (do_auto_save_make_dir
,
5276 dir
, Fcons (Fcons (Qfile_error
, Qnil
), Qnil
),
5281 stream
= fopen (SSDATA (listfile
), "w");
5284 record_unwind_protect (do_auto_save_unwind
,
5285 make_save_value (stream
, 0));
5286 record_unwind_protect (do_auto_save_unwind_1
,
5287 make_number (minibuffer_auto_raise
));
5288 minibuffer_auto_raise
= 0;
5290 auto_save_error_occurred
= 0;
5292 /* On first pass, save all files that don't have handlers.
5293 On second pass, save all files that do have handlers.
5295 If Emacs is crashing, the handlers may tweak what is causing
5296 Emacs to crash in the first place, and it would be a shame if
5297 Emacs failed to autosave perfectly ordinary files because it
5298 couldn't handle some ange-ftp'd file. */
5300 for (do_handled_files
= 0; do_handled_files
< 2; do_handled_files
++)
5301 for (tail
= Vbuffer_alist
; CONSP (tail
); tail
= XCDR (tail
))
5303 buf
= XCDR (XCAR (tail
));
5306 /* Record all the buffers that have auto save mode
5307 in the special file that lists them. For each of these buffers,
5308 Record visited name (if any) and auto save name. */
5309 if (STRINGP (b
->auto_save_file_name
)
5310 && stream
!= NULL
&& do_handled_files
== 0)
5313 if (!NILP (b
->filename
))
5315 fwrite (SDATA (b
->filename
), 1,
5316 SBYTES (b
->filename
), stream
);
5318 putc ('\n', stream
);
5319 fwrite (SDATA (b
->auto_save_file_name
), 1,
5320 SBYTES (b
->auto_save_file_name
), stream
);
5321 putc ('\n', stream
);
5325 if (!NILP (current_only
)
5326 && b
!= current_buffer
)
5329 /* Don't auto-save indirect buffers.
5330 The base buffer takes care of it. */
5334 /* Check for auto save enabled
5335 and file changed since last auto save
5336 and file changed since last real save. */
5337 if (STRINGP (b
->auto_save_file_name
)
5338 && BUF_SAVE_MODIFF (b
) < BUF_MODIFF (b
)
5339 && BUF_AUTOSAVE_MODIFF (b
) < BUF_MODIFF (b
)
5340 /* -1 means we've turned off autosaving for a while--see below. */
5341 && XINT (b
->save_length
) >= 0
5342 && (do_handled_files
5343 || NILP (Ffind_file_name_handler (b
->auto_save_file_name
,
5346 EMACS_TIME before_time
, after_time
;
5348 EMACS_GET_TIME (before_time
);
5350 /* If we had a failure, don't try again for 20 minutes. */
5351 if (b
->auto_save_failure_time
>= 0
5352 && EMACS_SECS (before_time
) - b
->auto_save_failure_time
< 1200)
5355 set_buffer_internal (b
);
5356 if (NILP (Vauto_save_include_big_deletions
)
5357 && (XFASTINT (b
->save_length
) * 10
5358 > (BUF_Z (b
) - BUF_BEG (b
)) * 13)
5359 /* A short file is likely to change a large fraction;
5360 spare the user annoying messages. */
5361 && XFASTINT (b
->save_length
) > 5000
5362 /* These messages are frequent and annoying for `*mail*'. */
5363 && !EQ (b
->filename
, Qnil
)
5364 && NILP (no_message
))
5366 /* It has shrunk too much; turn off auto-saving here. */
5367 minibuffer_auto_raise
= orig_minibuffer_auto_raise
;
5368 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5370 minibuffer_auto_raise
= 0;
5371 /* Turn off auto-saving until there's a real save,
5372 and prevent any more warnings. */
5373 XSETINT (b
->save_length
, -1);
5374 Fsleep_for (make_number (1), Qnil
);
5377 if (!auto_saved
&& NILP (no_message
))
5378 message1 ("Auto-saving...");
5379 internal_condition_case (auto_save_1
, Qt
, auto_save_error
);
5381 BUF_AUTOSAVE_MODIFF (b
) = BUF_MODIFF (b
);
5382 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
5383 set_buffer_internal (old
);
5385 EMACS_GET_TIME (after_time
);
5387 /* If auto-save took more than 60 seconds,
5388 assume it was an NFS failure that got a timeout. */
5389 if (EMACS_SECS (after_time
) - EMACS_SECS (before_time
) > 60)
5390 b
->auto_save_failure_time
= EMACS_SECS (after_time
);
5394 /* Prevent another auto save till enough input events come in. */
5395 record_auto_save ();
5397 if (auto_saved
&& NILP (no_message
))
5401 /* If we are going to restore an old message,
5402 give time to read ours. */
5403 sit_for (make_number (1), 0, 0);
5406 else if (!auto_save_error_occurred
)
5407 /* Don't overwrite the error message if an error occurred.
5408 If we displayed a message and then restored a state
5409 with no message, leave a "done" message on the screen. */
5410 message1 ("Auto-saving...done");
5415 /* This restores the message-stack status. */
5416 unbind_to (count
, Qnil
);
5420 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved
,
5421 Sset_buffer_auto_saved
, 0, 0, 0,
5422 doc
: /* Mark current buffer as auto-saved with its current text.
5423 No auto-save file will be written until the buffer changes again. */)
5426 /* FIXME: This should not be called in indirect buffers, since
5427 they're not autosaved. */
5428 BUF_AUTOSAVE_MODIFF (current_buffer
) = MODIFF
;
5429 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
5430 current_buffer
->auto_save_failure_time
= -1;
5434 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure
,
5435 Sclear_buffer_auto_save_failure
, 0, 0, 0,
5436 doc
: /* Clear any record of a recent auto-save failure in the current buffer. */)
5439 current_buffer
->auto_save_failure_time
= -1;
5443 DEFUN ("recent-auto-save-p", Frecent_auto_save_p
, Srecent_auto_save_p
,
5445 doc
: /* Return t if current buffer has been auto-saved recently.
5446 More precisely, if it has been auto-saved since last read from or saved
5447 in the visited file. If the buffer has no visited file,
5448 then any auto-save counts as "recent". */)
5451 /* FIXME: maybe we should return nil for indirect buffers since
5452 they're never autosaved. */
5453 return (SAVE_MODIFF
< BUF_AUTOSAVE_MODIFF (current_buffer
) ? Qt
: Qnil
);
5456 /* Reading and completing file names */
5458 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p
,
5459 Snext_read_file_uses_dialog_p
, 0, 0, 0,
5460 doc
: /* Return t if a call to `read-file-name' will use a dialog.
5461 The return value is only relevant for a call to `read-file-name' that happens
5462 before any other event (mouse or keypress) is handled. */)
5465 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK)
5466 if ((NILP (last_nonmenu_event
) || CONSP (last_nonmenu_event
))
5476 Fread_file_name (Lisp_Object prompt
, Lisp_Object dir
, Lisp_Object default_filename
, Lisp_Object mustmatch
, Lisp_Object initial
, Lisp_Object predicate
)
5478 struct gcpro gcpro1
, gcpro2
;
5479 Lisp_Object args
[7];
5481 GCPRO1 (default_filename
);
5482 args
[0] = intern ("read-file-name");
5485 args
[3] = default_filename
;
5486 args
[4] = mustmatch
;
5488 args
[6] = predicate
;
5489 RETURN_UNGCPRO (Ffuncall (7, args
));
5494 syms_of_fileio (void)
5496 Qoperations
= intern_c_string ("operations");
5497 Qexpand_file_name
= intern_c_string ("expand-file-name");
5498 Qsubstitute_in_file_name
= intern_c_string ("substitute-in-file-name");
5499 Qdirectory_file_name
= intern_c_string ("directory-file-name");
5500 Qfile_name_directory
= intern_c_string ("file-name-directory");
5501 Qfile_name_nondirectory
= intern_c_string ("file-name-nondirectory");
5502 Qunhandled_file_name_directory
= intern_c_string ("unhandled-file-name-directory");
5503 Qfile_name_as_directory
= intern_c_string ("file-name-as-directory");
5504 Qcopy_file
= intern_c_string ("copy-file");
5505 Qmake_directory_internal
= intern_c_string ("make-directory-internal");
5506 Qmake_directory
= intern_c_string ("make-directory");
5507 Qdelete_directory_internal
= intern_c_string ("delete-directory-internal");
5508 Qdelete_file
= intern_c_string ("delete-file");
5509 Qrename_file
= intern_c_string ("rename-file");
5510 Qadd_name_to_file
= intern_c_string ("add-name-to-file");
5511 Qmake_symbolic_link
= intern_c_string ("make-symbolic-link");
5512 Qfile_exists_p
= intern_c_string ("file-exists-p");
5513 Qfile_executable_p
= intern_c_string ("file-executable-p");
5514 Qfile_readable_p
= intern_c_string ("file-readable-p");
5515 Qfile_writable_p
= intern_c_string ("file-writable-p");
5516 Qfile_symlink_p
= intern_c_string ("file-symlink-p");
5517 Qaccess_file
= intern_c_string ("access-file");
5518 Qfile_directory_p
= intern_c_string ("file-directory-p");
5519 Qfile_regular_p
= intern_c_string ("file-regular-p");
5520 Qfile_accessible_directory_p
= intern_c_string ("file-accessible-directory-p");
5521 Qfile_modes
= intern_c_string ("file-modes");
5522 Qset_file_modes
= intern_c_string ("set-file-modes");
5523 Qset_file_times
= intern_c_string ("set-file-times");
5524 Qfile_selinux_context
= intern_c_string("file-selinux-context");
5525 Qset_file_selinux_context
= intern_c_string("set-file-selinux-context");
5526 Qfile_newer_than_file_p
= intern_c_string ("file-newer-than-file-p");
5527 Qinsert_file_contents
= intern_c_string ("insert-file-contents");
5528 Qwrite_region
= intern_c_string ("write-region");
5529 Qverify_visited_file_modtime
= intern_c_string ("verify-visited-file-modtime");
5530 Qset_visited_file_modtime
= intern_c_string ("set-visited-file-modtime");
5531 Qauto_save_coding
= intern_c_string ("auto-save-coding");
5533 staticpro (&Qoperations
);
5534 staticpro (&Qexpand_file_name
);
5535 staticpro (&Qsubstitute_in_file_name
);
5536 staticpro (&Qdirectory_file_name
);
5537 staticpro (&Qfile_name_directory
);
5538 staticpro (&Qfile_name_nondirectory
);
5539 staticpro (&Qunhandled_file_name_directory
);
5540 staticpro (&Qfile_name_as_directory
);
5541 staticpro (&Qcopy_file
);
5542 staticpro (&Qmake_directory_internal
);
5543 staticpro (&Qmake_directory
);
5544 staticpro (&Qdelete_directory_internal
);
5545 staticpro (&Qdelete_file
);
5546 staticpro (&Qrename_file
);
5547 staticpro (&Qadd_name_to_file
);
5548 staticpro (&Qmake_symbolic_link
);
5549 staticpro (&Qfile_exists_p
);
5550 staticpro (&Qfile_executable_p
);
5551 staticpro (&Qfile_readable_p
);
5552 staticpro (&Qfile_writable_p
);
5553 staticpro (&Qaccess_file
);
5554 staticpro (&Qfile_symlink_p
);
5555 staticpro (&Qfile_directory_p
);
5556 staticpro (&Qfile_regular_p
);
5557 staticpro (&Qfile_accessible_directory_p
);
5558 staticpro (&Qfile_modes
);
5559 staticpro (&Qset_file_modes
);
5560 staticpro (&Qset_file_times
);
5561 staticpro (&Qfile_selinux_context
);
5562 staticpro (&Qset_file_selinux_context
);
5563 staticpro (&Qfile_newer_than_file_p
);
5564 staticpro (&Qinsert_file_contents
);
5565 staticpro (&Qwrite_region
);
5566 staticpro (&Qverify_visited_file_modtime
);
5567 staticpro (&Qset_visited_file_modtime
);
5568 staticpro (&Qauto_save_coding
);
5570 Qfile_name_history
= intern_c_string ("file-name-history");
5571 Fset (Qfile_name_history
, Qnil
);
5572 staticpro (&Qfile_name_history
);
5574 Qfile_error
= intern_c_string ("file-error");
5575 staticpro (&Qfile_error
);
5576 Qfile_already_exists
= intern_c_string ("file-already-exists");
5577 staticpro (&Qfile_already_exists
);
5578 Qfile_date_error
= intern_c_string ("file-date-error");
5579 staticpro (&Qfile_date_error
);
5580 Qexcl
= intern_c_string ("excl");
5584 Qfind_buffer_file_type
= intern_c_string ("find-buffer-file-type");
5585 staticpro (&Qfind_buffer_file_type
);
5588 DEFVAR_LISP ("file-name-coding-system", Vfile_name_coding_system
,
5589 doc
: /* *Coding system for encoding file names.
5590 If it is nil, `default-file-name-coding-system' (which see) is used. */);
5591 Vfile_name_coding_system
= Qnil
;
5593 DEFVAR_LISP ("default-file-name-coding-system",
5594 Vdefault_file_name_coding_system
,
5595 doc
: /* Default coding system for encoding file names.
5596 This variable is used only when `file-name-coding-system' is nil.
5598 This variable is set/changed by the command `set-language-environment'.
5599 User should not set this variable manually,
5600 instead use `file-name-coding-system' to get a constant encoding
5601 of file names regardless of the current language environment. */);
5602 Vdefault_file_name_coding_system
= Qnil
;
5604 Qformat_decode
= intern_c_string ("format-decode");
5605 staticpro (&Qformat_decode
);
5606 Qformat_annotate_function
= intern_c_string ("format-annotate-function");
5607 staticpro (&Qformat_annotate_function
);
5608 Qafter_insert_file_set_coding
= intern_c_string ("after-insert-file-set-coding");
5609 staticpro (&Qafter_insert_file_set_coding
);
5611 Qcar_less_than_car
= intern_c_string ("car-less-than-car");
5612 staticpro (&Qcar_less_than_car
);
5614 Fput (Qfile_error
, Qerror_conditions
,
5615 Fpurecopy (list2 (Qfile_error
, Qerror
)));
5616 Fput (Qfile_error
, Qerror_message
,
5617 make_pure_c_string ("File error"));
5619 Fput (Qfile_already_exists
, Qerror_conditions
,
5620 Fpurecopy (list3 (Qfile_already_exists
, Qfile_error
, Qerror
)));
5621 Fput (Qfile_already_exists
, Qerror_message
,
5622 make_pure_c_string ("File already exists"));
5624 Fput (Qfile_date_error
, Qerror_conditions
,
5625 Fpurecopy (list3 (Qfile_date_error
, Qfile_error
, Qerror
)));
5626 Fput (Qfile_date_error
, Qerror_message
,
5627 make_pure_c_string ("Cannot set file date"));
5629 DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist
,
5630 doc
: /* *Alist of elements (REGEXP . HANDLER) for file names handled specially.
5631 If a file name matches REGEXP, then all I/O on that file is done by calling
5634 The first argument given to HANDLER is the name of the I/O primitive
5635 to be handled; the remaining arguments are the arguments that were
5636 passed to that primitive. For example, if you do
5637 (file-exists-p FILENAME)
5638 and FILENAME is handled by HANDLER, then HANDLER is called like this:
5639 (funcall HANDLER 'file-exists-p FILENAME)
5640 The function `find-file-name-handler' checks this list for a handler
5641 for its argument. */);
5642 Vfile_name_handler_alist
= Qnil
;
5644 DEFVAR_LISP ("set-auto-coding-function",
5645 Vset_auto_coding_function
,
5646 doc
: /* If non-nil, a function to call to decide a coding system of file.
5647 Two arguments are passed to this function: the file name
5648 and the length of a file contents following the point.
5649 This function should return a coding system to decode the file contents.
5650 It should check the file name against `auto-coding-alist'.
5651 If no coding system is decided, it should check a coding system
5652 specified in the heading lines with the format:
5653 -*- ... coding: CODING-SYSTEM; ... -*-
5654 or local variable spec of the tailing lines with `coding:' tag. */);
5655 Vset_auto_coding_function
= Qnil
;
5657 DEFVAR_LISP ("after-insert-file-functions", Vafter_insert_file_functions
,
5658 doc
: /* A list of functions to be called at the end of `insert-file-contents'.
5659 Each is passed one argument, the number of characters inserted,
5660 with point at the start of the inserted text. Each function
5661 should leave point the same, and return the new character count.
5662 If `insert-file-contents' is intercepted by a handler from
5663 `file-name-handler-alist', that handler is responsible for calling the
5664 functions in `after-insert-file-functions' if appropriate. */);
5665 Vafter_insert_file_functions
= Qnil
;
5667 DEFVAR_LISP ("write-region-annotate-functions", Vwrite_region_annotate_functions
,
5668 doc
: /* A list of functions to be called at the start of `write-region'.
5669 Each is passed two arguments, START and END as for `write-region'.
5670 These are usually two numbers but not always; see the documentation
5671 for `write-region'. The function should return a list of pairs
5672 of the form (POSITION . STRING), consisting of strings to be effectively
5673 inserted at the specified positions of the file being written (1 means to
5674 insert before the first byte written). The POSITIONs must be sorted into
5677 If there are several annotation functions, the lists returned by these
5678 functions are merged destructively. As each annotation function runs,
5679 the variable `write-region-annotations-so-far' contains a list of all
5680 annotations returned by previous annotation functions.
5682 An annotation function can return with a different buffer current.
5683 Doing so removes the annotations returned by previous functions, and
5684 resets START and END to `point-min' and `point-max' of the new buffer.
5686 After `write-region' completes, Emacs calls the function stored in
5687 `write-region-post-annotation-function', once for each buffer that was
5688 current when building the annotations (i.e., at least once), with that
5689 buffer current. */);
5690 Vwrite_region_annotate_functions
= Qnil
;
5691 staticpro (&Qwrite_region_annotate_functions
);
5692 Qwrite_region_annotate_functions
5693 = intern_c_string ("write-region-annotate-functions");
5695 DEFVAR_LISP ("write-region-post-annotation-function",
5696 Vwrite_region_post_annotation_function
,
5697 doc
: /* Function to call after `write-region' completes.
5698 The function is called with no arguments. If one or more of the
5699 annotation functions in `write-region-annotate-functions' changed the
5700 current buffer, the function stored in this variable is called for
5701 each of those additional buffers as well, in addition to the original
5702 buffer. The relevant buffer is current during each function call. */);
5703 Vwrite_region_post_annotation_function
= Qnil
;
5704 staticpro (&Vwrite_region_annotation_buffers
);
5706 DEFVAR_LISP ("write-region-annotations-so-far",
5707 Vwrite_region_annotations_so_far
,
5708 doc
: /* When an annotation function is called, this holds the previous annotations.
5709 These are the annotations made by other annotation functions
5710 that were already called. See also `write-region-annotate-functions'. */);
5711 Vwrite_region_annotations_so_far
= Qnil
;
5713 DEFVAR_LISP ("inhibit-file-name-handlers", Vinhibit_file_name_handlers
,
5714 doc
: /* A list of file name handlers that temporarily should not be used.
5715 This applies only to the operation `inhibit-file-name-operation'. */);
5716 Vinhibit_file_name_handlers
= Qnil
;
5718 DEFVAR_LISP ("inhibit-file-name-operation", Vinhibit_file_name_operation
,
5719 doc
: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
5720 Vinhibit_file_name_operation
= Qnil
;
5722 DEFVAR_LISP ("auto-save-list-file-name", Vauto_save_list_file_name
,
5723 doc
: /* File name in which we write a list of all auto save file names.
5724 This variable is initialized automatically from `auto-save-list-file-prefix'
5725 shortly after Emacs reads your `.emacs' file, if you have not yet given it
5726 a non-nil value. */);
5727 Vauto_save_list_file_name
= Qnil
;
5729 DEFVAR_LISP ("auto-save-visited-file-name", Vauto_save_visited_file_name
,
5730 doc
: /* Non-nil says auto-save a buffer in the file it is visiting, when practical.
5731 Normally auto-save files are written under other names. */);
5732 Vauto_save_visited_file_name
= Qnil
;
5734 DEFVAR_LISP ("auto-save-include-big-deletions", Vauto_save_include_big_deletions
,
5735 doc
: /* If non-nil, auto-save even if a large part of the text is deleted.
5736 If nil, deleting a substantial portion of the text disables auto-save
5737 in the buffer; this is the default behavior, because the auto-save
5738 file is usually more useful if it contains the deleted text. */);
5739 Vauto_save_include_big_deletions
= Qnil
;
5742 DEFVAR_BOOL ("write-region-inhibit-fsync", write_region_inhibit_fsync
,
5743 doc
: /* *Non-nil means don't call fsync in `write-region'.
5744 This variable affects calls to `write-region' as well as save commands.
5745 A non-nil value may result in data loss! */);
5746 write_region_inhibit_fsync
= 0;
5749 DEFVAR_BOOL ("delete-by-moving-to-trash", delete_by_moving_to_trash
,
5750 doc
: /* Specifies whether to use the system's trash can.
5751 When non-nil, certain file deletion commands use the function
5752 `move-file-to-trash' instead of deleting files outright.
5753 This includes interactive calls to `delete-file' and
5754 `delete-directory' and the Dired deletion commands. */);
5755 delete_by_moving_to_trash
= 0;
5756 Qdelete_by_moving_to_trash
= intern_c_string ("delete-by-moving-to-trash");
5757 Qmove_file_to_trash
= intern_c_string ("move-file-to-trash");
5758 staticpro (&Qmove_file_to_trash
);
5759 Qcopy_directory
= intern_c_string ("copy-directory");
5760 staticpro (&Qcopy_directory
);
5761 Qdelete_directory
= intern_c_string ("delete-directory");
5762 staticpro (&Qdelete_directory
);
5764 defsubr (&Sfind_file_name_handler
);
5765 defsubr (&Sfile_name_directory
);
5766 defsubr (&Sfile_name_nondirectory
);
5767 defsubr (&Sunhandled_file_name_directory
);
5768 defsubr (&Sfile_name_as_directory
);
5769 defsubr (&Sdirectory_file_name
);
5770 defsubr (&Smake_temp_name
);
5771 defsubr (&Sexpand_file_name
);
5772 defsubr (&Ssubstitute_in_file_name
);
5773 defsubr (&Scopy_file
);
5774 defsubr (&Smake_directory_internal
);
5775 defsubr (&Sdelete_directory_internal
);
5776 defsubr (&Sdelete_file
);
5777 defsubr (&Srename_file
);
5778 defsubr (&Sadd_name_to_file
);
5779 defsubr (&Smake_symbolic_link
);
5780 defsubr (&Sfile_name_absolute_p
);
5781 defsubr (&Sfile_exists_p
);
5782 defsubr (&Sfile_executable_p
);
5783 defsubr (&Sfile_readable_p
);
5784 defsubr (&Sfile_writable_p
);
5785 defsubr (&Saccess_file
);
5786 defsubr (&Sfile_symlink_p
);
5787 defsubr (&Sfile_directory_p
);
5788 defsubr (&Sfile_accessible_directory_p
);
5789 defsubr (&Sfile_regular_p
);
5790 defsubr (&Sfile_modes
);
5791 defsubr (&Sset_file_modes
);
5792 defsubr (&Sset_file_times
);
5793 defsubr (&Sfile_selinux_context
);
5794 defsubr (&Sset_file_selinux_context
);
5795 defsubr (&Sset_default_file_modes
);
5796 defsubr (&Sdefault_file_modes
);
5797 defsubr (&Sfile_newer_than_file_p
);
5798 defsubr (&Sinsert_file_contents
);
5799 defsubr (&Swrite_region
);
5800 defsubr (&Scar_less_than_car
);
5801 defsubr (&Sverify_visited_file_modtime
);
5802 defsubr (&Sclear_visited_file_modtime
);
5803 defsubr (&Svisited_file_modtime
);
5804 defsubr (&Sset_visited_file_modtime
);
5805 defsubr (&Sdo_auto_save
);
5806 defsubr (&Sset_buffer_auto_saved
);
5807 defsubr (&Sclear_buffer_auto_save_failure
);
5808 defsubr (&Srecent_auto_save_p
);
5810 defsubr (&Snext_read_file_uses_dialog_p
);
5813 defsubr (&Sunix_sync
);