Merge from emacs-23; up to 2010-06-08T03:06:47Z!dann@ics.uci.edu.
[emacs.git] / src / fileio.c
blobf9923c420a342f46f8375369e4f38f2f6c36341e
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/>. */
20 #include <config.h>
21 #include <limits.h>
22 #include <fcntl.h>
23 #include <stdio.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <setjmp.h>
27 #include <unistd.h>
29 #ifdef HAVE_PWD_H
30 #include <pwd.h>
31 #endif
33 #include <ctype.h>
34 #include <errno.h>
36 #ifdef HAVE_LIBSELINUX
37 #include <selinux/selinux.h>
38 #include <selinux/context.h>
39 #endif
41 #include "lisp.h"
42 #include "intervals.h"
43 #include "buffer.h"
44 #include "character.h"
45 #include "coding.h"
46 #include "window.h"
47 #include "blockinput.h"
48 #include "frame.h"
49 #include "dispextern.h"
51 #ifdef WINDOWSNT
52 #define NOMINMAX 1
53 #include <windows.h>
54 #include <fcntl.h>
55 #endif /* not WINDOWSNT */
57 #ifdef MSDOS
58 #include "msdos.h"
59 #include <sys/param.h>
60 #include <fcntl.h>
61 #endif
63 #ifdef DOS_NT
64 /* On Windows, drive letters must be alphabetic - on DOS, the Netware
65 redirector allows the six letters between 'Z' and 'a' as well. */
66 #ifdef MSDOS
67 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
68 #endif
69 #ifdef WINDOWSNT
70 #define IS_DRIVE(x) isalpha ((unsigned char) (x))
71 #endif
72 /* Need to lower-case the drive letter, or else expanded
73 filenames will sometimes compare inequal, because
74 `expand-file-name' doesn't always down-case the drive letter. */
75 #define DRIVE_LETTER(x) (tolower ((unsigned char) (x)))
76 #endif
78 #include "systime.h"
80 #ifdef HPUX
81 #include <netio.h>
82 #endif
84 #include "commands.h"
86 #ifndef FILE_SYSTEM_CASE
87 #define FILE_SYSTEM_CASE(filename) (filename)
88 #endif
90 /* Nonzero during writing of auto-save files */
91 int auto_saving;
93 /* Set by auto_save_1 to mode of original file so Fwrite_region will create
94 a new file with the same mode as the original */
95 int auto_save_mode_bits;
97 /* Set by auto_save_1 if an error occurred during the last auto-save. */
98 int auto_save_error_occurred;
100 /* The symbol bound to coding-system-for-read when
101 insert-file-contents is called for recovering a file. This is not
102 an actual coding system name, but just an indicator to tell
103 insert-file-contents to use `emacs-mule' with a special flag for
104 auto saving and recovering a file. */
105 Lisp_Object Qauto_save_coding;
107 /* Property name of a file name handler,
108 which gives a list of operations it handles.. */
109 Lisp_Object Qoperations;
111 /* Lisp functions for translating file formats */
112 Lisp_Object Qformat_decode, Qformat_annotate_function;
114 /* Lisp function for setting buffer-file-coding-system and the
115 multibyteness of the current buffer after inserting a file. */
116 Lisp_Object Qafter_insert_file_set_coding;
118 Lisp_Object Qwrite_region_annotate_functions;
119 /* Each time an annotation function changes the buffer, the new buffer
120 is added here. */
121 Lisp_Object Vwrite_region_annotation_buffers;
123 #ifdef HAVE_FSYNC
124 #endif
126 Lisp_Object Qdelete_by_moving_to_trash;
128 /* Lisp function for moving files to trash. */
129 Lisp_Object Qmove_file_to_trash;
131 /* Lisp function for recursively copying directories. */
132 Lisp_Object Qcopy_directory;
134 /* Lisp function for recursively deleting directories. */
135 Lisp_Object Qdelete_directory;
137 #ifdef WINDOWSNT
138 #endif
140 Lisp_Object Qfile_error, Qfile_already_exists, Qfile_date_error;
141 Lisp_Object Qexcl;
142 Lisp_Object Qfile_name_history;
144 Lisp_Object Qcar_less_than_car;
146 static int a_write (int, Lisp_Object, int, int,
147 Lisp_Object *, struct coding_system *);
148 static int e_write (int, Lisp_Object, int, int, struct coding_system *);
151 void
152 report_file_error (const char *string, Lisp_Object data)
154 Lisp_Object errstring;
155 int errorno = errno;
156 char *str;
158 synchronize_system_messages_locale ();
159 str = strerror (errorno);
160 errstring = code_convert_string_norecord (make_unibyte_string (str,
161 strlen (str)),
162 Vlocale_coding_system, 0);
164 while (1)
165 switch (errorno)
167 case EEXIST:
168 xsignal (Qfile_already_exists, Fcons (errstring, data));
169 break;
170 default:
171 /* System error messages are capitalized. Downcase the initial
172 unless it is followed by a slash. (The slash case caters to
173 error messages that begin with "I/O" or, in German, "E/A".) */
174 if (STRING_MULTIBYTE (errstring)
175 && ! EQ (Faref (errstring, make_number (1)), make_number ('/')))
177 int c;
179 str = SSDATA (errstring);
180 c = STRING_CHAR ((unsigned char *) str);
181 Faset (errstring, make_number (0), make_number (downcase (c)));
184 xsignal (Qfile_error,
185 Fcons (build_string (string), Fcons (errstring, data)));
189 Lisp_Object
190 close_file_unwind (Lisp_Object fd)
192 emacs_close (XFASTINT (fd));
193 return Qnil;
196 /* Restore point, having saved it as a marker. */
198 Lisp_Object
199 restore_point_unwind (Lisp_Object location)
201 Fgoto_char (location);
202 Fset_marker (location, Qnil, Qnil);
203 return Qnil;
207 Lisp_Object Qexpand_file_name;
208 Lisp_Object Qsubstitute_in_file_name;
209 Lisp_Object Qdirectory_file_name;
210 Lisp_Object Qfile_name_directory;
211 Lisp_Object Qfile_name_nondirectory;
212 Lisp_Object Qunhandled_file_name_directory;
213 Lisp_Object Qfile_name_as_directory;
214 Lisp_Object Qcopy_file;
215 Lisp_Object Qmake_directory_internal;
216 Lisp_Object Qmake_directory;
217 Lisp_Object Qdelete_directory_internal;
218 Lisp_Object Qdelete_file;
219 Lisp_Object Qrename_file;
220 Lisp_Object Qadd_name_to_file;
221 Lisp_Object Qmake_symbolic_link;
222 Lisp_Object Qfile_exists_p;
223 Lisp_Object Qfile_executable_p;
224 Lisp_Object Qfile_readable_p;
225 Lisp_Object Qfile_writable_p;
226 Lisp_Object Qfile_symlink_p;
227 Lisp_Object Qaccess_file;
228 Lisp_Object Qfile_directory_p;
229 Lisp_Object Qfile_regular_p;
230 Lisp_Object Qfile_accessible_directory_p;
231 Lisp_Object Qfile_modes;
232 Lisp_Object Qset_file_modes;
233 Lisp_Object Qset_file_times;
234 Lisp_Object Qfile_selinux_context;
235 Lisp_Object Qset_file_selinux_context;
236 Lisp_Object Qfile_newer_than_file_p;
237 Lisp_Object Qinsert_file_contents;
238 Lisp_Object Qwrite_region;
239 Lisp_Object Qverify_visited_file_modtime;
240 Lisp_Object Qset_visited_file_modtime;
242 DEFUN ("find-file-name-handler", Ffind_file_name_handler, Sfind_file_name_handler, 2, 2, 0,
243 doc: /* Return FILENAME's handler function for OPERATION, if it has one.
244 Otherwise, return nil.
245 A file name is handled if one of the regular expressions in
246 `file-name-handler-alist' matches it.
248 If OPERATION equals `inhibit-file-name-operation', then we ignore
249 any handlers that are members of `inhibit-file-name-handlers',
250 but we still do run any other handlers. This lets handlers
251 use the standard functions without calling themselves recursively. */)
252 (Lisp_Object filename, Lisp_Object operation)
254 /* This function must not munge the match data. */
255 Lisp_Object chain, inhibited_handlers, result;
256 int pos = -1;
258 result = Qnil;
259 CHECK_STRING (filename);
261 if (EQ (operation, Vinhibit_file_name_operation))
262 inhibited_handlers = Vinhibit_file_name_handlers;
263 else
264 inhibited_handlers = Qnil;
266 for (chain = Vfile_name_handler_alist; CONSP (chain);
267 chain = XCDR (chain))
269 Lisp_Object elt;
270 elt = XCAR (chain);
271 if (CONSP (elt))
273 Lisp_Object string = XCAR (elt);
274 EMACS_INT match_pos;
275 Lisp_Object handler = XCDR (elt);
276 Lisp_Object operations = Qnil;
278 if (SYMBOLP (handler))
279 operations = Fget (handler, Qoperations);
281 if (STRINGP (string)
282 && (match_pos = fast_string_match (string, filename)) > pos
283 && (NILP (operations) || ! NILP (Fmemq (operation, operations))))
285 Lisp_Object tem;
287 handler = XCDR (elt);
288 tem = Fmemq (handler, inhibited_handlers);
289 if (NILP (tem))
291 result = handler;
292 pos = match_pos;
297 QUIT;
299 return result;
302 DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory,
303 1, 1, 0,
304 doc: /* Return the directory component in file name FILENAME.
305 Return nil if FILENAME does not include a directory.
306 Otherwise return a directory name.
307 Given a Unix syntax file name, returns a string ending in slash. */)
308 (Lisp_Object filename)
310 #ifndef DOS_NT
311 register const char *beg;
312 #else
313 register char *beg;
314 #endif
315 register const char *p;
316 Lisp_Object handler;
318 CHECK_STRING (filename);
320 /* If the file name has special constructs in it,
321 call the corresponding file handler. */
322 handler = Ffind_file_name_handler (filename, Qfile_name_directory);
323 if (!NILP (handler))
324 return call2 (handler, Qfile_name_directory, filename);
326 filename = FILE_SYSTEM_CASE (filename);
327 #ifdef DOS_NT
328 beg = (char *) alloca (SBYTES (filename) + 1);
329 memcpy (beg, SSDATA (filename), SBYTES (filename) + 1);
330 #else
331 beg = SSDATA (filename);
332 #endif
333 p = beg + SBYTES (filename);
335 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
336 #ifdef DOS_NT
337 /* only recognise drive specifier at the beginning */
338 && !(p[-1] == ':'
339 /* handle the "/:d:foo" and "/:foo" cases correctly */
340 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg))
341 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
342 #endif
343 ) p--;
345 if (p == beg)
346 return Qnil;
347 #ifdef DOS_NT
348 /* Expansion of "c:" to drive and default directory. */
349 if (p[-1] == ':')
351 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
352 char *res = alloca (MAXPATHLEN + 1);
353 char *r = res;
355 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':')
357 strncpy (res, beg, 2);
358 beg += 2;
359 r += 2;
362 if (getdefdir (toupper ((unsigned char) *beg) - 'A' + 1, r))
364 if (!IS_DIRECTORY_SEP (res[strlen (res) - 1]))
365 strcat (res, "/");
366 beg = res;
367 p = beg + strlen (beg);
370 dostounix_filename (beg);
371 #endif /* DOS_NT */
373 return make_specified_string (beg, -1, p - beg, STRING_MULTIBYTE (filename));
376 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory,
377 Sfile_name_nondirectory, 1, 1, 0,
378 doc: /* Return file name FILENAME sans its directory.
379 For example, in a Unix-syntax file name,
380 this is everything after the last slash,
381 or the entire name if it contains no slash. */)
382 (Lisp_Object filename)
384 register const char *beg, *p, *end;
385 Lisp_Object handler;
387 CHECK_STRING (filename);
389 /* If the file name has special constructs in it,
390 call the corresponding file handler. */
391 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory);
392 if (!NILP (handler))
393 return call2 (handler, Qfile_name_nondirectory, filename);
395 beg = SSDATA (filename);
396 end = p = beg + SBYTES (filename);
398 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
399 #ifdef DOS_NT
400 /* only recognise drive specifier at beginning */
401 && !(p[-1] == ':'
402 /* handle the "/:d:foo" case correctly */
403 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
404 #endif
406 p--;
408 return make_specified_string (p, -1, end - p, STRING_MULTIBYTE (filename));
411 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory,
412 Sunhandled_file_name_directory, 1, 1, 0,
413 doc: /* Return a directly usable directory name somehow associated with FILENAME.
414 A `directly usable' directory name is one that may be used without the
415 intervention of any file handler.
416 If FILENAME is a directly usable file itself, return
417 \(file-name-directory FILENAME).
418 If FILENAME refers to a file which is not accessible from a local process,
419 then this should return nil.
420 The `call-process' and `start-process' functions use this function to
421 get a current directory to run processes in. */)
422 (Lisp_Object filename)
424 Lisp_Object handler;
426 /* If the file name has special constructs in it,
427 call the corresponding file handler. */
428 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
429 if (!NILP (handler))
430 return call2 (handler, Qunhandled_file_name_directory, filename);
432 return Ffile_name_directory (filename);
436 static char *
437 file_name_as_directory (char *out, const char *in)
439 int size = strlen (in) - 1;
441 strcpy (out, in);
443 if (size < 0)
445 out[0] = '.';
446 out[1] = '/';
447 out[2] = 0;
448 return out;
451 /* For Unix syntax, Append a slash if necessary */
452 if (!IS_DIRECTORY_SEP (out[size]))
454 out[size + 1] = DIRECTORY_SEP;
455 out[size + 2] = '\0';
457 #ifdef DOS_NT
458 dostounix_filename (out);
459 #endif
460 return out;
463 DEFUN ("file-name-as-directory", Ffile_name_as_directory,
464 Sfile_name_as_directory, 1, 1, 0,
465 doc: /* Return a string representing the file name FILE interpreted as a directory.
466 This operation exists because a directory is also a file, but its name as
467 a directory is different from its name as a file.
468 The result can be used as the value of `default-directory'
469 or passed as second argument to `expand-file-name'.
470 For a Unix-syntax file name, just appends a slash. */)
471 (Lisp_Object file)
473 char *buf;
474 Lisp_Object handler;
476 CHECK_STRING (file);
477 if (NILP (file))
478 return Qnil;
480 /* If the file name has special constructs in it,
481 call the corresponding file handler. */
482 handler = Ffind_file_name_handler (file, Qfile_name_as_directory);
483 if (!NILP (handler))
484 return call2 (handler, Qfile_name_as_directory, file);
486 buf = (char *) alloca (SBYTES (file) + 10);
487 file_name_as_directory (buf, SSDATA (file));
488 return make_specified_string (buf, -1, strlen (buf),
489 STRING_MULTIBYTE (file));
493 * Convert from directory name to filename.
494 * On UNIX, it's simple: just make sure there isn't a terminating /
496 * Value is nonzero if the string output is different from the input.
499 static int
500 directory_file_name (char *src, char *dst)
502 long slen;
504 slen = strlen (src);
506 /* Process as Unix format: just remove any final slash.
507 But leave "/" unchanged; do not change it to "". */
508 strcpy (dst, src);
509 if (slen > 1
510 && IS_DIRECTORY_SEP (dst[slen - 1])
511 #ifdef DOS_NT
512 && !IS_ANY_SEP (dst[slen - 2])
513 #endif
515 dst[slen - 1] = 0;
516 #ifdef DOS_NT
517 dostounix_filename (dst);
518 #endif
519 return 1;
522 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
523 1, 1, 0,
524 doc: /* Returns the file name of the directory named DIRECTORY.
525 This is the name of the file that holds the data for the directory DIRECTORY.
526 This operation exists because a directory is also a file, but its name as
527 a directory is different from its name as a file.
528 In Unix-syntax, this function just removes the final slash. */)
529 (Lisp_Object directory)
531 char *buf;
532 Lisp_Object handler;
534 CHECK_STRING (directory);
536 if (NILP (directory))
537 return Qnil;
539 /* If the file name has special constructs in it,
540 call the corresponding file handler. */
541 handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
542 if (!NILP (handler))
543 return call2 (handler, Qdirectory_file_name, directory);
545 buf = (char *) alloca (SBYTES (directory) + 20);
546 directory_file_name (SSDATA (directory), buf);
547 return make_specified_string (buf, -1, strlen (buf),
548 STRING_MULTIBYTE (directory));
551 static const char make_temp_name_tbl[64] =
553 'A','B','C','D','E','F','G','H',
554 'I','J','K','L','M','N','O','P',
555 'Q','R','S','T','U','V','W','X',
556 'Y','Z','a','b','c','d','e','f',
557 'g','h','i','j','k','l','m','n',
558 'o','p','q','r','s','t','u','v',
559 'w','x','y','z','0','1','2','3',
560 '4','5','6','7','8','9','-','_'
563 static unsigned make_temp_name_count, make_temp_name_count_initialized_p;
565 /* Value is a temporary file name starting with PREFIX, a string.
567 The Emacs process number forms part of the result, so there is
568 no danger of generating a name being used by another process.
569 In addition, this function makes an attempt to choose a name
570 which has no existing file. To make this work, PREFIX should be
571 an absolute file name.
573 BASE64_P non-zero means add the pid as 3 characters in base64
574 encoding. In this case, 6 characters will be added to PREFIX to
575 form the file name. Otherwise, if Emacs is running on a system
576 with long file names, add the pid as a decimal number.
578 This function signals an error if no unique file name could be
579 generated. */
581 Lisp_Object
582 make_temp_name (Lisp_Object prefix, int base64_p)
584 Lisp_Object val;
585 int len, clen;
586 int pid;
587 char *p, *data;
588 char pidbuf[20];
589 int pidlen;
591 CHECK_STRING (prefix);
593 /* VAL is created by adding 6 characters to PREFIX. The first
594 three are the PID of this process, in base 64, and the second
595 three are incremented if the file already exists. This ensures
596 262144 unique file names per PID per PREFIX. */
598 pid = (int) getpid ();
600 if (base64_p)
602 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
603 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
604 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
605 pidlen = 3;
607 else
609 #ifdef HAVE_LONG_FILE_NAMES
610 sprintf (pidbuf, "%d", pid);
611 pidlen = strlen (pidbuf);
612 #else
613 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
614 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
615 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
616 pidlen = 3;
617 #endif
620 len = SBYTES (prefix); clen = SCHARS (prefix);
621 val = make_uninit_multibyte_string (clen + 3 + pidlen, len + 3 + pidlen);
622 if (!STRING_MULTIBYTE (prefix))
623 STRING_SET_UNIBYTE (val);
624 data = SSDATA (val);
625 memcpy (data, SSDATA (prefix), len);
626 p = data + len;
628 memcpy (p, pidbuf, pidlen);
629 p += pidlen;
631 /* Here we try to minimize useless stat'ing when this function is
632 invoked many times successively with the same PREFIX. We achieve
633 this by initializing count to a random value, and incrementing it
634 afterwards.
636 We don't want make-temp-name to be called while dumping,
637 because then make_temp_name_count_initialized_p would get set
638 and then make_temp_name_count would not be set when Emacs starts. */
640 if (!make_temp_name_count_initialized_p)
642 make_temp_name_count = (unsigned) time (NULL);
643 make_temp_name_count_initialized_p = 1;
646 while (1)
648 struct stat ignored;
649 unsigned num = make_temp_name_count;
651 p[0] = make_temp_name_tbl[num & 63], num >>= 6;
652 p[1] = make_temp_name_tbl[num & 63], num >>= 6;
653 p[2] = make_temp_name_tbl[num & 63], num >>= 6;
655 /* Poor man's congruential RN generator. Replace with
656 ++make_temp_name_count for debugging. */
657 make_temp_name_count += 25229;
658 make_temp_name_count %= 225307;
660 if (stat (data, &ignored) < 0)
662 /* We want to return only if errno is ENOENT. */
663 if (errno == ENOENT)
664 return val;
665 else
666 /* The error here is dubious, but there is little else we
667 can do. The alternatives are to return nil, which is
668 as bad as (and in many cases worse than) throwing the
669 error, or to ignore the error, which will likely result
670 in looping through 225307 stat's, which is not only
671 dog-slow, but also useless since eventually nil would
672 have to be returned anyway. */
673 report_file_error ("Cannot create temporary name for prefix",
674 Fcons (prefix, Qnil));
675 /* not reached */
681 DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
682 doc: /* Generate temporary file name (string) starting with PREFIX (a string).
683 The Emacs process number forms part of the result,
684 so there is no danger of generating a name being used by another process.
686 In addition, this function makes an attempt to choose a name
687 which has no existing file. To make this work,
688 PREFIX should be an absolute file name.
690 There is a race condition between calling `make-temp-name' and creating the
691 file which opens all kinds of security holes. For that reason, you should
692 probably use `make-temp-file' instead, except in three circumstances:
694 * If you are creating the file in the user's home directory.
695 * If you are creating a directory rather than an ordinary file.
696 * If you are taking special precautions as `make-temp-file' does. */)
697 (Lisp_Object prefix)
699 return make_temp_name (prefix, 0);
704 DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
705 doc: /* Convert filename NAME to absolute, and canonicalize it.
706 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
707 \(does not start with slash or tilde); if DEFAULT-DIRECTORY is nil or missing,
708 the current buffer's value of `default-directory' is used.
709 NAME should be a string that is a valid file name for the underlying
710 filesystem.
711 File name components that are `.' are removed, and
712 so are file name components followed by `..', along with the `..' itself;
713 note that these simplifications are done without checking the resulting
714 file names in the file system.
715 Multiple consecutive slashes are collapsed into a single slash,
716 except at the beginning of the file name when they are significant (e.g.,
717 UNC file names on MS-Windows.)
718 An initial `~/' expands to your home directory.
719 An initial `~USER/' expands to USER's home directory.
720 See also the function `substitute-in-file-name'.
722 For technical reasons, this function can return correct but
723 non-intuitive results for the root directory; for instance,
724 \(expand-file-name ".." "/") returns "/..". For this reason, use
725 \(directory-file-name (file-name-directory dirname)) to traverse a
726 filesystem tree, not (expand-file-name ".." dirname). */)
727 (Lisp_Object name, Lisp_Object default_directory)
729 /* These point to SDATA and need to be careful with string-relocation
730 during GC (via DECODE_FILE). */
731 char *nm;
732 const char *newdir;
733 /* This should only point to alloca'd data. */
734 char *target;
736 int tlen;
737 struct passwd *pw;
738 #ifdef DOS_NT
739 int drive = 0;
740 int collapse_newdir = 1;
741 int is_escaped = 0;
742 #endif /* DOS_NT */
743 int length;
744 Lisp_Object handler, result;
745 int multibyte;
746 Lisp_Object hdir;
748 CHECK_STRING (name);
750 /* If the file name has special constructs in it,
751 call the corresponding file handler. */
752 handler = Ffind_file_name_handler (name, Qexpand_file_name);
753 if (!NILP (handler))
754 return call3 (handler, Qexpand_file_name, name, default_directory);
756 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
757 if (NILP (default_directory))
758 default_directory = BVAR (current_buffer, directory);
759 if (! STRINGP (default_directory))
761 #ifdef DOS_NT
762 /* "/" is not considered a root directory on DOS_NT, so using "/"
763 here causes an infinite recursion in, e.g., the following:
765 (let (default-directory)
766 (expand-file-name "a"))
768 To avoid this, we set default_directory to the root of the
769 current drive. */
770 default_directory = build_string (emacs_root_dir ());
771 #else
772 default_directory = build_string ("/");
773 #endif
776 if (!NILP (default_directory))
778 handler = Ffind_file_name_handler (default_directory, Qexpand_file_name);
779 if (!NILP (handler))
780 return call3 (handler, Qexpand_file_name, name, default_directory);
784 char *o = SSDATA (default_directory);
786 /* Make sure DEFAULT_DIRECTORY is properly expanded.
787 It would be better to do this down below where we actually use
788 default_directory. Unfortunately, calling Fexpand_file_name recursively
789 could invoke GC, and the strings might be relocated. This would
790 be annoying because we have pointers into strings lying around
791 that would need adjusting, and people would add new pointers to
792 the code and forget to adjust them, resulting in intermittent bugs.
793 Putting this call here avoids all that crud.
795 The EQ test avoids infinite recursion. */
796 if (! NILP (default_directory) && !EQ (default_directory, name)
797 /* Save time in some common cases - as long as default_directory
798 is not relative, it can be canonicalized with name below (if it
799 is needed at all) without requiring it to be expanded now. */
800 #ifdef DOS_NT
801 /* Detect MSDOS file names with drive specifiers. */
802 && ! (IS_DRIVE (o[0]) && IS_DEVICE_SEP (o[1])
803 && IS_DIRECTORY_SEP (o[2]))
804 #ifdef WINDOWSNT
805 /* Detect Windows file names in UNC format. */
806 && ! (IS_DIRECTORY_SEP (o[0]) && IS_DIRECTORY_SEP (o[1]))
807 #endif
808 #else /* not DOS_NT */
809 /* Detect Unix absolute file names (/... alone is not absolute on
810 DOS or Windows). */
811 && ! (IS_DIRECTORY_SEP (o[0]))
812 #endif /* not DOS_NT */
815 struct gcpro gcpro1;
817 GCPRO1 (name);
818 default_directory = Fexpand_file_name (default_directory, Qnil);
819 UNGCPRO;
822 name = FILE_SYSTEM_CASE (name);
823 multibyte = STRING_MULTIBYTE (name);
824 if (multibyte != STRING_MULTIBYTE (default_directory))
826 if (multibyte)
827 default_directory = string_to_multibyte (default_directory);
828 else
830 name = string_to_multibyte (name);
831 multibyte = 1;
835 /* Make a local copy of nm[] to protect it from GC in DECODE_FILE below. */
836 nm = (char *) alloca (SBYTES (name) + 1);
837 memcpy (nm, SSDATA (name), SBYTES (name) + 1);
839 #ifdef DOS_NT
840 /* Note if special escape prefix is present, but remove for now. */
841 if (nm[0] == '/' && nm[1] == ':')
843 is_escaped = 1;
844 nm += 2;
847 /* Find and remove drive specifier if present; this makes nm absolute
848 even if the rest of the name appears to be relative. Only look for
849 drive specifier at the beginning. */
850 if (IS_DRIVE (nm[0]) && IS_DEVICE_SEP (nm[1]))
852 drive = (unsigned char) nm[0];
853 nm += 2;
856 #ifdef WINDOWSNT
857 /* If we see "c://somedir", we want to strip the first slash after the
858 colon when stripping the drive letter. Otherwise, this expands to
859 "//somedir". */
860 if (drive && IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
861 nm++;
863 /* Discard any previous drive specifier if nm is now in UNC format. */
864 if (IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
866 drive = 0;
868 #endif /* WINDOWSNT */
869 #endif /* DOS_NT */
871 /* If nm is absolute, look for `/./' or `/../' or `//''sequences; if
872 none are found, we can probably return right away. We will avoid
873 allocating a new string if name is already fully expanded. */
874 if (
875 IS_DIRECTORY_SEP (nm[0])
876 #ifdef MSDOS
877 && drive && !is_escaped
878 #endif
879 #ifdef WINDOWSNT
880 && (drive || IS_DIRECTORY_SEP (nm[1])) && !is_escaped
881 #endif
884 /* If it turns out that the filename we want to return is just a
885 suffix of FILENAME, we don't need to go through and edit
886 things; we just need to construct a new string using data
887 starting at the middle of FILENAME. If we set lose to a
888 non-zero value, that means we've discovered that we can't do
889 that cool trick. */
890 int lose = 0;
891 char *p = nm;
893 while (*p)
895 /* Since we know the name is absolute, we can assume that each
896 element starts with a "/". */
898 /* "." and ".." are hairy. */
899 if (IS_DIRECTORY_SEP (p[0])
900 && p[1] == '.'
901 && (IS_DIRECTORY_SEP (p[2])
902 || p[2] == 0
903 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3])
904 || p[3] == 0))))
905 lose = 1;
906 /* We want to replace multiple `/' in a row with a single
907 slash. */
908 else if (p > nm
909 && IS_DIRECTORY_SEP (p[0])
910 && IS_DIRECTORY_SEP (p[1]))
911 lose = 1;
912 p++;
914 if (!lose)
916 #ifdef DOS_NT
917 /* Make sure directories are all separated with /, but
918 avoid allocation of a new string when not required. */
919 dostounix_filename (nm);
920 #ifdef WINDOWSNT
921 if (IS_DIRECTORY_SEP (nm[1]))
923 if (strcmp (nm, SSDATA (name)) != 0)
924 name = make_specified_string (nm, -1, strlen (nm), multibyte);
926 else
927 #endif
928 /* drive must be set, so this is okay */
929 if (strcmp (nm - 2, SSDATA (name)) != 0)
931 char temp[] = " :";
933 name = make_specified_string (nm, -1, p - nm, multibyte);
934 temp[0] = DRIVE_LETTER (drive);
935 name = concat2 (build_string (temp), name);
937 return name;
938 #else /* not DOS_NT */
939 if (strcmp (nm, SSDATA (name)) == 0)
940 return name;
941 return make_specified_string (nm, -1, strlen (nm), multibyte);
942 #endif /* not DOS_NT */
946 /* At this point, nm might or might not be an absolute file name. We
947 need to expand ~ or ~user if present, otherwise prefix nm with
948 default_directory if nm is not absolute, and finally collapse /./
949 and /foo/../ sequences.
951 We set newdir to be the appropriate prefix if one is needed:
952 - the relevant user directory if nm starts with ~ or ~user
953 - the specified drive's working dir (DOS/NT only) if nm does not
954 start with /
955 - the value of default_directory.
957 Note that these prefixes are not guaranteed to be absolute (except
958 for the working dir of a drive). Therefore, to ensure we always
959 return an absolute name, if the final prefix is not absolute we
960 append it to the current working directory. */
962 newdir = 0;
964 if (nm[0] == '~') /* prefix ~ */
966 if (IS_DIRECTORY_SEP (nm[1])
967 || nm[1] == 0) /* ~ by itself */
969 Lisp_Object tem;
971 if (!(newdir = egetenv ("HOME")))
972 newdir = "";
973 nm++;
974 /* egetenv may return a unibyte string, which will bite us since
975 we expect the directory to be multibyte. */
976 tem = build_string (newdir);
977 if (!STRING_MULTIBYTE (tem))
979 hdir = DECODE_FILE (tem);
980 newdir = SSDATA (hdir);
982 #ifdef DOS_NT
983 collapse_newdir = 0;
984 #endif
986 else /* ~user/filename */
988 char *o, *p;
989 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p)); p++);
990 o = alloca (p - nm + 1);
991 memcpy (o, nm, p - nm);
992 o [p - nm] = 0;
994 BLOCK_INPUT;
995 pw = (struct passwd *) getpwnam (o + 1);
996 UNBLOCK_INPUT;
997 if (pw)
999 newdir = pw->pw_dir;
1000 nm = p;
1001 #ifdef DOS_NT
1002 collapse_newdir = 0;
1003 #endif
1006 /* If we don't find a user of that name, leave the name
1007 unchanged; don't move nm forward to p. */
1011 #ifdef DOS_NT
1012 /* On DOS and Windows, nm is absolute if a drive name was specified;
1013 use the drive's current directory as the prefix if needed. */
1014 if (!newdir && drive)
1016 /* Get default directory if needed to make nm absolute. */
1017 char *adir = NULL;
1018 if (!IS_DIRECTORY_SEP (nm[0]))
1020 adir = alloca (MAXPATHLEN + 1);
1021 if (!getdefdir (toupper (drive) - 'A' + 1, adir))
1022 adir = NULL;
1024 if (!adir)
1026 /* Either nm starts with /, or drive isn't mounted. */
1027 adir = alloca (4);
1028 adir[0] = DRIVE_LETTER (drive);
1029 adir[1] = ':';
1030 adir[2] = '/';
1031 adir[3] = 0;
1033 newdir = adir;
1035 #endif /* DOS_NT */
1037 /* Finally, if no prefix has been specified and nm is not absolute,
1038 then it must be expanded relative to default_directory. */
1040 if (1
1041 #ifndef DOS_NT
1042 /* /... alone is not absolute on DOS and Windows. */
1043 && !IS_DIRECTORY_SEP (nm[0])
1044 #endif
1045 #ifdef WINDOWSNT
1046 && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
1047 #endif
1048 && !newdir)
1050 newdir = SSDATA (default_directory);
1051 #ifdef DOS_NT
1052 /* Note if special escape prefix is present, but remove for now. */
1053 if (newdir[0] == '/' && newdir[1] == ':')
1055 is_escaped = 1;
1056 newdir += 2;
1058 #endif
1061 #ifdef DOS_NT
1062 if (newdir)
1064 /* First ensure newdir is an absolute name. */
1065 if (
1066 /* Detect MSDOS file names with drive specifiers. */
1067 ! (IS_DRIVE (newdir[0])
1068 && IS_DEVICE_SEP (newdir[1]) && IS_DIRECTORY_SEP (newdir[2]))
1069 #ifdef WINDOWSNT
1070 /* Detect Windows file names in UNC format. */
1071 && ! (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1072 #endif
1075 /* Effectively, let newdir be (expand-file-name newdir cwd).
1076 Because of the admonition against calling expand-file-name
1077 when we have pointers into lisp strings, we accomplish this
1078 indirectly by prepending newdir to nm if necessary, and using
1079 cwd (or the wd of newdir's drive) as the new newdir. */
1080 char *adir;
1081 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
1083 drive = (unsigned char) newdir[0];
1084 newdir += 2;
1086 if (!IS_DIRECTORY_SEP (nm[0]))
1088 char * tmp = alloca (strlen (newdir) + strlen (nm) + 2);
1089 file_name_as_directory (tmp, newdir);
1090 strcat (tmp, nm);
1091 nm = tmp;
1093 adir = alloca (MAXPATHLEN + 1);
1094 if (drive)
1096 if (!getdefdir (toupper (drive) - 'A' + 1, adir))
1097 newdir = "/";
1099 else
1100 getwd (adir);
1101 newdir = adir;
1104 /* Strip off drive name from prefix, if present. */
1105 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
1107 drive = newdir[0];
1108 newdir += 2;
1111 /* Keep only a prefix from newdir if nm starts with slash
1112 (//server/share for UNC, nothing otherwise). */
1113 if (IS_DIRECTORY_SEP (nm[0]) && collapse_newdir)
1115 #ifdef WINDOWSNT
1116 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1118 char *adir = strcpy (alloca (strlen (newdir) + 1), newdir);
1119 char *p = adir + 2;
1120 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1121 p++;
1122 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1123 *p = 0;
1124 newdir = adir;
1126 else
1127 #endif
1128 newdir = "";
1131 #endif /* DOS_NT */
1133 if (newdir)
1135 /* Get rid of any slash at the end of newdir, unless newdir is
1136 just / or // (an incomplete UNC name). */
1137 length = strlen (newdir);
1138 if (length > 1 && IS_DIRECTORY_SEP (newdir[length - 1])
1139 #ifdef WINDOWSNT
1140 && !(length == 2 && IS_DIRECTORY_SEP (newdir[0]))
1141 #endif
1144 char *temp = (char *) alloca (length);
1145 memcpy (temp, newdir, length - 1);
1146 temp[length - 1] = 0;
1147 newdir = temp;
1149 tlen = length + 1;
1151 else
1152 tlen = 0;
1154 /* Now concatenate the directory and name to new space in the stack frame */
1155 tlen += strlen (nm) + 1;
1156 #ifdef DOS_NT
1157 /* Reserve space for drive specifier and escape prefix, since either
1158 or both may need to be inserted. (The Microsoft x86 compiler
1159 produces incorrect code if the following two lines are combined.) */
1160 target = (char *) alloca (tlen + 4);
1161 target += 4;
1162 #else /* not DOS_NT */
1163 target = (char *) alloca (tlen);
1164 #endif /* not DOS_NT */
1165 *target = 0;
1167 if (newdir)
1169 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0]))
1171 #ifdef DOS_NT
1172 /* If newdir is effectively "C:/", then the drive letter will have
1173 been stripped and newdir will be "/". Concatenating with an
1174 absolute directory in nm produces "//", which will then be
1175 incorrectly treated as a network share. Ignore newdir in
1176 this case (keeping the drive letter). */
1177 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0])
1178 && newdir[1] == '\0'))
1179 #endif
1180 strcpy (target, newdir);
1182 else
1183 file_name_as_directory (target, newdir);
1186 strcat (target, nm);
1188 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they
1189 appear. */
1191 char *p = target;
1192 char *o = target;
1194 while (*p)
1196 if (!IS_DIRECTORY_SEP (*p))
1198 *o++ = *p++;
1200 else if (p[1] == '.'
1201 && (IS_DIRECTORY_SEP (p[2])
1202 || p[2] == 0))
1204 /* If "/." is the entire filename, keep the "/". Otherwise,
1205 just delete the whole "/.". */
1206 if (o == target && p[2] == '\0')
1207 *o++ = *p;
1208 p += 2;
1210 else if (p[1] == '.' && p[2] == '.'
1211 /* `/../' is the "superroot" on certain file systems.
1212 Turned off on DOS_NT systems because they have no
1213 "superroot" and because this causes us to produce
1214 file names like "d:/../foo" which fail file-related
1215 functions of the underlying OS. (To reproduce, try a
1216 long series of "../../" in default_directory, longer
1217 than the number of levels from the root.) */
1218 #ifndef DOS_NT
1219 && o != target
1220 #endif
1221 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0))
1223 #ifdef WINDOWSNT
1224 char *prev_o = o;
1225 #endif
1226 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o))
1228 #ifdef WINDOWSNT
1229 /* Don't go below server level in UNC filenames. */
1230 if (o == target + 1 && IS_DIRECTORY_SEP (*o)
1231 && IS_DIRECTORY_SEP (*target))
1232 o = prev_o;
1233 else
1234 #endif
1235 /* Keep initial / only if this is the whole name. */
1236 if (o == target && IS_ANY_SEP (*o) && p[3] == 0)
1237 ++o;
1238 p += 3;
1240 else if (p > target && IS_DIRECTORY_SEP (p[1]))
1241 /* Collapse multiple `/' in a row. */
1242 p++;
1243 else
1245 *o++ = *p++;
1249 #ifdef DOS_NT
1250 /* At last, set drive name. */
1251 #ifdef WINDOWSNT
1252 /* Except for network file name. */
1253 if (!(IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1])))
1254 #endif /* WINDOWSNT */
1256 if (!drive) abort ();
1257 target -= 2;
1258 target[0] = DRIVE_LETTER (drive);
1259 target[1] = ':';
1261 /* Reinsert the escape prefix if required. */
1262 if (is_escaped)
1264 target -= 2;
1265 target[0] = '/';
1266 target[1] = ':';
1268 dostounix_filename (target);
1269 #endif /* DOS_NT */
1271 result = make_specified_string (target, -1, o - target, multibyte);
1274 /* Again look to see if the file name has special constructs in it
1275 and perhaps call the corresponding file handler. This is needed
1276 for filenames such as "/foo/../user@host:/bar/../baz". Expanding
1277 the ".." component gives us "/user@host:/bar/../baz" which needs
1278 to be expanded again. */
1279 handler = Ffind_file_name_handler (result, Qexpand_file_name);
1280 if (!NILP (handler))
1281 return call3 (handler, Qexpand_file_name, result, default_directory);
1283 return result;
1286 #if 0
1287 /* PLEASE DO NOT DELETE THIS COMMENTED-OUT VERSION!
1288 This is the old version of expand-file-name, before it was thoroughly
1289 rewritten for Emacs 10.31. We leave this version here commented-out,
1290 because the code is very complex and likely to have subtle bugs. If
1291 bugs _are_ found, it might be of interest to look at the old code and
1292 see what did it do in the relevant situation.
1294 Don't remove this code: it's true that it will be accessible
1295 from the repository, but a few years from deletion, people will
1296 forget it is there. */
1298 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1299 DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
1300 "Convert FILENAME to absolute, and canonicalize it.\n\
1301 Second arg DEFAULT is directory to start with if FILENAME is relative\n\
1302 \(does not start with slash); if DEFAULT is nil or missing,\n\
1303 the current buffer's value of default-directory is used.\n\
1304 Filenames containing `.' or `..' as components are simplified;\n\
1305 initial `~/' expands to your home directory.\n\
1306 See also the function `substitute-in-file-name'.")
1307 (name, defalt)
1308 Lisp_Object name, defalt;
1310 unsigned char *nm;
1312 register unsigned char *newdir, *p, *o;
1313 int tlen;
1314 unsigned char *target;
1315 struct passwd *pw;
1316 int lose;
1318 CHECK_STRING (name);
1319 nm = SDATA (name);
1321 /* If nm is absolute, flush ...// and detect /./ and /../.
1322 If no /./ or /../ we can return right away. */
1323 if (nm[0] == '/')
1325 p = nm;
1326 lose = 0;
1327 while (*p)
1329 if (p[0] == '/' && p[1] == '/'
1331 nm = p + 1;
1332 if (p[0] == '/' && p[1] == '~')
1333 nm = p + 1, lose = 1;
1334 if (p[0] == '/' && p[1] == '.'
1335 && (p[2] == '/' || p[2] == 0
1336 || (p[2] == '.' && (p[3] == '/' || p[3] == 0))))
1337 lose = 1;
1338 p++;
1340 if (!lose)
1342 if (nm == SDATA (name))
1343 return name;
1344 return build_string (nm);
1348 /* Now determine directory to start with and put it in NEWDIR */
1350 newdir = 0;
1352 if (nm[0] == '~') /* prefix ~ */
1353 if (nm[1] == '/' || nm[1] == 0)/* ~/filename */
1355 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1356 newdir = (unsigned char *) "";
1357 nm++;
1359 else /* ~user/filename */
1361 /* Get past ~ to user */
1362 unsigned char *user = nm + 1;
1363 /* Find end of name. */
1364 unsigned char *ptr = (unsigned char *) strchr (user, '/');
1365 int len = ptr ? ptr - user : strlen (user);
1366 /* Copy the user name into temp storage. */
1367 o = (unsigned char *) alloca (len + 1);
1368 memcpy (o, user, len);
1369 o[len] = 0;
1371 /* Look up the user name. */
1372 BLOCK_INPUT;
1373 pw = (struct passwd *) getpwnam (o + 1);
1374 UNBLOCK_INPUT;
1375 if (!pw)
1376 error ("\"%s\" isn't a registered user", o + 1);
1378 newdir = (unsigned char *) pw->pw_dir;
1380 /* Discard the user name from NM. */
1381 nm += len;
1384 if (nm[0] != '/' && !newdir)
1386 if (NILP (defalt))
1387 defalt = current_buffer->directory;
1388 CHECK_STRING (defalt);
1389 newdir = SDATA (defalt);
1392 /* Now concatenate the directory and name to new space in the stack frame */
1394 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1;
1395 target = (unsigned char *) alloca (tlen);
1396 *target = 0;
1398 if (newdir)
1400 if (nm[0] == 0 || nm[0] == '/')
1401 strcpy (target, newdir);
1402 else
1403 file_name_as_directory (target, newdir);
1406 strcat (target, nm);
1408 /* Now canonicalize by removing /. and /foo/.. if they appear */
1410 p = target;
1411 o = target;
1413 while (*p)
1415 if (*p != '/')
1417 *o++ = *p++;
1419 else if (!strncmp (p, "//", 2)
1422 o = target;
1423 p++;
1425 else if (p[0] == '/' && p[1] == '.'
1426 && (p[2] == '/' || p[2] == 0))
1427 p += 2;
1428 else if (!strncmp (p, "/..", 3)
1429 /* `/../' is the "superroot" on certain file systems. */
1430 && o != target
1431 && (p[3] == '/' || p[3] == 0))
1433 while (o != target && *--o != '/')
1435 if (o == target && *o == '/')
1436 ++o;
1437 p += 3;
1439 else
1441 *o++ = *p++;
1445 return make_string (target, o - target);
1447 #endif
1449 /* If /~ or // appears, discard everything through first slash. */
1450 static int
1451 file_name_absolute_p (const char *filename)
1453 return
1454 (IS_DIRECTORY_SEP (*filename) || *filename == '~'
1455 #ifdef DOS_NT
1456 || (IS_DRIVE (*filename) && IS_DEVICE_SEP (filename[1])
1457 && IS_DIRECTORY_SEP (filename[2]))
1458 #endif
1462 static char *
1463 search_embedded_absfilename (char *nm, char *endp)
1465 char *p, *s;
1467 for (p = nm + 1; p < endp; p++)
1469 if ((0
1470 || IS_DIRECTORY_SEP (p[-1]))
1471 && file_name_absolute_p (p)
1472 #if defined (WINDOWSNT) || defined(CYGWIN)
1473 /* // at start of file name is meaningful in Apollo,
1474 WindowsNT and Cygwin systems. */
1475 && !(IS_DIRECTORY_SEP (p[0]) && p - 1 == nm)
1476 #endif /* not (WINDOWSNT || CYGWIN) */
1479 for (s = p; *s && (!IS_DIRECTORY_SEP (*s)); s++);
1480 if (p[0] == '~' && s > p + 1) /* we've got "/~something/" */
1482 char *o = alloca (s - p + 1);
1483 struct passwd *pw;
1484 memcpy (o, p, s - p);
1485 o [s - p] = 0;
1487 /* If we have ~user and `user' exists, discard
1488 everything up to ~. But if `user' does not exist, leave
1489 ~user alone, it might be a literal file name. */
1490 BLOCK_INPUT;
1491 pw = getpwnam (o + 1);
1492 UNBLOCK_INPUT;
1493 if (pw)
1494 return p;
1496 else
1497 return p;
1500 return NULL;
1503 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
1504 Ssubstitute_in_file_name, 1, 1, 0,
1505 doc: /* Substitute environment variables referred to in FILENAME.
1506 `$FOO' where FOO is an environment variable name means to substitute
1507 the value of that variable. The variable name should be terminated
1508 with a character not a letter, digit or underscore; otherwise, enclose
1509 the entire variable name in braces.
1511 If `/~' appears, all of FILENAME through that `/' is discarded.
1512 If `//' appears, everything up to and including the first of
1513 those `/' is discarded. */)
1514 (Lisp_Object filename)
1516 char *nm;
1518 register char *s, *p, *o, *x, *endp;
1519 char *target = NULL;
1520 int total = 0;
1521 int substituted = 0;
1522 int multibyte;
1523 char *xnm;
1524 Lisp_Object handler;
1526 CHECK_STRING (filename);
1528 multibyte = STRING_MULTIBYTE (filename);
1530 /* If the file name has special constructs in it,
1531 call the corresponding file handler. */
1532 handler = Ffind_file_name_handler (filename, Qsubstitute_in_file_name);
1533 if (!NILP (handler))
1534 return call2 (handler, Qsubstitute_in_file_name, filename);
1536 /* Always work on a copy of the string, in case GC happens during
1537 decode of environment variables, causing the original Lisp_String
1538 data to be relocated. */
1539 nm = (char *) alloca (SBYTES (filename) + 1);
1540 memcpy (nm, SDATA (filename), SBYTES (filename) + 1);
1542 #ifdef DOS_NT
1543 dostounix_filename (nm);
1544 substituted = (strcmp (nm, SDATA (filename)) != 0);
1545 #endif
1546 endp = nm + SBYTES (filename);
1548 /* If /~ or // appears, discard everything through first slash. */
1549 p = search_embedded_absfilename (nm, endp);
1550 if (p)
1551 /* Start over with the new string, so we check the file-name-handler
1552 again. Important with filenames like "/home/foo//:/hello///there"
1553 which whould substitute to "/:/hello///there" rather than "/there". */
1554 return Fsubstitute_in_file_name
1555 (make_specified_string (p, -1, endp - p, multibyte));
1557 /* See if any variables are substituted into the string
1558 and find the total length of their values in `total' */
1560 for (p = nm; p != endp;)
1561 if (*p != '$')
1562 p++;
1563 else
1565 p++;
1566 if (p == endp)
1567 goto badsubst;
1568 else if (*p == '$')
1570 /* "$$" means a single "$" */
1571 p++;
1572 total -= 1;
1573 substituted = 1;
1574 continue;
1576 else if (*p == '{')
1578 o = ++p;
1579 while (p != endp && *p != '}') p++;
1580 if (*p != '}') goto missingclose;
1581 s = p;
1583 else
1585 o = p;
1586 while (p != endp && (isalnum (*p) || *p == '_')) p++;
1587 s = p;
1590 /* Copy out the variable name */
1591 target = (char *) alloca (s - o + 1);
1592 strncpy (target, o, s - o);
1593 target[s - o] = 0;
1594 #ifdef DOS_NT
1595 strupr (target); /* $home == $HOME etc. */
1596 #endif /* DOS_NT */
1598 /* Get variable value */
1599 o = egetenv (target);
1600 if (o)
1602 /* Don't try to guess a maximum length - UTF8 can use up to
1603 four bytes per character. This code is unlikely to run
1604 in a situation that requires performance, so decoding the
1605 env variables twice should be acceptable. Note that
1606 decoding may cause a garbage collect. */
1607 Lisp_Object orig, decoded;
1608 orig = make_unibyte_string (o, strlen (o));
1609 decoded = DECODE_FILE (orig);
1610 total += SBYTES (decoded);
1611 substituted = 1;
1613 else if (*p == '}')
1614 goto badvar;
1617 if (!substituted)
1618 return filename;
1620 /* If substitution required, recopy the string and do it */
1621 /* Make space in stack frame for the new copy */
1622 xnm = (char *) alloca (SBYTES (filename) + total + 1);
1623 x = xnm;
1625 /* Copy the rest of the name through, replacing $ constructs with values */
1626 for (p = nm; *p;)
1627 if (*p != '$')
1628 *x++ = *p++;
1629 else
1631 p++;
1632 if (p == endp)
1633 goto badsubst;
1634 else if (*p == '$')
1636 *x++ = *p++;
1637 continue;
1639 else if (*p == '{')
1641 o = ++p;
1642 while (p != endp && *p != '}') p++;
1643 if (*p != '}') goto missingclose;
1644 s = p++;
1646 else
1648 o = p;
1649 while (p != endp && (isalnum (*p) || *p == '_')) p++;
1650 s = p;
1653 /* Copy out the variable name */
1654 target = (char *) alloca (s - o + 1);
1655 strncpy (target, o, s - o);
1656 target[s - o] = 0;
1657 #ifdef DOS_NT
1658 strupr (target); /* $home == $HOME etc. */
1659 #endif /* DOS_NT */
1661 /* Get variable value */
1662 o = egetenv (target);
1663 if (!o)
1665 *x++ = '$';
1666 strcpy (x, target); x+= strlen (target);
1668 else
1670 Lisp_Object orig, decoded;
1671 int orig_length, decoded_length;
1672 orig_length = strlen (o);
1673 orig = make_unibyte_string (o, orig_length);
1674 decoded = DECODE_FILE (orig);
1675 decoded_length = SBYTES (decoded);
1676 strncpy (x, SSDATA (decoded), decoded_length);
1677 x += decoded_length;
1679 /* If environment variable needed decoding, return value
1680 needs to be multibyte. */
1681 if (decoded_length != orig_length
1682 || strncmp (SSDATA (decoded), o, orig_length))
1683 multibyte = 1;
1687 *x = 0;
1689 /* If /~ or // appears, discard everything through first slash. */
1690 while ((p = search_embedded_absfilename (xnm, x)))
1691 /* This time we do not start over because we've already expanded envvars
1692 and replaced $$ with $. Maybe we should start over as well, but we'd
1693 need to quote some $ to $$ first. */
1694 xnm = p;
1696 return make_specified_string (xnm, -1, x - xnm, multibyte);
1698 badsubst:
1699 error ("Bad format environment-variable substitution");
1700 missingclose:
1701 error ("Missing \"}\" in environment-variable substitution");
1702 badvar:
1703 error ("Substituting nonexistent environment variable \"%s\"", target);
1705 /* NOTREACHED */
1706 return Qnil;
1709 /* A slightly faster and more convenient way to get
1710 (directory-file-name (expand-file-name FOO)). */
1712 Lisp_Object
1713 expand_and_dir_to_file (Lisp_Object filename, Lisp_Object defdir)
1715 register Lisp_Object absname;
1717 absname = Fexpand_file_name (filename, defdir);
1719 /* Remove final slash, if any (unless this is the root dir).
1720 stat behaves differently depending! */
1721 if (SCHARS (absname) > 1
1722 && IS_DIRECTORY_SEP (SREF (absname, SBYTES (absname) - 1))
1723 && !IS_DEVICE_SEP (SREF (absname, SBYTES (absname)-2)))
1724 /* We cannot take shortcuts; they might be wrong for magic file names. */
1725 absname = Fdirectory_file_name (absname);
1726 return absname;
1729 /* Signal an error if the file ABSNAME already exists.
1730 If INTERACTIVE is nonzero, ask the user whether to proceed,
1731 and bypass the error if the user says to go ahead.
1732 QUERYSTRING is a name for the action that is being considered
1733 to alter the file.
1735 *STATPTR is used to store the stat information if the file exists.
1736 If the file does not exist, STATPTR->st_mode is set to 0.
1737 If STATPTR is null, we don't store into it.
1739 If QUICK is nonzero, we ask for y or n, not yes or no. */
1741 static void
1742 barf_or_query_if_file_exists (Lisp_Object absname, const char *querystring,
1743 int interactive, struct stat *statptr, int quick)
1745 register Lisp_Object tem, encoded_filename;
1746 struct stat statbuf;
1747 struct gcpro gcpro1;
1749 encoded_filename = ENCODE_FILE (absname);
1751 /* stat is a good way to tell whether the file exists,
1752 regardless of what access permissions it has. */
1753 if (lstat (SSDATA (encoded_filename), &statbuf) >= 0)
1755 if (! interactive)
1756 xsignal2 (Qfile_already_exists,
1757 build_string ("File already exists"), absname);
1758 GCPRO1 (absname);
1759 tem = format2 ("File %s already exists; %s anyway? ",
1760 absname, build_string (querystring));
1761 if (quick)
1762 tem = call1 (intern ("y-or-n-p"), tem);
1763 else
1764 tem = do_yes_or_no_p (tem);
1765 UNGCPRO;
1766 if (NILP (tem))
1767 xsignal2 (Qfile_already_exists,
1768 build_string ("File already exists"), absname);
1769 if (statptr)
1770 *statptr = statbuf;
1772 else
1774 if (statptr)
1775 statptr->st_mode = 0;
1777 return;
1780 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 6,
1781 "fCopy file: \nGCopy %s to file: \np\nP",
1782 doc: /* Copy FILE to NEWNAME. Both args must be strings.
1783 If NEWNAME names a directory, copy FILE there.
1785 This function always sets the file modes of the output file to match
1786 the input file.
1788 The optional third argument OK-IF-ALREADY-EXISTS specifies what to do
1789 if file NEWNAME already exists. If OK-IF-ALREADY-EXISTS is nil, we
1790 signal a `file-already-exists' error without overwriting. If
1791 OK-IF-ALREADY-EXISTS is a number, we request confirmation from the user
1792 about overwriting; this is what happens in interactive use with M-x.
1793 Any other value for OK-IF-ALREADY-EXISTS means to overwrite the
1794 existing file.
1796 Fourth arg KEEP-TIME non-nil means give the output file the same
1797 last-modified time as the old one. (This works on only some systems.)
1799 A prefix arg makes KEEP-TIME non-nil.
1801 If PRESERVE-UID-GID is non-nil, we try to transfer the
1802 uid and gid of FILE to NEWNAME.
1804 If PRESERVE-SELINUX-CONTEXT is non-nil and SELinux is enabled
1805 on the system, we copy the SELinux context of FILE to NEWNAME. */)
1806 (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)
1808 int ifd, ofd, n;
1809 char buf[16 * 1024];
1810 struct stat st, out_st;
1811 Lisp_Object handler;
1812 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1813 int count = SPECPDL_INDEX ();
1814 int input_file_statable_p;
1815 Lisp_Object encoded_file, encoded_newname;
1816 #if HAVE_LIBSELINUX
1817 security_context_t con;
1818 int fail, conlength = 0;
1819 #endif
1821 encoded_file = encoded_newname = Qnil;
1822 GCPRO4 (file, newname, encoded_file, encoded_newname);
1823 CHECK_STRING (file);
1824 CHECK_STRING (newname);
1826 if (!NILP (Ffile_directory_p (newname)))
1827 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
1828 else
1829 newname = Fexpand_file_name (newname, Qnil);
1831 file = Fexpand_file_name (file, Qnil);
1833 /* If the input file name has special constructs in it,
1834 call the corresponding file handler. */
1835 handler = Ffind_file_name_handler (file, Qcopy_file);
1836 /* Likewise for output file name. */
1837 if (NILP (handler))
1838 handler = Ffind_file_name_handler (newname, Qcopy_file);
1839 if (!NILP (handler))
1840 RETURN_UNGCPRO (call7 (handler, Qcopy_file, file, newname,
1841 ok_if_already_exists, keep_time, preserve_uid_gid,
1842 preserve_selinux_context));
1844 encoded_file = ENCODE_FILE (file);
1845 encoded_newname = ENCODE_FILE (newname);
1847 if (NILP (ok_if_already_exists)
1848 || INTEGERP (ok_if_already_exists))
1849 barf_or_query_if_file_exists (newname, "copy to it",
1850 INTEGERP (ok_if_already_exists), &out_st, 0);
1851 else if (stat (SSDATA (encoded_newname), &out_st) < 0)
1852 out_st.st_mode = 0;
1854 #ifdef WINDOWSNT
1855 if (!CopyFile (SDATA (encoded_file),
1856 SDATA (encoded_newname),
1857 FALSE))
1858 report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil)));
1859 /* CopyFile retains the timestamp by default. */
1860 else if (NILP (keep_time))
1862 EMACS_TIME now;
1863 DWORD attributes;
1864 char * filename;
1866 EMACS_GET_TIME (now);
1867 filename = SDATA (encoded_newname);
1869 /* Ensure file is writable while its modified time is set. */
1870 attributes = GetFileAttributes (filename);
1871 SetFileAttributes (filename, attributes & ~FILE_ATTRIBUTE_READONLY);
1872 if (set_file_times (filename, now, now))
1874 /* Restore original attributes. */
1875 SetFileAttributes (filename, attributes);
1876 xsignal2 (Qfile_date_error,
1877 build_string ("Cannot set file date"), newname);
1879 /* Restore original attributes. */
1880 SetFileAttributes (filename, attributes);
1882 #else /* not WINDOWSNT */
1883 immediate_quit = 1;
1884 ifd = emacs_open (SSDATA (encoded_file), O_RDONLY, 0);
1885 immediate_quit = 0;
1887 if (ifd < 0)
1888 report_file_error ("Opening input file", Fcons (file, Qnil));
1890 record_unwind_protect (close_file_unwind, make_number (ifd));
1892 /* We can only copy regular files and symbolic links. Other files are not
1893 copyable by us. */
1894 input_file_statable_p = (fstat (ifd, &st) >= 0);
1896 #if HAVE_LIBSELINUX
1897 if (!NILP (preserve_selinux_context) && is_selinux_enabled ())
1899 conlength = fgetfilecon (ifd, &con);
1900 if (conlength == -1)
1901 report_file_error ("Doing fgetfilecon", Fcons (file, Qnil));
1903 #endif
1905 if (out_st.st_mode != 0
1906 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
1908 errno = 0;
1909 report_file_error ("Input and output files are the same",
1910 Fcons (file, Fcons (newname, Qnil)));
1913 if (input_file_statable_p)
1915 if (!(S_ISREG (st.st_mode)) && !(S_ISLNK (st.st_mode)))
1917 #if defined (EISDIR)
1918 /* Get a better looking error message. */
1919 errno = EISDIR;
1920 #endif /* EISDIR */
1921 report_file_error ("Non-regular file", Fcons (file, Qnil));
1925 #ifdef MSDOS
1926 /* System's default file type was set to binary by _fmode in emacs.c. */
1927 ofd = emacs_open (SDATA (encoded_newname),
1928 O_WRONLY | O_TRUNC | O_CREAT
1929 | (NILP (ok_if_already_exists) ? O_EXCL : 0),
1930 S_IREAD | S_IWRITE);
1931 #else /* not MSDOS */
1932 ofd = emacs_open (SSDATA (encoded_newname),
1933 O_WRONLY | O_TRUNC | O_CREAT
1934 | (NILP (ok_if_already_exists) ? O_EXCL : 0),
1935 0666);
1936 #endif /* not MSDOS */
1937 if (ofd < 0)
1938 report_file_error ("Opening output file", Fcons (newname, Qnil));
1940 record_unwind_protect (close_file_unwind, make_number (ofd));
1942 immediate_quit = 1;
1943 QUIT;
1944 while ((n = emacs_read (ifd, buf, sizeof buf)) > 0)
1945 if (emacs_write (ofd, buf, n) != n)
1946 report_file_error ("I/O error", Fcons (newname, Qnil));
1947 immediate_quit = 0;
1949 #ifndef MSDOS
1950 /* Preserve the original file modes, and if requested, also its
1951 owner and group. */
1952 if (input_file_statable_p)
1954 if (!NILP (preserve_uid_gid) && fchown (ofd, st.st_uid, st.st_gid) != 0)
1955 report_file_error ("Doing chown", Fcons (newname, Qnil));
1956 if (fchmod (ofd, st.st_mode & 07777) != 0)
1957 report_file_error ("Doing chmod", Fcons (newname, Qnil));
1959 #endif /* not MSDOS */
1961 #if HAVE_LIBSELINUX
1962 if (conlength > 0)
1964 /* Set the modified context back to the file. */
1965 fail = fsetfilecon (ofd, con);
1966 if (fail)
1967 report_file_error ("Doing fsetfilecon", Fcons (newname, Qnil));
1969 freecon (con);
1971 #endif
1973 /* Closing the output clobbers the file times on some systems. */
1974 if (emacs_close (ofd) < 0)
1975 report_file_error ("I/O error", Fcons (newname, Qnil));
1977 if (input_file_statable_p)
1979 if (!NILP (keep_time))
1981 EMACS_TIME atime, mtime;
1982 EMACS_SET_SECS_USECS (atime, st.st_atime, 0);
1983 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0);
1984 if (set_file_times (SSDATA (encoded_newname),
1985 atime, mtime))
1986 xsignal2 (Qfile_date_error,
1987 build_string ("Cannot set file date"), newname);
1991 emacs_close (ifd);
1993 #ifdef MSDOS
1994 if (input_file_statable_p)
1996 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
1997 and if it can't, it tells so. Otherwise, under MSDOS we usually
1998 get only the READ bit, which will make the copied file read-only,
1999 so it's better not to chmod at all. */
2000 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0)
2001 chmod (SDATA (encoded_newname), st.st_mode & 07777);
2003 #endif /* MSDOS */
2004 #endif /* not WINDOWSNT */
2006 /* Discard the unwind protects. */
2007 specpdl_ptr = specpdl + count;
2009 UNGCPRO;
2010 return Qnil;
2013 DEFUN ("make-directory-internal", Fmake_directory_internal,
2014 Smake_directory_internal, 1, 1, 0,
2015 doc: /* Create a new directory named DIRECTORY. */)
2016 (Lisp_Object directory)
2018 const char *dir;
2019 Lisp_Object handler;
2020 Lisp_Object encoded_dir;
2022 CHECK_STRING (directory);
2023 directory = Fexpand_file_name (directory, Qnil);
2025 handler = Ffind_file_name_handler (directory, Qmake_directory_internal);
2026 if (!NILP (handler))
2027 return call2 (handler, Qmake_directory_internal, directory);
2029 encoded_dir = ENCODE_FILE (directory);
2031 dir = SSDATA (encoded_dir);
2033 #ifdef WINDOWSNT
2034 if (mkdir (dir) != 0)
2035 #else
2036 if (mkdir (dir, 0777) != 0)
2037 #endif
2038 report_file_error ("Creating directory", list1 (directory));
2040 return Qnil;
2043 DEFUN ("delete-directory-internal", Fdelete_directory_internal,
2044 Sdelete_directory_internal, 1, 1, 0,
2045 doc: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
2046 (Lisp_Object directory)
2048 const char *dir;
2049 Lisp_Object encoded_dir;
2051 CHECK_STRING (directory);
2052 directory = Fdirectory_file_name (Fexpand_file_name (directory, Qnil));
2053 encoded_dir = ENCODE_FILE (directory);
2054 dir = SSDATA (encoded_dir);
2056 if (rmdir (dir) != 0)
2057 report_file_error ("Removing directory", list1 (directory));
2059 return Qnil;
2062 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 2,
2063 "(list (read-file-name \
2064 (if (and delete-by-moving-to-trash (null current-prefix-arg)) \
2065 \"Move file to trash: \" \"Delete file: \") \
2066 nil default-directory (confirm-nonexistent-file-or-buffer)) \
2067 (null current-prefix-arg))",
2068 doc: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
2069 If file has multiple names, it continues to exist with the other names.
2070 TRASH non-nil means to trash the file instead of deleting, provided
2071 `delete-by-moving-to-trash' is non-nil.
2073 When called interactively, TRASH is t if no prefix argument is given.
2074 With a prefix argument, TRASH is nil. */)
2075 (Lisp_Object filename, Lisp_Object trash)
2077 Lisp_Object handler;
2078 Lisp_Object encoded_file;
2079 struct gcpro gcpro1;
2081 GCPRO1 (filename);
2082 if (!NILP (Ffile_directory_p (filename))
2083 && NILP (Ffile_symlink_p (filename)))
2084 xsignal2 (Qfile_error,
2085 build_string ("Removing old name: is a directory"),
2086 filename);
2087 UNGCPRO;
2088 filename = Fexpand_file_name (filename, Qnil);
2090 handler = Ffind_file_name_handler (filename, Qdelete_file);
2091 if (!NILP (handler))
2092 return call3 (handler, Qdelete_file, filename, trash);
2094 if (delete_by_moving_to_trash && !NILP (trash))
2095 return call1 (Qmove_file_to_trash, filename);
2097 encoded_file = ENCODE_FILE (filename);
2099 if (0 > unlink (SSDATA (encoded_file)))
2100 report_file_error ("Removing old name", list1 (filename));
2101 return Qnil;
2104 static Lisp_Object
2105 internal_delete_file_1 (Lisp_Object ignore)
2107 return Qt;
2110 /* Delete file FILENAME, returning 1 if successful and 0 if failed.
2111 This ignores `delete-by-moving-to-trash'. */
2114 internal_delete_file (Lisp_Object filename)
2116 Lisp_Object tem;
2118 tem = internal_condition_case_2 (Fdelete_file, filename, Qnil,
2119 Qt, internal_delete_file_1);
2120 return NILP (tem);
2123 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
2124 "fRename file: \nGRename %s to file: \np",
2125 doc: /* Rename FILE as NEWNAME. Both args must be strings.
2126 If file has names other than FILE, it continues to have those names.
2127 Signals a `file-already-exists' error if a file NEWNAME already exists
2128 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2129 A number as third arg means request confirmation if NEWNAME already exists.
2130 This is what happens in interactive use with M-x. */)
2131 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
2133 Lisp_Object handler;
2134 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2135 Lisp_Object encoded_file, encoded_newname, symlink_target;
2137 symlink_target = encoded_file = encoded_newname = Qnil;
2138 GCPRO5 (file, newname, encoded_file, encoded_newname, symlink_target);
2139 CHECK_STRING (file);
2140 CHECK_STRING (newname);
2141 file = Fexpand_file_name (file, Qnil);
2143 if ((!NILP (Ffile_directory_p (newname)))
2144 #ifdef DOS_NT
2145 /* If the file names are identical but for the case,
2146 don't attempt to move directory to itself. */
2147 && (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2148 #endif
2151 Lisp_Object fname = NILP (Ffile_directory_p (file))
2152 ? file : Fdirectory_file_name (file);
2153 newname = Fexpand_file_name (Ffile_name_nondirectory (fname), newname);
2155 else
2156 newname = Fexpand_file_name (newname, Qnil);
2158 /* If the file name has special constructs in it,
2159 call the corresponding file handler. */
2160 handler = Ffind_file_name_handler (file, Qrename_file);
2161 if (NILP (handler))
2162 handler = Ffind_file_name_handler (newname, Qrename_file);
2163 if (!NILP (handler))
2164 RETURN_UNGCPRO (call4 (handler, Qrename_file,
2165 file, newname, ok_if_already_exists));
2167 encoded_file = ENCODE_FILE (file);
2168 encoded_newname = ENCODE_FILE (newname);
2170 #ifdef DOS_NT
2171 /* If the file names are identical but for the case, don't ask for
2172 confirmation: they simply want to change the letter-case of the
2173 file name. */
2174 if (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2175 #endif
2176 if (NILP (ok_if_already_exists)
2177 || INTEGERP (ok_if_already_exists))
2178 barf_or_query_if_file_exists (newname, "rename to it",
2179 INTEGERP (ok_if_already_exists), 0, 0);
2180 if (0 > rename (SSDATA (encoded_file), SSDATA (encoded_newname)))
2182 if (errno == EXDEV)
2184 int count;
2185 symlink_target = Ffile_symlink_p (file);
2186 if (! NILP (symlink_target))
2187 Fmake_symbolic_link (symlink_target, newname,
2188 NILP (ok_if_already_exists) ? Qnil : Qt);
2189 else if (!NILP (Ffile_directory_p (file)))
2190 call4 (Qcopy_directory, file, newname, Qt, Qnil);
2191 else
2192 /* We have already prompted if it was an integer, so don't
2193 have copy-file prompt again. */
2194 Fcopy_file (file, newname,
2195 NILP (ok_if_already_exists) ? Qnil : Qt,
2196 Qt, Qt, Qt);
2198 count = SPECPDL_INDEX ();
2199 specbind (Qdelete_by_moving_to_trash, Qnil);
2201 if (!NILP (Ffile_directory_p (file)) && NILP (symlink_target))
2202 call2 (Qdelete_directory, file, Qt);
2203 else
2204 Fdelete_file (file, Qnil);
2205 unbind_to (count, Qnil);
2207 else
2208 report_file_error ("Renaming", list2 (file, newname));
2210 UNGCPRO;
2211 return Qnil;
2214 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
2215 "fAdd name to file: \nGName to add to %s: \np",
2216 doc: /* Give FILE additional name NEWNAME. Both args must be strings.
2217 Signals a `file-already-exists' error if a file NEWNAME already exists
2218 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2219 A number as third arg means request confirmation if NEWNAME already exists.
2220 This is what happens in interactive use with M-x. */)
2221 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
2223 Lisp_Object handler;
2224 Lisp_Object encoded_file, encoded_newname;
2225 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2227 GCPRO4 (file, newname, encoded_file, encoded_newname);
2228 encoded_file = encoded_newname = Qnil;
2229 CHECK_STRING (file);
2230 CHECK_STRING (newname);
2231 file = Fexpand_file_name (file, Qnil);
2233 if (!NILP (Ffile_directory_p (newname)))
2234 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
2235 else
2236 newname = Fexpand_file_name (newname, Qnil);
2238 /* If the file name has special constructs in it,
2239 call the corresponding file handler. */
2240 handler = Ffind_file_name_handler (file, Qadd_name_to_file);
2241 if (!NILP (handler))
2242 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2243 newname, ok_if_already_exists));
2245 /* If the new name has special constructs in it,
2246 call the corresponding file handler. */
2247 handler = Ffind_file_name_handler (newname, Qadd_name_to_file);
2248 if (!NILP (handler))
2249 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2250 newname, ok_if_already_exists));
2252 encoded_file = ENCODE_FILE (file);
2253 encoded_newname = ENCODE_FILE (newname);
2255 if (NILP (ok_if_already_exists)
2256 || INTEGERP (ok_if_already_exists))
2257 barf_or_query_if_file_exists (newname, "make it a new name",
2258 INTEGERP (ok_if_already_exists), 0, 0);
2260 unlink (SSDATA (newname));
2261 if (0 > link (SSDATA (encoded_file), SSDATA (encoded_newname)))
2262 report_file_error ("Adding new name", list2 (file, newname));
2264 UNGCPRO;
2265 return Qnil;
2268 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
2269 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np",
2270 doc: /* Make a symbolic link to FILENAME, named LINKNAME.
2271 Both args must be strings.
2272 Signals a `file-already-exists' error if a file LINKNAME already exists
2273 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2274 A number as third arg means request confirmation if LINKNAME already exists.
2275 This happens for interactive use with M-x. */)
2276 (Lisp_Object filename, Lisp_Object linkname, Lisp_Object ok_if_already_exists)
2278 Lisp_Object handler;
2279 Lisp_Object encoded_filename, encoded_linkname;
2280 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2282 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname);
2283 encoded_filename = encoded_linkname = Qnil;
2284 CHECK_STRING (filename);
2285 CHECK_STRING (linkname);
2286 /* If the link target has a ~, we must expand it to get
2287 a truly valid file name. Otherwise, do not expand;
2288 we want to permit links to relative file names. */
2289 if (SREF (filename, 0) == '~')
2290 filename = Fexpand_file_name (filename, Qnil);
2292 if (!NILP (Ffile_directory_p (linkname)))
2293 linkname = Fexpand_file_name (Ffile_name_nondirectory (filename), linkname);
2294 else
2295 linkname = Fexpand_file_name (linkname, Qnil);
2297 /* If the file name has special constructs in it,
2298 call the corresponding file handler. */
2299 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
2300 if (!NILP (handler))
2301 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2302 linkname, ok_if_already_exists));
2304 /* If the new link name has special constructs in it,
2305 call the corresponding file handler. */
2306 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link);
2307 if (!NILP (handler))
2308 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2309 linkname, ok_if_already_exists));
2311 encoded_filename = ENCODE_FILE (filename);
2312 encoded_linkname = ENCODE_FILE (linkname);
2314 if (NILP (ok_if_already_exists)
2315 || INTEGERP (ok_if_already_exists))
2316 barf_or_query_if_file_exists (linkname, "make it a link",
2317 INTEGERP (ok_if_already_exists), 0, 0);
2318 if (0 > symlink (SSDATA (encoded_filename),
2319 SSDATA (encoded_linkname)))
2321 /* If we didn't complain already, silently delete existing file. */
2322 if (errno == EEXIST)
2324 unlink (SSDATA (encoded_linkname));
2325 if (0 <= symlink (SSDATA (encoded_filename),
2326 SSDATA (encoded_linkname)))
2328 UNGCPRO;
2329 return Qnil;
2332 if (errno == ENOSYS)
2334 UNGCPRO;
2335 xsignal1 (Qfile_error,
2336 build_string ("Symbolic links are not supported"));
2339 report_file_error ("Making symbolic link", list2 (filename, linkname));
2341 UNGCPRO;
2342 return Qnil;
2346 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
2347 1, 1, 0,
2348 doc: /* Return t if file FILENAME specifies an absolute file name.
2349 On Unix, this is a name starting with a `/' or a `~'. */)
2350 (Lisp_Object filename)
2352 CHECK_STRING (filename);
2353 return file_name_absolute_p (SSDATA (filename)) ? Qt : Qnil;
2356 /* Return nonzero if file FILENAME exists and can be executed. */
2358 static int
2359 check_executable (char *filename)
2361 #ifdef DOS_NT
2362 struct stat st;
2363 if (stat (filename, &st) < 0)
2364 return 0;
2365 return ((st.st_mode & S_IEXEC) != 0);
2366 #else /* not DOS_NT */
2367 #ifdef HAVE_EUIDACCESS
2368 return (euidaccess (filename, 1) >= 0);
2369 #else
2370 /* Access isn't quite right because it uses the real uid
2371 and we really want to test with the effective uid.
2372 But Unix doesn't give us a right way to do it. */
2373 return (access (filename, 1) >= 0);
2374 #endif
2375 #endif /* not DOS_NT */
2378 /* Return nonzero if file FILENAME exists and can be written. */
2380 static int
2381 check_writable (const char *filename)
2383 #ifdef MSDOS
2384 struct stat st;
2385 if (stat (filename, &st) < 0)
2386 return 0;
2387 return (st.st_mode & S_IWRITE || S_ISDIR (st.st_mode));
2388 #else /* not MSDOS */
2389 #ifdef HAVE_EUIDACCESS
2390 return (euidaccess (filename, 2) >= 0);
2391 #else
2392 /* Access isn't quite right because it uses the real uid
2393 and we really want to test with the effective uid.
2394 But Unix doesn't give us a right way to do it.
2395 Opening with O_WRONLY could work for an ordinary file,
2396 but would lose for directories. */
2397 return (access (filename, 2) >= 0);
2398 #endif
2399 #endif /* not MSDOS */
2402 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
2403 doc: /* Return t if file FILENAME exists (whether or not you can read it.)
2404 See also `file-readable-p' and `file-attributes'.
2405 This returns nil for a symlink to a nonexistent file.
2406 Use `file-symlink-p' to test for such links. */)
2407 (Lisp_Object filename)
2409 Lisp_Object absname;
2410 Lisp_Object handler;
2411 struct stat statbuf;
2413 CHECK_STRING (filename);
2414 absname = Fexpand_file_name (filename, Qnil);
2416 /* If the file name has special constructs in it,
2417 call the corresponding file handler. */
2418 handler = Ffind_file_name_handler (absname, Qfile_exists_p);
2419 if (!NILP (handler))
2420 return call2 (handler, Qfile_exists_p, absname);
2422 absname = ENCODE_FILE (absname);
2424 return (stat (SSDATA (absname), &statbuf) >= 0) ? Qt : Qnil;
2427 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
2428 doc: /* Return t if FILENAME can be executed by you.
2429 For a directory, this means you can access files in that directory. */)
2430 (Lisp_Object filename)
2432 Lisp_Object absname;
2433 Lisp_Object handler;
2435 CHECK_STRING (filename);
2436 absname = Fexpand_file_name (filename, Qnil);
2438 /* If the file name has special constructs in it,
2439 call the corresponding file handler. */
2440 handler = Ffind_file_name_handler (absname, Qfile_executable_p);
2441 if (!NILP (handler))
2442 return call2 (handler, Qfile_executable_p, absname);
2444 absname = ENCODE_FILE (absname);
2446 return (check_executable (SSDATA (absname)) ? Qt : Qnil);
2449 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
2450 doc: /* Return t if file FILENAME exists and you can read it.
2451 See also `file-exists-p' and `file-attributes'. */)
2452 (Lisp_Object filename)
2454 Lisp_Object absname;
2455 Lisp_Object handler;
2456 int desc;
2457 int flags;
2458 struct stat statbuf;
2460 CHECK_STRING (filename);
2461 absname = Fexpand_file_name (filename, Qnil);
2463 /* If the file name has special constructs in it,
2464 call the corresponding file handler. */
2465 handler = Ffind_file_name_handler (absname, Qfile_readable_p);
2466 if (!NILP (handler))
2467 return call2 (handler, Qfile_readable_p, absname);
2469 absname = ENCODE_FILE (absname);
2471 #if defined(DOS_NT) || defined(macintosh)
2472 /* Under MS-DOS, Windows, and Macintosh, open does not work for
2473 directories. */
2474 if (access (SDATA (absname), 0) == 0)
2475 return Qt;
2476 return Qnil;
2477 #else /* not DOS_NT and not macintosh */
2478 flags = O_RDONLY;
2479 #ifdef O_NONBLOCK
2480 /* Opening a fifo without O_NONBLOCK can wait.
2481 We don't want to wait. But we don't want to mess wth O_NONBLOCK
2482 except in the case of a fifo, on a system which handles it. */
2483 desc = stat (SSDATA (absname), &statbuf);
2484 if (desc < 0)
2485 return Qnil;
2486 if (S_ISFIFO (statbuf.st_mode))
2487 flags |= O_NONBLOCK;
2488 #endif
2489 desc = emacs_open (SSDATA (absname), flags, 0);
2490 if (desc < 0)
2491 return Qnil;
2492 emacs_close (desc);
2493 return Qt;
2494 #endif /* not DOS_NT and not macintosh */
2497 /* Having this before file-symlink-p mysteriously caused it to be forgotten
2498 on the RT/PC. */
2499 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
2500 doc: /* Return t if file FILENAME can be written or created by you. */)
2501 (Lisp_Object filename)
2503 Lisp_Object absname, dir, encoded;
2504 Lisp_Object handler;
2505 struct stat statbuf;
2507 CHECK_STRING (filename);
2508 absname = Fexpand_file_name (filename, Qnil);
2510 /* If the file name has special constructs in it,
2511 call the corresponding file handler. */
2512 handler = Ffind_file_name_handler (absname, Qfile_writable_p);
2513 if (!NILP (handler))
2514 return call2 (handler, Qfile_writable_p, absname);
2516 encoded = ENCODE_FILE (absname);
2517 if (stat (SSDATA (encoded), &statbuf) >= 0)
2518 return (check_writable (SSDATA (encoded))
2519 ? Qt : Qnil);
2521 dir = Ffile_name_directory (absname);
2522 #ifdef MSDOS
2523 if (!NILP (dir))
2524 dir = Fdirectory_file_name (dir);
2525 #endif /* MSDOS */
2527 dir = ENCODE_FILE (dir);
2528 #ifdef WINDOWSNT
2529 /* The read-only attribute of the parent directory doesn't affect
2530 whether a file or directory can be created within it. Some day we
2531 should check ACLs though, which do affect this. */
2532 if (stat (SDATA (dir), &statbuf) < 0)
2533 return Qnil;
2534 return S_ISDIR (statbuf.st_mode) ? Qt : Qnil;
2535 #else
2536 return (check_writable (!NILP (dir) ? SSDATA (dir) : "")
2537 ? Qt : Qnil);
2538 #endif
2541 DEFUN ("access-file", Faccess_file, Saccess_file, 2, 2, 0,
2542 doc: /* Access file FILENAME, and get an error if that does not work.
2543 The second argument STRING is used in the error message.
2544 If there is no error, returns nil. */)
2545 (Lisp_Object filename, Lisp_Object string)
2547 Lisp_Object handler, encoded_filename, absname;
2548 int fd;
2550 CHECK_STRING (filename);
2551 absname = Fexpand_file_name (filename, Qnil);
2553 CHECK_STRING (string);
2555 /* If the file name has special constructs in it,
2556 call the corresponding file handler. */
2557 handler = Ffind_file_name_handler (absname, Qaccess_file);
2558 if (!NILP (handler))
2559 return call3 (handler, Qaccess_file, absname, string);
2561 encoded_filename = ENCODE_FILE (absname);
2563 fd = emacs_open (SSDATA (encoded_filename), O_RDONLY, 0);
2564 if (fd < 0)
2565 report_file_error (SSDATA (string), Fcons (filename, Qnil));
2566 emacs_close (fd);
2568 return Qnil;
2571 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
2572 doc: /* Return non-nil if file FILENAME is the name of a symbolic link.
2573 The value is the link target, as a string.
2574 Otherwise it returns nil.
2576 This function returns t when given the name of a symlink that
2577 points to a nonexistent file. */)
2578 (Lisp_Object filename)
2580 Lisp_Object handler;
2581 char *buf;
2582 Lisp_Object val;
2583 char readlink_buf[READLINK_BUFSIZE];
2585 CHECK_STRING (filename);
2586 filename = Fexpand_file_name (filename, Qnil);
2588 /* If the file name has special constructs in it,
2589 call the corresponding file handler. */
2590 handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
2591 if (!NILP (handler))
2592 return call2 (handler, Qfile_symlink_p, filename);
2594 filename = ENCODE_FILE (filename);
2596 buf = emacs_readlink (SSDATA (filename), readlink_buf);
2597 if (! buf)
2598 return Qnil;
2600 val = build_string (buf);
2601 if (buf[0] == '/' && strchr (buf, ':'))
2602 val = concat2 (build_string ("/:"), val);
2603 if (buf != readlink_buf)
2604 xfree (buf);
2605 val = DECODE_FILE (val);
2606 return val;
2609 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
2610 doc: /* Return t if FILENAME names an existing directory.
2611 Symbolic links to directories count as directories.
2612 See `file-symlink-p' to distinguish symlinks. */)
2613 (Lisp_Object filename)
2615 register Lisp_Object absname;
2616 struct stat st;
2617 Lisp_Object handler;
2619 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2621 /* If the file name has special constructs in it,
2622 call the corresponding file handler. */
2623 handler = Ffind_file_name_handler (absname, Qfile_directory_p);
2624 if (!NILP (handler))
2625 return call2 (handler, Qfile_directory_p, absname);
2627 absname = ENCODE_FILE (absname);
2629 if (stat (SSDATA (absname), &st) < 0)
2630 return Qnil;
2631 return S_ISDIR (st.st_mode) ? Qt : Qnil;
2634 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p, Sfile_accessible_directory_p, 1, 1, 0,
2635 doc: /* Return t if file FILENAME names a directory you can open.
2636 For the value to be t, FILENAME must specify the name of a directory as a file,
2637 and the directory must allow you to open files in it. In order to use a
2638 directory as a buffer's current directory, this predicate must return true.
2639 A directory name spec may be given instead; then the value is t
2640 if the directory so specified exists and really is a readable and
2641 searchable directory. */)
2642 (Lisp_Object filename)
2644 Lisp_Object handler;
2645 int tem;
2646 struct gcpro gcpro1;
2648 /* If the file name has special constructs in it,
2649 call the corresponding file handler. */
2650 handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p);
2651 if (!NILP (handler))
2652 return call2 (handler, Qfile_accessible_directory_p, filename);
2654 GCPRO1 (filename);
2655 tem = (NILP (Ffile_directory_p (filename))
2656 || NILP (Ffile_executable_p (filename)));
2657 UNGCPRO;
2658 return tem ? Qnil : Qt;
2661 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
2662 doc: /* Return t if FILENAME names a regular file.
2663 This is the sort of file that holds an ordinary stream of data bytes.
2664 Symbolic links to regular files count as regular files.
2665 See `file-symlink-p' to distinguish symlinks. */)
2666 (Lisp_Object filename)
2668 register Lisp_Object absname;
2669 struct stat st;
2670 Lisp_Object handler;
2672 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2674 /* If the file name has special constructs in it,
2675 call the corresponding file handler. */
2676 handler = Ffind_file_name_handler (absname, Qfile_regular_p);
2677 if (!NILP (handler))
2678 return call2 (handler, Qfile_regular_p, absname);
2680 absname = ENCODE_FILE (absname);
2682 #ifdef WINDOWSNT
2684 int result;
2685 Lisp_Object tem = Vw32_get_true_file_attributes;
2687 /* Tell stat to use expensive method to get accurate info. */
2688 Vw32_get_true_file_attributes = Qt;
2689 result = stat (SDATA (absname), &st);
2690 Vw32_get_true_file_attributes = tem;
2692 if (result < 0)
2693 return Qnil;
2694 return S_ISREG (st.st_mode) ? Qt : Qnil;
2696 #else
2697 if (stat (SSDATA (absname), &st) < 0)
2698 return Qnil;
2699 return S_ISREG (st.st_mode) ? Qt : Qnil;
2700 #endif
2703 DEFUN ("file-selinux-context", Ffile_selinux_context,
2704 Sfile_selinux_context, 1, 1, 0,
2705 doc: /* Return SELinux context of file named FILENAME,
2706 as a list ("user", "role", "type", "range"). Return (nil, nil, nil, nil)
2707 if file does not exist, is not accessible, or SELinux is disabled */)
2708 (Lisp_Object filename)
2710 Lisp_Object absname;
2711 Lisp_Object values[4];
2712 Lisp_Object handler;
2713 #if HAVE_LIBSELINUX
2714 security_context_t con;
2715 int conlength;
2716 context_t context;
2717 #endif
2719 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2721 /* If the file name has special constructs in it,
2722 call the corresponding file handler. */
2723 handler = Ffind_file_name_handler (absname, Qfile_selinux_context);
2724 if (!NILP (handler))
2725 return call2 (handler, Qfile_selinux_context, absname);
2727 absname = ENCODE_FILE (absname);
2729 values[0] = Qnil;
2730 values[1] = Qnil;
2731 values[2] = Qnil;
2732 values[3] = Qnil;
2733 #if HAVE_LIBSELINUX
2734 if (is_selinux_enabled ())
2736 conlength = lgetfilecon (SSDATA (absname), &con);
2737 if (conlength > 0)
2739 context = context_new (con);
2740 if (context_user_get (context))
2741 values[0] = build_string (context_user_get (context));
2742 if (context_role_get (context))
2743 values[1] = build_string (context_role_get (context));
2744 if (context_type_get (context))
2745 values[2] = build_string (context_type_get (context));
2746 if (context_range_get (context))
2747 values[3] = build_string (context_range_get (context));
2748 context_free (context);
2750 if (con)
2751 freecon (con);
2753 #endif
2755 return Flist (sizeof(values) / sizeof(values[0]), values);
2758 DEFUN ("set-file-selinux-context", Fset_file_selinux_context,
2759 Sset_file_selinux_context, 2, 2, 0,
2760 doc: /* Set SELinux context of file named FILENAME to CONTEXT
2761 as a list ("user", "role", "type", "range"). Has no effect if SELinux
2762 is disabled. */)
2763 (Lisp_Object filename, Lisp_Object context)
2765 Lisp_Object absname;
2766 Lisp_Object handler;
2767 #if HAVE_LIBSELINUX
2768 Lisp_Object encoded_absname;
2769 Lisp_Object user = CAR_SAFE (context);
2770 Lisp_Object role = CAR_SAFE (CDR_SAFE (context));
2771 Lisp_Object type = CAR_SAFE (CDR_SAFE (CDR_SAFE (context)));
2772 Lisp_Object range = CAR_SAFE (CDR_SAFE (CDR_SAFE (CDR_SAFE (context))));
2773 security_context_t con;
2774 int fail, conlength;
2775 context_t parsed_con;
2776 #endif
2778 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
2780 /* If the file name has special constructs in it,
2781 call the corresponding file handler. */
2782 handler = Ffind_file_name_handler (absname, Qset_file_selinux_context);
2783 if (!NILP (handler))
2784 return call3 (handler, Qset_file_selinux_context, absname, context);
2786 #if HAVE_LIBSELINUX
2787 if (is_selinux_enabled ())
2789 /* Get current file context. */
2790 encoded_absname = ENCODE_FILE (absname);
2791 conlength = lgetfilecon (SSDATA (encoded_absname), &con);
2792 if (conlength > 0)
2794 parsed_con = context_new (con);
2795 /* Change the parts defined in the parameter.*/
2796 if (STRINGP (user))
2798 if (context_user_set (parsed_con, SSDATA (user)))
2799 error ("Doing context_user_set");
2801 if (STRINGP (role))
2803 if (context_role_set (parsed_con, SSDATA (role)))
2804 error ("Doing context_role_set");
2806 if (STRINGP (type))
2808 if (context_type_set (parsed_con, SSDATA (type)))
2809 error ("Doing context_type_set");
2811 if (STRINGP (range))
2813 if (context_range_set (parsed_con, SSDATA (range)))
2814 error ("Doing context_range_set");
2817 /* Set the modified context back to the file. */
2818 fail = lsetfilecon (SSDATA (encoded_absname),
2819 context_str (parsed_con));
2820 if (fail)
2821 report_file_error ("Doing lsetfilecon", Fcons (absname, Qnil));
2823 context_free (parsed_con);
2825 else
2826 report_file_error("Doing lgetfilecon", Fcons (absname, Qnil));
2828 if (con)
2829 freecon (con);
2831 #endif
2833 return Qnil;
2836 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
2837 doc: /* Return mode bits of file named FILENAME, as an integer.
2838 Return nil, if file does not exist or is not accessible. */)
2839 (Lisp_Object filename)
2841 Lisp_Object absname;
2842 struct stat st;
2843 Lisp_Object handler;
2845 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2847 /* If the file name has special constructs in it,
2848 call the corresponding file handler. */
2849 handler = Ffind_file_name_handler (absname, Qfile_modes);
2850 if (!NILP (handler))
2851 return call2 (handler, Qfile_modes, absname);
2853 absname = ENCODE_FILE (absname);
2855 if (stat (SSDATA (absname), &st) < 0)
2856 return Qnil;
2858 return make_number (st.st_mode & 07777);
2861 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2,
2862 "(let ((file (read-file-name \"File: \"))) \
2863 (list file (read-file-modes nil file)))",
2864 doc: /* Set mode bits of file named FILENAME to MODE (an integer).
2865 Only the 12 low bits of MODE are used.
2867 Interactively, mode bits are read by `read-file-modes', which accepts
2868 symbolic notation, like the `chmod' command from GNU Coreutils. */)
2869 (Lisp_Object filename, Lisp_Object mode)
2871 Lisp_Object absname, encoded_absname;
2872 Lisp_Object handler;
2874 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
2875 CHECK_NUMBER (mode);
2877 /* If the file name has special constructs in it,
2878 call the corresponding file handler. */
2879 handler = Ffind_file_name_handler (absname, Qset_file_modes);
2880 if (!NILP (handler))
2881 return call3 (handler, Qset_file_modes, absname, mode);
2883 encoded_absname = ENCODE_FILE (absname);
2885 if (chmod (SSDATA (encoded_absname), XINT (mode)) < 0)
2886 report_file_error ("Doing chmod", Fcons (absname, Qnil));
2888 return Qnil;
2891 DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0,
2892 doc: /* Set the file permission bits for newly created files.
2893 The argument MODE should be an integer; only the low 9 bits are used.
2894 This setting is inherited by subprocesses. */)
2895 (Lisp_Object mode)
2897 CHECK_NUMBER (mode);
2899 umask ((~ XINT (mode)) & 0777);
2901 return Qnil;
2904 DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0,
2905 doc: /* Return the default file protection for created files.
2906 The value is an integer. */)
2907 (void)
2909 int realmask;
2910 Lisp_Object value;
2912 realmask = umask (0);
2913 umask (realmask);
2915 XSETINT (value, (~ realmask) & 0777);
2916 return value;
2920 DEFUN ("set-file-times", Fset_file_times, Sset_file_times, 1, 2, 0,
2921 doc: /* Set times of file FILENAME to TIMESTAMP.
2922 Set both access and modification times.
2923 Return t on success, else nil.
2924 Use the current time if TIMESTAMP is nil. TIMESTAMP is in the format of
2925 `current-time'. */)
2926 (Lisp_Object filename, Lisp_Object timestamp)
2928 Lisp_Object absname, encoded_absname;
2929 Lisp_Object handler;
2930 time_t sec;
2931 int usec;
2933 if (! lisp_time_argument (timestamp, &sec, &usec))
2934 error ("Invalid time specification");
2936 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
2938 /* If the file name has special constructs in it,
2939 call the corresponding file handler. */
2940 handler = Ffind_file_name_handler (absname, Qset_file_times);
2941 if (!NILP (handler))
2942 return call3 (handler, Qset_file_times, absname, timestamp);
2944 encoded_absname = ENCODE_FILE (absname);
2947 EMACS_TIME t;
2949 EMACS_SET_SECS (t, sec);
2950 EMACS_SET_USECS (t, usec);
2952 if (set_file_times (SSDATA (encoded_absname), t, t))
2954 #ifdef DOS_NT
2955 struct stat st;
2957 /* Setting times on a directory always fails. */
2958 if (stat (SSDATA (encoded_absname), &st) == 0 && S_ISDIR (st.st_mode))
2959 return Qnil;
2960 #endif
2961 report_file_error ("Setting file times", Fcons (absname, Qnil));
2962 return Qnil;
2966 return Qt;
2969 #ifdef HAVE_SYNC
2970 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
2971 doc: /* Tell Unix to finish all pending disk updates. */)
2972 (void)
2974 sync ();
2975 return Qnil;
2978 #endif /* HAVE_SYNC */
2980 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
2981 doc: /* Return t if file FILE1 is newer than file FILE2.
2982 If FILE1 does not exist, the answer is nil;
2983 otherwise, if FILE2 does not exist, the answer is t. */)
2984 (Lisp_Object file1, Lisp_Object file2)
2986 Lisp_Object absname1, absname2;
2987 struct stat st;
2988 int mtime1;
2989 Lisp_Object handler;
2990 struct gcpro gcpro1, gcpro2;
2992 CHECK_STRING (file1);
2993 CHECK_STRING (file2);
2995 absname1 = Qnil;
2996 GCPRO2 (absname1, file2);
2997 absname1 = expand_and_dir_to_file (file1, BVAR (current_buffer, directory));
2998 absname2 = expand_and_dir_to_file (file2, BVAR (current_buffer, directory));
2999 UNGCPRO;
3001 /* If the file name has special constructs in it,
3002 call the corresponding file handler. */
3003 handler = Ffind_file_name_handler (absname1, Qfile_newer_than_file_p);
3004 if (NILP (handler))
3005 handler = Ffind_file_name_handler (absname2, Qfile_newer_than_file_p);
3006 if (!NILP (handler))
3007 return call3 (handler, Qfile_newer_than_file_p, absname1, absname2);
3009 GCPRO2 (absname1, absname2);
3010 absname1 = ENCODE_FILE (absname1);
3011 absname2 = ENCODE_FILE (absname2);
3012 UNGCPRO;
3014 if (stat (SSDATA (absname1), &st) < 0)
3015 return Qnil;
3017 mtime1 = st.st_mtime;
3019 if (stat (SSDATA (absname2), &st) < 0)
3020 return Qt;
3022 return (mtime1 > st.st_mtime) ? Qt : Qnil;
3025 #ifndef READ_BUF_SIZE
3026 #define READ_BUF_SIZE (64 << 10)
3027 #endif
3029 /* This function is called after Lisp functions to decide a coding
3030 system are called, or when they cause an error. Before they are
3031 called, the current buffer is set unibyte and it contains only a
3032 newly inserted text (thus the buffer was empty before the
3033 insertion).
3035 The functions may set markers, overlays, text properties, or even
3036 alter the buffer contents, change the current buffer.
3038 Here, we reset all those changes by:
3039 o set back the current buffer.
3040 o move all markers and overlays to BEG.
3041 o remove all text properties.
3042 o set back the buffer multibyteness. */
3044 static Lisp_Object
3045 decide_coding_unwind (Lisp_Object unwind_data)
3047 Lisp_Object multibyte, undo_list, buffer;
3049 multibyte = XCAR (unwind_data);
3050 unwind_data = XCDR (unwind_data);
3051 undo_list = XCAR (unwind_data);
3052 buffer = XCDR (unwind_data);
3054 if (current_buffer != XBUFFER (buffer))
3055 set_buffer_internal (XBUFFER (buffer));
3056 adjust_markers_for_delete (BEG, BEG_BYTE, Z, Z_BYTE);
3057 adjust_overlays_for_delete (BEG, Z - BEG);
3058 BUF_INTERVALS (current_buffer) = 0;
3059 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3061 /* Now we are safe to change the buffer's multibyteness directly. */
3062 BVAR (current_buffer, enable_multibyte_characters) = multibyte;
3063 BVAR (current_buffer, undo_list) = undo_list;
3065 return Qnil;
3069 /* Used to pass values from insert-file-contents to read_non_regular. */
3071 static int non_regular_fd;
3072 static EMACS_INT non_regular_inserted;
3073 static EMACS_INT non_regular_nbytes;
3076 /* Read from a non-regular file.
3077 Read non_regular_nbytes bytes max from non_regular_fd.
3078 Non_regular_inserted specifies where to put the read bytes.
3079 Value is the number of bytes read. */
3081 static Lisp_Object
3082 read_non_regular (Lisp_Object ignore)
3084 EMACS_INT nbytes;
3086 immediate_quit = 1;
3087 QUIT;
3088 nbytes = emacs_read (non_regular_fd,
3089 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
3090 + non_regular_inserted),
3091 non_regular_nbytes);
3092 immediate_quit = 0;
3093 return make_number (nbytes);
3097 /* Condition-case handler used when reading from non-regular files
3098 in insert-file-contents. */
3100 static Lisp_Object
3101 read_non_regular_quit (Lisp_Object ignore)
3103 return Qnil;
3107 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
3108 1, 5, 0,
3109 doc: /* Insert contents of file FILENAME after point.
3110 Returns list of absolute file name and number of characters inserted.
3111 If second argument VISIT is non-nil, the buffer's visited filename and
3112 last save file modtime are set, and it is marked unmodified. If
3113 visiting and the file does not exist, visiting is completed before the
3114 error is signaled.
3116 The optional third and fourth arguments BEG and END specify what portion
3117 of the file to insert. These arguments count bytes in the file, not
3118 characters in the buffer. If VISIT is non-nil, BEG and END must be nil.
3120 If optional fifth argument REPLACE is non-nil, replace the current
3121 buffer contents (in the accessible portion) with the file contents.
3122 This is better than simply deleting and inserting the whole thing
3123 because (1) it preserves some marker positions and (2) it puts less data
3124 in the undo list. When REPLACE is non-nil, the second return value is
3125 the number of characters that replace previous buffer contents.
3127 This function does code conversion according to the value of
3128 `coding-system-for-read' or `file-coding-system-alist', and sets the
3129 variable `last-coding-system-used' to the coding system actually used. */)
3130 (Lisp_Object filename, Lisp_Object visit, Lisp_Object beg, Lisp_Object end, Lisp_Object replace)
3132 struct stat st;
3133 register int fd;
3134 EMACS_INT inserted = 0;
3135 int nochange = 0;
3136 register EMACS_INT how_much;
3137 register EMACS_INT unprocessed;
3138 int count = SPECPDL_INDEX ();
3139 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3140 Lisp_Object handler, val, insval, orig_filename, old_undo;
3141 Lisp_Object p;
3142 EMACS_INT total = 0;
3143 int not_regular = 0;
3144 char read_buf[READ_BUF_SIZE];
3145 struct coding_system coding;
3146 char buffer[1 << 14];
3147 int replace_handled = 0;
3148 int set_coding_system = 0;
3149 Lisp_Object coding_system;
3150 int read_quit = 0;
3151 Lisp_Object old_Vdeactivate_mark = Vdeactivate_mark;
3152 int we_locked_file = 0;
3153 int deferred_remove_unwind_protect = 0;
3155 if (current_buffer->base_buffer && ! NILP (visit))
3156 error ("Cannot do file visiting in an indirect buffer");
3158 if (!NILP (BVAR (current_buffer, read_only)))
3159 Fbarf_if_buffer_read_only ();
3161 val = Qnil;
3162 p = Qnil;
3163 orig_filename = Qnil;
3164 old_undo = Qnil;
3166 GCPRO5 (filename, val, p, orig_filename, old_undo);
3168 CHECK_STRING (filename);
3169 filename = Fexpand_file_name (filename, Qnil);
3171 /* The value Qnil means that the coding system is not yet
3172 decided. */
3173 coding_system = Qnil;
3175 /* If the file name has special constructs in it,
3176 call the corresponding file handler. */
3177 handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
3178 if (!NILP (handler))
3180 val = call6 (handler, Qinsert_file_contents, filename,
3181 visit, beg, end, replace);
3182 if (CONSP (val) && CONSP (XCDR (val)))
3183 inserted = XINT (XCAR (XCDR (val)));
3184 goto handled;
3187 orig_filename = filename;
3188 filename = ENCODE_FILE (filename);
3190 fd = -1;
3192 #ifdef WINDOWSNT
3194 Lisp_Object tem = Vw32_get_true_file_attributes;
3196 /* Tell stat to use expensive method to get accurate info. */
3197 Vw32_get_true_file_attributes = Qt;
3198 total = stat (SSDATA (filename), &st);
3199 Vw32_get_true_file_attributes = tem;
3201 if (total < 0)
3202 #else
3203 if (stat (SSDATA (filename), &st) < 0)
3204 #endif /* WINDOWSNT */
3206 badopen:
3207 if (NILP (visit))
3208 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
3209 st.st_mtime = -1;
3210 how_much = 0;
3211 if (!NILP (Vcoding_system_for_read))
3212 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read);
3213 goto notfound;
3216 /* This code will need to be changed in order to work on named
3217 pipes, and it's probably just not worth it. So we should at
3218 least signal an error. */
3219 if (!S_ISREG (st.st_mode))
3221 not_regular = 1;
3223 if (! NILP (visit))
3224 goto notfound;
3226 if (! NILP (replace) || ! NILP (beg) || ! NILP (end))
3227 xsignal2 (Qfile_error,
3228 build_string ("not a regular file"), orig_filename);
3231 if (fd < 0)
3232 if ((fd = emacs_open (SSDATA (filename), O_RDONLY, 0)) < 0)
3233 goto badopen;
3235 /* Replacement should preserve point as it preserves markers. */
3236 if (!NILP (replace))
3237 record_unwind_protect (restore_point_unwind, Fpoint_marker ());
3239 record_unwind_protect (close_file_unwind, make_number (fd));
3242 /* Arithmetic overflow can occur if an Emacs integer cannot represent the
3243 file size, or if the calculations below overflow. The calculations below
3244 double the file size twice, so check that it can be multiplied by 4
3245 safely.
3247 Also check whether the size is negative, which can happen on a platform
3248 that allows file sizes greater than the maximum off_t value. */
3249 if (! not_regular
3250 && ! (0 <= st.st_size && st.st_size <= MOST_POSITIVE_FIXNUM / 4))
3251 error ("Maximum buffer size exceeded");
3253 /* Prevent redisplay optimizations. */
3254 current_buffer->clip_changed = 1;
3256 if (!NILP (visit))
3258 if (!NILP (beg) || !NILP (end))
3259 error ("Attempt to visit less than an entire file");
3260 if (BEG < Z && NILP (replace))
3261 error ("Cannot do file visiting in a non-empty buffer");
3264 if (!NILP (beg))
3265 CHECK_NUMBER (beg);
3266 else
3267 XSETFASTINT (beg, 0);
3269 if (!NILP (end))
3270 CHECK_NUMBER (end);
3271 else
3273 if (! not_regular)
3275 XSETINT (end, st.st_size);
3277 /* The file size returned from stat may be zero, but data
3278 may be readable nonetheless, for example when this is a
3279 file in the /proc filesystem. */
3280 if (st.st_size == 0)
3281 XSETINT (end, READ_BUF_SIZE);
3285 if (EQ (Vcoding_system_for_read, Qauto_save_coding))
3287 coding_system = coding_inherit_eol_type (Qutf_8_emacs, Qunix);
3288 setup_coding_system (coding_system, &coding);
3289 /* Ensure we set Vlast_coding_system_used. */
3290 set_coding_system = 1;
3292 else if (BEG < Z)
3294 /* Decide the coding system to use for reading the file now
3295 because we can't use an optimized method for handling
3296 `coding:' tag if the current buffer is not empty. */
3297 if (!NILP (Vcoding_system_for_read))
3298 coding_system = Vcoding_system_for_read;
3299 else
3301 /* Don't try looking inside a file for a coding system
3302 specification if it is not seekable. */
3303 if (! not_regular && ! NILP (Vset_auto_coding_function))
3305 /* Find a coding system specified in the heading two
3306 lines or in the tailing several lines of the file.
3307 We assume that the 1K-byte and 3K-byte for heading
3308 and tailing respectively are sufficient for this
3309 purpose. */
3310 EMACS_INT nread;
3312 if (st.st_size <= (1024 * 4))
3313 nread = emacs_read (fd, read_buf, 1024 * 4);
3314 else
3316 nread = emacs_read (fd, read_buf, 1024);
3317 if (nread >= 0)
3319 if (lseek (fd, st.st_size - (1024 * 3), 0) < 0)
3320 report_file_error ("Setting file position",
3321 Fcons (orig_filename, Qnil));
3322 nread += emacs_read (fd, read_buf + nread, 1024 * 3);
3326 if (nread < 0)
3327 error ("IO error reading %s: %s",
3328 SDATA (orig_filename), emacs_strerror (errno));
3329 else if (nread > 0)
3331 struct buffer *prev = current_buffer;
3332 Lisp_Object workbuf;
3333 struct buffer *buf;
3335 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
3337 workbuf = Fget_buffer_create (build_string (" *code-converting-work*"));
3338 buf = XBUFFER (workbuf);
3340 delete_all_overlays (buf);
3341 BVAR (buf, directory) = BVAR (current_buffer, directory);
3342 BVAR (buf, read_only) = Qnil;
3343 BVAR (buf, filename) = Qnil;
3344 BVAR (buf, undo_list) = Qt;
3345 eassert (buf->overlays_before == NULL);
3346 eassert (buf->overlays_after == NULL);
3348 set_buffer_internal (buf);
3349 Ferase_buffer ();
3350 BVAR (buf, enable_multibyte_characters) = Qnil;
3352 insert_1_both ((char *) read_buf, nread, nread, 0, 0, 0);
3353 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3354 coding_system = call2 (Vset_auto_coding_function,
3355 filename, make_number (nread));
3356 set_buffer_internal (prev);
3358 /* Discard the unwind protect for recovering the
3359 current buffer. */
3360 specpdl_ptr--;
3362 /* Rewind the file for the actual read done later. */
3363 if (lseek (fd, 0, 0) < 0)
3364 report_file_error ("Setting file position",
3365 Fcons (orig_filename, Qnil));
3369 if (NILP (coding_system))
3371 /* If we have not yet decided a coding system, check
3372 file-coding-system-alist. */
3373 Lisp_Object args[6];
3375 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3376 args[2] = visit, args[3] = beg, args[4] = end, args[5] = replace;
3377 coding_system = Ffind_operation_coding_system (6, args);
3378 if (CONSP (coding_system))
3379 coding_system = XCAR (coding_system);
3383 if (NILP (coding_system))
3384 coding_system = Qundecided;
3385 else
3386 CHECK_CODING_SYSTEM (coding_system);
3388 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3389 /* We must suppress all character code conversion except for
3390 end-of-line conversion. */
3391 coding_system = raw_text_coding_system (coding_system);
3393 setup_coding_system (coding_system, &coding);
3394 /* Ensure we set Vlast_coding_system_used. */
3395 set_coding_system = 1;
3398 /* If requested, replace the accessible part of the buffer
3399 with the file contents. Avoid replacing text at the
3400 beginning or end of the buffer that matches the file contents;
3401 that preserves markers pointing to the unchanged parts.
3403 Here we implement this feature in an optimized way
3404 for the case where code conversion is NOT needed.
3405 The following if-statement handles the case of conversion
3406 in a less optimal way.
3408 If the code conversion is "automatic" then we try using this
3409 method and hope for the best.
3410 But if we discover the need for conversion, we give up on this method
3411 and let the following if-statement handle the replace job. */
3412 if (!NILP (replace)
3413 && BEGV < ZV
3414 && (NILP (coding_system)
3415 || ! CODING_REQUIRE_DECODING (&coding)))
3417 /* same_at_start and same_at_end count bytes,
3418 because file access counts bytes
3419 and BEG and END count bytes. */
3420 EMACS_INT same_at_start = BEGV_BYTE;
3421 EMACS_INT same_at_end = ZV_BYTE;
3422 EMACS_INT overlap;
3423 /* There is still a possibility we will find the need to do code
3424 conversion. If that happens, we set this variable to 1 to
3425 give up on handling REPLACE in the optimized way. */
3426 int giveup_match_end = 0;
3428 if (XINT (beg) != 0)
3430 if (lseek (fd, XINT (beg), 0) < 0)
3431 report_file_error ("Setting file position",
3432 Fcons (orig_filename, Qnil));
3435 immediate_quit = 1;
3436 QUIT;
3437 /* Count how many chars at the start of the file
3438 match the text at the beginning of the buffer. */
3439 while (1)
3441 EMACS_INT nread, bufpos;
3443 nread = emacs_read (fd, buffer, sizeof buffer);
3444 if (nread < 0)
3445 error ("IO error reading %s: %s",
3446 SSDATA (orig_filename), emacs_strerror (errno));
3447 else if (nread == 0)
3448 break;
3450 if (CODING_REQUIRE_DETECTION (&coding))
3452 coding_system = detect_coding_system ((unsigned char *) buffer,
3453 nread, nread, 1, 0,
3454 coding_system);
3455 setup_coding_system (coding_system, &coding);
3458 if (CODING_REQUIRE_DECODING (&coding))
3459 /* We found that the file should be decoded somehow.
3460 Let's give up here. */
3462 giveup_match_end = 1;
3463 break;
3466 bufpos = 0;
3467 while (bufpos < nread && same_at_start < ZV_BYTE
3468 && FETCH_BYTE (same_at_start) == buffer[bufpos])
3469 same_at_start++, bufpos++;
3470 /* If we found a discrepancy, stop the scan.
3471 Otherwise loop around and scan the next bufferful. */
3472 if (bufpos != nread)
3473 break;
3475 immediate_quit = 0;
3476 /* If the file matches the buffer completely,
3477 there's no need to replace anything. */
3478 if (same_at_start - BEGV_BYTE == XINT (end))
3480 emacs_close (fd);
3481 specpdl_ptr--;
3482 /* Truncate the buffer to the size of the file. */
3483 del_range_1 (same_at_start, same_at_end, 0, 0);
3484 goto handled;
3486 immediate_quit = 1;
3487 QUIT;
3488 /* Count how many chars at the end of the file
3489 match the text at the end of the buffer. But, if we have
3490 already found that decoding is necessary, don't waste time. */
3491 while (!giveup_match_end)
3493 EMACS_INT total_read, nread, bufpos, curpos, trial;
3495 /* At what file position are we now scanning? */
3496 curpos = XINT (end) - (ZV_BYTE - same_at_end);
3497 /* If the entire file matches the buffer tail, stop the scan. */
3498 if (curpos == 0)
3499 break;
3500 /* How much can we scan in the next step? */
3501 trial = min (curpos, sizeof buffer);
3502 if (lseek (fd, curpos - trial, 0) < 0)
3503 report_file_error ("Setting file position",
3504 Fcons (orig_filename, Qnil));
3506 total_read = nread = 0;
3507 while (total_read < trial)
3509 nread = emacs_read (fd, buffer + total_read, trial - total_read);
3510 if (nread < 0)
3511 error ("IO error reading %s: %s",
3512 SDATA (orig_filename), emacs_strerror (errno));
3513 else if (nread == 0)
3514 break;
3515 total_read += nread;
3518 /* Scan this bufferful from the end, comparing with
3519 the Emacs buffer. */
3520 bufpos = total_read;
3522 /* Compare with same_at_start to avoid counting some buffer text
3523 as matching both at the file's beginning and at the end. */
3524 while (bufpos > 0 && same_at_end > same_at_start
3525 && FETCH_BYTE (same_at_end - 1) == buffer[bufpos - 1])
3526 same_at_end--, bufpos--;
3528 /* If we found a discrepancy, stop the scan.
3529 Otherwise loop around and scan the preceding bufferful. */
3530 if (bufpos != 0)
3532 /* If this discrepancy is because of code conversion,
3533 we cannot use this method; giveup and try the other. */
3534 if (same_at_end > same_at_start
3535 && FETCH_BYTE (same_at_end - 1) >= 0200
3536 && ! NILP (BVAR (current_buffer, enable_multibyte_characters))
3537 && (CODING_MAY_REQUIRE_DECODING (&coding)))
3538 giveup_match_end = 1;
3539 break;
3542 if (nread == 0)
3543 break;
3545 immediate_quit = 0;
3547 if (! giveup_match_end)
3549 EMACS_INT temp;
3551 /* We win! We can handle REPLACE the optimized way. */
3553 /* Extend the start of non-matching text area to multibyte
3554 character boundary. */
3555 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3556 while (same_at_start > BEGV_BYTE
3557 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3558 same_at_start--;
3560 /* Extend the end of non-matching text area to multibyte
3561 character boundary. */
3562 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3563 while (same_at_end < ZV_BYTE
3564 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3565 same_at_end++;
3567 /* Don't try to reuse the same piece of text twice. */
3568 overlap = (same_at_start - BEGV_BYTE
3569 - (same_at_end + st.st_size - ZV));
3570 if (overlap > 0)
3571 same_at_end += overlap;
3573 /* Arrange to read only the nonmatching middle part of the file. */
3574 XSETFASTINT (beg, XINT (beg) + (same_at_start - BEGV_BYTE));
3575 XSETFASTINT (end, XINT (end) - (ZV_BYTE - same_at_end));
3577 del_range_byte (same_at_start, same_at_end, 0);
3578 /* Insert from the file at the proper position. */
3579 temp = BYTE_TO_CHAR (same_at_start);
3580 SET_PT_BOTH (temp, same_at_start);
3582 /* If display currently starts at beginning of line,
3583 keep it that way. */
3584 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3585 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
3587 replace_handled = 1;
3591 /* If requested, replace the accessible part of the buffer
3592 with the file contents. Avoid replacing text at the
3593 beginning or end of the buffer that matches the file contents;
3594 that preserves markers pointing to the unchanged parts.
3596 Here we implement this feature for the case where code conversion
3597 is needed, in a simple way that needs a lot of memory.
3598 The preceding if-statement handles the case of no conversion
3599 in a more optimized way. */
3600 if (!NILP (replace) && ! replace_handled && BEGV < ZV)
3602 EMACS_INT same_at_start = BEGV_BYTE;
3603 EMACS_INT same_at_end = ZV_BYTE;
3604 EMACS_INT same_at_start_charpos;
3605 EMACS_INT inserted_chars;
3606 EMACS_INT overlap;
3607 EMACS_INT bufpos;
3608 unsigned char *decoded;
3609 EMACS_INT temp;
3610 EMACS_INT this = 0;
3611 int this_count = SPECPDL_INDEX ();
3612 int multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
3613 Lisp_Object conversion_buffer;
3615 conversion_buffer = code_conversion_save (1, multibyte);
3617 /* First read the whole file, performing code conversion into
3618 CONVERSION_BUFFER. */
3620 if (lseek (fd, XINT (beg), 0) < 0)
3621 report_file_error ("Setting file position",
3622 Fcons (orig_filename, Qnil));
3624 total = st.st_size; /* Total bytes in the file. */
3625 how_much = 0; /* Bytes read from file so far. */
3626 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */
3627 unprocessed = 0; /* Bytes not processed in previous loop. */
3629 GCPRO1 (conversion_buffer);
3630 while (how_much < total)
3632 /* We read one bunch by one (READ_BUF_SIZE bytes) to allow
3633 quitting while reading a huge while. */
3634 /* try is reserved in some compilers (Microsoft C) */
3635 EMACS_INT trytry = min (total - how_much,
3636 READ_BUF_SIZE - unprocessed);
3638 /* Allow quitting out of the actual I/O. */
3639 immediate_quit = 1;
3640 QUIT;
3641 this = emacs_read (fd, read_buf + unprocessed, trytry);
3642 immediate_quit = 0;
3644 if (this <= 0)
3645 break;
3647 how_much += this;
3649 BUF_TEMP_SET_PT (XBUFFER (conversion_buffer),
3650 BUF_Z (XBUFFER (conversion_buffer)));
3651 decode_coding_c_string (&coding, (unsigned char *) read_buf,
3652 unprocessed + this, conversion_buffer);
3653 unprocessed = coding.carryover_bytes;
3654 if (coding.carryover_bytes > 0)
3655 memcpy (read_buf, coding.carryover, unprocessed);
3657 UNGCPRO;
3658 emacs_close (fd);
3660 /* We should remove the unwind_protect calling
3661 close_file_unwind, but other stuff has been added the stack,
3662 so defer the removal till we reach the `handled' label. */
3663 deferred_remove_unwind_protect = 1;
3665 /* At this point, HOW_MUCH should equal TOTAL, or should be <= 0
3666 if we couldn't read the file. */
3668 if (this < 0)
3669 error ("IO error reading %s: %s",
3670 SDATA (orig_filename), emacs_strerror (errno));
3672 if (unprocessed > 0)
3674 coding.mode |= CODING_MODE_LAST_BLOCK;
3675 decode_coding_c_string (&coding, (unsigned char *) read_buf,
3676 unprocessed, conversion_buffer);
3677 coding.mode &= ~CODING_MODE_LAST_BLOCK;
3680 coding_system = CODING_ID_NAME (coding.id);
3681 set_coding_system = 1;
3682 decoded = BUF_BEG_ADDR (XBUFFER (conversion_buffer));
3683 inserted = (BUF_Z_BYTE (XBUFFER (conversion_buffer))
3684 - BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
3686 /* Compare the beginning of the converted string with the buffer
3687 text. */
3689 bufpos = 0;
3690 while (bufpos < inserted && same_at_start < same_at_end
3691 && FETCH_BYTE (same_at_start) == decoded[bufpos])
3692 same_at_start++, bufpos++;
3694 /* If the file matches the head of buffer completely,
3695 there's no need to replace anything. */
3697 if (bufpos == inserted)
3699 /* Truncate the buffer to the size of the file. */
3700 if (same_at_start == same_at_end)
3701 nochange = 1;
3702 else
3703 del_range_byte (same_at_start, same_at_end, 0);
3704 inserted = 0;
3706 unbind_to (this_count, Qnil);
3707 goto handled;
3710 /* Extend the start of non-matching text area to the previous
3711 multibyte character boundary. */
3712 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3713 while (same_at_start > BEGV_BYTE
3714 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3715 same_at_start--;
3717 /* Scan this bufferful from the end, comparing with
3718 the Emacs buffer. */
3719 bufpos = inserted;
3721 /* Compare with same_at_start to avoid counting some buffer text
3722 as matching both at the file's beginning and at the end. */
3723 while (bufpos > 0 && same_at_end > same_at_start
3724 && FETCH_BYTE (same_at_end - 1) == decoded[bufpos - 1])
3725 same_at_end--, bufpos--;
3727 /* Extend the end of non-matching text area to the next
3728 multibyte character boundary. */
3729 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3730 while (same_at_end < ZV_BYTE
3731 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3732 same_at_end++;
3734 /* Don't try to reuse the same piece of text twice. */
3735 overlap = same_at_start - BEGV_BYTE - (same_at_end + inserted - ZV_BYTE);
3736 if (overlap > 0)
3737 same_at_end += overlap;
3739 /* If display currently starts at beginning of line,
3740 keep it that way. */
3741 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3742 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
3744 /* Replace the chars that we need to replace,
3745 and update INSERTED to equal the number of bytes
3746 we are taking from the decoded string. */
3747 inserted -= (ZV_BYTE - same_at_end) + (same_at_start - BEGV_BYTE);
3749 if (same_at_end != same_at_start)
3751 del_range_byte (same_at_start, same_at_end, 0);
3752 temp = GPT;
3753 same_at_start = GPT_BYTE;
3755 else
3757 temp = BYTE_TO_CHAR (same_at_start);
3759 /* Insert from the file at the proper position. */
3760 SET_PT_BOTH (temp, same_at_start);
3761 same_at_start_charpos
3762 = buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
3763 same_at_start - BEGV_BYTE
3764 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
3765 inserted_chars
3766 = (buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
3767 same_at_start + inserted - BEGV_BYTE
3768 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)))
3769 - same_at_start_charpos);
3770 /* This binding is to avoid ask-user-about-supersession-threat
3771 being called in insert_from_buffer (via in
3772 prepare_to_modify_buffer). */
3773 specbind (intern ("buffer-file-name"), Qnil);
3774 insert_from_buffer (XBUFFER (conversion_buffer),
3775 same_at_start_charpos, inserted_chars, 0);
3776 /* Set `inserted' to the number of inserted characters. */
3777 inserted = PT - temp;
3778 /* Set point before the inserted characters. */
3779 SET_PT_BOTH (temp, same_at_start);
3781 unbind_to (this_count, Qnil);
3783 goto handled;
3786 if (! not_regular)
3788 register Lisp_Object temp;
3790 total = XINT (end) - XINT (beg);
3792 /* Make sure point-max won't overflow after this insertion. */
3793 XSETINT (temp, total);
3794 if (total != XINT (temp))
3795 error ("Maximum buffer size exceeded");
3797 else
3798 /* For a special file, all we can do is guess. */
3799 total = READ_BUF_SIZE;
3801 if (NILP (visit) && inserted > 0)
3803 #ifdef CLASH_DETECTION
3804 if (!NILP (BVAR (current_buffer, file_truename))
3805 /* Make binding buffer-file-name to nil effective. */
3806 && !NILP (BVAR (current_buffer, filename))
3807 && SAVE_MODIFF >= MODIFF)
3808 we_locked_file = 1;
3809 #endif /* CLASH_DETECTION */
3810 prepare_to_modify_buffer (GPT, GPT, NULL);
3813 move_gap (PT);
3814 if (GAP_SIZE < total)
3815 make_gap (total - GAP_SIZE);
3817 if (XINT (beg) != 0 || !NILP (replace))
3819 if (lseek (fd, XINT (beg), 0) < 0)
3820 report_file_error ("Setting file position",
3821 Fcons (orig_filename, Qnil));
3824 /* In the following loop, HOW_MUCH contains the total bytes read so
3825 far for a regular file, and not changed for a special file. But,
3826 before exiting the loop, it is set to a negative value if I/O
3827 error occurs. */
3828 how_much = 0;
3830 /* Total bytes inserted. */
3831 inserted = 0;
3833 /* Here, we don't do code conversion in the loop. It is done by
3834 decode_coding_gap after all data are read into the buffer. */
3836 EMACS_INT gap_size = GAP_SIZE;
3838 while (how_much < total)
3840 /* try is reserved in some compilers (Microsoft C) */
3841 EMACS_INT trytry = min (total - how_much, READ_BUF_SIZE);
3842 EMACS_INT this;
3844 if (not_regular)
3846 Lisp_Object nbytes;
3848 /* Maybe make more room. */
3849 if (gap_size < trytry)
3851 make_gap (total - gap_size);
3852 gap_size = GAP_SIZE;
3855 /* Read from the file, capturing `quit'. When an
3856 error occurs, end the loop, and arrange for a quit
3857 to be signaled after decoding the text we read. */
3858 non_regular_fd = fd;
3859 non_regular_inserted = inserted;
3860 non_regular_nbytes = trytry;
3861 nbytes = internal_condition_case_1 (read_non_regular,
3862 Qnil, Qerror,
3863 read_non_regular_quit);
3864 if (NILP (nbytes))
3866 read_quit = 1;
3867 break;
3870 this = XINT (nbytes);
3872 else
3874 /* Allow quitting out of the actual I/O. We don't make text
3875 part of the buffer until all the reading is done, so a C-g
3876 here doesn't do any harm. */
3877 immediate_quit = 1;
3878 QUIT;
3879 this = emacs_read (fd,
3880 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
3881 + inserted),
3882 trytry);
3883 immediate_quit = 0;
3886 if (this <= 0)
3888 how_much = this;
3889 break;
3892 gap_size -= this;
3894 /* For a regular file, where TOTAL is the real size,
3895 count HOW_MUCH to compare with it.
3896 For a special file, where TOTAL is just a buffer size,
3897 so don't bother counting in HOW_MUCH.
3898 (INSERTED is where we count the number of characters inserted.) */
3899 if (! not_regular)
3900 how_much += this;
3901 inserted += this;
3905 /* Now we have read all the file data into the gap.
3906 If it was empty, undo marking the buffer modified. */
3908 if (inserted == 0)
3910 #ifdef CLASH_DETECTION
3911 if (we_locked_file)
3912 unlock_file (BVAR (current_buffer, file_truename));
3913 #endif
3914 Vdeactivate_mark = old_Vdeactivate_mark;
3916 else
3917 Vdeactivate_mark = Qt;
3919 /* Make the text read part of the buffer. */
3920 GAP_SIZE -= inserted;
3921 GPT += inserted;
3922 GPT_BYTE += inserted;
3923 ZV += inserted;
3924 ZV_BYTE += inserted;
3925 Z += inserted;
3926 Z_BYTE += inserted;
3928 if (GAP_SIZE > 0)
3929 /* Put an anchor to ensure multi-byte form ends at gap. */
3930 *GPT_ADDR = 0;
3932 emacs_close (fd);
3934 /* Discard the unwind protect for closing the file. */
3935 specpdl_ptr--;
3937 if (how_much < 0)
3938 error ("IO error reading %s: %s",
3939 SDATA (orig_filename), emacs_strerror (errno));
3941 notfound:
3943 if (NILP (coding_system))
3945 /* The coding system is not yet decided. Decide it by an
3946 optimized method for handling `coding:' tag.
3948 Note that we can get here only if the buffer was empty
3949 before the insertion. */
3951 if (!NILP (Vcoding_system_for_read))
3952 coding_system = Vcoding_system_for_read;
3953 else
3955 /* Since we are sure that the current buffer was empty
3956 before the insertion, we can toggle
3957 enable-multibyte-characters directly here without taking
3958 care of marker adjustment. By this way, we can run Lisp
3959 program safely before decoding the inserted text. */
3960 Lisp_Object unwind_data;
3961 int count1 = SPECPDL_INDEX ();
3963 unwind_data = Fcons (BVAR (current_buffer, enable_multibyte_characters),
3964 Fcons (BVAR (current_buffer, undo_list),
3965 Fcurrent_buffer ()));
3966 BVAR (current_buffer, enable_multibyte_characters) = Qnil;
3967 BVAR (current_buffer, undo_list) = Qt;
3968 record_unwind_protect (decide_coding_unwind, unwind_data);
3970 if (inserted > 0 && ! NILP (Vset_auto_coding_function))
3972 coding_system = call2 (Vset_auto_coding_function,
3973 filename, make_number (inserted));
3976 if (NILP (coding_system))
3978 /* If the coding system is not yet decided, check
3979 file-coding-system-alist. */
3980 Lisp_Object args[6];
3982 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3983 args[2] = visit, args[3] = beg, args[4] = end, args[5] = Qnil;
3984 coding_system = Ffind_operation_coding_system (6, args);
3985 if (CONSP (coding_system))
3986 coding_system = XCAR (coding_system);
3988 unbind_to (count1, Qnil);
3989 inserted = Z_BYTE - BEG_BYTE;
3992 if (NILP (coding_system))
3993 coding_system = Qundecided;
3994 else
3995 CHECK_CODING_SYSTEM (coding_system);
3997 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3998 /* We must suppress all character code conversion except for
3999 end-of-line conversion. */
4000 coding_system = raw_text_coding_system (coding_system);
4001 setup_coding_system (coding_system, &coding);
4002 /* Ensure we set Vlast_coding_system_used. */
4003 set_coding_system = 1;
4006 if (!NILP (visit))
4008 /* When we visit a file by raw-text, we change the buffer to
4009 unibyte. */
4010 if (CODING_FOR_UNIBYTE (&coding)
4011 /* Can't do this if part of the buffer might be preserved. */
4012 && NILP (replace))
4013 /* Visiting a file with these coding system makes the buffer
4014 unibyte. */
4015 BVAR (current_buffer, enable_multibyte_characters) = Qnil;
4018 coding.dst_multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
4019 if (CODING_MAY_REQUIRE_DECODING (&coding)
4020 && (inserted > 0 || CODING_REQUIRE_FLUSHING (&coding)))
4022 move_gap_both (PT, PT_BYTE);
4023 GAP_SIZE += inserted;
4024 ZV_BYTE -= inserted;
4025 Z_BYTE -= inserted;
4026 ZV -= inserted;
4027 Z -= inserted;
4028 decode_coding_gap (&coding, inserted, inserted);
4029 inserted = coding.produced_char;
4030 coding_system = CODING_ID_NAME (coding.id);
4032 else if (inserted > 0)
4033 adjust_after_insert (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4034 inserted);
4036 /* Now INSERTED is measured in characters. */
4038 handled:
4040 if (deferred_remove_unwind_protect)
4041 /* If requested above, discard the unwind protect for closing the
4042 file. */
4043 specpdl_ptr--;
4045 if (!NILP (visit))
4047 if (!EQ (BVAR (current_buffer, undo_list), Qt) && !nochange)
4048 BVAR (current_buffer, undo_list) = Qnil;
4050 if (NILP (handler))
4052 current_buffer->modtime = st.st_mtime;
4053 current_buffer->modtime_size = st.st_size;
4054 BVAR (current_buffer, filename) = orig_filename;
4057 SAVE_MODIFF = MODIFF;
4058 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
4059 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4060 #ifdef CLASH_DETECTION
4061 if (NILP (handler))
4063 if (!NILP (BVAR (current_buffer, file_truename)))
4064 unlock_file (BVAR (current_buffer, file_truename));
4065 unlock_file (filename);
4067 #endif /* CLASH_DETECTION */
4068 if (not_regular)
4069 xsignal2 (Qfile_error,
4070 build_string ("not a regular file"), orig_filename);
4073 if (set_coding_system)
4074 Vlast_coding_system_used = coding_system;
4076 if (! NILP (Ffboundp (Qafter_insert_file_set_coding)))
4078 insval = call2 (Qafter_insert_file_set_coding, make_number (inserted),
4079 visit);
4080 if (! NILP (insval))
4082 CHECK_NUMBER (insval);
4083 inserted = XFASTINT (insval);
4087 /* Decode file format. */
4088 if (inserted > 0)
4090 /* Don't run point motion or modification hooks when decoding. */
4091 int count1 = SPECPDL_INDEX ();
4092 EMACS_INT old_inserted = inserted;
4093 specbind (Qinhibit_point_motion_hooks, Qt);
4094 specbind (Qinhibit_modification_hooks, Qt);
4096 /* Save old undo list and don't record undo for decoding. */
4097 old_undo = BVAR (current_buffer, undo_list);
4098 BVAR (current_buffer, undo_list) = Qt;
4100 if (NILP (replace))
4102 insval = call3 (Qformat_decode,
4103 Qnil, make_number (inserted), visit);
4104 CHECK_NUMBER (insval);
4105 inserted = XFASTINT (insval);
4107 else
4109 /* If REPLACE is non-nil and we succeeded in not replacing the
4110 beginning or end of the buffer text with the file's contents,
4111 call format-decode with `point' positioned at the beginning
4112 of the buffer and `inserted' equalling the number of
4113 characters in the buffer. Otherwise, format-decode might
4114 fail to correctly analyze the beginning or end of the buffer.
4115 Hence we temporarily save `point' and `inserted' here and
4116 restore `point' iff format-decode did not insert or delete
4117 any text. Otherwise we leave `point' at point-min. */
4118 EMACS_INT opoint = PT;
4119 EMACS_INT opoint_byte = PT_BYTE;
4120 EMACS_INT oinserted = ZV - BEGV;
4121 int ochars_modiff = CHARS_MODIFF;
4123 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4124 insval = call3 (Qformat_decode,
4125 Qnil, make_number (oinserted), visit);
4126 CHECK_NUMBER (insval);
4127 if (ochars_modiff == CHARS_MODIFF)
4128 /* format_decode didn't modify buffer's characters => move
4129 point back to position before inserted text and leave
4130 value of inserted alone. */
4131 SET_PT_BOTH (opoint, opoint_byte);
4132 else
4133 /* format_decode modified buffer's characters => consider
4134 entire buffer changed and leave point at point-min. */
4135 inserted = XFASTINT (insval);
4138 /* For consistency with format-decode call these now iff inserted > 0
4139 (martin 2007-06-28). */
4140 p = Vafter_insert_file_functions;
4141 while (CONSP (p))
4143 if (NILP (replace))
4145 insval = call1 (XCAR (p), make_number (inserted));
4146 if (!NILP (insval))
4148 CHECK_NUMBER (insval);
4149 inserted = XFASTINT (insval);
4152 else
4154 /* For the rationale of this see the comment on
4155 format-decode above. */
4156 EMACS_INT opoint = PT;
4157 EMACS_INT opoint_byte = PT_BYTE;
4158 EMACS_INT oinserted = ZV - BEGV;
4159 int ochars_modiff = CHARS_MODIFF;
4161 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4162 insval = call1 (XCAR (p), make_number (oinserted));
4163 if (!NILP (insval))
4165 CHECK_NUMBER (insval);
4166 if (ochars_modiff == CHARS_MODIFF)
4167 /* after_insert_file_functions didn't modify
4168 buffer's characters => move point back to
4169 position before inserted text and leave value of
4170 inserted alone. */
4171 SET_PT_BOTH (opoint, opoint_byte);
4172 else
4173 /* after_insert_file_functions did modify buffer's
4174 characters => consider entire buffer changed and
4175 leave point at point-min. */
4176 inserted = XFASTINT (insval);
4180 QUIT;
4181 p = XCDR (p);
4184 if (NILP (visit))
4186 BVAR (current_buffer, undo_list) = old_undo;
4187 if (CONSP (old_undo) && inserted != old_inserted)
4189 /* Adjust the last undo record for the size change during
4190 the format conversion. */
4191 Lisp_Object tem = XCAR (old_undo);
4192 if (CONSP (tem) && INTEGERP (XCAR (tem))
4193 && INTEGERP (XCDR (tem))
4194 && XFASTINT (XCDR (tem)) == PT + old_inserted)
4195 XSETCDR (tem, make_number (PT + inserted));
4198 else
4199 /* If undo_list was Qt before, keep it that way.
4200 Otherwise start with an empty undo_list. */
4201 BVAR (current_buffer, undo_list) = EQ (old_undo, Qt) ? Qt : Qnil;
4203 unbind_to (count1, Qnil);
4206 /* Call after-change hooks for the inserted text, aside from the case
4207 of normal visiting (not with REPLACE), which is done in a new buffer
4208 "before" the buffer is changed. */
4209 if (inserted > 0 && total > 0
4210 && (NILP (visit) || !NILP (replace)))
4212 signal_after_change (PT, 0, inserted);
4213 update_compositions (PT, PT, CHECK_BORDER);
4216 if (!NILP (visit)
4217 && current_buffer->modtime == -1)
4219 /* If visiting nonexistent file, return nil. */
4220 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
4223 if (read_quit)
4224 Fsignal (Qquit, Qnil);
4226 /* ??? Retval needs to be dealt with in all cases consistently. */
4227 if (NILP (val))
4228 val = Fcons (orig_filename,
4229 Fcons (make_number (inserted),
4230 Qnil));
4232 RETURN_UNGCPRO (unbind_to (count, val));
4235 static Lisp_Object build_annotations (Lisp_Object, Lisp_Object);
4237 static Lisp_Object
4238 build_annotations_unwind (Lisp_Object arg)
4240 Vwrite_region_annotation_buffers = arg;
4241 return Qnil;
4244 /* Decide the coding-system to encode the data with. */
4246 static Lisp_Object
4247 choose_write_coding_system (Lisp_Object start, Lisp_Object end, Lisp_Object filename,
4248 Lisp_Object append, Lisp_Object visit, Lisp_Object lockname,
4249 struct coding_system *coding)
4251 Lisp_Object val;
4252 Lisp_Object eol_parent = Qnil;
4254 if (auto_saving
4255 && NILP (Fstring_equal (BVAR (current_buffer, filename),
4256 BVAR (current_buffer, auto_save_file_name))))
4258 val = Qutf_8_emacs;
4259 eol_parent = Qunix;
4261 else if (!NILP (Vcoding_system_for_write))
4263 val = Vcoding_system_for_write;
4264 if (coding_system_require_warning
4265 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4266 /* Confirm that VAL can surely encode the current region. */
4267 val = call5 (Vselect_safe_coding_system_function,
4268 start, end, Fcons (Qt, Fcons (val, Qnil)),
4269 Qnil, filename);
4271 else
4273 /* If the variable `buffer-file-coding-system' is set locally,
4274 it means that the file was read with some kind of code
4275 conversion or the variable is explicitly set by users. We
4276 had better write it out with the same coding system even if
4277 `enable-multibyte-characters' is nil.
4279 If it is not set locally, we anyway have to convert EOL
4280 format if the default value of `buffer-file-coding-system'
4281 tells that it is not Unix-like (LF only) format. */
4282 int using_default_coding = 0;
4283 int force_raw_text = 0;
4285 val = BVAR (current_buffer, buffer_file_coding_system);
4286 if (NILP (val)
4287 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil)))
4289 val = Qnil;
4290 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
4291 force_raw_text = 1;
4294 if (NILP (val))
4296 /* Check file-coding-system-alist. */
4297 Lisp_Object args[7], coding_systems;
4299 args[0] = Qwrite_region; args[1] = start; args[2] = end;
4300 args[3] = filename; args[4] = append; args[5] = visit;
4301 args[6] = lockname;
4302 coding_systems = Ffind_operation_coding_system (7, args);
4303 if (CONSP (coding_systems) && !NILP (XCDR (coding_systems)))
4304 val = XCDR (coding_systems);
4307 if (NILP (val))
4309 /* If we still have not decided a coding system, use the
4310 default value of buffer-file-coding-system. */
4311 val = BVAR (current_buffer, buffer_file_coding_system);
4312 using_default_coding = 1;
4315 if (! NILP (val) && ! force_raw_text)
4317 Lisp_Object spec, attrs;
4319 CHECK_CODING_SYSTEM_GET_SPEC (val, spec);
4320 attrs = AREF (spec, 0);
4321 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text))
4322 force_raw_text = 1;
4325 if (!force_raw_text
4326 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4327 /* Confirm that VAL can surely encode the current region. */
4328 val = call5 (Vselect_safe_coding_system_function,
4329 start, end, val, Qnil, filename);
4331 /* If the decided coding-system doesn't specify end-of-line
4332 format, we use that of
4333 `default-buffer-file-coding-system'. */
4334 if (! using_default_coding
4335 && ! NILP (BVAR (&buffer_defaults, buffer_file_coding_system)))
4336 val = (coding_inherit_eol_type
4337 (val, BVAR (&buffer_defaults, buffer_file_coding_system)));
4339 /* If we decide not to encode text, use `raw-text' or one of its
4340 subsidiaries. */
4341 if (force_raw_text)
4342 val = raw_text_coding_system (val);
4345 val = coding_inherit_eol_type (val, eol_parent);
4346 setup_coding_system (val, coding);
4348 if (!STRINGP (start) && !NILP (BVAR (current_buffer, selective_display)))
4349 coding->mode |= CODING_MODE_SELECTIVE_DISPLAY;
4350 return val;
4353 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7,
4354 "r\nFWrite region to file: \ni\ni\ni\np",
4355 doc: /* Write current region into specified file.
4356 When called from a program, requires three arguments:
4357 START, END and FILENAME. START and END are normally buffer positions
4358 specifying the part of the buffer to write.
4359 If START is nil, that means to use the entire buffer contents.
4360 If START is a string, then output that string to the file
4361 instead of any buffer contents; END is ignored.
4363 Optional fourth argument APPEND if non-nil means
4364 append to existing file contents (if any). If it is an integer,
4365 seek to that offset in the file before writing.
4366 Optional fifth argument VISIT, if t or a string, means
4367 set the last-save-file-modtime of buffer to this file's modtime
4368 and mark buffer not modified.
4369 If VISIT is a string, it is a second file name;
4370 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4371 VISIT is also the file name to lock and unlock for clash detection.
4372 If VISIT is neither t nor nil nor a string,
4373 that means do not display the \"Wrote file\" message.
4374 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4375 use for locking and unlocking, overriding FILENAME and VISIT.
4376 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4377 for an existing file with the same name. If MUSTBENEW is `excl',
4378 that means to get an error if the file already exists; never overwrite.
4379 If MUSTBENEW is neither nil nor `excl', that means ask for
4380 confirmation before overwriting, but do go ahead and overwrite the file
4381 if the user confirms.
4383 This does code conversion according to the value of
4384 `coding-system-for-write', `buffer-file-coding-system', or
4385 `file-coding-system-alist', and sets the variable
4386 `last-coding-system-used' to the coding system actually used.
4388 This calls `write-region-annotate-functions' at the start, and
4389 `write-region-post-annotation-function' at the end. */)
4390 (Lisp_Object start, Lisp_Object end, Lisp_Object filename, Lisp_Object append, Lisp_Object visit, Lisp_Object lockname, Lisp_Object mustbenew)
4392 register int desc;
4393 int failure;
4394 int save_errno = 0;
4395 const char *fn;
4396 struct stat st;
4397 int count = SPECPDL_INDEX ();
4398 int count1;
4399 Lisp_Object handler;
4400 Lisp_Object visit_file;
4401 Lisp_Object annotations;
4402 Lisp_Object encoded_filename;
4403 int visiting = (EQ (visit, Qt) || STRINGP (visit));
4404 int quietly = !NILP (visit);
4405 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4406 struct buffer *given_buffer;
4407 struct coding_system coding;
4409 if (current_buffer->base_buffer && visiting)
4410 error ("Cannot do file visiting in an indirect buffer");
4412 if (!NILP (start) && !STRINGP (start))
4413 validate_region (&start, &end);
4415 visit_file = Qnil;
4416 GCPRO5 (start, filename, visit, visit_file, lockname);
4418 filename = Fexpand_file_name (filename, Qnil);
4420 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl))
4421 barf_or_query_if_file_exists (filename, "overwrite", 1, 0, 1);
4423 if (STRINGP (visit))
4424 visit_file = Fexpand_file_name (visit, Qnil);
4425 else
4426 visit_file = filename;
4428 if (NILP (lockname))
4429 lockname = visit_file;
4431 annotations = Qnil;
4433 /* If the file name has special constructs in it,
4434 call the corresponding file handler. */
4435 handler = Ffind_file_name_handler (filename, Qwrite_region);
4436 /* If FILENAME has no handler, see if VISIT has one. */
4437 if (NILP (handler) && STRINGP (visit))
4438 handler = Ffind_file_name_handler (visit, Qwrite_region);
4440 if (!NILP (handler))
4442 Lisp_Object val;
4443 val = call6 (handler, Qwrite_region, start, end,
4444 filename, append, visit);
4446 if (visiting)
4448 SAVE_MODIFF = MODIFF;
4449 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4450 BVAR (current_buffer, filename) = visit_file;
4452 UNGCPRO;
4453 return val;
4456 record_unwind_protect (save_restriction_restore, save_restriction_save ());
4458 /* Special kludge to simplify auto-saving. */
4459 if (NILP (start))
4461 /* Do it later, so write-region-annotate-function can work differently
4462 if we save "the buffer" vs "a region".
4463 This is useful in tar-mode. --Stef
4464 XSETFASTINT (start, BEG);
4465 XSETFASTINT (end, Z); */
4466 Fwiden ();
4469 record_unwind_protect (build_annotations_unwind,
4470 Vwrite_region_annotation_buffers);
4471 Vwrite_region_annotation_buffers = Fcons (Fcurrent_buffer (), Qnil);
4472 count1 = SPECPDL_INDEX ();
4474 given_buffer = current_buffer;
4476 if (!STRINGP (start))
4478 annotations = build_annotations (start, end);
4480 if (current_buffer != given_buffer)
4482 XSETFASTINT (start, BEGV);
4483 XSETFASTINT (end, ZV);
4487 if (NILP (start))
4489 XSETFASTINT (start, BEGV);
4490 XSETFASTINT (end, ZV);
4493 UNGCPRO;
4495 GCPRO5 (start, filename, annotations, visit_file, lockname);
4497 /* Decide the coding-system to encode the data with.
4498 We used to make this choice before calling build_annotations, but that
4499 leads to problems when a write-annotate-function takes care of
4500 unsavable chars (as was the case with X-Symbol). */
4501 Vlast_coding_system_used
4502 = choose_write_coding_system (start, end, filename,
4503 append, visit, lockname, &coding);
4505 #ifdef CLASH_DETECTION
4506 if (!auto_saving)
4507 lock_file (lockname);
4508 #endif /* CLASH_DETECTION */
4510 encoded_filename = ENCODE_FILE (filename);
4512 fn = SSDATA (encoded_filename);
4513 desc = -1;
4514 if (!NILP (append))
4515 #ifdef DOS_NT
4516 desc = emacs_open (fn, O_WRONLY | O_BINARY, 0);
4517 #else /* not DOS_NT */
4518 desc = emacs_open (fn, O_WRONLY, 0);
4519 #endif /* not DOS_NT */
4521 if (desc < 0 && (NILP (append) || errno == ENOENT))
4522 #ifdef DOS_NT
4523 desc = emacs_open (fn,
4524 O_WRONLY | O_CREAT | O_BINARY
4525 | (EQ (mustbenew, Qexcl) ? O_EXCL : O_TRUNC),
4526 S_IREAD | S_IWRITE);
4527 #else /* not DOS_NT */
4528 desc = emacs_open (fn, O_WRONLY | O_TRUNC | O_CREAT
4529 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0),
4530 auto_saving ? auto_save_mode_bits : 0666);
4531 #endif /* not DOS_NT */
4533 if (desc < 0)
4535 #ifdef CLASH_DETECTION
4536 save_errno = errno;
4537 if (!auto_saving) unlock_file (lockname);
4538 errno = save_errno;
4539 #endif /* CLASH_DETECTION */
4540 UNGCPRO;
4541 report_file_error ("Opening output file", Fcons (filename, Qnil));
4544 record_unwind_protect (close_file_unwind, make_number (desc));
4546 if (!NILP (append) && !NILP (Ffile_regular_p (filename)))
4548 long ret;
4550 if (NUMBERP (append))
4551 ret = lseek (desc, XINT (append), 1);
4552 else
4553 ret = lseek (desc, 0, 2);
4554 if (ret < 0)
4556 #ifdef CLASH_DETECTION
4557 if (!auto_saving) unlock_file (lockname);
4558 #endif /* CLASH_DETECTION */
4559 UNGCPRO;
4560 report_file_error ("Lseek error", Fcons (filename, Qnil));
4564 UNGCPRO;
4566 failure = 0;
4567 immediate_quit = 1;
4569 if (STRINGP (start))
4571 failure = 0 > a_write (desc, start, 0, SCHARS (start),
4572 &annotations, &coding);
4573 save_errno = errno;
4575 else if (XINT (start) != XINT (end))
4577 failure = 0 > a_write (desc, Qnil,
4578 XINT (start), XINT (end) - XINT (start),
4579 &annotations, &coding);
4580 save_errno = errno;
4582 else
4584 /* If file was empty, still need to write the annotations */
4585 coding.mode |= CODING_MODE_LAST_BLOCK;
4586 failure = 0 > a_write (desc, Qnil, XINT (end), 0, &annotations, &coding);
4587 save_errno = errno;
4590 if (CODING_REQUIRE_FLUSHING (&coding)
4591 && !(coding.mode & CODING_MODE_LAST_BLOCK)
4592 && ! failure)
4594 /* We have to flush out a data. */
4595 coding.mode |= CODING_MODE_LAST_BLOCK;
4596 failure = 0 > e_write (desc, Qnil, 1, 1, &coding);
4597 save_errno = errno;
4600 immediate_quit = 0;
4602 #ifdef HAVE_FSYNC
4603 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
4604 Disk full in NFS may be reported here. */
4605 /* mib says that closing the file will try to write as fast as NFS can do
4606 it, and that means the fsync here is not crucial for autosave files. */
4607 if (!auto_saving && !write_region_inhibit_fsync && fsync (desc) < 0)
4609 /* If fsync fails with EINTR, don't treat that as serious. Also
4610 ignore EINVAL which happens when fsync is not supported on this
4611 file. */
4612 if (errno != EINTR && errno != EINVAL)
4613 failure = 1, save_errno = errno;
4615 #endif
4617 /* NFS can report a write failure now. */
4618 if (emacs_close (desc) < 0)
4619 failure = 1, save_errno = errno;
4621 stat (fn, &st);
4623 /* Discard the unwind protect for close_file_unwind. */
4624 specpdl_ptr = specpdl + count1;
4626 /* Call write-region-post-annotation-function. */
4627 while (CONSP (Vwrite_region_annotation_buffers))
4629 Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers);
4630 if (!NILP (Fbuffer_live_p (buf)))
4632 Fset_buffer (buf);
4633 if (FUNCTIONP (Vwrite_region_post_annotation_function))
4634 call0 (Vwrite_region_post_annotation_function);
4636 Vwrite_region_annotation_buffers
4637 = XCDR (Vwrite_region_annotation_buffers);
4640 unbind_to (count, Qnil);
4642 #ifdef CLASH_DETECTION
4643 if (!auto_saving)
4644 unlock_file (lockname);
4645 #endif /* CLASH_DETECTION */
4647 /* Do this before reporting IO error
4648 to avoid a "file has changed on disk" warning on
4649 next attempt to save. */
4650 if (visiting)
4652 current_buffer->modtime = st.st_mtime;
4653 current_buffer->modtime_size = st.st_size;
4656 if (failure)
4657 error ("IO error writing %s: %s", SDATA (filename),
4658 emacs_strerror (save_errno));
4660 if (visiting)
4662 SAVE_MODIFF = MODIFF;
4663 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4664 BVAR (current_buffer, filename) = visit_file;
4665 update_mode_lines++;
4667 else if (quietly)
4669 if (auto_saving
4670 && ! NILP (Fstring_equal (BVAR (current_buffer, filename),
4671 BVAR (current_buffer, auto_save_file_name))))
4672 SAVE_MODIFF = MODIFF;
4674 return Qnil;
4677 if (!auto_saving)
4678 message_with_string ((INTEGERP (append)
4679 ? "Updated %s"
4680 : ! NILP (append)
4681 ? "Added to %s"
4682 : "Wrote %s"),
4683 visit_file, 1);
4685 return Qnil;
4688 Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object);
4690 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
4691 doc: /* Return t if (car A) is numerically less than (car B). */)
4692 (Lisp_Object a, Lisp_Object b)
4694 return Flss (Fcar (a), Fcar (b));
4697 /* Build the complete list of annotations appropriate for writing out
4698 the text between START and END, by calling all the functions in
4699 write-region-annotate-functions and merging the lists they return.
4700 If one of these functions switches to a different buffer, we assume
4701 that buffer contains altered text. Therefore, the caller must
4702 make sure to restore the current buffer in all cases,
4703 as save-excursion would do. */
4705 static Lisp_Object
4706 build_annotations (Lisp_Object start, Lisp_Object end)
4708 Lisp_Object annotations;
4709 Lisp_Object p, res;
4710 struct gcpro gcpro1, gcpro2;
4711 Lisp_Object original_buffer;
4712 int i, used_global = 0;
4714 XSETBUFFER (original_buffer, current_buffer);
4716 annotations = Qnil;
4717 p = Vwrite_region_annotate_functions;
4718 GCPRO2 (annotations, p);
4719 while (CONSP (p))
4721 struct buffer *given_buffer = current_buffer;
4722 if (EQ (Qt, XCAR (p)) && !used_global)
4723 { /* Use the global value of the hook. */
4724 Lisp_Object arg[2];
4725 used_global = 1;
4726 arg[0] = Fdefault_value (Qwrite_region_annotate_functions);
4727 arg[1] = XCDR (p);
4728 p = Fappend (2, arg);
4729 continue;
4731 Vwrite_region_annotations_so_far = annotations;
4732 res = call2 (XCAR (p), start, end);
4733 /* If the function makes a different buffer current,
4734 assume that means this buffer contains altered text to be output.
4735 Reset START and END from the buffer bounds
4736 and discard all previous annotations because they should have
4737 been dealt with by this function. */
4738 if (current_buffer != given_buffer)
4740 Vwrite_region_annotation_buffers
4741 = Fcons (Fcurrent_buffer (),
4742 Vwrite_region_annotation_buffers);
4743 XSETFASTINT (start, BEGV);
4744 XSETFASTINT (end, ZV);
4745 annotations = Qnil;
4747 Flength (res); /* Check basic validity of return value */
4748 annotations = merge (annotations, res, Qcar_less_than_car);
4749 p = XCDR (p);
4752 /* Now do the same for annotation functions implied by the file-format */
4753 if (auto_saving && (!EQ (BVAR (current_buffer, auto_save_file_format), Qt)))
4754 p = BVAR (current_buffer, auto_save_file_format);
4755 else
4756 p = BVAR (current_buffer, file_format);
4757 for (i = 0; CONSP (p); p = XCDR (p), ++i)
4759 struct buffer *given_buffer = current_buffer;
4761 Vwrite_region_annotations_so_far = annotations;
4763 /* Value is either a list of annotations or nil if the function
4764 has written annotations to a temporary buffer, which is now
4765 current. */
4766 res = call5 (Qformat_annotate_function, XCAR (p), start, end,
4767 original_buffer, make_number (i));
4768 if (current_buffer != given_buffer)
4770 XSETFASTINT (start, BEGV);
4771 XSETFASTINT (end, ZV);
4772 annotations = Qnil;
4775 if (CONSP (res))
4776 annotations = merge (annotations, res, Qcar_less_than_car);
4779 UNGCPRO;
4780 return annotations;
4784 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
4785 If STRING is nil, POS is the character position in the current buffer.
4786 Intersperse with them the annotations from *ANNOT
4787 which fall within the range of POS to POS + NCHARS,
4788 each at its appropriate position.
4790 We modify *ANNOT by discarding elements as we use them up.
4792 The return value is negative in case of system call failure. */
4794 static int
4795 a_write (int desc, Lisp_Object string, int pos, register int nchars, Lisp_Object *annot, struct coding_system *coding)
4797 Lisp_Object tem;
4798 int nextpos;
4799 int lastpos = pos + nchars;
4801 while (NILP (*annot) || CONSP (*annot))
4803 tem = Fcar_safe (Fcar (*annot));
4804 nextpos = pos - 1;
4805 if (INTEGERP (tem))
4806 nextpos = XFASTINT (tem);
4808 /* If there are no more annotations in this range,
4809 output the rest of the range all at once. */
4810 if (! (nextpos >= pos && nextpos <= lastpos))
4811 return e_write (desc, string, pos, lastpos, coding);
4813 /* Output buffer text up to the next annotation's position. */
4814 if (nextpos > pos)
4816 if (0 > e_write (desc, string, pos, nextpos, coding))
4817 return -1;
4818 pos = nextpos;
4820 /* Output the annotation. */
4821 tem = Fcdr (Fcar (*annot));
4822 if (STRINGP (tem))
4824 if (0 > e_write (desc, tem, 0, SCHARS (tem), coding))
4825 return -1;
4827 *annot = Fcdr (*annot);
4829 return 0;
4833 /* Write text in the range START and END into descriptor DESC,
4834 encoding them with coding system CODING. If STRING is nil, START
4835 and END are character positions of the current buffer, else they
4836 are indexes to the string STRING. */
4838 static int
4839 e_write (int desc, Lisp_Object string, int start, int end, struct coding_system *coding)
4841 if (STRINGP (string))
4843 start = 0;
4844 end = SCHARS (string);
4847 /* We used to have a code for handling selective display here. But,
4848 now it is handled within encode_coding. */
4850 while (start < end)
4852 if (STRINGP (string))
4854 coding->src_multibyte = SCHARS (string) < SBYTES (string);
4855 if (CODING_REQUIRE_ENCODING (coding))
4857 encode_coding_object (coding, string,
4858 start, string_char_to_byte (string, start),
4859 end, string_char_to_byte (string, end), Qt);
4861 else
4863 coding->dst_object = string;
4864 coding->consumed_char = SCHARS (string);
4865 coding->produced = SBYTES (string);
4868 else
4870 int start_byte = CHAR_TO_BYTE (start);
4871 int end_byte = CHAR_TO_BYTE (end);
4873 coding->src_multibyte = (end - start) < (end_byte - start_byte);
4874 if (CODING_REQUIRE_ENCODING (coding))
4876 encode_coding_object (coding, Fcurrent_buffer (),
4877 start, start_byte, end, end_byte, Qt);
4879 else
4881 coding->dst_object = Qnil;
4882 coding->dst_pos_byte = start_byte;
4883 if (start >= GPT || end <= GPT)
4885 coding->consumed_char = end - start;
4886 coding->produced = end_byte - start_byte;
4888 else
4890 coding->consumed_char = GPT - start;
4891 coding->produced = GPT_BYTE - start_byte;
4896 if (coding->produced > 0)
4898 coding->produced -=
4899 emacs_write (desc,
4900 STRINGP (coding->dst_object)
4901 ? SSDATA (coding->dst_object)
4902 : (char *) BYTE_POS_ADDR (coding->dst_pos_byte),
4903 coding->produced);
4905 if (coding->produced)
4906 return -1;
4908 start += coding->consumed_char;
4911 return 0;
4914 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
4915 Sverify_visited_file_modtime, 0, 1, 0,
4916 doc: /* Return t if last mod time of BUF's visited file matches what BUF records.
4917 This means that the file has not been changed since it was visited or saved.
4918 If BUF is omitted or nil, it defaults to the current buffer.
4919 See Info node `(elisp)Modification Time' for more details. */)
4920 (Lisp_Object buf)
4922 struct buffer *b;
4923 struct stat st;
4924 Lisp_Object handler;
4925 Lisp_Object filename;
4927 if (NILP (buf))
4928 b = current_buffer;
4929 else
4931 CHECK_BUFFER (buf);
4932 b = XBUFFER (buf);
4935 if (!STRINGP (BVAR (b, filename))) return Qt;
4936 if (b->modtime == 0) return Qt;
4938 /* If the file name has special constructs in it,
4939 call the corresponding file handler. */
4940 handler = Ffind_file_name_handler (BVAR (b, filename),
4941 Qverify_visited_file_modtime);
4942 if (!NILP (handler))
4943 return call2 (handler, Qverify_visited_file_modtime, buf);
4945 filename = ENCODE_FILE (BVAR (b, filename));
4947 if (stat (SSDATA (filename), &st) < 0)
4949 /* If the file doesn't exist now and didn't exist before,
4950 we say that it isn't modified, provided the error is a tame one. */
4951 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
4952 st.st_mtime = -1;
4953 else
4954 st.st_mtime = 0;
4956 if ((st.st_mtime == b->modtime
4957 /* If both are positive, accept them if they are off by one second. */
4958 || (st.st_mtime > 0 && b->modtime > 0
4959 && (st.st_mtime == b->modtime + 1
4960 || st.st_mtime == b->modtime - 1)))
4961 && (st.st_size == b->modtime_size
4962 || b->modtime_size < 0))
4963 return Qt;
4964 return Qnil;
4967 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
4968 Sclear_visited_file_modtime, 0, 0, 0,
4969 doc: /* Clear out records of last mod time of visited file.
4970 Next attempt to save will certainly not complain of a discrepancy. */)
4971 (void)
4973 current_buffer->modtime = 0;
4974 current_buffer->modtime_size = -1;
4975 return Qnil;
4978 DEFUN ("visited-file-modtime", Fvisited_file_modtime,
4979 Svisited_file_modtime, 0, 0, 0,
4980 doc: /* Return the current buffer's recorded visited file modification time.
4981 The value is a list of the form (HIGH LOW), like the time values
4982 that `file-attributes' returns. If the current buffer has no recorded
4983 file modification time, this function returns 0.
4984 See Info node `(elisp)Modification Time' for more details. */)
4985 (void)
4987 if (! current_buffer->modtime)
4988 return make_number (0);
4989 return make_time ((time_t) current_buffer->modtime);
4992 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
4993 Sset_visited_file_modtime, 0, 1, 0,
4994 doc: /* Update buffer's recorded modification time from the visited file's time.
4995 Useful if the buffer was not read from the file normally
4996 or if the file itself has been changed for some known benign reason.
4997 An argument specifies the modification time value to use
4998 \(instead of that of the visited file), in the form of a list
4999 \(HIGH . LOW) or (HIGH LOW). */)
5000 (Lisp_Object time_list)
5002 if (!NILP (time_list))
5004 current_buffer->modtime = cons_to_long (time_list);
5005 current_buffer->modtime_size = -1;
5007 else
5009 register Lisp_Object filename;
5010 struct stat st;
5011 Lisp_Object handler;
5013 filename = Fexpand_file_name (BVAR (current_buffer, filename), Qnil);
5015 /* If the file name has special constructs in it,
5016 call the corresponding file handler. */
5017 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
5018 if (!NILP (handler))
5019 /* The handler can find the file name the same way we did. */
5020 return call2 (handler, Qset_visited_file_modtime, Qnil);
5022 filename = ENCODE_FILE (filename);
5024 if (stat (SSDATA (filename), &st) >= 0)
5026 current_buffer->modtime = st.st_mtime;
5027 current_buffer->modtime_size = st.st_size;
5031 return Qnil;
5034 static Lisp_Object
5035 auto_save_error (Lisp_Object error_val)
5037 Lisp_Object args[3], msg;
5038 int i, nbytes;
5039 struct gcpro gcpro1;
5040 char *msgbuf;
5041 USE_SAFE_ALLOCA;
5043 auto_save_error_occurred = 1;
5045 ring_bell (XFRAME (selected_frame));
5047 args[0] = build_string ("Auto-saving %s: %s");
5048 args[1] = BVAR (current_buffer, name);
5049 args[2] = Ferror_message_string (error_val);
5050 msg = Fformat (3, args);
5051 GCPRO1 (msg);
5052 nbytes = SBYTES (msg);
5053 SAFE_ALLOCA (msgbuf, char *, nbytes);
5054 memcpy (msgbuf, SDATA (msg), nbytes);
5056 for (i = 0; i < 3; ++i)
5058 if (i == 0)
5059 message2 (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5060 else
5061 message2_nolog (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5062 Fsleep_for (make_number (1), Qnil);
5065 SAFE_FREE ();
5066 UNGCPRO;
5067 return Qnil;
5070 static Lisp_Object
5071 auto_save_1 (void)
5073 struct stat st;
5074 Lisp_Object modes;
5076 auto_save_mode_bits = 0666;
5078 /* Get visited file's mode to become the auto save file's mode. */
5079 if (! NILP (BVAR (current_buffer, filename)))
5081 if (stat (SSDATA (BVAR (current_buffer, filename)), &st) >= 0)
5082 /* But make sure we can overwrite it later! */
5083 auto_save_mode_bits = st.st_mode | 0600;
5084 else if ((modes = Ffile_modes (BVAR (current_buffer, filename)),
5085 INTEGERP (modes)))
5086 /* Remote files don't cooperate with stat. */
5087 auto_save_mode_bits = XINT (modes) | 0600;
5090 return
5091 Fwrite_region (Qnil, Qnil, BVAR (current_buffer, auto_save_file_name), Qnil,
5092 NILP (Vauto_save_visited_file_name) ? Qlambda : Qt,
5093 Qnil, Qnil);
5096 static Lisp_Object
5097 do_auto_save_unwind (Lisp_Object arg) /* used as unwind-protect function */
5100 FILE *stream = (FILE *) XSAVE_VALUE (arg)->pointer;
5101 auto_saving = 0;
5102 if (stream != NULL)
5104 BLOCK_INPUT;
5105 fclose (stream);
5106 UNBLOCK_INPUT;
5108 return Qnil;
5111 static Lisp_Object
5112 do_auto_save_unwind_1 (Lisp_Object value) /* used as unwind-protect function */
5115 minibuffer_auto_raise = XINT (value);
5116 return Qnil;
5119 static Lisp_Object
5120 do_auto_save_make_dir (Lisp_Object dir)
5122 Lisp_Object mode;
5124 call2 (Qmake_directory, dir, Qt);
5125 XSETFASTINT (mode, 0700);
5126 return Fset_file_modes (dir, mode);
5129 static Lisp_Object
5130 do_auto_save_eh (Lisp_Object ignore)
5132 return Qnil;
5135 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
5136 doc: /* Auto-save all buffers that need it.
5137 This is all buffers that have auto-saving enabled
5138 and are changed since last auto-saved.
5139 Auto-saving writes the buffer into a file
5140 so that your editing is not lost if the system crashes.
5141 This file is not the file you visited; that changes only when you save.
5142 Normally we run the normal hook `auto-save-hook' before saving.
5144 A non-nil NO-MESSAGE argument means do not print any message if successful.
5145 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5146 (Lisp_Object no_message, Lisp_Object current_only)
5148 struct buffer *old = current_buffer, *b;
5149 Lisp_Object tail, buf, hook;
5150 int auto_saved = 0;
5151 int do_handled_files;
5152 Lisp_Object oquit;
5153 FILE *stream = NULL;
5154 int count = SPECPDL_INDEX ();
5155 int orig_minibuffer_auto_raise = minibuffer_auto_raise;
5156 int old_message_p = 0;
5157 struct gcpro gcpro1, gcpro2;
5159 if (max_specpdl_size < specpdl_size + 40)
5160 max_specpdl_size = specpdl_size + 40;
5162 if (minibuf_level)
5163 no_message = Qt;
5165 if (NILP (no_message))
5167 old_message_p = push_message ();
5168 record_unwind_protect (pop_message_unwind, Qnil);
5171 /* Ordinarily don't quit within this function,
5172 but don't make it impossible to quit (in case we get hung in I/O). */
5173 oquit = Vquit_flag;
5174 Vquit_flag = Qnil;
5176 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5177 point to non-strings reached from Vbuffer_alist. */
5179 hook = intern ("auto-save-hook");
5180 Frun_hooks (1, &hook);
5182 if (STRINGP (Vauto_save_list_file_name))
5184 Lisp_Object listfile;
5186 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
5188 /* Don't try to create the directory when shutting down Emacs,
5189 because creating the directory might signal an error, and
5190 that would leave Emacs in a strange state. */
5191 if (!NILP (Vrun_hooks))
5193 Lisp_Object dir;
5194 dir = Qnil;
5195 GCPRO2 (dir, listfile);
5196 dir = Ffile_name_directory (listfile);
5197 if (NILP (Ffile_directory_p (dir)))
5198 internal_condition_case_1 (do_auto_save_make_dir,
5199 dir, Fcons (Fcons (Qfile_error, Qnil), Qnil),
5200 do_auto_save_eh);
5201 UNGCPRO;
5204 stream = fopen (SSDATA (listfile), "w");
5207 record_unwind_protect (do_auto_save_unwind,
5208 make_save_value (stream, 0));
5209 record_unwind_protect (do_auto_save_unwind_1,
5210 make_number (minibuffer_auto_raise));
5211 minibuffer_auto_raise = 0;
5212 auto_saving = 1;
5213 auto_save_error_occurred = 0;
5215 /* On first pass, save all files that don't have handlers.
5216 On second pass, save all files that do have handlers.
5218 If Emacs is crashing, the handlers may tweak what is causing
5219 Emacs to crash in the first place, and it would be a shame if
5220 Emacs failed to autosave perfectly ordinary files because it
5221 couldn't handle some ange-ftp'd file. */
5223 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
5224 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
5226 buf = XCDR (XCAR (tail));
5227 b = XBUFFER (buf);
5229 /* Record all the buffers that have auto save mode
5230 in the special file that lists them. For each of these buffers,
5231 Record visited name (if any) and auto save name. */
5232 if (STRINGP (BVAR (b, auto_save_file_name))
5233 && stream != NULL && do_handled_files == 0)
5235 BLOCK_INPUT;
5236 if (!NILP (BVAR (b, filename)))
5238 fwrite (SDATA (BVAR (b, filename)), 1,
5239 SBYTES (BVAR (b, filename)), stream);
5241 putc ('\n', stream);
5242 fwrite (SDATA (BVAR (b, auto_save_file_name)), 1,
5243 SBYTES (BVAR (b, auto_save_file_name)), stream);
5244 putc ('\n', stream);
5245 UNBLOCK_INPUT;
5248 if (!NILP (current_only)
5249 && b != current_buffer)
5250 continue;
5252 /* Don't auto-save indirect buffers.
5253 The base buffer takes care of it. */
5254 if (b->base_buffer)
5255 continue;
5257 /* Check for auto save enabled
5258 and file changed since last auto save
5259 and file changed since last real save. */
5260 if (STRINGP (BVAR (b, auto_save_file_name))
5261 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
5262 && BUF_AUTOSAVE_MODIFF (b) < BUF_MODIFF (b)
5263 /* -1 means we've turned off autosaving for a while--see below. */
5264 && XINT (BVAR (b, save_length)) >= 0
5265 && (do_handled_files
5266 || NILP (Ffind_file_name_handler (BVAR (b, auto_save_file_name),
5267 Qwrite_region))))
5269 EMACS_TIME before_time, after_time;
5271 EMACS_GET_TIME (before_time);
5273 /* If we had a failure, don't try again for 20 minutes. */
5274 if (b->auto_save_failure_time >= 0
5275 && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200)
5276 continue;
5278 set_buffer_internal (b);
5279 if (NILP (Vauto_save_include_big_deletions)
5280 && (XFASTINT (BVAR (b, save_length)) * 10
5281 > (BUF_Z (b) - BUF_BEG (b)) * 13)
5282 /* A short file is likely to change a large fraction;
5283 spare the user annoying messages. */
5284 && XFASTINT (BVAR (b, save_length)) > 5000
5285 /* These messages are frequent and annoying for `*mail*'. */
5286 && !EQ (BVAR (b, filename), Qnil)
5287 && NILP (no_message))
5289 /* It has shrunk too much; turn off auto-saving here. */
5290 minibuffer_auto_raise = orig_minibuffer_auto_raise;
5291 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5292 BVAR (b, name), 1);
5293 minibuffer_auto_raise = 0;
5294 /* Turn off auto-saving until there's a real save,
5295 and prevent any more warnings. */
5296 XSETINT (BVAR (b, save_length), -1);
5297 Fsleep_for (make_number (1), Qnil);
5298 continue;
5300 if (!auto_saved && NILP (no_message))
5301 message1 ("Auto-saving...");
5302 internal_condition_case (auto_save_1, Qt, auto_save_error);
5303 auto_saved++;
5304 BUF_AUTOSAVE_MODIFF (b) = BUF_MODIFF (b);
5305 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5306 set_buffer_internal (old);
5308 EMACS_GET_TIME (after_time);
5310 /* If auto-save took more than 60 seconds,
5311 assume it was an NFS failure that got a timeout. */
5312 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
5313 b->auto_save_failure_time = EMACS_SECS (after_time);
5317 /* Prevent another auto save till enough input events come in. */
5318 record_auto_save ();
5320 if (auto_saved && NILP (no_message))
5322 if (old_message_p)
5324 /* If we are going to restore an old message,
5325 give time to read ours. */
5326 sit_for (make_number (1), 0, 0);
5327 restore_message ();
5329 else if (!auto_save_error_occurred)
5330 /* Don't overwrite the error message if an error occurred.
5331 If we displayed a message and then restored a state
5332 with no message, leave a "done" message on the screen. */
5333 message1 ("Auto-saving...done");
5336 Vquit_flag = oquit;
5338 /* This restores the message-stack status. */
5339 unbind_to (count, Qnil);
5340 return Qnil;
5343 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
5344 Sset_buffer_auto_saved, 0, 0, 0,
5345 doc: /* Mark current buffer as auto-saved with its current text.
5346 No auto-save file will be written until the buffer changes again. */)
5347 (void)
5349 /* FIXME: This should not be called in indirect buffers, since
5350 they're not autosaved. */
5351 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
5352 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5353 current_buffer->auto_save_failure_time = -1;
5354 return Qnil;
5357 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
5358 Sclear_buffer_auto_save_failure, 0, 0, 0,
5359 doc: /* Clear any record of a recent auto-save failure in the current buffer. */)
5360 (void)
5362 current_buffer->auto_save_failure_time = -1;
5363 return Qnil;
5366 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
5367 0, 0, 0,
5368 doc: /* Return t if current buffer has been auto-saved recently.
5369 More precisely, if it has been auto-saved since last read from or saved
5370 in the visited file. If the buffer has no visited file,
5371 then any auto-save counts as "recent". */)
5372 (void)
5374 /* FIXME: maybe we should return nil for indirect buffers since
5375 they're never autosaved. */
5376 return (SAVE_MODIFF < BUF_AUTOSAVE_MODIFF (current_buffer) ? Qt : Qnil);
5379 /* Reading and completing file names */
5381 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p,
5382 Snext_read_file_uses_dialog_p, 0, 0, 0,
5383 doc: /* Return t if a call to `read-file-name' will use a dialog.
5384 The return value is only relevant for a call to `read-file-name' that happens
5385 before any other event (mouse or keypress) is handled. */)
5386 (void)
5388 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK)
5389 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
5390 && use_dialog_box
5391 && use_file_dialog
5392 && have_menus_p ())
5393 return Qt;
5394 #endif
5395 return Qnil;
5398 Lisp_Object
5399 Fread_file_name (Lisp_Object prompt, Lisp_Object dir, Lisp_Object default_filename, Lisp_Object mustmatch, Lisp_Object initial, Lisp_Object predicate)
5401 struct gcpro gcpro1;
5402 Lisp_Object args[7];
5404 GCPRO1 (default_filename);
5405 args[0] = intern ("read-file-name");
5406 args[1] = prompt;
5407 args[2] = dir;
5408 args[3] = default_filename;
5409 args[4] = mustmatch;
5410 args[5] = initial;
5411 args[6] = predicate;
5412 RETURN_UNGCPRO (Ffuncall (7, args));
5416 void
5417 syms_of_fileio (void)
5419 Qoperations = intern_c_string ("operations");
5420 Qexpand_file_name = intern_c_string ("expand-file-name");
5421 Qsubstitute_in_file_name = intern_c_string ("substitute-in-file-name");
5422 Qdirectory_file_name = intern_c_string ("directory-file-name");
5423 Qfile_name_directory = intern_c_string ("file-name-directory");
5424 Qfile_name_nondirectory = intern_c_string ("file-name-nondirectory");
5425 Qunhandled_file_name_directory = intern_c_string ("unhandled-file-name-directory");
5426 Qfile_name_as_directory = intern_c_string ("file-name-as-directory");
5427 Qcopy_file = intern_c_string ("copy-file");
5428 Qmake_directory_internal = intern_c_string ("make-directory-internal");
5429 Qmake_directory = intern_c_string ("make-directory");
5430 Qdelete_directory_internal = intern_c_string ("delete-directory-internal");
5431 Qdelete_file = intern_c_string ("delete-file");
5432 Qrename_file = intern_c_string ("rename-file");
5433 Qadd_name_to_file = intern_c_string ("add-name-to-file");
5434 Qmake_symbolic_link = intern_c_string ("make-symbolic-link");
5435 Qfile_exists_p = intern_c_string ("file-exists-p");
5436 Qfile_executable_p = intern_c_string ("file-executable-p");
5437 Qfile_readable_p = intern_c_string ("file-readable-p");
5438 Qfile_writable_p = intern_c_string ("file-writable-p");
5439 Qfile_symlink_p = intern_c_string ("file-symlink-p");
5440 Qaccess_file = intern_c_string ("access-file");
5441 Qfile_directory_p = intern_c_string ("file-directory-p");
5442 Qfile_regular_p = intern_c_string ("file-regular-p");
5443 Qfile_accessible_directory_p = intern_c_string ("file-accessible-directory-p");
5444 Qfile_modes = intern_c_string ("file-modes");
5445 Qset_file_modes = intern_c_string ("set-file-modes");
5446 Qset_file_times = intern_c_string ("set-file-times");
5447 Qfile_selinux_context = intern_c_string("file-selinux-context");
5448 Qset_file_selinux_context = intern_c_string("set-file-selinux-context");
5449 Qfile_newer_than_file_p = intern_c_string ("file-newer-than-file-p");
5450 Qinsert_file_contents = intern_c_string ("insert-file-contents");
5451 Qwrite_region = intern_c_string ("write-region");
5452 Qverify_visited_file_modtime = intern_c_string ("verify-visited-file-modtime");
5453 Qset_visited_file_modtime = intern_c_string ("set-visited-file-modtime");
5454 Qauto_save_coding = intern_c_string ("auto-save-coding");
5456 staticpro (&Qoperations);
5457 staticpro (&Qexpand_file_name);
5458 staticpro (&Qsubstitute_in_file_name);
5459 staticpro (&Qdirectory_file_name);
5460 staticpro (&Qfile_name_directory);
5461 staticpro (&Qfile_name_nondirectory);
5462 staticpro (&Qunhandled_file_name_directory);
5463 staticpro (&Qfile_name_as_directory);
5464 staticpro (&Qcopy_file);
5465 staticpro (&Qmake_directory_internal);
5466 staticpro (&Qmake_directory);
5467 staticpro (&Qdelete_directory_internal);
5468 staticpro (&Qdelete_file);
5469 staticpro (&Qrename_file);
5470 staticpro (&Qadd_name_to_file);
5471 staticpro (&Qmake_symbolic_link);
5472 staticpro (&Qfile_exists_p);
5473 staticpro (&Qfile_executable_p);
5474 staticpro (&Qfile_readable_p);
5475 staticpro (&Qfile_writable_p);
5476 staticpro (&Qaccess_file);
5477 staticpro (&Qfile_symlink_p);
5478 staticpro (&Qfile_directory_p);
5479 staticpro (&Qfile_regular_p);
5480 staticpro (&Qfile_accessible_directory_p);
5481 staticpro (&Qfile_modes);
5482 staticpro (&Qset_file_modes);
5483 staticpro (&Qset_file_times);
5484 staticpro (&Qfile_selinux_context);
5485 staticpro (&Qset_file_selinux_context);
5486 staticpro (&Qfile_newer_than_file_p);
5487 staticpro (&Qinsert_file_contents);
5488 staticpro (&Qwrite_region);
5489 staticpro (&Qverify_visited_file_modtime);
5490 staticpro (&Qset_visited_file_modtime);
5491 staticpro (&Qauto_save_coding);
5493 Qfile_name_history = intern_c_string ("file-name-history");
5494 Fset (Qfile_name_history, Qnil);
5495 staticpro (&Qfile_name_history);
5497 Qfile_error = intern_c_string ("file-error");
5498 staticpro (&Qfile_error);
5499 Qfile_already_exists = intern_c_string ("file-already-exists");
5500 staticpro (&Qfile_already_exists);
5501 Qfile_date_error = intern_c_string ("file-date-error");
5502 staticpro (&Qfile_date_error);
5503 Qexcl = intern_c_string ("excl");
5504 staticpro (&Qexcl);
5506 DEFVAR_LISP ("file-name-coding-system", Vfile_name_coding_system,
5507 doc: /* *Coding system for encoding file names.
5508 If it is nil, `default-file-name-coding-system' (which see) is used. */);
5509 Vfile_name_coding_system = Qnil;
5511 DEFVAR_LISP ("default-file-name-coding-system",
5512 Vdefault_file_name_coding_system,
5513 doc: /* Default coding system for encoding file names.
5514 This variable is used only when `file-name-coding-system' is nil.
5516 This variable is set/changed by the command `set-language-environment'.
5517 User should not set this variable manually,
5518 instead use `file-name-coding-system' to get a constant encoding
5519 of file names regardless of the current language environment. */);
5520 Vdefault_file_name_coding_system = Qnil;
5522 Qformat_decode = intern_c_string ("format-decode");
5523 staticpro (&Qformat_decode);
5524 Qformat_annotate_function = intern_c_string ("format-annotate-function");
5525 staticpro (&Qformat_annotate_function);
5526 Qafter_insert_file_set_coding = intern_c_string ("after-insert-file-set-coding");
5527 staticpro (&Qafter_insert_file_set_coding);
5529 Qcar_less_than_car = intern_c_string ("car-less-than-car");
5530 staticpro (&Qcar_less_than_car);
5532 Fput (Qfile_error, Qerror_conditions,
5533 Fpurecopy (list2 (Qfile_error, Qerror)));
5534 Fput (Qfile_error, Qerror_message,
5535 make_pure_c_string ("File error"));
5537 Fput (Qfile_already_exists, Qerror_conditions,
5538 Fpurecopy (list3 (Qfile_already_exists, Qfile_error, Qerror)));
5539 Fput (Qfile_already_exists, Qerror_message,
5540 make_pure_c_string ("File already exists"));
5542 Fput (Qfile_date_error, Qerror_conditions,
5543 Fpurecopy (list3 (Qfile_date_error, Qfile_error, Qerror)));
5544 Fput (Qfile_date_error, Qerror_message,
5545 make_pure_c_string ("Cannot set file date"));
5547 DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist,
5548 doc: /* *Alist of elements (REGEXP . HANDLER) for file names handled specially.
5549 If a file name matches REGEXP, then all I/O on that file is done by calling
5550 HANDLER.
5552 The first argument given to HANDLER is the name of the I/O primitive
5553 to be handled; the remaining arguments are the arguments that were
5554 passed to that primitive. For example, if you do
5555 (file-exists-p FILENAME)
5556 and FILENAME is handled by HANDLER, then HANDLER is called like this:
5557 (funcall HANDLER 'file-exists-p FILENAME)
5558 The function `find-file-name-handler' checks this list for a handler
5559 for its argument. */);
5560 Vfile_name_handler_alist = Qnil;
5562 DEFVAR_LISP ("set-auto-coding-function",
5563 Vset_auto_coding_function,
5564 doc: /* If non-nil, a function to call to decide a coding system of file.
5565 Two arguments are passed to this function: the file name
5566 and the length of a file contents following the point.
5567 This function should return a coding system to decode the file contents.
5568 It should check the file name against `auto-coding-alist'.
5569 If no coding system is decided, it should check a coding system
5570 specified in the heading lines with the format:
5571 -*- ... coding: CODING-SYSTEM; ... -*-
5572 or local variable spec of the tailing lines with `coding:' tag. */);
5573 Vset_auto_coding_function = Qnil;
5575 DEFVAR_LISP ("after-insert-file-functions", Vafter_insert_file_functions,
5576 doc: /* A list of functions to be called at the end of `insert-file-contents'.
5577 Each is passed one argument, the number of characters inserted,
5578 with point at the start of the inserted text. Each function
5579 should leave point the same, and return the new character count.
5580 If `insert-file-contents' is intercepted by a handler from
5581 `file-name-handler-alist', that handler is responsible for calling the
5582 functions in `after-insert-file-functions' if appropriate. */);
5583 Vafter_insert_file_functions = Qnil;
5585 DEFVAR_LISP ("write-region-annotate-functions", Vwrite_region_annotate_functions,
5586 doc: /* A list of functions to be called at the start of `write-region'.
5587 Each is passed two arguments, START and END as for `write-region'.
5588 These are usually two numbers but not always; see the documentation
5589 for `write-region'. The function should return a list of pairs
5590 of the form (POSITION . STRING), consisting of strings to be effectively
5591 inserted at the specified positions of the file being written (1 means to
5592 insert before the first byte written). The POSITIONs must be sorted into
5593 increasing order.
5595 If there are several annotation functions, the lists returned by these
5596 functions are merged destructively. As each annotation function runs,
5597 the variable `write-region-annotations-so-far' contains a list of all
5598 annotations returned by previous annotation functions.
5600 An annotation function can return with a different buffer current.
5601 Doing so removes the annotations returned by previous functions, and
5602 resets START and END to `point-min' and `point-max' of the new buffer.
5604 After `write-region' completes, Emacs calls the function stored in
5605 `write-region-post-annotation-function', once for each buffer that was
5606 current when building the annotations (i.e., at least once), with that
5607 buffer current. */);
5608 Vwrite_region_annotate_functions = Qnil;
5609 staticpro (&Qwrite_region_annotate_functions);
5610 Qwrite_region_annotate_functions
5611 = intern_c_string ("write-region-annotate-functions");
5613 DEFVAR_LISP ("write-region-post-annotation-function",
5614 Vwrite_region_post_annotation_function,
5615 doc: /* Function to call after `write-region' completes.
5616 The function is called with no arguments. If one or more of the
5617 annotation functions in `write-region-annotate-functions' changed the
5618 current buffer, the function stored in this variable is called for
5619 each of those additional buffers as well, in addition to the original
5620 buffer. The relevant buffer is current during each function call. */);
5621 Vwrite_region_post_annotation_function = Qnil;
5622 staticpro (&Vwrite_region_annotation_buffers);
5624 DEFVAR_LISP ("write-region-annotations-so-far",
5625 Vwrite_region_annotations_so_far,
5626 doc: /* When an annotation function is called, this holds the previous annotations.
5627 These are the annotations made by other annotation functions
5628 that were already called. See also `write-region-annotate-functions'. */);
5629 Vwrite_region_annotations_so_far = Qnil;
5631 DEFVAR_LISP ("inhibit-file-name-handlers", Vinhibit_file_name_handlers,
5632 doc: /* A list of file name handlers that temporarily should not be used.
5633 This applies only to the operation `inhibit-file-name-operation'. */);
5634 Vinhibit_file_name_handlers = Qnil;
5636 DEFVAR_LISP ("inhibit-file-name-operation", Vinhibit_file_name_operation,
5637 doc: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
5638 Vinhibit_file_name_operation = Qnil;
5640 DEFVAR_LISP ("auto-save-list-file-name", Vauto_save_list_file_name,
5641 doc: /* File name in which we write a list of all auto save file names.
5642 This variable is initialized automatically from `auto-save-list-file-prefix'
5643 shortly after Emacs reads your `.emacs' file, if you have not yet given it
5644 a non-nil value. */);
5645 Vauto_save_list_file_name = Qnil;
5647 DEFVAR_LISP ("auto-save-visited-file-name", Vauto_save_visited_file_name,
5648 doc: /* Non-nil says auto-save a buffer in the file it is visiting, when practical.
5649 Normally auto-save files are written under other names. */);
5650 Vauto_save_visited_file_name = Qnil;
5652 DEFVAR_LISP ("auto-save-include-big-deletions", Vauto_save_include_big_deletions,
5653 doc: /* If non-nil, auto-save even if a large part of the text is deleted.
5654 If nil, deleting a substantial portion of the text disables auto-save
5655 in the buffer; this is the default behavior, because the auto-save
5656 file is usually more useful if it contains the deleted text. */);
5657 Vauto_save_include_big_deletions = Qnil;
5659 #ifdef HAVE_FSYNC
5660 DEFVAR_BOOL ("write-region-inhibit-fsync", write_region_inhibit_fsync,
5661 doc: /* *Non-nil means don't call fsync in `write-region'.
5662 This variable affects calls to `write-region' as well as save commands.
5663 A non-nil value may result in data loss! */);
5664 write_region_inhibit_fsync = 0;
5665 #endif
5667 DEFVAR_BOOL ("delete-by-moving-to-trash", delete_by_moving_to_trash,
5668 doc: /* Specifies whether to use the system's trash can.
5669 When non-nil, certain file deletion commands use the function
5670 `move-file-to-trash' instead of deleting files outright.
5671 This includes interactive calls to `delete-file' and
5672 `delete-directory' and the Dired deletion commands. */);
5673 delete_by_moving_to_trash = 0;
5674 Qdelete_by_moving_to_trash = intern_c_string ("delete-by-moving-to-trash");
5675 Qmove_file_to_trash = intern_c_string ("move-file-to-trash");
5676 staticpro (&Qmove_file_to_trash);
5677 Qcopy_directory = intern_c_string ("copy-directory");
5678 staticpro (&Qcopy_directory);
5679 Qdelete_directory = intern_c_string ("delete-directory");
5680 staticpro (&Qdelete_directory);
5682 defsubr (&Sfind_file_name_handler);
5683 defsubr (&Sfile_name_directory);
5684 defsubr (&Sfile_name_nondirectory);
5685 defsubr (&Sunhandled_file_name_directory);
5686 defsubr (&Sfile_name_as_directory);
5687 defsubr (&Sdirectory_file_name);
5688 defsubr (&Smake_temp_name);
5689 defsubr (&Sexpand_file_name);
5690 defsubr (&Ssubstitute_in_file_name);
5691 defsubr (&Scopy_file);
5692 defsubr (&Smake_directory_internal);
5693 defsubr (&Sdelete_directory_internal);
5694 defsubr (&Sdelete_file);
5695 defsubr (&Srename_file);
5696 defsubr (&Sadd_name_to_file);
5697 defsubr (&Smake_symbolic_link);
5698 defsubr (&Sfile_name_absolute_p);
5699 defsubr (&Sfile_exists_p);
5700 defsubr (&Sfile_executable_p);
5701 defsubr (&Sfile_readable_p);
5702 defsubr (&Sfile_writable_p);
5703 defsubr (&Saccess_file);
5704 defsubr (&Sfile_symlink_p);
5705 defsubr (&Sfile_directory_p);
5706 defsubr (&Sfile_accessible_directory_p);
5707 defsubr (&Sfile_regular_p);
5708 defsubr (&Sfile_modes);
5709 defsubr (&Sset_file_modes);
5710 defsubr (&Sset_file_times);
5711 defsubr (&Sfile_selinux_context);
5712 defsubr (&Sset_file_selinux_context);
5713 defsubr (&Sset_default_file_modes);
5714 defsubr (&Sdefault_file_modes);
5715 defsubr (&Sfile_newer_than_file_p);
5716 defsubr (&Sinsert_file_contents);
5717 defsubr (&Swrite_region);
5718 defsubr (&Scar_less_than_car);
5719 defsubr (&Sverify_visited_file_modtime);
5720 defsubr (&Sclear_visited_file_modtime);
5721 defsubr (&Svisited_file_modtime);
5722 defsubr (&Sset_visited_file_modtime);
5723 defsubr (&Sdo_auto_save);
5724 defsubr (&Sset_buffer_auto_saved);
5725 defsubr (&Sclear_buffer_auto_save_failure);
5726 defsubr (&Srecent_auto_save_p);
5728 defsubr (&Snext_read_file_uses_dialog_p);
5730 #ifdef HAVE_SYNC
5731 defsubr (&Sunix_sync);
5732 #endif