Simplify code for HP machines.
[emacs.git] / src / fileio.c
blobc62d5724efff1834fccfd392d586d8ddd1806584
1 /* File IO for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1996,
3 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
22 #include <limits.h>
24 #ifdef HAVE_FCNTL_H
25 #include <fcntl.h>
26 #endif
28 #include <stdio.h>
29 #include <sys/types.h>
30 #include <sys/stat.h>
31 #include <setjmp.h>
33 #ifdef HAVE_UNISTD_H
34 #include <unistd.h>
35 #endif
37 #if !defined (S_ISLNK) && defined (S_IFLNK)
38 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
39 #endif
41 #if !defined (S_ISFIFO) && defined (S_IFIFO)
42 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
43 #endif
45 #if !defined (S_ISREG) && defined (S_IFREG)
46 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
47 #endif
49 #ifdef HAVE_PWD_H
50 #include <pwd.h>
51 #endif
53 #include <ctype.h>
54 #include <errno.h>
56 #include "lisp.h"
57 #include "intervals.h"
58 #include "buffer.h"
59 #include "character.h"
60 #include "coding.h"
61 #include "window.h"
62 #include "blockinput.h"
63 #include "frame.h"
64 #include "dispextern.h"
66 #ifdef WINDOWSNT
67 #define NOMINMAX 1
68 #include <windows.h>
69 #include <stdlib.h>
70 #include <fcntl.h>
71 #endif /* not WINDOWSNT */
73 #ifdef MSDOS
74 #include "msdos.h"
75 #include <sys/param.h>
76 #include <fcntl.h>
77 #include <string.h>
78 #endif
80 #ifdef DOS_NT
81 #define CORRECT_DIR_SEPS(s) \
82 do { if ('/' == DIRECTORY_SEP) dostounix_filename (s); \
83 else unixtodos_filename (s); \
84 } while (0)
85 /* On Windows, drive letters must be alphabetic - on DOS, the Netware
86 redirector allows the six letters between 'Z' and 'a' as well. */
87 #ifdef MSDOS
88 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
89 #endif
90 #ifdef WINDOWSNT
91 #define IS_DRIVE(x) isalpha (x)
92 #endif
93 /* Need to lower-case the drive letter, or else expanded
94 filenames will sometimes compare inequal, because
95 `expand-file-name' doesn't always down-case the drive letter. */
96 #define DRIVE_LETTER(x) (tolower (x))
97 #endif
99 #include "systime.h"
101 #ifdef HPUX
102 #include <netio.h>
103 #endif
105 #include "commands.h"
106 extern int use_dialog_box;
107 extern int use_file_dialog;
109 #ifndef O_WRONLY
110 #define O_WRONLY 1
111 #endif
113 #ifndef O_RDONLY
114 #define O_RDONLY 0
115 #endif
117 #ifndef S_ISLNK
118 # define lstat stat
119 #endif
121 #ifndef FILE_SYSTEM_CASE
122 #define FILE_SYSTEM_CASE(filename) (filename)
123 #endif
125 /* Nonzero during writing of auto-save files */
126 int auto_saving;
128 /* Set by auto_save_1 to mode of original file so Fwrite_region will create
129 a new file with the same mode as the original */
130 int auto_save_mode_bits;
132 /* Set by auto_save_1 if an error occurred during the last auto-save. */
133 int auto_save_error_occurred;
135 /* The symbol bound to coding-system-for-read when
136 insert-file-contents is called for recovering a file. This is not
137 an actual coding system name, but just an indicator to tell
138 insert-file-contents to use `emacs-mule' with a special flag for
139 auto saving and recovering a file. */
140 Lisp_Object Qauto_save_coding;
142 /* Coding system for file names, or nil if none. */
143 Lisp_Object Vfile_name_coding_system;
145 /* Coding system for file names used only when
146 Vfile_name_coding_system is nil. */
147 Lisp_Object Vdefault_file_name_coding_system;
149 /* Alist of elements (REGEXP . HANDLER) for file names
150 whose I/O is done with a special handler. */
151 Lisp_Object Vfile_name_handler_alist;
153 /* Property name of a file name handler,
154 which gives a list of operations it handles.. */
155 Lisp_Object Qoperations;
157 /* Lisp functions for translating file formats */
158 Lisp_Object Qformat_decode, Qformat_annotate_function;
160 /* Function to be called to decide a coding system of a reading file. */
161 Lisp_Object Vset_auto_coding_function;
163 /* Functions to be called to process text properties in inserted file. */
164 Lisp_Object Vafter_insert_file_functions;
166 /* Lisp function for setting buffer-file-coding-system and the
167 multibyteness of the current buffer after inserting a file. */
168 Lisp_Object Qafter_insert_file_set_coding;
170 /* Functions to be called to create text property annotations for file. */
171 Lisp_Object Vwrite_region_annotate_functions;
172 Lisp_Object Qwrite_region_annotate_functions;
173 Lisp_Object Vwrite_region_post_annotation_function;
175 /* During build_annotations, each time an annotation function is called,
176 this holds the annotations made by the previous functions. */
177 Lisp_Object Vwrite_region_annotations_so_far;
179 /* Each time an annotation function changes the buffer, the new buffer
180 is added here. */
181 Lisp_Object Vwrite_region_annotation_buffers;
183 /* File name in which we write a list of all our auto save files. */
184 Lisp_Object Vauto_save_list_file_name;
186 /* Whether or not files are auto-saved into themselves. */
187 Lisp_Object Vauto_save_visited_file_name;
189 /* Whether or not to continue auto-saving after a large deletion. */
190 Lisp_Object Vauto_save_include_big_deletions;
192 /* On NT, specifies the directory separator character, used (eg.) when
193 expanding file names. This can be bound to / or \. */
194 Lisp_Object Vdirectory_sep_char;
196 #ifdef HAVE_FSYNC
197 /* Nonzero means skip the call to fsync in Fwrite-region. */
198 int write_region_inhibit_fsync;
199 #endif
201 /* Non-zero means call move-file-to-trash in Fdelete_file or
202 Fdelete_directory_internal. */
203 int delete_by_moving_to_trash;
205 Lisp_Object Qdelete_by_moving_to_trash;
207 /* Lisp function for moving files to trash. */
208 Lisp_Object Qmove_file_to_trash;
210 /* Lisp function for recursively copying directories. */
211 Lisp_Object Qcopy_directory;
213 /* Lisp function for recursively deleting directories. */
214 Lisp_Object Qdelete_directory;
216 extern Lisp_Object Vuser_login_name;
218 #ifdef WINDOWSNT
219 extern Lisp_Object Vw32_get_true_file_attributes;
220 #endif
222 extern int minibuf_level;
224 extern int minibuffer_auto_raise;
226 /* These variables describe handlers that have "already" had a chance
227 to handle the current operation.
229 Vinhibit_file_name_handlers is a list of file name handlers.
230 Vinhibit_file_name_operation is the operation being handled.
231 If we try to handle that operation, we ignore those handlers. */
233 static Lisp_Object Vinhibit_file_name_handlers;
234 static Lisp_Object Vinhibit_file_name_operation;
236 Lisp_Object Qfile_error, Qfile_already_exists, Qfile_date_error;
237 Lisp_Object Qexcl;
238 Lisp_Object Qfile_name_history;
240 Lisp_Object Qcar_less_than_car;
242 static int a_write P_ ((int, Lisp_Object, int, int,
243 Lisp_Object *, struct coding_system *));
244 static int e_write P_ ((int, Lisp_Object, int, int, struct coding_system *));
247 void
248 report_file_error (string, data)
249 const char *string;
250 Lisp_Object data;
252 Lisp_Object errstring;
253 int errorno = errno;
254 char *str;
256 synchronize_system_messages_locale ();
257 str = strerror (errorno);
258 errstring = code_convert_string_norecord (make_unibyte_string (str,
259 strlen (str)),
260 Vlocale_coding_system, 0);
262 while (1)
263 switch (errorno)
265 case EEXIST:
266 xsignal (Qfile_already_exists, Fcons (errstring, data));
267 break;
268 default:
269 /* System error messages are capitalized. Downcase the initial
270 unless it is followed by a slash. (The slash case caters to
271 error messages that begin with "I/O" or, in German, "E/A".) */
272 if (STRING_MULTIBYTE (errstring)
273 && ! EQ (Faref (errstring, make_number (1)), make_number ('/')))
275 int c;
277 str = (char *) SDATA (errstring);
278 c = STRING_CHAR (str);
279 Faset (errstring, make_number (0), make_number (DOWNCASE (c)));
282 xsignal (Qfile_error,
283 Fcons (build_string (string), Fcons (errstring, data)));
287 Lisp_Object
288 close_file_unwind (fd)
289 Lisp_Object fd;
291 emacs_close (XFASTINT (fd));
292 return Qnil;
295 /* Restore point, having saved it as a marker. */
297 static Lisp_Object
298 restore_point_unwind (location)
299 Lisp_Object location;
301 Fgoto_char (location);
302 Fset_marker (location, Qnil, Qnil);
303 return Qnil;
307 Lisp_Object Qexpand_file_name;
308 Lisp_Object Qsubstitute_in_file_name;
309 Lisp_Object Qdirectory_file_name;
310 Lisp_Object Qfile_name_directory;
311 Lisp_Object Qfile_name_nondirectory;
312 Lisp_Object Qunhandled_file_name_directory;
313 Lisp_Object Qfile_name_as_directory;
314 Lisp_Object Qcopy_file;
315 Lisp_Object Qmake_directory_internal;
316 Lisp_Object Qmake_directory;
317 Lisp_Object Qdelete_directory_internal;
318 Lisp_Object Qdelete_file;
319 Lisp_Object Qrename_file;
320 Lisp_Object Qadd_name_to_file;
321 Lisp_Object Qmake_symbolic_link;
322 Lisp_Object Qfile_exists_p;
323 Lisp_Object Qfile_executable_p;
324 Lisp_Object Qfile_readable_p;
325 Lisp_Object Qfile_writable_p;
326 Lisp_Object Qfile_symlink_p;
327 Lisp_Object Qaccess_file;
328 Lisp_Object Qfile_directory_p;
329 Lisp_Object Qfile_regular_p;
330 Lisp_Object Qfile_accessible_directory_p;
331 Lisp_Object Qfile_modes;
332 Lisp_Object Qset_file_modes;
333 Lisp_Object Qset_file_times;
334 Lisp_Object Qfile_newer_than_file_p;
335 Lisp_Object Qinsert_file_contents;
336 Lisp_Object Qwrite_region;
337 Lisp_Object Qverify_visited_file_modtime;
338 Lisp_Object Qset_visited_file_modtime;
340 DEFUN ("find-file-name-handler", Ffind_file_name_handler, Sfind_file_name_handler, 2, 2, 0,
341 doc: /* Return FILENAME's handler function for OPERATION, if it has one.
342 Otherwise, return nil.
343 A file name is handled if one of the regular expressions in
344 `file-name-handler-alist' matches it.
346 If OPERATION equals `inhibit-file-name-operation', then we ignore
347 any handlers that are members of `inhibit-file-name-handlers',
348 but we still do run any other handlers. This lets handlers
349 use the standard functions without calling themselves recursively. */)
350 (filename, operation)
351 Lisp_Object filename, operation;
353 /* This function must not munge the match data. */
354 Lisp_Object chain, inhibited_handlers, result;
355 int pos = -1;
357 result = Qnil;
358 CHECK_STRING (filename);
360 if (EQ (operation, Vinhibit_file_name_operation))
361 inhibited_handlers = Vinhibit_file_name_handlers;
362 else
363 inhibited_handlers = Qnil;
365 for (chain = Vfile_name_handler_alist; CONSP (chain);
366 chain = XCDR (chain))
368 Lisp_Object elt;
369 elt = XCAR (chain);
370 if (CONSP (elt))
372 Lisp_Object string = XCAR (elt);
373 int match_pos;
374 Lisp_Object handler = XCDR (elt);
375 Lisp_Object operations = Qnil;
377 if (SYMBOLP (handler))
378 operations = Fget (handler, Qoperations);
380 if (STRINGP (string)
381 && (match_pos = fast_string_match (string, filename)) > pos
382 && (NILP (operations) || ! NILP (Fmemq (operation, operations))))
384 Lisp_Object tem;
386 handler = XCDR (elt);
387 tem = Fmemq (handler, inhibited_handlers);
388 if (NILP (tem))
390 result = handler;
391 pos = match_pos;
396 QUIT;
398 return result;
401 DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory,
402 1, 1, 0,
403 doc: /* Return the directory component in file name FILENAME.
404 Return nil if FILENAME does not include a directory.
405 Otherwise return a directory name.
406 Given a Unix syntax file name, returns a string ending in slash. */)
407 (filename)
408 Lisp_Object filename;
410 #ifndef DOS_NT
411 register const unsigned char *beg;
412 #else
413 register unsigned char *beg;
414 #endif
415 register const unsigned char *p;
416 Lisp_Object handler;
418 CHECK_STRING (filename);
420 /* If the file name has special constructs in it,
421 call the corresponding file handler. */
422 handler = Ffind_file_name_handler (filename, Qfile_name_directory);
423 if (!NILP (handler))
424 return call2 (handler, Qfile_name_directory, filename);
426 filename = FILE_SYSTEM_CASE (filename);
427 #ifdef DOS_NT
428 beg = (unsigned char *) alloca (SBYTES (filename) + 1);
429 bcopy (SDATA (filename), beg, SBYTES (filename) + 1);
430 #else
431 beg = SDATA (filename);
432 #endif
433 p = beg + SBYTES (filename);
435 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
436 #ifdef DOS_NT
437 /* only recognise drive specifier at the beginning */
438 && !(p[-1] == ':'
439 /* handle the "/:d:foo" and "/:foo" cases correctly */
440 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg))
441 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
442 #endif
443 ) p--;
445 if (p == beg)
446 return Qnil;
447 #ifdef DOS_NT
448 /* Expansion of "c:" to drive and default directory. */
449 if (p[-1] == ':')
451 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
452 unsigned char *res = alloca (MAXPATHLEN + 1);
453 unsigned char *r = res;
455 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':')
457 strncpy (res, beg, 2);
458 beg += 2;
459 r += 2;
462 if (getdefdir (toupper (*beg) - 'A' + 1, r))
464 if (!IS_DIRECTORY_SEP (res[strlen (res) - 1]))
465 strcat (res, "/");
466 beg = res;
467 p = beg + strlen (beg);
470 CORRECT_DIR_SEPS (beg);
471 #endif /* DOS_NT */
473 return make_specified_string (beg, -1, p - beg, STRING_MULTIBYTE (filename));
476 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory,
477 Sfile_name_nondirectory, 1, 1, 0,
478 doc: /* Return file name FILENAME sans its directory.
479 For example, in a Unix-syntax file name,
480 this is everything after the last slash,
481 or the entire name if it contains no slash. */)
482 (filename)
483 Lisp_Object filename;
485 register const unsigned char *beg, *p, *end;
486 Lisp_Object handler;
488 CHECK_STRING (filename);
490 /* If the file name has special constructs in it,
491 call the corresponding file handler. */
492 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory);
493 if (!NILP (handler))
494 return call2 (handler, Qfile_name_nondirectory, filename);
496 beg = SDATA (filename);
497 end = p = beg + SBYTES (filename);
499 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
500 #ifdef DOS_NT
501 /* only recognise drive specifier at beginning */
502 && !(p[-1] == ':'
503 /* handle the "/:d:foo" case correctly */
504 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
505 #endif
507 p--;
509 return make_specified_string (p, -1, end - p, STRING_MULTIBYTE (filename));
512 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory,
513 Sunhandled_file_name_directory, 1, 1, 0,
514 doc: /* Return a directly usable directory name somehow associated with FILENAME.
515 A `directly usable' directory name is one that may be used without the
516 intervention of any file handler.
517 If FILENAME is a directly usable file itself, return
518 \(file-name-directory FILENAME).
519 If FILENAME refers to a file which is not accessible from a local process,
520 then this should return nil.
521 The `call-process' and `start-process' functions use this function to
522 get a current directory to run processes in. */)
523 (filename)
524 Lisp_Object filename;
526 Lisp_Object handler;
528 /* If the file name has special constructs in it,
529 call the corresponding file handler. */
530 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
531 if (!NILP (handler))
532 return call2 (handler, Qunhandled_file_name_directory, filename);
534 return Ffile_name_directory (filename);
538 char *
539 file_name_as_directory (out, in)
540 char *out, *in;
542 int size = strlen (in) - 1;
544 strcpy (out, in);
546 if (size < 0)
548 out[0] = '.';
549 out[1] = '/';
550 out[2] = 0;
551 return out;
554 /* For Unix syntax, Append a slash if necessary */
555 if (!IS_DIRECTORY_SEP (out[size]))
557 /* Cannot use DIRECTORY_SEP, which could have any value */
558 out[size + 1] = '/';
559 out[size + 2] = '\0';
561 #ifdef DOS_NT
562 CORRECT_DIR_SEPS (out);
563 #endif
564 return out;
567 DEFUN ("file-name-as-directory", Ffile_name_as_directory,
568 Sfile_name_as_directory, 1, 1, 0,
569 doc: /* Return a string representing the file name FILE interpreted as a directory.
570 This operation exists because a directory is also a file, but its name as
571 a directory is different from its name as a file.
572 The result can be used as the value of `default-directory'
573 or passed as second argument to `expand-file-name'.
574 For a Unix-syntax file name, just appends a slash. */)
575 (file)
576 Lisp_Object file;
578 char *buf;
579 Lisp_Object handler;
581 CHECK_STRING (file);
582 if (NILP (file))
583 return Qnil;
585 /* If the file name has special constructs in it,
586 call the corresponding file handler. */
587 handler = Ffind_file_name_handler (file, Qfile_name_as_directory);
588 if (!NILP (handler))
589 return call2 (handler, Qfile_name_as_directory, file);
591 buf = (char *) alloca (SBYTES (file) + 10);
592 file_name_as_directory (buf, SDATA (file));
593 return make_specified_string (buf, -1, strlen (buf),
594 STRING_MULTIBYTE (file));
598 * Convert from directory name to filename.
599 * On UNIX, it's simple: just make sure there isn't a terminating /
601 * Value is nonzero if the string output is different from the input.
605 directory_file_name (src, dst)
606 char *src, *dst;
608 long slen;
610 slen = strlen (src);
612 /* Process as Unix format: just remove any final slash.
613 But leave "/" unchanged; do not change it to "". */
614 strcpy (dst, src);
615 if (slen > 1
616 && IS_DIRECTORY_SEP (dst[slen - 1])
617 #ifdef DOS_NT
618 && !IS_ANY_SEP (dst[slen - 2])
619 #endif
621 dst[slen - 1] = 0;
622 #ifdef DOS_NT
623 CORRECT_DIR_SEPS (dst);
624 #endif
625 return 1;
628 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
629 1, 1, 0,
630 doc: /* Returns the file name of the directory named DIRECTORY.
631 This is the name of the file that holds the data for the directory DIRECTORY.
632 This operation exists because a directory is also a file, but its name as
633 a directory is different from its name as a file.
634 In Unix-syntax, this function just removes the final slash. */)
635 (directory)
636 Lisp_Object directory;
638 char *buf;
639 Lisp_Object handler;
641 CHECK_STRING (directory);
643 if (NILP (directory))
644 return Qnil;
646 /* If the file name has special constructs in it,
647 call the corresponding file handler. */
648 handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
649 if (!NILP (handler))
650 return call2 (handler, Qdirectory_file_name, directory);
652 buf = (char *) alloca (SBYTES (directory) + 20);
653 directory_file_name (SDATA (directory), buf);
654 return make_specified_string (buf, -1, strlen (buf),
655 STRING_MULTIBYTE (directory));
658 static const char make_temp_name_tbl[64] =
660 'A','B','C','D','E','F','G','H',
661 'I','J','K','L','M','N','O','P',
662 'Q','R','S','T','U','V','W','X',
663 'Y','Z','a','b','c','d','e','f',
664 'g','h','i','j','k','l','m','n',
665 'o','p','q','r','s','t','u','v',
666 'w','x','y','z','0','1','2','3',
667 '4','5','6','7','8','9','-','_'
670 static unsigned make_temp_name_count, make_temp_name_count_initialized_p;
672 /* Value is a temporary file name starting with PREFIX, a string.
674 The Emacs process number forms part of the result, so there is
675 no danger of generating a name being used by another process.
676 In addition, this function makes an attempt to choose a name
677 which has no existing file. To make this work, PREFIX should be
678 an absolute file name.
680 BASE64_P non-zero means add the pid as 3 characters in base64
681 encoding. In this case, 6 characters will be added to PREFIX to
682 form the file name. Otherwise, if Emacs is running on a system
683 with long file names, add the pid as a decimal number.
685 This function signals an error if no unique file name could be
686 generated. */
688 Lisp_Object
689 make_temp_name (prefix, base64_p)
690 Lisp_Object prefix;
691 int base64_p;
693 Lisp_Object val;
694 int len, clen;
695 int pid;
696 unsigned char *p, *data;
697 char pidbuf[20];
698 int pidlen;
700 CHECK_STRING (prefix);
702 /* VAL is created by adding 6 characters to PREFIX. The first
703 three are the PID of this process, in base 64, and the second
704 three are incremented if the file already exists. This ensures
705 262144 unique file names per PID per PREFIX. */
707 pid = (int) getpid ();
709 if (base64_p)
711 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
712 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
713 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
714 pidlen = 3;
716 else
718 #ifdef HAVE_LONG_FILE_NAMES
719 sprintf (pidbuf, "%d", pid);
720 pidlen = strlen (pidbuf);
721 #else
722 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
723 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
724 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
725 pidlen = 3;
726 #endif
729 len = SBYTES (prefix); clen = SCHARS (prefix);
730 val = make_uninit_multibyte_string (clen + 3 + pidlen, len + 3 + pidlen);
731 if (!STRING_MULTIBYTE (prefix))
732 STRING_SET_UNIBYTE (val);
733 data = SDATA (val);
734 bcopy(SDATA (prefix), data, len);
735 p = data + len;
737 bcopy (pidbuf, p, pidlen);
738 p += pidlen;
740 /* Here we try to minimize useless stat'ing when this function is
741 invoked many times successively with the same PREFIX. We achieve
742 this by initializing count to a random value, and incrementing it
743 afterwards.
745 We don't want make-temp-name to be called while dumping,
746 because then make_temp_name_count_initialized_p would get set
747 and then make_temp_name_count would not be set when Emacs starts. */
749 if (!make_temp_name_count_initialized_p)
751 make_temp_name_count = (unsigned) time (NULL);
752 make_temp_name_count_initialized_p = 1;
755 while (1)
757 struct stat ignored;
758 unsigned num = make_temp_name_count;
760 p[0] = make_temp_name_tbl[num & 63], num >>= 6;
761 p[1] = make_temp_name_tbl[num & 63], num >>= 6;
762 p[2] = make_temp_name_tbl[num & 63], num >>= 6;
764 /* Poor man's congruential RN generator. Replace with
765 ++make_temp_name_count for debugging. */
766 make_temp_name_count += 25229;
767 make_temp_name_count %= 225307;
769 if (stat (data, &ignored) < 0)
771 /* We want to return only if errno is ENOENT. */
772 if (errno == ENOENT)
773 return val;
774 else
775 /* The error here is dubious, but there is little else we
776 can do. The alternatives are to return nil, which is
777 as bad as (and in many cases worse than) throwing the
778 error, or to ignore the error, which will likely result
779 in looping through 225307 stat's, which is not only
780 dog-slow, but also useless since it will fallback to
781 the errow below, anyway. */
782 report_file_error ("Cannot create temporary name for prefix",
783 Fcons (prefix, Qnil));
784 /* not reached */
788 error ("Cannot create temporary name for prefix `%s'",
789 SDATA (prefix));
790 return Qnil;
794 DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
795 doc: /* Generate temporary file name (string) starting with PREFIX (a string).
796 The Emacs process number forms part of the result,
797 so there is no danger of generating a name being used by another process.
799 In addition, this function makes an attempt to choose a name
800 which has no existing file. To make this work,
801 PREFIX should be an absolute file name.
803 There is a race condition between calling `make-temp-name' and creating the
804 file which opens all kinds of security holes. For that reason, you should
805 probably use `make-temp-file' instead, except in three circumstances:
807 * If you are creating the file in the user's home directory.
808 * If you are creating a directory rather than an ordinary file.
809 * If you are taking special precautions as `make-temp-file' does. */)
810 (prefix)
811 Lisp_Object prefix;
813 return make_temp_name (prefix, 0);
818 DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
819 doc: /* Convert filename NAME to absolute, and canonicalize it.
820 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
821 \(does not start with slash or tilde); if DEFAULT-DIRECTORY is nil or missing,
822 the current buffer's value of `default-directory' is used.
823 File name components that are `.' are removed, and
824 so are file name components followed by `..', along with the `..' itself;
825 note that these simplifications are done without checking the resulting
826 file names in the file system.
827 An initial `~/' expands to your home directory.
828 An initial `~USER/' expands to USER's home directory.
829 See also the function `substitute-in-file-name'.
831 For technical reasons, this function can return correct but
832 non-intuitive results for the root directory; for instance,
833 \(expand-file-name ".." "/") returns "/..". For this reason, use
834 (directory-file-name (file-name-directory dirname)) to traverse a
835 filesystem tree, not (expand-file-name ".." dirname). */)
836 (name, default_directory)
837 Lisp_Object name, default_directory;
839 /* These point to SDATA and need to be careful with string-relocation
840 during GC (via DECODE_FILE). */
841 unsigned char *nm, *newdir;
842 /* This should only point to alloca'd data. */
843 unsigned char *target;
845 int tlen;
846 struct passwd *pw;
847 #ifdef DOS_NT
848 int drive = 0;
849 int collapse_newdir = 1;
850 int is_escaped = 0;
851 #endif /* DOS_NT */
852 int length;
853 Lisp_Object handler, result;
854 int multibyte;
855 Lisp_Object hdir;
857 CHECK_STRING (name);
859 /* If the file name has special constructs in it,
860 call the corresponding file handler. */
861 handler = Ffind_file_name_handler (name, Qexpand_file_name);
862 if (!NILP (handler))
863 return call3 (handler, Qexpand_file_name, name, default_directory);
865 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
866 if (NILP (default_directory))
867 default_directory = current_buffer->directory;
868 if (! STRINGP (default_directory))
870 #ifdef DOS_NT
871 /* "/" is not considered a root directory on DOS_NT, so using "/"
872 here causes an infinite recursion in, e.g., the following:
874 (let (default-directory)
875 (expand-file-name "a"))
877 To avoid this, we set default_directory to the root of the
878 current drive. */
879 extern char *emacs_root_dir (void);
881 default_directory = build_string (emacs_root_dir ());
882 #else
883 default_directory = build_string ("/");
884 #endif
887 if (!NILP (default_directory))
889 handler = Ffind_file_name_handler (default_directory, Qexpand_file_name);
890 if (!NILP (handler))
891 return call3 (handler, Qexpand_file_name, name, default_directory);
895 unsigned char *o = SDATA (default_directory);
897 /* Make sure DEFAULT_DIRECTORY is properly expanded.
898 It would be better to do this down below where we actually use
899 default_directory. Unfortunately, calling Fexpand_file_name recursively
900 could invoke GC, and the strings might be relocated. This would
901 be annoying because we have pointers into strings lying around
902 that would need adjusting, and people would add new pointers to
903 the code and forget to adjust them, resulting in intermittent bugs.
904 Putting this call here avoids all that crud.
906 The EQ test avoids infinite recursion. */
907 if (! NILP (default_directory) && !EQ (default_directory, name)
908 /* Save time in some common cases - as long as default_directory
909 is not relative, it can be canonicalized with name below (if it
910 is needed at all) without requiring it to be expanded now. */
911 #ifdef DOS_NT
912 /* Detect MSDOS file names with drive specifiers. */
913 && ! (IS_DRIVE (o[0]) && IS_DEVICE_SEP (o[1])
914 && IS_DIRECTORY_SEP (o[2]))
915 #ifdef WINDOWSNT
916 /* Detect Windows file names in UNC format. */
917 && ! (IS_DIRECTORY_SEP (o[0]) && IS_DIRECTORY_SEP (o[1]))
918 #endif
919 #else /* not DOS_NT */
920 /* Detect Unix absolute file names (/... alone is not absolute on
921 DOS or Windows). */
922 && ! (IS_DIRECTORY_SEP (o[0]))
923 #endif /* not DOS_NT */
926 struct gcpro gcpro1;
928 GCPRO1 (name);
929 default_directory = Fexpand_file_name (default_directory, Qnil);
930 UNGCPRO;
933 name = FILE_SYSTEM_CASE (name);
934 multibyte = STRING_MULTIBYTE (name);
935 if (multibyte != STRING_MULTIBYTE (default_directory))
937 if (multibyte)
938 default_directory = string_to_multibyte (default_directory);
939 else
941 name = string_to_multibyte (name);
942 multibyte = 1;
946 /* Make a local copy of nm[] to protect it from GC in DECODE_FILE below. */
947 nm = (unsigned char *) alloca (SBYTES (name) + 1);
948 bcopy (SDATA (name), nm, SBYTES (name) + 1);
950 #ifdef DOS_NT
951 /* Note if special escape prefix is present, but remove for now. */
952 if (nm[0] == '/' && nm[1] == ':')
954 is_escaped = 1;
955 nm += 2;
958 /* Find and remove drive specifier if present; this makes nm absolute
959 even if the rest of the name appears to be relative. Only look for
960 drive specifier at the beginning. */
961 if (IS_DRIVE (nm[0]) && IS_DEVICE_SEP (nm[1]))
963 drive = nm[0];
964 nm += 2;
967 #ifdef WINDOWSNT
968 /* If we see "c://somedir", we want to strip the first slash after the
969 colon when stripping the drive letter. Otherwise, this expands to
970 "//somedir". */
971 if (drive && IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
972 nm++;
974 /* Discard any previous drive specifier if nm is now in UNC format. */
975 if (IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
977 drive = 0;
979 #endif /* WINDOWSNT */
980 #endif /* DOS_NT */
982 /* If nm is absolute, look for `/./' or `/../' or `//''sequences; if
983 none are found, we can probably return right away. We will avoid
984 allocating a new string if name is already fully expanded. */
985 if (
986 IS_DIRECTORY_SEP (nm[0])
987 #ifdef MSDOS
988 && drive && !is_escaped
989 #endif
990 #ifdef WINDOWSNT
991 && (drive || IS_DIRECTORY_SEP (nm[1])) && !is_escaped
992 #endif
995 /* If it turns out that the filename we want to return is just a
996 suffix of FILENAME, we don't need to go through and edit
997 things; we just need to construct a new string using data
998 starting at the middle of FILENAME. If we set lose to a
999 non-zero value, that means we've discovered that we can't do
1000 that cool trick. */
1001 int lose = 0;
1002 unsigned char *p = nm;
1004 while (*p)
1006 /* Since we know the name is absolute, we can assume that each
1007 element starts with a "/". */
1009 /* "." and ".." are hairy. */
1010 if (IS_DIRECTORY_SEP (p[0])
1011 && p[1] == '.'
1012 && (IS_DIRECTORY_SEP (p[2])
1013 || p[2] == 0
1014 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3])
1015 || p[3] == 0))))
1016 lose = 1;
1017 /* We want to replace multiple `/' in a row with a single
1018 slash. */
1019 else if (p > nm
1020 && IS_DIRECTORY_SEP (p[0])
1021 && IS_DIRECTORY_SEP (p[1]))
1022 lose = 1;
1023 p++;
1025 if (!lose)
1027 #ifdef DOS_NT
1028 /* Make sure directories are all separated with / or \ as
1029 desired, but avoid allocation of a new string when not
1030 required. */
1031 CORRECT_DIR_SEPS (nm);
1032 #ifdef WINDOWSNT
1033 if (IS_DIRECTORY_SEP (nm[1]))
1035 if (strcmp (nm, SDATA (name)) != 0)
1036 name = make_specified_string (nm, -1, strlen (nm), multibyte);
1038 else
1039 #endif
1040 /* drive must be set, so this is okay */
1041 if (strcmp (nm - 2, SDATA (name)) != 0)
1043 char temp[] = " :";
1045 name = make_specified_string (nm, -1, p - nm, multibyte);
1046 temp[0] = DRIVE_LETTER (drive);
1047 name = concat2 (build_string (temp), name);
1049 return name;
1050 #else /* not DOS_NT */
1051 if (strcmp (nm, SDATA (name)) == 0)
1052 return name;
1053 return make_specified_string (nm, -1, strlen (nm), multibyte);
1054 #endif /* not DOS_NT */
1058 /* At this point, nm might or might not be an absolute file name. We
1059 need to expand ~ or ~user if present, otherwise prefix nm with
1060 default_directory if nm is not absolute, and finally collapse /./
1061 and /foo/../ sequences.
1063 We set newdir to be the appropriate prefix if one is needed:
1064 - the relevant user directory if nm starts with ~ or ~user
1065 - the specified drive's working dir (DOS/NT only) if nm does not
1066 start with /
1067 - the value of default_directory.
1069 Note that these prefixes are not guaranteed to be absolute (except
1070 for the working dir of a drive). Therefore, to ensure we always
1071 return an absolute name, if the final prefix is not absolute we
1072 append it to the current working directory. */
1074 newdir = 0;
1076 if (nm[0] == '~') /* prefix ~ */
1078 if (IS_DIRECTORY_SEP (nm[1])
1079 || nm[1] == 0) /* ~ by itself */
1081 Lisp_Object tem;
1083 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1084 newdir = (unsigned char *) "";
1085 nm++;
1086 /* egetenv may return a unibyte string, which will bite us since
1087 we expect the directory to be multibyte. */
1088 tem = build_string (newdir);
1089 if (!STRING_MULTIBYTE (tem))
1091 hdir = DECODE_FILE (tem);
1092 newdir = SDATA (hdir);
1094 #ifdef DOS_NT
1095 collapse_newdir = 0;
1096 #endif
1098 else /* ~user/filename */
1100 unsigned char *o, *p;
1101 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p)); p++);
1102 o = alloca (p - nm + 1);
1103 bcopy ((char *) nm, o, p - nm);
1104 o [p - nm] = 0;
1106 BLOCK_INPUT;
1107 pw = (struct passwd *) getpwnam (o + 1);
1108 UNBLOCK_INPUT;
1109 if (pw)
1111 newdir = (unsigned char *) pw -> pw_dir;
1112 nm = p;
1113 #ifdef DOS_NT
1114 collapse_newdir = 0;
1115 #endif
1118 /* If we don't find a user of that name, leave the name
1119 unchanged; don't move nm forward to p. */
1123 #ifdef DOS_NT
1124 /* On DOS and Windows, nm is absolute if a drive name was specified;
1125 use the drive's current directory as the prefix if needed. */
1126 if (!newdir && drive)
1128 /* Get default directory if needed to make nm absolute. */
1129 if (!IS_DIRECTORY_SEP (nm[0]))
1131 newdir = alloca (MAXPATHLEN + 1);
1132 if (!getdefdir (toupper (drive) - 'A' + 1, newdir))
1133 newdir = NULL;
1135 if (!newdir)
1137 /* Either nm starts with /, or drive isn't mounted. */
1138 newdir = alloca (4);
1139 newdir[0] = DRIVE_LETTER (drive);
1140 newdir[1] = ':';
1141 newdir[2] = '/';
1142 newdir[3] = 0;
1145 #endif /* DOS_NT */
1147 /* Finally, if no prefix has been specified and nm is not absolute,
1148 then it must be expanded relative to default_directory. */
1150 if (1
1151 #ifndef DOS_NT
1152 /* /... alone is not absolute on DOS and Windows. */
1153 && !IS_DIRECTORY_SEP (nm[0])
1154 #endif
1155 #ifdef WINDOWSNT
1156 && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
1157 #endif
1158 && !newdir)
1160 newdir = SDATA (default_directory);
1161 #ifdef DOS_NT
1162 /* Note if special escape prefix is present, but remove for now. */
1163 if (newdir[0] == '/' && newdir[1] == ':')
1165 is_escaped = 1;
1166 newdir += 2;
1168 #endif
1171 #ifdef DOS_NT
1172 if (newdir)
1174 /* First ensure newdir is an absolute name. */
1175 if (
1176 /* Detect MSDOS file names with drive specifiers. */
1177 ! (IS_DRIVE (newdir[0])
1178 && IS_DEVICE_SEP (newdir[1]) && IS_DIRECTORY_SEP (newdir[2]))
1179 #ifdef WINDOWSNT
1180 /* Detect Windows file names in UNC format. */
1181 && ! (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1182 #endif
1185 /* Effectively, let newdir be (expand-file-name newdir cwd).
1186 Because of the admonition against calling expand-file-name
1187 when we have pointers into lisp strings, we accomplish this
1188 indirectly by prepending newdir to nm if necessary, and using
1189 cwd (or the wd of newdir's drive) as the new newdir. */
1191 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
1193 drive = newdir[0];
1194 newdir += 2;
1196 if (!IS_DIRECTORY_SEP (nm[0]))
1198 char * tmp = alloca (strlen (newdir) + strlen (nm) + 2);
1199 file_name_as_directory (tmp, newdir);
1200 strcat (tmp, nm);
1201 nm = tmp;
1203 newdir = alloca (MAXPATHLEN + 1);
1204 if (drive)
1206 if (!getdefdir (toupper (drive) - 'A' + 1, newdir))
1207 newdir = "/";
1209 else
1210 getwd (newdir);
1213 /* Strip off drive name from prefix, if present. */
1214 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
1216 drive = newdir[0];
1217 newdir += 2;
1220 /* Keep only a prefix from newdir if nm starts with slash
1221 (//server/share for UNC, nothing otherwise). */
1222 if (IS_DIRECTORY_SEP (nm[0]) && collapse_newdir)
1224 #ifdef WINDOWSNT
1225 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1227 unsigned char *p;
1228 newdir = strcpy (alloca (strlen (newdir) + 1), newdir);
1229 p = newdir + 2;
1230 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1231 p++;
1232 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1233 *p = 0;
1235 else
1236 #endif
1237 newdir = "";
1240 #endif /* DOS_NT */
1242 if (newdir)
1244 /* Get rid of any slash at the end of newdir, unless newdir is
1245 just / or // (an incomplete UNC name). */
1246 length = strlen (newdir);
1247 if (length > 1 && IS_DIRECTORY_SEP (newdir[length - 1])
1248 #ifdef WINDOWSNT
1249 && !(length == 2 && IS_DIRECTORY_SEP (newdir[0]))
1250 #endif
1253 unsigned char *temp = (unsigned char *) alloca (length);
1254 bcopy (newdir, temp, length - 1);
1255 temp[length - 1] = 0;
1256 newdir = temp;
1258 tlen = length + 1;
1260 else
1261 tlen = 0;
1263 /* Now concatenate the directory and name to new space in the stack frame */
1264 tlen += strlen (nm) + 1;
1265 #ifdef DOS_NT
1266 /* Reserve space for drive specifier and escape prefix, since either
1267 or both may need to be inserted. (The Microsoft x86 compiler
1268 produces incorrect code if the following two lines are combined.) */
1269 target = (unsigned char *) alloca (tlen + 4);
1270 target += 4;
1271 #else /* not DOS_NT */
1272 target = (unsigned char *) alloca (tlen);
1273 #endif /* not DOS_NT */
1274 *target = 0;
1276 if (newdir)
1278 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0]))
1280 #ifdef DOS_NT
1281 /* If newdir is effectively "C:/", then the drive letter will have
1282 been stripped and newdir will be "/". Concatenating with an
1283 absolute directory in nm produces "//", which will then be
1284 incorrectly treated as a network share. Ignore newdir in
1285 this case (keeping the drive letter). */
1286 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0])
1287 && newdir[1] == '\0'))
1288 #endif
1289 strcpy (target, newdir);
1291 else
1292 file_name_as_directory (target, newdir);
1295 strcat (target, nm);
1297 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they
1298 appear. */
1300 unsigned char *p = target;
1301 unsigned char *o = target;
1303 while (*p)
1305 if (!IS_DIRECTORY_SEP (*p))
1307 *o++ = *p++;
1309 else if (p[1] == '.'
1310 && (IS_DIRECTORY_SEP (p[2])
1311 || p[2] == 0))
1313 /* If "/." is the entire filename, keep the "/". Otherwise,
1314 just delete the whole "/.". */
1315 if (o == target && p[2] == '\0')
1316 *o++ = *p;
1317 p += 2;
1319 else if (p[1] == '.' && p[2] == '.'
1320 /* `/../' is the "superroot" on certain file systems.
1321 Turned off on DOS_NT systems because they have no
1322 "superroot" and because this causes us to produce
1323 file names like "d:/../foo" which fail file-related
1324 functions of the underlying OS. (To reproduce, try a
1325 long series of "../../" in default_directory, longer
1326 than the number of levels from the root.) */
1327 #ifndef DOS_NT
1328 && o != target
1329 #endif
1330 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0))
1332 #ifdef WINDOWSNT
1333 unsigned char *prev_o = o;
1334 #endif
1335 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o))
1337 #ifdef WINDOWSNT
1338 /* Don't go below server level in UNC filenames. */
1339 if (o == target + 1 && IS_DIRECTORY_SEP (*o)
1340 && IS_DIRECTORY_SEP (*target))
1341 o = prev_o;
1342 else
1343 #endif
1344 /* Keep initial / only if this is the whole name. */
1345 if (o == target && IS_ANY_SEP (*o) && p[3] == 0)
1346 ++o;
1347 p += 3;
1349 else if (p > target && IS_DIRECTORY_SEP (p[1]))
1350 /* Collapse multiple `/' in a row. */
1351 p++;
1352 else
1354 *o++ = *p++;
1358 #ifdef DOS_NT
1359 /* At last, set drive name. */
1360 #ifdef WINDOWSNT
1361 /* Except for network file name. */
1362 if (!(IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1])))
1363 #endif /* WINDOWSNT */
1365 if (!drive) abort ();
1366 target -= 2;
1367 target[0] = DRIVE_LETTER (drive);
1368 target[1] = ':';
1370 /* Reinsert the escape prefix if required. */
1371 if (is_escaped)
1373 target -= 2;
1374 target[0] = '/';
1375 target[1] = ':';
1377 CORRECT_DIR_SEPS (target);
1378 #endif /* DOS_NT */
1380 result = make_specified_string (target, -1, o - target, multibyte);
1383 /* Again look to see if the file name has special constructs in it
1384 and perhaps call the corresponding file handler. This is needed
1385 for filenames such as "/foo/../user@host:/bar/../baz". Expanding
1386 the ".." component gives us "/user@host:/bar/../baz" which needs
1387 to be expanded again. */
1388 handler = Ffind_file_name_handler (result, Qexpand_file_name);
1389 if (!NILP (handler))
1390 return call3 (handler, Qexpand_file_name, result, default_directory);
1392 return result;
1395 #if 0
1396 /* PLEASE DO NOT DELETE THIS COMMENTED-OUT VERSION!
1397 This is the old version of expand-file-name, before it was thoroughly
1398 rewritten for Emacs 10.31. We leave this version here commented-out,
1399 because the code is very complex and likely to have subtle bugs. If
1400 bugs _are_ found, it might be of interest to look at the old code and
1401 see what did it do in the relevant situation.
1403 Don't remove this code: it's true that it will be accessible
1404 from the repository, but a few years from deletion, people will
1405 forget it is there. */
1407 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1408 DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
1409 "Convert FILENAME to absolute, and canonicalize it.\n\
1410 Second arg DEFAULT is directory to start with if FILENAME is relative\n\
1411 \(does not start with slash); if DEFAULT is nil or missing,\n\
1412 the current buffer's value of default-directory is used.\n\
1413 Filenames containing `.' or `..' as components are simplified;\n\
1414 initial `~/' expands to your home directory.\n\
1415 See also the function `substitute-in-file-name'.")
1416 (name, defalt)
1417 Lisp_Object name, defalt;
1419 unsigned char *nm;
1421 register unsigned char *newdir, *p, *o;
1422 int tlen;
1423 unsigned char *target;
1424 struct passwd *pw;
1425 int lose;
1427 CHECK_STRING (name);
1428 nm = SDATA (name);
1430 /* If nm is absolute, flush ...// and detect /./ and /../.
1431 If no /./ or /../ we can return right away. */
1432 if (nm[0] == '/')
1434 p = nm;
1435 lose = 0;
1436 while (*p)
1438 if (p[0] == '/' && p[1] == '/'
1440 nm = p + 1;
1441 if (p[0] == '/' && p[1] == '~')
1442 nm = p + 1, lose = 1;
1443 if (p[0] == '/' && p[1] == '.'
1444 && (p[2] == '/' || p[2] == 0
1445 || (p[2] == '.' && (p[3] == '/' || p[3] == 0))))
1446 lose = 1;
1447 p++;
1449 if (!lose)
1451 if (nm == SDATA (name))
1452 return name;
1453 return build_string (nm);
1457 /* Now determine directory to start with and put it in NEWDIR */
1459 newdir = 0;
1461 if (nm[0] == '~') /* prefix ~ */
1462 if (nm[1] == '/' || nm[1] == 0)/* ~/filename */
1464 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1465 newdir = (unsigned char *) "";
1466 nm++;
1468 else /* ~user/filename */
1470 /* Get past ~ to user */
1471 unsigned char *user = nm + 1;
1472 /* Find end of name. */
1473 unsigned char *ptr = (unsigned char *) index (user, '/');
1474 int len = ptr ? ptr - user : strlen (user);
1475 /* Copy the user name into temp storage. */
1476 o = (unsigned char *) alloca (len + 1);
1477 bcopy ((char *) user, o, len);
1478 o[len] = 0;
1480 /* Look up the user name. */
1481 BLOCK_INPUT;
1482 pw = (struct passwd *) getpwnam (o + 1);
1483 UNBLOCK_INPUT;
1484 if (!pw)
1485 error ("\"%s\" isn't a registered user", o + 1);
1487 newdir = (unsigned char *) pw->pw_dir;
1489 /* Discard the user name from NM. */
1490 nm += len;
1493 if (nm[0] != '/' && !newdir)
1495 if (NILP (defalt))
1496 defalt = current_buffer->directory;
1497 CHECK_STRING (defalt);
1498 newdir = SDATA (defalt);
1501 /* Now concatenate the directory and name to new space in the stack frame */
1503 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1;
1504 target = (unsigned char *) alloca (tlen);
1505 *target = 0;
1507 if (newdir)
1509 if (nm[0] == 0 || nm[0] == '/')
1510 strcpy (target, newdir);
1511 else
1512 file_name_as_directory (target, newdir);
1515 strcat (target, nm);
1517 /* Now canonicalize by removing /. and /foo/.. if they appear */
1519 p = target;
1520 o = target;
1522 while (*p)
1524 if (*p != '/')
1526 *o++ = *p++;
1528 else if (!strncmp (p, "//", 2)
1531 o = target;
1532 p++;
1534 else if (p[0] == '/' && p[1] == '.'
1535 && (p[2] == '/' || p[2] == 0))
1536 p += 2;
1537 else if (!strncmp (p, "/..", 3)
1538 /* `/../' is the "superroot" on certain file systems. */
1539 && o != target
1540 && (p[3] == '/' || p[3] == 0))
1542 while (o != target && *--o != '/')
1544 if (o == target && *o == '/')
1545 ++o;
1546 p += 3;
1548 else
1550 *o++ = *p++;
1554 return make_string (target, o - target);
1556 #endif
1558 /* If /~ or // appears, discard everything through first slash. */
1559 static int
1560 file_name_absolute_p (filename)
1561 const unsigned char *filename;
1563 return
1564 (IS_DIRECTORY_SEP (*filename) || *filename == '~'
1565 #ifdef DOS_NT
1566 || (IS_DRIVE (*filename) && IS_DEVICE_SEP (filename[1])
1567 && IS_DIRECTORY_SEP (filename[2]))
1568 #endif
1572 static unsigned char *
1573 search_embedded_absfilename (nm, endp)
1574 unsigned char *nm, *endp;
1576 unsigned char *p, *s;
1578 for (p = nm + 1; p < endp; p++)
1580 if ((0
1581 || IS_DIRECTORY_SEP (p[-1]))
1582 && file_name_absolute_p (p)
1583 #if defined (WINDOWSNT) || defined(CYGWIN)
1584 /* // at start of file name is meaningful in Apollo,
1585 WindowsNT and Cygwin systems. */
1586 && !(IS_DIRECTORY_SEP (p[0]) && p - 1 == nm)
1587 #endif /* not (WINDOWSNT || CYGWIN) */
1590 for (s = p; *s && (!IS_DIRECTORY_SEP (*s)); s++);
1591 if (p[0] == '~' && s > p + 1) /* we've got "/~something/" */
1593 unsigned char *o = alloca (s - p + 1);
1594 struct passwd *pw;
1595 bcopy (p, o, s - p);
1596 o [s - p] = 0;
1598 /* If we have ~user and `user' exists, discard
1599 everything up to ~. But if `user' does not exist, leave
1600 ~user alone, it might be a literal file name. */
1601 BLOCK_INPUT;
1602 pw = getpwnam (o + 1);
1603 UNBLOCK_INPUT;
1604 if (pw)
1605 return p;
1607 else
1608 return p;
1611 return NULL;
1614 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
1615 Ssubstitute_in_file_name, 1, 1, 0,
1616 doc: /* Substitute environment variables referred to in FILENAME.
1617 `$FOO' where FOO is an environment variable name means to substitute
1618 the value of that variable. The variable name should be terminated
1619 with a character not a letter, digit or underscore; otherwise, enclose
1620 the entire variable name in braces.
1622 If `/~' appears, all of FILENAME through that `/' is discarded.
1623 If `//' appears, everything up to and including the first of
1624 those `/' is discarded. */)
1625 (filename)
1626 Lisp_Object filename;
1628 unsigned char *nm;
1630 register unsigned char *s, *p, *o, *x, *endp;
1631 unsigned char *target = NULL;
1632 int total = 0;
1633 int substituted = 0;
1634 int multibyte;
1635 unsigned char *xnm;
1636 Lisp_Object handler;
1638 CHECK_STRING (filename);
1640 multibyte = STRING_MULTIBYTE (filename);
1642 /* If the file name has special constructs in it,
1643 call the corresponding file handler. */
1644 handler = Ffind_file_name_handler (filename, Qsubstitute_in_file_name);
1645 if (!NILP (handler))
1646 return call2 (handler, Qsubstitute_in_file_name, filename);
1648 /* Always work on a copy of the string, in case GC happens during
1649 decode of environment variables, causing the original Lisp_String
1650 data to be relocated. */
1651 nm = (unsigned char *) alloca (SBYTES (filename) + 1);
1652 bcopy (SDATA (filename), nm, SBYTES (filename) + 1);
1654 #ifdef DOS_NT
1655 CORRECT_DIR_SEPS (nm);
1656 substituted = (strcmp (nm, SDATA (filename)) != 0);
1657 #endif
1658 endp = nm + SBYTES (filename);
1660 /* If /~ or // appears, discard everything through first slash. */
1661 p = search_embedded_absfilename (nm, endp);
1662 if (p)
1663 /* Start over with the new string, so we check the file-name-handler
1664 again. Important with filenames like "/home/foo//:/hello///there"
1665 which whould substitute to "/:/hello///there" rather than "/there". */
1666 return Fsubstitute_in_file_name
1667 (make_specified_string (p, -1, endp - p, multibyte));
1669 /* See if any variables are substituted into the string
1670 and find the total length of their values in `total' */
1672 for (p = nm; p != endp;)
1673 if (*p != '$')
1674 p++;
1675 else
1677 p++;
1678 if (p == endp)
1679 goto badsubst;
1680 else if (*p == '$')
1682 /* "$$" means a single "$" */
1683 p++;
1684 total -= 1;
1685 substituted = 1;
1686 continue;
1688 else if (*p == '{')
1690 o = ++p;
1691 while (p != endp && *p != '}') p++;
1692 if (*p != '}') goto missingclose;
1693 s = p;
1695 else
1697 o = p;
1698 while (p != endp && (isalnum (*p) || *p == '_')) p++;
1699 s = p;
1702 /* Copy out the variable name */
1703 target = (unsigned char *) alloca (s - o + 1);
1704 strncpy (target, o, s - o);
1705 target[s - o] = 0;
1706 #ifdef DOS_NT
1707 strupr (target); /* $home == $HOME etc. */
1708 #endif /* DOS_NT */
1710 /* Get variable value */
1711 o = (unsigned char *) egetenv (target);
1712 if (o)
1714 /* Don't try to guess a maximum length - UTF8 can use up to
1715 four bytes per character. This code is unlikely to run
1716 in a situation that requires performance, so decoding the
1717 env variables twice should be acceptable. Note that
1718 decoding may cause a garbage collect. */
1719 Lisp_Object orig, decoded;
1720 orig = make_unibyte_string (o, strlen (o));
1721 decoded = DECODE_FILE (orig);
1722 total += SBYTES (decoded);
1723 substituted = 1;
1725 else if (*p == '}')
1726 goto badvar;
1729 if (!substituted)
1730 return filename;
1732 /* If substitution required, recopy the string and do it */
1733 /* Make space in stack frame for the new copy */
1734 xnm = (unsigned char *) alloca (SBYTES (filename) + total + 1);
1735 x = xnm;
1737 /* Copy the rest of the name through, replacing $ constructs with values */
1738 for (p = nm; *p;)
1739 if (*p != '$')
1740 *x++ = *p++;
1741 else
1743 p++;
1744 if (p == endp)
1745 goto badsubst;
1746 else if (*p == '$')
1748 *x++ = *p++;
1749 continue;
1751 else if (*p == '{')
1753 o = ++p;
1754 while (p != endp && *p != '}') p++;
1755 if (*p != '}') goto missingclose;
1756 s = p++;
1758 else
1760 o = p;
1761 while (p != endp && (isalnum (*p) || *p == '_')) p++;
1762 s = p;
1765 /* Copy out the variable name */
1766 target = (unsigned char *) alloca (s - o + 1);
1767 strncpy (target, o, s - o);
1768 target[s - o] = 0;
1769 #ifdef DOS_NT
1770 strupr (target); /* $home == $HOME etc. */
1771 #endif /* DOS_NT */
1773 /* Get variable value */
1774 o = (unsigned char *) egetenv (target);
1775 if (!o)
1777 *x++ = '$';
1778 strcpy (x, target); x+= strlen (target);
1780 else
1782 Lisp_Object orig, decoded;
1783 int orig_length, decoded_length;
1784 orig_length = strlen (o);
1785 orig = make_unibyte_string (o, orig_length);
1786 decoded = DECODE_FILE (orig);
1787 decoded_length = SBYTES (decoded);
1788 strncpy (x, SDATA (decoded), decoded_length);
1789 x += decoded_length;
1791 /* If environment variable needed decoding, return value
1792 needs to be multibyte. */
1793 if (decoded_length != orig_length
1794 || strncmp (SDATA (decoded), o, orig_length))
1795 multibyte = 1;
1799 *x = 0;
1801 /* If /~ or // appears, discard everything through first slash. */
1802 while ((p = search_embedded_absfilename (xnm, x)))
1803 /* This time we do not start over because we've already expanded envvars
1804 and replaced $$ with $. Maybe we should start over as well, but we'd
1805 need to quote some $ to $$ first. */
1806 xnm = p;
1808 return make_specified_string (xnm, -1, x - xnm, multibyte);
1810 badsubst:
1811 error ("Bad format environment-variable substitution");
1812 missingclose:
1813 error ("Missing \"}\" in environment-variable substitution");
1814 badvar:
1815 error ("Substituting nonexistent environment variable \"%s\"", target);
1817 /* NOTREACHED */
1818 return Qnil;
1821 /* A slightly faster and more convenient way to get
1822 (directory-file-name (expand-file-name FOO)). */
1824 Lisp_Object
1825 expand_and_dir_to_file (filename, defdir)
1826 Lisp_Object filename, defdir;
1828 register Lisp_Object absname;
1830 absname = Fexpand_file_name (filename, defdir);
1832 /* Remove final slash, if any (unless this is the root dir).
1833 stat behaves differently depending! */
1834 if (SCHARS (absname) > 1
1835 && IS_DIRECTORY_SEP (SREF (absname, SBYTES (absname) - 1))
1836 && !IS_DEVICE_SEP (SREF (absname, SBYTES (absname)-2)))
1837 /* We cannot take shortcuts; they might be wrong for magic file names. */
1838 absname = Fdirectory_file_name (absname);
1839 return absname;
1842 /* Signal an error if the file ABSNAME already exists.
1843 If INTERACTIVE is nonzero, ask the user whether to proceed,
1844 and bypass the error if the user says to go ahead.
1845 QUERYSTRING is a name for the action that is being considered
1846 to alter the file.
1848 *STATPTR is used to store the stat information if the file exists.
1849 If the file does not exist, STATPTR->st_mode is set to 0.
1850 If STATPTR is null, we don't store into it.
1852 If QUICK is nonzero, we ask for y or n, not yes or no. */
1854 void
1855 barf_or_query_if_file_exists (absname, querystring, interactive, statptr, quick)
1856 Lisp_Object absname;
1857 unsigned char *querystring;
1858 int interactive;
1859 struct stat *statptr;
1860 int quick;
1862 register Lisp_Object tem, encoded_filename;
1863 struct stat statbuf;
1864 struct gcpro gcpro1;
1866 encoded_filename = ENCODE_FILE (absname);
1868 /* stat is a good way to tell whether the file exists,
1869 regardless of what access permissions it has. */
1870 if (lstat (SDATA (encoded_filename), &statbuf) >= 0)
1872 if (! interactive)
1873 xsignal2 (Qfile_already_exists,
1874 build_string ("File already exists"), absname);
1875 GCPRO1 (absname);
1876 tem = format2 ("File %s already exists; %s anyway? ",
1877 absname, build_string (querystring));
1878 if (quick)
1879 tem = Fy_or_n_p (tem);
1880 else
1881 tem = do_yes_or_no_p (tem);
1882 UNGCPRO;
1883 if (NILP (tem))
1884 xsignal2 (Qfile_already_exists,
1885 build_string ("File already exists"), absname);
1886 if (statptr)
1887 *statptr = statbuf;
1889 else
1891 if (statptr)
1892 statptr->st_mode = 0;
1894 return;
1897 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 5,
1898 "fCopy file: \nGCopy %s to file: \np\nP",
1899 doc: /* Copy FILE to NEWNAME. Both args must be strings.
1900 If NEWNAME names a directory, copy FILE there.
1902 This function always sets the file modes of the output file to match
1903 the input file.
1905 The optional third argument OK-IF-ALREADY-EXISTS specifies what to do
1906 if file NEWNAME already exists. If OK-IF-ALREADY-EXISTS is nil, we
1907 signal a `file-already-exists' error without overwriting. If
1908 OK-IF-ALREADY-EXISTS is a number, we request confirmation from the user
1909 about overwriting; this is what happens in interactive use with M-x.
1910 Any other value for OK-IF-ALREADY-EXISTS means to overwrite the
1911 existing file.
1913 Fourth arg KEEP-TIME non-nil means give the output file the same
1914 last-modified time as the old one. (This works on only some systems.)
1916 A prefix arg makes KEEP-TIME non-nil.
1918 If PRESERVE-UID-GID is non-nil, we try to transfer the
1919 uid and gid of FILE to NEWNAME. */)
1920 (file, newname, ok_if_already_exists, keep_time, preserve_uid_gid)
1921 Lisp_Object file, newname, ok_if_already_exists, keep_time;
1922 Lisp_Object preserve_uid_gid;
1924 int ifd, ofd, n;
1925 char buf[16 * 1024];
1926 struct stat st, out_st;
1927 Lisp_Object handler;
1928 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1929 int count = SPECPDL_INDEX ();
1930 int input_file_statable_p;
1931 Lisp_Object encoded_file, encoded_newname;
1933 encoded_file = encoded_newname = Qnil;
1934 GCPRO4 (file, newname, encoded_file, encoded_newname);
1935 CHECK_STRING (file);
1936 CHECK_STRING (newname);
1938 if (!NILP (Ffile_directory_p (newname)))
1939 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
1940 else
1941 newname = Fexpand_file_name (newname, Qnil);
1943 file = Fexpand_file_name (file, Qnil);
1945 /* If the input file name has special constructs in it,
1946 call the corresponding file handler. */
1947 handler = Ffind_file_name_handler (file, Qcopy_file);
1948 /* Likewise for output file name. */
1949 if (NILP (handler))
1950 handler = Ffind_file_name_handler (newname, Qcopy_file);
1951 if (!NILP (handler))
1952 RETURN_UNGCPRO (call6 (handler, Qcopy_file, file, newname,
1953 ok_if_already_exists, keep_time, preserve_uid_gid));
1955 encoded_file = ENCODE_FILE (file);
1956 encoded_newname = ENCODE_FILE (newname);
1958 if (NILP (ok_if_already_exists)
1959 || INTEGERP (ok_if_already_exists))
1960 barf_or_query_if_file_exists (newname, "copy to it",
1961 INTEGERP (ok_if_already_exists), &out_st, 0);
1962 else if (stat (SDATA (encoded_newname), &out_st) < 0)
1963 out_st.st_mode = 0;
1965 #ifdef WINDOWSNT
1966 if (!CopyFile (SDATA (encoded_file),
1967 SDATA (encoded_newname),
1968 FALSE))
1969 report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil)));
1970 /* CopyFile retains the timestamp by default. */
1971 else if (NILP (keep_time))
1973 EMACS_TIME now;
1974 DWORD attributes;
1975 char * filename;
1977 EMACS_GET_TIME (now);
1978 filename = SDATA (encoded_newname);
1980 /* Ensure file is writable while its modified time is set. */
1981 attributes = GetFileAttributes (filename);
1982 SetFileAttributes (filename, attributes & ~FILE_ATTRIBUTE_READONLY);
1983 if (set_file_times (filename, now, now))
1985 /* Restore original attributes. */
1986 SetFileAttributes (filename, attributes);
1987 xsignal2 (Qfile_date_error,
1988 build_string ("Cannot set file date"), newname);
1990 /* Restore original attributes. */
1991 SetFileAttributes (filename, attributes);
1993 #else /* not WINDOWSNT */
1994 immediate_quit = 1;
1995 ifd = emacs_open (SDATA (encoded_file), O_RDONLY, 0);
1996 immediate_quit = 0;
1998 if (ifd < 0)
1999 report_file_error ("Opening input file", Fcons (file, Qnil));
2001 record_unwind_protect (close_file_unwind, make_number (ifd));
2003 /* We can only copy regular files and symbolic links. Other files are not
2004 copyable by us. */
2005 input_file_statable_p = (fstat (ifd, &st) >= 0);
2007 if (out_st.st_mode != 0
2008 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
2010 errno = 0;
2011 report_file_error ("Input and output files are the same",
2012 Fcons (file, Fcons (newname, Qnil)));
2015 #if defined (S_ISREG) && defined (S_ISLNK)
2016 if (input_file_statable_p)
2018 if (!(S_ISREG (st.st_mode)) && !(S_ISLNK (st.st_mode)))
2020 #if defined (EISDIR)
2021 /* Get a better looking error message. */
2022 errno = EISDIR;
2023 #endif /* EISDIR */
2024 report_file_error ("Non-regular file", Fcons (file, Qnil));
2027 #endif /* S_ISREG && S_ISLNK */
2029 #ifdef MSDOS
2030 /* System's default file type was set to binary by _fmode in emacs.c. */
2031 ofd = emacs_open (SDATA (encoded_newname),
2032 O_WRONLY | O_TRUNC | O_CREAT
2033 | (NILP (ok_if_already_exists) ? O_EXCL : 0),
2034 S_IREAD | S_IWRITE);
2035 #else /* not MSDOS */
2036 ofd = emacs_open (SDATA (encoded_newname),
2037 O_WRONLY | O_TRUNC | O_CREAT
2038 | (NILP (ok_if_already_exists) ? O_EXCL : 0),
2039 0666);
2040 #endif /* not MSDOS */
2041 if (ofd < 0)
2042 report_file_error ("Opening output file", Fcons (newname, Qnil));
2044 record_unwind_protect (close_file_unwind, make_number (ofd));
2046 immediate_quit = 1;
2047 QUIT;
2048 while ((n = emacs_read (ifd, buf, sizeof buf)) > 0)
2049 if (emacs_write (ofd, buf, n) != n)
2050 report_file_error ("I/O error", Fcons (newname, Qnil));
2051 immediate_quit = 0;
2053 #ifndef MSDOS
2054 /* Preserve the original file modes, and if requested, also its
2055 owner and group. */
2056 if (input_file_statable_p)
2058 if (! NILP (preserve_uid_gid))
2059 fchown (ofd, st.st_uid, st.st_gid);
2060 fchmod (ofd, st.st_mode & 07777);
2062 #endif /* not MSDOS */
2064 /* Closing the output clobbers the file times on some systems. */
2065 if (emacs_close (ofd) < 0)
2066 report_file_error ("I/O error", Fcons (newname, Qnil));
2068 if (input_file_statable_p)
2070 if (!NILP (keep_time))
2072 EMACS_TIME atime, mtime;
2073 EMACS_SET_SECS_USECS (atime, st.st_atime, 0);
2074 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0);
2075 if (set_file_times (SDATA (encoded_newname),
2076 atime, mtime))
2077 xsignal2 (Qfile_date_error,
2078 build_string ("Cannot set file date"), newname);
2082 emacs_close (ifd);
2084 #ifdef MSDOS
2085 if (input_file_statable_p)
2087 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2088 and if it can't, it tells so. Otherwise, under MSDOS we usually
2089 get only the READ bit, which will make the copied file read-only,
2090 so it's better not to chmod at all. */
2091 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0)
2092 chmod (SDATA (encoded_newname), st.st_mode & 07777);
2094 #endif /* MSDOS */
2095 #endif /* not WINDOWSNT */
2097 /* Discard the unwind protects. */
2098 specpdl_ptr = specpdl + count;
2100 UNGCPRO;
2101 return Qnil;
2104 DEFUN ("make-directory-internal", Fmake_directory_internal,
2105 Smake_directory_internal, 1, 1, 0,
2106 doc: /* Create a new directory named DIRECTORY. */)
2107 (directory)
2108 Lisp_Object directory;
2110 const unsigned char *dir;
2111 Lisp_Object handler;
2112 Lisp_Object encoded_dir;
2114 CHECK_STRING (directory);
2115 directory = Fexpand_file_name (directory, Qnil);
2117 handler = Ffind_file_name_handler (directory, Qmake_directory_internal);
2118 if (!NILP (handler))
2119 return call2 (handler, Qmake_directory_internal, directory);
2121 encoded_dir = ENCODE_FILE (directory);
2123 dir = SDATA (encoded_dir);
2125 #ifdef WINDOWSNT
2126 if (mkdir (dir) != 0)
2127 #else
2128 if (mkdir (dir, 0777) != 0)
2129 #endif
2130 report_file_error ("Creating directory", list1 (directory));
2132 return Qnil;
2135 DEFUN ("delete-directory-internal", Fdelete_directory_internal,
2136 Sdelete_directory_internal, 1, 1, 0,
2137 doc: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
2138 (directory)
2139 Lisp_Object directory;
2141 const unsigned char *dir;
2142 Lisp_Object handler;
2143 Lisp_Object encoded_dir;
2145 CHECK_STRING (directory);
2146 directory = Fdirectory_file_name (Fexpand_file_name (directory, Qnil));
2148 if (delete_by_moving_to_trash)
2149 return call1 (Qmove_file_to_trash, directory);
2151 encoded_dir = ENCODE_FILE (directory);
2153 dir = SDATA (encoded_dir);
2155 if (rmdir (dir) != 0)
2156 report_file_error ("Removing directory", list1 (directory));
2158 return Qnil;
2161 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 1, "fDelete file: ",
2162 doc: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
2163 If file has multiple names, it continues to exist with the other names. */)
2164 (filename)
2165 Lisp_Object filename;
2167 Lisp_Object handler;
2168 Lisp_Object encoded_file;
2169 struct gcpro gcpro1;
2171 GCPRO1 (filename);
2172 if (!NILP (Ffile_directory_p (filename))
2173 && NILP (Ffile_symlink_p (filename)))
2174 xsignal2 (Qfile_error,
2175 build_string ("Removing old name: is a directory"),
2176 filename);
2177 UNGCPRO;
2178 filename = Fexpand_file_name (filename, Qnil);
2180 handler = Ffind_file_name_handler (filename, Qdelete_file);
2181 if (!NILP (handler))
2182 return call2 (handler, Qdelete_file, filename);
2184 if (delete_by_moving_to_trash)
2185 return call1 (Qmove_file_to_trash, filename);
2187 encoded_file = ENCODE_FILE (filename);
2189 if (0 > unlink (SDATA (encoded_file)))
2190 report_file_error ("Removing old name", list1 (filename));
2191 return Qnil;
2194 static Lisp_Object
2195 internal_delete_file_1 (ignore)
2196 Lisp_Object ignore;
2198 return Qt;
2201 /* Delete file FILENAME, returning 1 if successful and 0 if failed. */
2204 internal_delete_file (filename)
2205 Lisp_Object filename;
2207 Lisp_Object tem;
2208 tem = internal_condition_case_1 (Fdelete_file, filename,
2209 Qt, internal_delete_file_1);
2210 return NILP (tem);
2213 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
2214 "fRename file: \nGRename %s to file: \np",
2215 doc: /* Rename FILE as NEWNAME. Both args must be strings.
2216 If file has names other than FILE, it continues to have those names.
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 (file, newname, ok_if_already_exists)
2222 Lisp_Object file, newname, ok_if_already_exists;
2224 Lisp_Object handler;
2225 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2226 Lisp_Object encoded_file, encoded_newname, symlink_target;
2228 symlink_target = encoded_file = encoded_newname = Qnil;
2229 GCPRO5 (file, newname, encoded_file, encoded_newname, symlink_target);
2230 CHECK_STRING (file);
2231 CHECK_STRING (newname);
2232 file = Fexpand_file_name (file, Qnil);
2234 if ((!NILP (Ffile_directory_p (newname)))
2235 #ifdef DOS_NT
2236 /* If the file names are identical but for the case,
2237 don't attempt to move directory to itself. */
2238 && (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2239 #endif
2242 Lisp_Object fname = NILP (Ffile_directory_p (file))
2243 ? file : Fdirectory_file_name (file);
2244 newname = Fexpand_file_name (Ffile_name_nondirectory (fname), newname);
2246 else
2247 newname = Fexpand_file_name (newname, Qnil);
2249 /* If the file name has special constructs in it,
2250 call the corresponding file handler. */
2251 handler = Ffind_file_name_handler (file, Qrename_file);
2252 if (NILP (handler))
2253 handler = Ffind_file_name_handler (newname, Qrename_file);
2254 if (!NILP (handler))
2255 RETURN_UNGCPRO (call4 (handler, Qrename_file,
2256 file, newname, ok_if_already_exists));
2258 encoded_file = ENCODE_FILE (file);
2259 encoded_newname = ENCODE_FILE (newname);
2261 #ifdef DOS_NT
2262 /* If the file names are identical but for the case, don't ask for
2263 confirmation: they simply want to change the letter-case of the
2264 file name. */
2265 if (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2266 #endif
2267 if (NILP (ok_if_already_exists)
2268 || INTEGERP (ok_if_already_exists))
2269 barf_or_query_if_file_exists (newname, "rename to it",
2270 INTEGERP (ok_if_already_exists), 0, 0);
2271 if (0 > rename (SDATA (encoded_file), SDATA (encoded_newname)))
2273 if (errno == EXDEV)
2275 int count;
2276 #ifdef S_IFLNK
2277 symlink_target = Ffile_symlink_p (file);
2278 if (! NILP (symlink_target))
2279 Fmake_symbolic_link (symlink_target, newname,
2280 NILP (ok_if_already_exists) ? Qnil : Qt);
2281 else
2282 #endif
2283 if (!NILP (Ffile_directory_p (file)))
2284 call4 (Qcopy_directory, file, newname, Qt, Qnil);
2285 else
2286 /* We have already prompted if it was an integer, so don't
2287 have copy-file prompt again. */
2288 Fcopy_file (file, newname,
2289 NILP (ok_if_already_exists) ? Qnil : Qt,
2290 Qt, Qt);
2292 count = SPECPDL_INDEX ();
2293 specbind (Qdelete_by_moving_to_trash, Qnil);
2295 if (!NILP (Ffile_directory_p (file))
2296 #ifdef S_IFLNK
2297 && NILP (symlink_target)
2298 #endif
2300 call2 (Qdelete_directory, file, Qt);
2301 else
2302 Fdelete_file (file);
2303 unbind_to (count, Qnil);
2305 else
2306 report_file_error ("Renaming", list2 (file, newname));
2308 UNGCPRO;
2309 return Qnil;
2312 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
2313 "fAdd name to file: \nGName to add to %s: \np",
2314 doc: /* Give FILE additional name NEWNAME. Both args must be strings.
2315 Signals a `file-already-exists' error if a file NEWNAME already exists
2316 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2317 A number as third arg means request confirmation if NEWNAME already exists.
2318 This is what happens in interactive use with M-x. */)
2319 (file, newname, ok_if_already_exists)
2320 Lisp_Object file, newname, ok_if_already_exists;
2322 Lisp_Object handler;
2323 Lisp_Object encoded_file, encoded_newname;
2324 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2326 GCPRO4 (file, newname, encoded_file, encoded_newname);
2327 encoded_file = encoded_newname = Qnil;
2328 CHECK_STRING (file);
2329 CHECK_STRING (newname);
2330 file = Fexpand_file_name (file, Qnil);
2332 if (!NILP (Ffile_directory_p (newname)))
2333 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
2334 else
2335 newname = Fexpand_file_name (newname, Qnil);
2337 /* If the file name has special constructs in it,
2338 call the corresponding file handler. */
2339 handler = Ffind_file_name_handler (file, Qadd_name_to_file);
2340 if (!NILP (handler))
2341 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2342 newname, ok_if_already_exists));
2344 /* If the new name has special constructs in it,
2345 call the corresponding file handler. */
2346 handler = Ffind_file_name_handler (newname, Qadd_name_to_file);
2347 if (!NILP (handler))
2348 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2349 newname, ok_if_already_exists));
2351 encoded_file = ENCODE_FILE (file);
2352 encoded_newname = ENCODE_FILE (newname);
2354 if (NILP (ok_if_already_exists)
2355 || INTEGERP (ok_if_already_exists))
2356 barf_or_query_if_file_exists (newname, "make it a new name",
2357 INTEGERP (ok_if_already_exists), 0, 0);
2359 unlink (SDATA (newname));
2360 if (0 > link (SDATA (encoded_file), SDATA (encoded_newname)))
2361 report_file_error ("Adding new name", list2 (file, newname));
2363 UNGCPRO;
2364 return Qnil;
2367 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
2368 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np",
2369 doc: /* Make a symbolic link to FILENAME, named LINKNAME.
2370 Both args must be strings.
2371 Signals a `file-already-exists' error if a file LINKNAME already exists
2372 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2373 A number as third arg means request confirmation if LINKNAME already exists.
2374 This happens for interactive use with M-x. */)
2375 (filename, linkname, ok_if_already_exists)
2376 Lisp_Object filename, linkname, ok_if_already_exists;
2378 Lisp_Object handler;
2379 Lisp_Object encoded_filename, encoded_linkname;
2380 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2382 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname);
2383 encoded_filename = encoded_linkname = Qnil;
2384 CHECK_STRING (filename);
2385 CHECK_STRING (linkname);
2386 /* If the link target has a ~, we must expand it to get
2387 a truly valid file name. Otherwise, do not expand;
2388 we want to permit links to relative file names. */
2389 if (SREF (filename, 0) == '~')
2390 filename = Fexpand_file_name (filename, Qnil);
2392 if (!NILP (Ffile_directory_p (linkname)))
2393 linkname = Fexpand_file_name (Ffile_name_nondirectory (filename), linkname);
2394 else
2395 linkname = Fexpand_file_name (linkname, Qnil);
2397 /* If the file name has special constructs in it,
2398 call the corresponding file handler. */
2399 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
2400 if (!NILP (handler))
2401 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2402 linkname, ok_if_already_exists));
2404 /* If the new link name has special constructs in it,
2405 call the corresponding file handler. */
2406 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link);
2407 if (!NILP (handler))
2408 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2409 linkname, ok_if_already_exists));
2411 #ifdef S_IFLNK
2412 encoded_filename = ENCODE_FILE (filename);
2413 encoded_linkname = ENCODE_FILE (linkname);
2415 if (NILP (ok_if_already_exists)
2416 || INTEGERP (ok_if_already_exists))
2417 barf_or_query_if_file_exists (linkname, "make it a link",
2418 INTEGERP (ok_if_already_exists), 0, 0);
2419 if (0 > symlink (SDATA (encoded_filename),
2420 SDATA (encoded_linkname)))
2422 /* If we didn't complain already, silently delete existing file. */
2423 if (errno == EEXIST)
2425 unlink (SDATA (encoded_linkname));
2426 if (0 <= symlink (SDATA (encoded_filename),
2427 SDATA (encoded_linkname)))
2429 UNGCPRO;
2430 return Qnil;
2434 report_file_error ("Making symbolic link", list2 (filename, linkname));
2436 UNGCPRO;
2437 return Qnil;
2439 #else
2440 UNGCPRO;
2441 xsignal1 (Qfile_error, build_string ("Symbolic links are not supported"));
2443 #endif /* S_IFLNK */
2447 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
2448 1, 1, 0,
2449 doc: /* Return t if file FILENAME specifies an absolute file name.
2450 On Unix, this is a name starting with a `/' or a `~'. */)
2451 (filename)
2452 Lisp_Object filename;
2454 CHECK_STRING (filename);
2455 return file_name_absolute_p (SDATA (filename)) ? Qt : Qnil;
2458 /* Return nonzero if file FILENAME exists and can be executed. */
2460 static int
2461 check_executable (filename)
2462 char *filename;
2464 #ifdef DOS_NT
2465 int len = strlen (filename);
2466 char *suffix;
2467 struct stat st;
2468 if (stat (filename, &st) < 0)
2469 return 0;
2470 return ((st.st_mode & S_IEXEC) != 0);
2471 #else /* not DOS_NT */
2472 #ifdef HAVE_EUIDACCESS
2473 return (euidaccess (filename, 1) >= 0);
2474 #else
2475 /* Access isn't quite right because it uses the real uid
2476 and we really want to test with the effective uid.
2477 But Unix doesn't give us a right way to do it. */
2478 return (access (filename, 1) >= 0);
2479 #endif
2480 #endif /* not DOS_NT */
2483 /* Return nonzero if file FILENAME exists and can be written. */
2485 static int
2486 check_writable (filename)
2487 char *filename;
2489 #ifdef MSDOS
2490 struct stat st;
2491 if (stat (filename, &st) < 0)
2492 return 0;
2493 return (st.st_mode & S_IWRITE || (st.st_mode & S_IFMT) == S_IFDIR);
2494 #else /* not MSDOS */
2495 #ifdef HAVE_EUIDACCESS
2496 return (euidaccess (filename, 2) >= 0);
2497 #else
2498 /* Access isn't quite right because it uses the real uid
2499 and we really want to test with the effective uid.
2500 But Unix doesn't give us a right way to do it.
2501 Opening with O_WRONLY could work for an ordinary file,
2502 but would lose for directories. */
2503 return (access (filename, 2) >= 0);
2504 #endif
2505 #endif /* not MSDOS */
2508 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
2509 doc: /* Return t if file FILENAME exists (whether or not you can read it.)
2510 See also `file-readable-p' and `file-attributes'.
2511 This returns nil for a symlink to a nonexistent file.
2512 Use `file-symlink-p' to test for such links. */)
2513 (filename)
2514 Lisp_Object filename;
2516 Lisp_Object absname;
2517 Lisp_Object handler;
2518 struct stat statbuf;
2520 CHECK_STRING (filename);
2521 absname = Fexpand_file_name (filename, Qnil);
2523 /* If the file name has special constructs in it,
2524 call the corresponding file handler. */
2525 handler = Ffind_file_name_handler (absname, Qfile_exists_p);
2526 if (!NILP (handler))
2527 return call2 (handler, Qfile_exists_p, absname);
2529 absname = ENCODE_FILE (absname);
2531 return (stat (SDATA (absname), &statbuf) >= 0) ? Qt : Qnil;
2534 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
2535 doc: /* Return t if FILENAME can be executed by you.
2536 For a directory, this means you can access files in that directory. */)
2537 (filename)
2538 Lisp_Object filename;
2540 Lisp_Object absname;
2541 Lisp_Object handler;
2543 CHECK_STRING (filename);
2544 absname = Fexpand_file_name (filename, Qnil);
2546 /* If the file name has special constructs in it,
2547 call the corresponding file handler. */
2548 handler = Ffind_file_name_handler (absname, Qfile_executable_p);
2549 if (!NILP (handler))
2550 return call2 (handler, Qfile_executable_p, absname);
2552 absname = ENCODE_FILE (absname);
2554 return (check_executable (SDATA (absname)) ? Qt : Qnil);
2557 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
2558 doc: /* Return t if file FILENAME exists and you can read it.
2559 See also `file-exists-p' and `file-attributes'. */)
2560 (filename)
2561 Lisp_Object filename;
2563 Lisp_Object absname;
2564 Lisp_Object handler;
2565 int desc;
2566 int flags;
2567 struct stat statbuf;
2569 CHECK_STRING (filename);
2570 absname = Fexpand_file_name (filename, Qnil);
2572 /* If the file name has special constructs in it,
2573 call the corresponding file handler. */
2574 handler = Ffind_file_name_handler (absname, Qfile_readable_p);
2575 if (!NILP (handler))
2576 return call2 (handler, Qfile_readable_p, absname);
2578 absname = ENCODE_FILE (absname);
2580 #if defined(DOS_NT) || defined(macintosh)
2581 /* Under MS-DOS, Windows, and Macintosh, open does not work for
2582 directories. */
2583 if (access (SDATA (absname), 0) == 0)
2584 return Qt;
2585 return Qnil;
2586 #else /* not DOS_NT and not macintosh */
2587 flags = O_RDONLY;
2588 #if defined (S_ISFIFO) && defined (O_NONBLOCK)
2589 /* Opening a fifo without O_NONBLOCK can wait.
2590 We don't want to wait. But we don't want to mess wth O_NONBLOCK
2591 except in the case of a fifo, on a system which handles it. */
2592 desc = stat (SDATA (absname), &statbuf);
2593 if (desc < 0)
2594 return Qnil;
2595 if (S_ISFIFO (statbuf.st_mode))
2596 flags |= O_NONBLOCK;
2597 #endif
2598 desc = emacs_open (SDATA (absname), flags, 0);
2599 if (desc < 0)
2600 return Qnil;
2601 emacs_close (desc);
2602 return Qt;
2603 #endif /* not DOS_NT and not macintosh */
2606 /* Having this before file-symlink-p mysteriously caused it to be forgotten
2607 on the RT/PC. */
2608 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
2609 doc: /* Return t if file FILENAME can be written or created by you. */)
2610 (filename)
2611 Lisp_Object filename;
2613 Lisp_Object absname, dir, encoded;
2614 Lisp_Object handler;
2615 struct stat statbuf;
2617 CHECK_STRING (filename);
2618 absname = Fexpand_file_name (filename, Qnil);
2620 /* If the file name has special constructs in it,
2621 call the corresponding file handler. */
2622 handler = Ffind_file_name_handler (absname, Qfile_writable_p);
2623 if (!NILP (handler))
2624 return call2 (handler, Qfile_writable_p, absname);
2626 encoded = ENCODE_FILE (absname);
2627 if (stat (SDATA (encoded), &statbuf) >= 0)
2628 return (check_writable (SDATA (encoded))
2629 ? Qt : Qnil);
2631 dir = Ffile_name_directory (absname);
2632 #ifdef MSDOS
2633 if (!NILP (dir))
2634 dir = Fdirectory_file_name (dir);
2635 #endif /* MSDOS */
2637 dir = ENCODE_FILE (dir);
2638 #ifdef WINDOWSNT
2639 /* The read-only attribute of the parent directory doesn't affect
2640 whether a file or directory can be created within it. Some day we
2641 should check ACLs though, which do affect this. */
2642 if (stat (SDATA (dir), &statbuf) < 0)
2643 return Qnil;
2644 return (statbuf.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil;
2645 #else
2646 return (check_writable (!NILP (dir) ? (char *) SDATA (dir) : "")
2647 ? Qt : Qnil);
2648 #endif
2651 DEFUN ("access-file", Faccess_file, Saccess_file, 2, 2, 0,
2652 doc: /* Access file FILENAME, and get an error if that does not work.
2653 The second argument STRING is used in the error message.
2654 If there is no error, returns nil. */)
2655 (filename, string)
2656 Lisp_Object filename, string;
2658 Lisp_Object handler, encoded_filename, absname;
2659 int fd;
2661 CHECK_STRING (filename);
2662 absname = Fexpand_file_name (filename, Qnil);
2664 CHECK_STRING (string);
2666 /* If the file name has special constructs in it,
2667 call the corresponding file handler. */
2668 handler = Ffind_file_name_handler (absname, Qaccess_file);
2669 if (!NILP (handler))
2670 return call3 (handler, Qaccess_file, absname, string);
2672 encoded_filename = ENCODE_FILE (absname);
2674 fd = emacs_open (SDATA (encoded_filename), O_RDONLY, 0);
2675 if (fd < 0)
2676 report_file_error (SDATA (string), Fcons (filename, Qnil));
2677 emacs_close (fd);
2679 return Qnil;
2682 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
2683 doc: /* Return non-nil if file FILENAME is the name of a symbolic link.
2684 The value is the link target, as a string.
2685 Otherwise it returns nil.
2687 This function returns t when given the name of a symlink that
2688 points to a nonexistent file. */)
2689 (filename)
2690 Lisp_Object filename;
2692 Lisp_Object handler;
2694 CHECK_STRING (filename);
2695 filename = Fexpand_file_name (filename, Qnil);
2697 /* If the file name has special constructs in it,
2698 call the corresponding file handler. */
2699 handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
2700 if (!NILP (handler))
2701 return call2 (handler, Qfile_symlink_p, filename);
2703 #ifdef S_IFLNK
2705 char *buf;
2706 int bufsize;
2707 int valsize;
2708 Lisp_Object val;
2710 filename = ENCODE_FILE (filename);
2712 bufsize = 50;
2713 buf = NULL;
2716 bufsize *= 2;
2717 buf = (char *) xrealloc (buf, bufsize);
2718 bzero (buf, bufsize);
2720 errno = 0;
2721 valsize = readlink (SDATA (filename), buf, bufsize);
2722 if (valsize == -1)
2724 #ifdef ERANGE
2725 /* HP-UX reports ERANGE if buffer is too small. */
2726 if (errno == ERANGE)
2727 valsize = bufsize;
2728 else
2729 #endif
2731 xfree (buf);
2732 return Qnil;
2736 while (valsize >= bufsize);
2738 val = make_string (buf, valsize);
2739 if (buf[0] == '/' && index (buf, ':'))
2740 val = concat2 (build_string ("/:"), val);
2741 xfree (buf);
2742 val = DECODE_FILE (val);
2743 return val;
2745 #else /* not S_IFLNK */
2746 return Qnil;
2747 #endif /* not S_IFLNK */
2750 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
2751 doc: /* Return t if FILENAME names an existing directory.
2752 Symbolic links to directories count as directories.
2753 See `file-symlink-p' to distinguish symlinks. */)
2754 (filename)
2755 Lisp_Object filename;
2757 register Lisp_Object absname;
2758 struct stat st;
2759 Lisp_Object handler;
2761 absname = expand_and_dir_to_file (filename, current_buffer->directory);
2763 /* If the file name has special constructs in it,
2764 call the corresponding file handler. */
2765 handler = Ffind_file_name_handler (absname, Qfile_directory_p);
2766 if (!NILP (handler))
2767 return call2 (handler, Qfile_directory_p, absname);
2769 absname = ENCODE_FILE (absname);
2771 if (stat (SDATA (absname), &st) < 0)
2772 return Qnil;
2773 return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil;
2776 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p, Sfile_accessible_directory_p, 1, 1, 0,
2777 doc: /* Return t if file FILENAME names a directory you can open.
2778 For the value to be t, FILENAME must specify the name of a directory as a file,
2779 and the directory must allow you to open files in it. In order to use a
2780 directory as a buffer's current directory, this predicate must return true.
2781 A directory name spec may be given instead; then the value is t
2782 if the directory so specified exists and really is a readable and
2783 searchable directory. */)
2784 (filename)
2785 Lisp_Object filename;
2787 Lisp_Object handler;
2788 int tem;
2789 struct gcpro gcpro1;
2791 /* If the file name has special constructs in it,
2792 call the corresponding file handler. */
2793 handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p);
2794 if (!NILP (handler))
2795 return call2 (handler, Qfile_accessible_directory_p, filename);
2797 GCPRO1 (filename);
2798 tem = (NILP (Ffile_directory_p (filename))
2799 || NILP (Ffile_executable_p (filename)));
2800 UNGCPRO;
2801 return tem ? Qnil : Qt;
2804 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
2805 doc: /* Return t if FILENAME names a regular file.
2806 This is the sort of file that holds an ordinary stream of data bytes.
2807 Symbolic links to regular files count as regular files.
2808 See `file-symlink-p' to distinguish symlinks. */)
2809 (filename)
2810 Lisp_Object filename;
2812 register Lisp_Object absname;
2813 struct stat st;
2814 Lisp_Object handler;
2816 absname = expand_and_dir_to_file (filename, current_buffer->directory);
2818 /* If the file name has special constructs in it,
2819 call the corresponding file handler. */
2820 handler = Ffind_file_name_handler (absname, Qfile_regular_p);
2821 if (!NILP (handler))
2822 return call2 (handler, Qfile_regular_p, absname);
2824 absname = ENCODE_FILE (absname);
2826 #ifdef WINDOWSNT
2828 int result;
2829 Lisp_Object tem = Vw32_get_true_file_attributes;
2831 /* Tell stat to use expensive method to get accurate info. */
2832 Vw32_get_true_file_attributes = Qt;
2833 result = stat (SDATA (absname), &st);
2834 Vw32_get_true_file_attributes = tem;
2836 if (result < 0)
2837 return Qnil;
2838 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
2840 #else
2841 if (stat (SDATA (absname), &st) < 0)
2842 return Qnil;
2843 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
2844 #endif
2847 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
2848 doc: /* Return mode bits of file named FILENAME, as an integer.
2849 Return nil, if file does not exist or is not accessible. */)
2850 (filename)
2851 Lisp_Object filename;
2853 Lisp_Object absname;
2854 struct stat st;
2855 Lisp_Object handler;
2857 absname = expand_and_dir_to_file (filename, current_buffer->directory);
2859 /* If the file name has special constructs in it,
2860 call the corresponding file handler. */
2861 handler = Ffind_file_name_handler (absname, Qfile_modes);
2862 if (!NILP (handler))
2863 return call2 (handler, Qfile_modes, absname);
2865 absname = ENCODE_FILE (absname);
2867 if (stat (SDATA (absname), &st) < 0)
2868 return Qnil;
2870 return make_number (st.st_mode & 07777);
2873 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2,
2874 "(let ((file (read-file-name \"File: \"))) \
2875 (list file (read-file-modes nil file)))",
2876 doc: /* Set mode bits of file named FILENAME to MODE (an integer).
2877 Only the 12 low bits of MODE are used.
2879 Interactively, mode bits are read by `read-file-modes', which accepts
2880 symbolic notation, like the `chmod' command from GNU Coreutils. */)
2881 (filename, mode)
2882 Lisp_Object filename, mode;
2884 Lisp_Object absname, encoded_absname;
2885 Lisp_Object handler;
2887 absname = Fexpand_file_name (filename, current_buffer->directory);
2888 CHECK_NUMBER (mode);
2890 /* If the file name has special constructs in it,
2891 call the corresponding file handler. */
2892 handler = Ffind_file_name_handler (absname, Qset_file_modes);
2893 if (!NILP (handler))
2894 return call3 (handler, Qset_file_modes, absname, mode);
2896 encoded_absname = ENCODE_FILE (absname);
2898 if (chmod (SDATA (encoded_absname), XINT (mode)) < 0)
2899 report_file_error ("Doing chmod", Fcons (absname, Qnil));
2901 return Qnil;
2904 DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0,
2905 doc: /* Set the file permission bits for newly created files.
2906 The argument MODE should be an integer; only the low 9 bits are used.
2907 This setting is inherited by subprocesses. */)
2908 (mode)
2909 Lisp_Object mode;
2911 CHECK_NUMBER (mode);
2913 umask ((~ XINT (mode)) & 0777);
2915 return Qnil;
2918 DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0,
2919 doc: /* Return the default file protection for created files.
2920 The value is an integer. */)
2923 int realmask;
2924 Lisp_Object value;
2926 realmask = umask (0);
2927 umask (realmask);
2929 XSETINT (value, (~ realmask) & 0777);
2930 return value;
2933 extern int lisp_time_argument P_ ((Lisp_Object, time_t *, int *));
2935 DEFUN ("set-file-times", Fset_file_times, Sset_file_times, 1, 2, 0,
2936 doc: /* Set times of file FILENAME to TIME.
2937 Set both access and modification times.
2938 Return t on success, else nil.
2939 Use the current time if TIME is nil. TIME is in the format of
2940 `current-time'. */)
2941 (filename, time)
2942 Lisp_Object filename, time;
2944 Lisp_Object absname, encoded_absname;
2945 Lisp_Object handler;
2946 time_t sec;
2947 int usec;
2949 if (! lisp_time_argument (time, &sec, &usec))
2950 error ("Invalid time specification");
2952 absname = Fexpand_file_name (filename, current_buffer->directory);
2954 /* If the file name has special constructs in it,
2955 call the corresponding file handler. */
2956 handler = Ffind_file_name_handler (absname, Qset_file_times);
2957 if (!NILP (handler))
2958 return call3 (handler, Qset_file_times, absname, time);
2960 encoded_absname = ENCODE_FILE (absname);
2963 EMACS_TIME t;
2965 EMACS_SET_SECS (t, sec);
2966 EMACS_SET_USECS (t, usec);
2968 if (set_file_times (SDATA (encoded_absname), t, t))
2970 #ifdef DOS_NT
2971 struct stat st;
2973 /* Setting times on a directory always fails. */
2974 if (stat (SDATA (encoded_absname), &st) == 0
2975 && (st.st_mode & S_IFMT) == S_IFDIR)
2976 return Qnil;
2977 #endif
2978 report_file_error ("Setting file times", Fcons (absname, Qnil));
2979 return Qnil;
2983 return Qt;
2986 #ifdef HAVE_SYNC
2987 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
2988 doc: /* Tell Unix to finish all pending disk updates. */)
2991 sync ();
2992 return Qnil;
2995 #endif /* HAVE_SYNC */
2997 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
2998 doc: /* Return t if file FILE1 is newer than file FILE2.
2999 If FILE1 does not exist, the answer is nil;
3000 otherwise, if FILE2 does not exist, the answer is t. */)
3001 (file1, file2)
3002 Lisp_Object file1, file2;
3004 Lisp_Object absname1, absname2;
3005 struct stat st;
3006 int mtime1;
3007 Lisp_Object handler;
3008 struct gcpro gcpro1, gcpro2;
3010 CHECK_STRING (file1);
3011 CHECK_STRING (file2);
3013 absname1 = Qnil;
3014 GCPRO2 (absname1, file2);
3015 absname1 = expand_and_dir_to_file (file1, current_buffer->directory);
3016 absname2 = expand_and_dir_to_file (file2, current_buffer->directory);
3017 UNGCPRO;
3019 /* If the file name has special constructs in it,
3020 call the corresponding file handler. */
3021 handler = Ffind_file_name_handler (absname1, Qfile_newer_than_file_p);
3022 if (NILP (handler))
3023 handler = Ffind_file_name_handler (absname2, Qfile_newer_than_file_p);
3024 if (!NILP (handler))
3025 return call3 (handler, Qfile_newer_than_file_p, absname1, absname2);
3027 GCPRO2 (absname1, absname2);
3028 absname1 = ENCODE_FILE (absname1);
3029 absname2 = ENCODE_FILE (absname2);
3030 UNGCPRO;
3032 if (stat (SDATA (absname1), &st) < 0)
3033 return Qnil;
3035 mtime1 = st.st_mtime;
3037 if (stat (SDATA (absname2), &st) < 0)
3038 return Qt;
3040 return (mtime1 > st.st_mtime) ? Qt : Qnil;
3043 #ifdef DOS_NT
3044 Lisp_Object Qfind_buffer_file_type;
3045 #endif /* DOS_NT */
3047 #ifndef READ_BUF_SIZE
3048 #define READ_BUF_SIZE (64 << 10)
3049 #endif
3051 /* This function is called after Lisp functions to decide a coding
3052 system are called, or when they cause an error. Before they are
3053 called, the current buffer is set unibyte and it contains only a
3054 newly inserted text (thus the buffer was empty before the
3055 insertion).
3057 The functions may set markers, overlays, text properties, or even
3058 alter the buffer contents, change the current buffer.
3060 Here, we reset all those changes by:
3061 o set back the current buffer.
3062 o move all markers and overlays to BEG.
3063 o remove all text properties.
3064 o set back the buffer multibyteness. */
3066 static Lisp_Object
3067 decide_coding_unwind (unwind_data)
3068 Lisp_Object unwind_data;
3070 Lisp_Object multibyte, undo_list, buffer;
3072 multibyte = XCAR (unwind_data);
3073 unwind_data = XCDR (unwind_data);
3074 undo_list = XCAR (unwind_data);
3075 buffer = XCDR (unwind_data);
3077 if (current_buffer != XBUFFER (buffer))
3078 set_buffer_internal (XBUFFER (buffer));
3079 adjust_markers_for_delete (BEG, BEG_BYTE, Z, Z_BYTE);
3080 adjust_overlays_for_delete (BEG, Z - BEG);
3081 BUF_INTERVALS (current_buffer) = 0;
3082 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3084 /* Now we are safe to change the buffer's multibyteness directly. */
3085 current_buffer->enable_multibyte_characters = multibyte;
3086 current_buffer->undo_list = undo_list;
3088 return Qnil;
3092 /* Used to pass values from insert-file-contents to read_non_regular. */
3094 static int non_regular_fd;
3095 static EMACS_INT non_regular_inserted;
3096 static EMACS_INT non_regular_nbytes;
3099 /* Read from a non-regular file.
3100 Read non_regular_trytry bytes max from non_regular_fd.
3101 Non_regular_inserted specifies where to put the read bytes.
3102 Value is the number of bytes read. */
3104 static Lisp_Object
3105 read_non_regular ()
3107 EMACS_INT nbytes;
3109 immediate_quit = 1;
3110 QUIT;
3111 nbytes = emacs_read (non_regular_fd,
3112 BEG_ADDR + PT_BYTE - BEG_BYTE + non_regular_inserted,
3113 non_regular_nbytes);
3114 immediate_quit = 0;
3115 return make_number (nbytes);
3119 /* Condition-case handler used when reading from non-regular files
3120 in insert-file-contents. */
3122 static Lisp_Object
3123 read_non_regular_quit ()
3125 return Qnil;
3129 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
3130 1, 5, 0,
3131 doc: /* Insert contents of file FILENAME after point.
3132 Returns list of absolute file name and number of characters inserted.
3133 If second argument VISIT is non-nil, the buffer's visited filename and
3134 last save file modtime are set, and it is marked unmodified. If
3135 visiting and the file does not exist, visiting is completed before the
3136 error is signaled.
3138 The optional third and fourth arguments BEG and END specify what portion
3139 of the file to insert. These arguments count bytes in the file, not
3140 characters in the buffer. If VISIT is non-nil, BEG and END must be nil.
3142 If optional fifth argument REPLACE is non-nil, replace the current
3143 buffer contents (in the accessible portion) with the file contents.
3144 This is better than simply deleting and inserting the whole thing
3145 because (1) it preserves some marker positions and (2) it puts less data
3146 in the undo list. When REPLACE is non-nil, the second return value is
3147 the number of characters that replace previous buffer contents.
3149 This function does code conversion according to the value of
3150 `coding-system-for-read' or `file-coding-system-alist', and sets the
3151 variable `last-coding-system-used' to the coding system actually used. */)
3152 (filename, visit, beg, end, replace)
3153 Lisp_Object filename, visit, beg, end, replace;
3155 struct stat st;
3156 register int fd;
3157 EMACS_INT inserted = 0;
3158 int nochange = 0;
3159 register EMACS_INT how_much;
3160 register EMACS_INT unprocessed;
3161 int count = SPECPDL_INDEX ();
3162 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3163 Lisp_Object handler, val, insval, orig_filename, old_undo;
3164 Lisp_Object p;
3165 EMACS_INT total = 0;
3166 int not_regular = 0;
3167 unsigned char read_buf[READ_BUF_SIZE];
3168 struct coding_system coding;
3169 unsigned char buffer[1 << 14];
3170 int replace_handled = 0;
3171 int set_coding_system = 0;
3172 Lisp_Object coding_system;
3173 int read_quit = 0;
3174 Lisp_Object old_Vdeactivate_mark = Vdeactivate_mark;
3175 int we_locked_file = 0;
3176 int deferred_remove_unwind_protect = 0;
3178 if (current_buffer->base_buffer && ! NILP (visit))
3179 error ("Cannot do file visiting in an indirect buffer");
3181 if (!NILP (current_buffer->read_only))
3182 Fbarf_if_buffer_read_only ();
3184 val = Qnil;
3185 p = Qnil;
3186 orig_filename = Qnil;
3187 old_undo = Qnil;
3189 GCPRO5 (filename, val, p, orig_filename, old_undo);
3191 CHECK_STRING (filename);
3192 filename = Fexpand_file_name (filename, Qnil);
3194 /* The value Qnil means that the coding system is not yet
3195 decided. */
3196 coding_system = Qnil;
3198 /* If the file name has special constructs in it,
3199 call the corresponding file handler. */
3200 handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
3201 if (!NILP (handler))
3203 val = call6 (handler, Qinsert_file_contents, filename,
3204 visit, beg, end, replace);
3205 if (CONSP (val) && CONSP (XCDR (val)))
3206 inserted = XINT (XCAR (XCDR (val)));
3207 goto handled;
3210 orig_filename = filename;
3211 filename = ENCODE_FILE (filename);
3213 fd = -1;
3215 #ifdef WINDOWSNT
3217 Lisp_Object tem = Vw32_get_true_file_attributes;
3219 /* Tell stat to use expensive method to get accurate info. */
3220 Vw32_get_true_file_attributes = Qt;
3221 total = stat (SDATA (filename), &st);
3222 Vw32_get_true_file_attributes = tem;
3224 if (total < 0)
3225 #else
3226 if (stat (SDATA (filename), &st) < 0)
3227 #endif /* WINDOWSNT */
3229 if (fd >= 0) emacs_close (fd);
3230 badopen:
3231 if (NILP (visit))
3232 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
3233 st.st_mtime = -1;
3234 how_much = 0;
3235 if (!NILP (Vcoding_system_for_read))
3236 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read);
3237 goto notfound;
3240 #ifdef S_IFREG
3241 /* This code will need to be changed in order to work on named
3242 pipes, and it's probably just not worth it. So we should at
3243 least signal an error. */
3244 if (!S_ISREG (st.st_mode))
3246 not_regular = 1;
3248 if (! NILP (visit))
3249 goto notfound;
3251 if (! NILP (replace) || ! NILP (beg) || ! NILP (end))
3252 xsignal2 (Qfile_error,
3253 build_string ("not a regular file"), orig_filename);
3255 #endif
3257 if (fd < 0)
3258 if ((fd = emacs_open (SDATA (filename), O_RDONLY, 0)) < 0)
3259 goto badopen;
3261 /* Replacement should preserve point as it preserves markers. */
3262 if (!NILP (replace))
3263 record_unwind_protect (restore_point_unwind, Fpoint_marker ());
3265 record_unwind_protect (close_file_unwind, make_number (fd));
3267 /* Can happen on any platform that uses long as type of off_t, but allows
3268 file sizes to exceed 2Gb, so give a suitable message. */
3269 if (! not_regular && st.st_size < 0)
3270 error ("Maximum buffer size exceeded");
3272 /* Prevent redisplay optimizations. */
3273 current_buffer->clip_changed = 1;
3275 if (!NILP (visit))
3277 if (!NILP (beg) || !NILP (end))
3278 error ("Attempt to visit less than an entire file");
3279 if (BEG < Z && NILP (replace))
3280 error ("Cannot do file visiting in a non-empty buffer");
3283 if (!NILP (beg))
3284 CHECK_NUMBER (beg);
3285 else
3286 XSETFASTINT (beg, 0);
3288 if (!NILP (end))
3289 CHECK_NUMBER (end);
3290 else
3292 if (! not_regular)
3294 XSETINT (end, st.st_size);
3296 /* Arithmetic overflow can occur if an Emacs integer cannot
3297 represent the file size, or if the calculations below
3298 overflow. The calculations below double the file size
3299 twice, so check that it can be multiplied by 4 safely. */
3300 if (XINT (end) != st.st_size
3301 /* Actually, it should test either INT_MAX or LONG_MAX
3302 depending on which one is used for EMACS_INT. But in
3303 any case, in practice, this test is redundant with the
3304 one above.
3305 || st.st_size > INT_MAX / 4 */)
3306 error ("Maximum buffer size exceeded");
3308 /* The file size returned from stat may be zero, but data
3309 may be readable nonetheless, for example when this is a
3310 file in the /proc filesystem. */
3311 if (st.st_size == 0)
3312 XSETINT (end, READ_BUF_SIZE);
3316 if (EQ (Vcoding_system_for_read, Qauto_save_coding))
3318 coding_system = coding_inherit_eol_type (Qutf_8_emacs, Qunix);
3319 setup_coding_system (coding_system, &coding);
3320 /* Ensure we set Vlast_coding_system_used. */
3321 set_coding_system = 1;
3323 else if (BEG < Z)
3325 /* Decide the coding system to use for reading the file now
3326 because we can't use an optimized method for handling
3327 `coding:' tag if the current buffer is not empty. */
3328 if (!NILP (Vcoding_system_for_read))
3329 coding_system = Vcoding_system_for_read;
3330 else
3332 /* Don't try looking inside a file for a coding system
3333 specification if it is not seekable. */
3334 if (! not_regular && ! NILP (Vset_auto_coding_function))
3336 /* Find a coding system specified in the heading two
3337 lines or in the tailing several lines of the file.
3338 We assume that the 1K-byte and 3K-byte for heading
3339 and tailing respectively are sufficient for this
3340 purpose. */
3341 EMACS_INT nread;
3343 if (st.st_size <= (1024 * 4))
3344 nread = emacs_read (fd, read_buf, 1024 * 4);
3345 else
3347 nread = emacs_read (fd, read_buf, 1024);
3348 if (nread >= 0)
3350 if (lseek (fd, st.st_size - (1024 * 3), 0) < 0)
3351 report_file_error ("Setting file position",
3352 Fcons (orig_filename, Qnil));
3353 nread += emacs_read (fd, read_buf + nread, 1024 * 3);
3357 if (nread < 0)
3358 error ("IO error reading %s: %s",
3359 SDATA (orig_filename), emacs_strerror (errno));
3360 else if (nread > 0)
3362 struct buffer *prev = current_buffer;
3363 Lisp_Object buffer;
3364 struct buffer *buf;
3366 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
3368 buffer = Fget_buffer_create (build_string (" *code-converting-work*"));
3369 buf = XBUFFER (buffer);
3371 delete_all_overlays (buf);
3372 buf->directory = current_buffer->directory;
3373 buf->read_only = Qnil;
3374 buf->filename = Qnil;
3375 buf->undo_list = Qt;
3376 eassert (buf->overlays_before == NULL);
3377 eassert (buf->overlays_after == NULL);
3379 set_buffer_internal (buf);
3380 Ferase_buffer ();
3381 buf->enable_multibyte_characters = Qnil;
3383 insert_1_both (read_buf, nread, nread, 0, 0, 0);
3384 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3385 coding_system = call2 (Vset_auto_coding_function,
3386 filename, make_number (nread));
3387 set_buffer_internal (prev);
3389 /* Discard the unwind protect for recovering the
3390 current buffer. */
3391 specpdl_ptr--;
3393 /* Rewind the file for the actual read done later. */
3394 if (lseek (fd, 0, 0) < 0)
3395 report_file_error ("Setting file position",
3396 Fcons (orig_filename, Qnil));
3400 if (NILP (coding_system))
3402 /* If we have not yet decided a coding system, check
3403 file-coding-system-alist. */
3404 Lisp_Object args[6];
3406 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3407 args[2] = visit, args[3] = beg, args[4] = end, args[5] = replace;
3408 coding_system = Ffind_operation_coding_system (6, args);
3409 if (CONSP (coding_system))
3410 coding_system = XCAR (coding_system);
3414 if (NILP (coding_system))
3415 coding_system = Qundecided;
3416 else
3417 CHECK_CODING_SYSTEM (coding_system);
3419 if (NILP (current_buffer->enable_multibyte_characters))
3420 /* We must suppress all character code conversion except for
3421 end-of-line conversion. */
3422 coding_system = raw_text_coding_system (coding_system);
3424 setup_coding_system (coding_system, &coding);
3425 /* Ensure we set Vlast_coding_system_used. */
3426 set_coding_system = 1;
3429 /* If requested, replace the accessible part of the buffer
3430 with the file contents. Avoid replacing text at the
3431 beginning or end of the buffer that matches the file contents;
3432 that preserves markers pointing to the unchanged parts.
3434 Here we implement this feature in an optimized way
3435 for the case where code conversion is NOT needed.
3436 The following if-statement handles the case of conversion
3437 in a less optimal way.
3439 If the code conversion is "automatic" then we try using this
3440 method and hope for the best.
3441 But if we discover the need for conversion, we give up on this method
3442 and let the following if-statement handle the replace job. */
3443 if (!NILP (replace)
3444 && BEGV < ZV
3445 && (NILP (coding_system)
3446 || ! CODING_REQUIRE_DECODING (&coding)))
3448 /* same_at_start and same_at_end count bytes,
3449 because file access counts bytes
3450 and BEG and END count bytes. */
3451 EMACS_INT same_at_start = BEGV_BYTE;
3452 EMACS_INT same_at_end = ZV_BYTE;
3453 EMACS_INT overlap;
3454 /* There is still a possibility we will find the need to do code
3455 conversion. If that happens, we set this variable to 1 to
3456 give up on handling REPLACE in the optimized way. */
3457 int giveup_match_end = 0;
3459 if (XINT (beg) != 0)
3461 if (lseek (fd, XINT (beg), 0) < 0)
3462 report_file_error ("Setting file position",
3463 Fcons (orig_filename, Qnil));
3466 immediate_quit = 1;
3467 QUIT;
3468 /* Count how many chars at the start of the file
3469 match the text at the beginning of the buffer. */
3470 while (1)
3472 EMACS_INT nread, bufpos;
3474 nread = emacs_read (fd, buffer, sizeof buffer);
3475 if (nread < 0)
3476 error ("IO error reading %s: %s",
3477 SDATA (orig_filename), emacs_strerror (errno));
3478 else if (nread == 0)
3479 break;
3481 if (CODING_REQUIRE_DETECTION (&coding))
3483 coding_system = detect_coding_system (buffer, nread, nread, 1, 0,
3484 coding_system);
3485 setup_coding_system (coding_system, &coding);
3488 if (CODING_REQUIRE_DECODING (&coding))
3489 /* We found that the file should be decoded somehow.
3490 Let's give up here. */
3492 giveup_match_end = 1;
3493 break;
3496 bufpos = 0;
3497 while (bufpos < nread && same_at_start < ZV_BYTE
3498 && FETCH_BYTE (same_at_start) == buffer[bufpos])
3499 same_at_start++, bufpos++;
3500 /* If we found a discrepancy, stop the scan.
3501 Otherwise loop around and scan the next bufferful. */
3502 if (bufpos != nread)
3503 break;
3505 immediate_quit = 0;
3506 /* If the file matches the buffer completely,
3507 there's no need to replace anything. */
3508 if (same_at_start - BEGV_BYTE == XINT (end))
3510 emacs_close (fd);
3511 specpdl_ptr--;
3512 /* Truncate the buffer to the size of the file. */
3513 del_range_1 (same_at_start, same_at_end, 0, 0);
3514 goto handled;
3516 immediate_quit = 1;
3517 QUIT;
3518 /* Count how many chars at the end of the file
3519 match the text at the end of the buffer. But, if we have
3520 already found that decoding is necessary, don't waste time. */
3521 while (!giveup_match_end)
3523 EMACS_INT total_read, nread, bufpos, curpos, trial;
3525 /* At what file position are we now scanning? */
3526 curpos = XINT (end) - (ZV_BYTE - same_at_end);
3527 /* If the entire file matches the buffer tail, stop the scan. */
3528 if (curpos == 0)
3529 break;
3530 /* How much can we scan in the next step? */
3531 trial = min (curpos, sizeof buffer);
3532 if (lseek (fd, curpos - trial, 0) < 0)
3533 report_file_error ("Setting file position",
3534 Fcons (orig_filename, Qnil));
3536 total_read = nread = 0;
3537 while (total_read < trial)
3539 nread = emacs_read (fd, buffer + total_read, trial - total_read);
3540 if (nread < 0)
3541 error ("IO error reading %s: %s",
3542 SDATA (orig_filename), emacs_strerror (errno));
3543 else if (nread == 0)
3544 break;
3545 total_read += nread;
3548 /* Scan this bufferful from the end, comparing with
3549 the Emacs buffer. */
3550 bufpos = total_read;
3552 /* Compare with same_at_start to avoid counting some buffer text
3553 as matching both at the file's beginning and at the end. */
3554 while (bufpos > 0 && same_at_end > same_at_start
3555 && FETCH_BYTE (same_at_end - 1) == buffer[bufpos - 1])
3556 same_at_end--, bufpos--;
3558 /* If we found a discrepancy, stop the scan.
3559 Otherwise loop around and scan the preceding bufferful. */
3560 if (bufpos != 0)
3562 /* If this discrepancy is because of code conversion,
3563 we cannot use this method; giveup and try the other. */
3564 if (same_at_end > same_at_start
3565 && FETCH_BYTE (same_at_end - 1) >= 0200
3566 && ! NILP (current_buffer->enable_multibyte_characters)
3567 && (CODING_MAY_REQUIRE_DECODING (&coding)))
3568 giveup_match_end = 1;
3569 break;
3572 if (nread == 0)
3573 break;
3575 immediate_quit = 0;
3577 if (! giveup_match_end)
3579 EMACS_INT temp;
3581 /* We win! We can handle REPLACE the optimized way. */
3583 /* Extend the start of non-matching text area to multibyte
3584 character boundary. */
3585 if (! NILP (current_buffer->enable_multibyte_characters))
3586 while (same_at_start > BEGV_BYTE
3587 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3588 same_at_start--;
3590 /* Extend the end of non-matching text area to multibyte
3591 character boundary. */
3592 if (! NILP (current_buffer->enable_multibyte_characters))
3593 while (same_at_end < ZV_BYTE
3594 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3595 same_at_end++;
3597 /* Don't try to reuse the same piece of text twice. */
3598 overlap = (same_at_start - BEGV_BYTE
3599 - (same_at_end + st.st_size - ZV));
3600 if (overlap > 0)
3601 same_at_end += overlap;
3603 /* Arrange to read only the nonmatching middle part of the file. */
3604 XSETFASTINT (beg, XINT (beg) + (same_at_start - BEGV_BYTE));
3605 XSETFASTINT (end, XINT (end) - (ZV_BYTE - same_at_end));
3607 del_range_byte (same_at_start, same_at_end, 0);
3608 /* Insert from the file at the proper position. */
3609 temp = BYTE_TO_CHAR (same_at_start);
3610 SET_PT_BOTH (temp, same_at_start);
3612 /* If display currently starts at beginning of line,
3613 keep it that way. */
3614 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3615 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
3617 replace_handled = 1;
3621 /* If requested, replace the accessible part of the buffer
3622 with the file contents. Avoid replacing text at the
3623 beginning or end of the buffer that matches the file contents;
3624 that preserves markers pointing to the unchanged parts.
3626 Here we implement this feature for the case where code conversion
3627 is needed, in a simple way that needs a lot of memory.
3628 The preceding if-statement handles the case of no conversion
3629 in a more optimized way. */
3630 if (!NILP (replace) && ! replace_handled && BEGV < ZV)
3632 EMACS_INT same_at_start = BEGV_BYTE;
3633 EMACS_INT same_at_end = ZV_BYTE;
3634 EMACS_INT same_at_start_charpos;
3635 EMACS_INT inserted_chars;
3636 EMACS_INT overlap;
3637 EMACS_INT bufpos;
3638 unsigned char *decoded;
3639 EMACS_INT temp;
3640 int this_count = SPECPDL_INDEX ();
3641 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
3642 Lisp_Object conversion_buffer;
3644 conversion_buffer = code_conversion_save (1, multibyte);
3646 /* First read the whole file, performing code conversion into
3647 CONVERSION_BUFFER. */
3649 if (lseek (fd, XINT (beg), 0) < 0)
3650 report_file_error ("Setting file position",
3651 Fcons (orig_filename, Qnil));
3653 total = st.st_size; /* Total bytes in the file. */
3654 how_much = 0; /* Bytes read from file so far. */
3655 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */
3656 unprocessed = 0; /* Bytes not processed in previous loop. */
3658 GCPRO1 (conversion_buffer);
3659 while (how_much < total)
3661 /* We read one bunch by one (READ_BUF_SIZE bytes) to allow
3662 quitting while reading a huge while. */
3663 /* try is reserved in some compilers (Microsoft C) */
3664 EMACS_INT trytry = min (total - how_much,
3665 READ_BUF_SIZE - unprocessed);
3666 EMACS_INT this;
3668 /* Allow quitting out of the actual I/O. */
3669 immediate_quit = 1;
3670 QUIT;
3671 this = emacs_read (fd, read_buf + unprocessed, trytry);
3672 immediate_quit = 0;
3674 if (this <= 0)
3676 if (this < 0)
3677 how_much = this;
3678 break;
3681 how_much += this;
3683 BUF_TEMP_SET_PT (XBUFFER (conversion_buffer),
3684 BUF_Z (XBUFFER (conversion_buffer)));
3685 decode_coding_c_string (&coding, read_buf, unprocessed + this,
3686 conversion_buffer);
3687 unprocessed = coding.carryover_bytes;
3688 if (coding.carryover_bytes > 0)
3689 bcopy (coding.carryover, read_buf, unprocessed);
3691 UNGCPRO;
3692 emacs_close (fd);
3694 /* We should remove the unwind_protect calling
3695 close_file_unwind, but other stuff has been added the stack,
3696 so defer the removal till we reach the `handled' label. */
3697 deferred_remove_unwind_protect = 1;
3699 /* At this point, HOW_MUCH should equal TOTAL, or should be <= 0
3700 if we couldn't read the file. */
3702 if (how_much < 0)
3703 error ("IO error reading %s: %s",
3704 SDATA (orig_filename), emacs_strerror (errno));
3706 if (unprocessed > 0)
3708 coding.mode |= CODING_MODE_LAST_BLOCK;
3709 decode_coding_c_string (&coding, read_buf, unprocessed,
3710 conversion_buffer);
3711 coding.mode &= ~CODING_MODE_LAST_BLOCK;
3714 coding_system = CODING_ID_NAME (coding.id);
3715 set_coding_system = 1;
3716 decoded = BUF_BEG_ADDR (XBUFFER (conversion_buffer));
3717 inserted = (BUF_Z_BYTE (XBUFFER (conversion_buffer))
3718 - BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
3720 /* Compare the beginning of the converted string with the buffer
3721 text. */
3723 bufpos = 0;
3724 while (bufpos < inserted && same_at_start < same_at_end
3725 && FETCH_BYTE (same_at_start) == decoded[bufpos])
3726 same_at_start++, bufpos++;
3728 /* If the file matches the head of buffer completely,
3729 there's no need to replace anything. */
3731 if (bufpos == inserted)
3733 /* Truncate the buffer to the size of the file. */
3734 if (same_at_start == same_at_end)
3735 nochange = 1;
3736 else
3737 del_range_byte (same_at_start, same_at_end, 0);
3738 inserted = 0;
3740 unbind_to (this_count, Qnil);
3741 goto handled;
3744 /* Extend the start of non-matching text area to the previous
3745 multibyte character boundary. */
3746 if (! NILP (current_buffer->enable_multibyte_characters))
3747 while (same_at_start > BEGV_BYTE
3748 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3749 same_at_start--;
3751 /* Scan this bufferful from the end, comparing with
3752 the Emacs buffer. */
3753 bufpos = inserted;
3755 /* Compare with same_at_start to avoid counting some buffer text
3756 as matching both at the file's beginning and at the end. */
3757 while (bufpos > 0 && same_at_end > same_at_start
3758 && FETCH_BYTE (same_at_end - 1) == decoded[bufpos - 1])
3759 same_at_end--, bufpos--;
3761 /* Extend the end of non-matching text area to the next
3762 multibyte character boundary. */
3763 if (! NILP (current_buffer->enable_multibyte_characters))
3764 while (same_at_end < ZV_BYTE
3765 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3766 same_at_end++;
3768 /* Don't try to reuse the same piece of text twice. */
3769 overlap = same_at_start - BEGV_BYTE - (same_at_end + inserted - ZV_BYTE);
3770 if (overlap > 0)
3771 same_at_end += overlap;
3773 /* If display currently starts at beginning of line,
3774 keep it that way. */
3775 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3776 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
3778 /* Replace the chars that we need to replace,
3779 and update INSERTED to equal the number of bytes
3780 we are taking from the decoded string. */
3781 inserted -= (ZV_BYTE - same_at_end) + (same_at_start - BEGV_BYTE);
3783 if (same_at_end != same_at_start)
3785 del_range_byte (same_at_start, same_at_end, 0);
3786 temp = GPT;
3787 same_at_start = GPT_BYTE;
3789 else
3791 temp = BYTE_TO_CHAR (same_at_start);
3793 /* Insert from the file at the proper position. */
3794 SET_PT_BOTH (temp, same_at_start);
3795 same_at_start_charpos
3796 = buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
3797 same_at_start - BEGV_BYTE
3798 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
3799 inserted_chars
3800 = (buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
3801 same_at_start + inserted - BEGV_BYTE
3802 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)))
3803 - same_at_start_charpos);
3804 /* This binding is to avoid ask-user-about-supersession-threat
3805 being called in insert_from_buffer (via in
3806 prepare_to_modify_buffer). */
3807 specbind (intern ("buffer-file-name"), Qnil);
3808 insert_from_buffer (XBUFFER (conversion_buffer),
3809 same_at_start_charpos, inserted_chars, 0);
3810 /* Set `inserted' to the number of inserted characters. */
3811 inserted = PT - temp;
3812 /* Set point before the inserted characters. */
3813 SET_PT_BOTH (temp, same_at_start);
3815 unbind_to (this_count, Qnil);
3817 goto handled;
3820 if (! not_regular)
3822 register Lisp_Object temp;
3824 total = XINT (end) - XINT (beg);
3826 /* Make sure point-max won't overflow after this insertion. */
3827 XSETINT (temp, total);
3828 if (total != XINT (temp))
3829 error ("Maximum buffer size exceeded");
3831 else
3832 /* For a special file, all we can do is guess. */
3833 total = READ_BUF_SIZE;
3835 if (NILP (visit) && inserted > 0)
3837 #ifdef CLASH_DETECTION
3838 if (!NILP (current_buffer->file_truename)
3839 /* Make binding buffer-file-name to nil effective. */
3840 && !NILP (current_buffer->filename)
3841 && SAVE_MODIFF >= MODIFF)
3842 we_locked_file = 1;
3843 #endif /* CLASH_DETECTION */
3844 prepare_to_modify_buffer (GPT, GPT, NULL);
3847 move_gap (PT);
3848 if (GAP_SIZE < total)
3849 make_gap (total - GAP_SIZE);
3851 if (XINT (beg) != 0 || !NILP (replace))
3853 if (lseek (fd, XINT (beg), 0) < 0)
3854 report_file_error ("Setting file position",
3855 Fcons (orig_filename, Qnil));
3858 /* In the following loop, HOW_MUCH contains the total bytes read so
3859 far for a regular file, and not changed for a special file. But,
3860 before exiting the loop, it is set to a negative value if I/O
3861 error occurs. */
3862 how_much = 0;
3864 /* Total bytes inserted. */
3865 inserted = 0;
3867 /* Here, we don't do code conversion in the loop. It is done by
3868 decode_coding_gap after all data are read into the buffer. */
3870 EMACS_INT gap_size = GAP_SIZE;
3872 while (how_much < total)
3874 /* try is reserved in some compilers (Microsoft C) */
3875 EMACS_INT trytry = min (total - how_much, READ_BUF_SIZE);
3876 EMACS_INT this;
3878 if (not_regular)
3880 Lisp_Object val;
3882 /* Maybe make more room. */
3883 if (gap_size < trytry)
3885 make_gap (total - gap_size);
3886 gap_size = GAP_SIZE;
3889 /* Read from the file, capturing `quit'. When an
3890 error occurs, end the loop, and arrange for a quit
3891 to be signaled after decoding the text we read. */
3892 non_regular_fd = fd;
3893 non_regular_inserted = inserted;
3894 non_regular_nbytes = trytry;
3895 val = internal_condition_case_1 (read_non_regular, Qnil, Qerror,
3896 read_non_regular_quit);
3897 if (NILP (val))
3899 read_quit = 1;
3900 break;
3903 this = XINT (val);
3905 else
3907 /* Allow quitting out of the actual I/O. We don't make text
3908 part of the buffer until all the reading is done, so a C-g
3909 here doesn't do any harm. */
3910 immediate_quit = 1;
3911 QUIT;
3912 this = emacs_read (fd, BEG_ADDR + PT_BYTE - BEG_BYTE + inserted, trytry);
3913 immediate_quit = 0;
3916 if (this <= 0)
3918 how_much = this;
3919 break;
3922 gap_size -= this;
3924 /* For a regular file, where TOTAL is the real size,
3925 count HOW_MUCH to compare with it.
3926 For a special file, where TOTAL is just a buffer size,
3927 so don't bother counting in HOW_MUCH.
3928 (INSERTED is where we count the number of characters inserted.) */
3929 if (! not_regular)
3930 how_much += this;
3931 inserted += this;
3935 /* Now we have read all the file data into the gap.
3936 If it was empty, undo marking the buffer modified. */
3938 if (inserted == 0)
3940 #ifdef CLASH_DETECTION
3941 if (we_locked_file)
3942 unlock_file (current_buffer->file_truename);
3943 #endif
3944 Vdeactivate_mark = old_Vdeactivate_mark;
3946 else
3947 Vdeactivate_mark = Qt;
3949 /* Make the text read part of the buffer. */
3950 GAP_SIZE -= inserted;
3951 GPT += inserted;
3952 GPT_BYTE += inserted;
3953 ZV += inserted;
3954 ZV_BYTE += inserted;
3955 Z += inserted;
3956 Z_BYTE += inserted;
3958 if (GAP_SIZE > 0)
3959 /* Put an anchor to ensure multi-byte form ends at gap. */
3960 *GPT_ADDR = 0;
3962 emacs_close (fd);
3964 /* Discard the unwind protect for closing the file. */
3965 specpdl_ptr--;
3967 if (how_much < 0)
3968 error ("IO error reading %s: %s",
3969 SDATA (orig_filename), emacs_strerror (errno));
3971 notfound:
3973 if (NILP (coding_system))
3975 /* The coding system is not yet decided. Decide it by an
3976 optimized method for handling `coding:' tag.
3978 Note that we can get here only if the buffer was empty
3979 before the insertion. */
3981 if (!NILP (Vcoding_system_for_read))
3982 coding_system = Vcoding_system_for_read;
3983 else
3985 /* Since we are sure that the current buffer was empty
3986 before the insertion, we can toggle
3987 enable-multibyte-characters directly here without taking
3988 care of marker adjustment. By this way, we can run Lisp
3989 program safely before decoding the inserted text. */
3990 Lisp_Object unwind_data;
3991 int count = SPECPDL_INDEX ();
3993 unwind_data = Fcons (current_buffer->enable_multibyte_characters,
3994 Fcons (current_buffer->undo_list,
3995 Fcurrent_buffer ()));
3996 current_buffer->enable_multibyte_characters = Qnil;
3997 current_buffer->undo_list = Qt;
3998 record_unwind_protect (decide_coding_unwind, unwind_data);
4000 if (inserted > 0 && ! NILP (Vset_auto_coding_function))
4002 coding_system = call2 (Vset_auto_coding_function,
4003 filename, make_number (inserted));
4006 if (NILP (coding_system))
4008 /* If the coding system is not yet decided, check
4009 file-coding-system-alist. */
4010 Lisp_Object args[6];
4012 args[0] = Qinsert_file_contents, args[1] = orig_filename;
4013 args[2] = visit, args[3] = beg, args[4] = end, args[5] = Qnil;
4014 coding_system = Ffind_operation_coding_system (6, args);
4015 if (CONSP (coding_system))
4016 coding_system = XCAR (coding_system);
4018 unbind_to (count, Qnil);
4019 inserted = Z_BYTE - BEG_BYTE;
4022 if (NILP (coding_system))
4023 coding_system = Qundecided;
4024 else
4025 CHECK_CODING_SYSTEM (coding_system);
4027 if (NILP (current_buffer->enable_multibyte_characters))
4028 /* We must suppress all character code conversion except for
4029 end-of-line conversion. */
4030 coding_system = raw_text_coding_system (coding_system);
4031 setup_coding_system (coding_system, &coding);
4032 /* Ensure we set Vlast_coding_system_used. */
4033 set_coding_system = 1;
4036 if (!NILP (visit))
4038 /* When we visit a file by raw-text, we change the buffer to
4039 unibyte. */
4040 if (CODING_FOR_UNIBYTE (&coding)
4041 /* Can't do this if part of the buffer might be preserved. */
4042 && NILP (replace))
4043 /* Visiting a file with these coding system makes the buffer
4044 unibyte. */
4045 current_buffer->enable_multibyte_characters = Qnil;
4048 coding.dst_multibyte = ! NILP (current_buffer->enable_multibyte_characters);
4049 if (CODING_MAY_REQUIRE_DECODING (&coding)
4050 && (inserted > 0 || CODING_REQUIRE_FLUSHING (&coding)))
4052 move_gap_both (PT, PT_BYTE);
4053 GAP_SIZE += inserted;
4054 ZV_BYTE -= inserted;
4055 Z_BYTE -= inserted;
4056 ZV -= inserted;
4057 Z -= inserted;
4058 decode_coding_gap (&coding, inserted, inserted);
4059 inserted = coding.produced_char;
4060 coding_system = CODING_ID_NAME (coding.id);
4062 else if (inserted > 0)
4063 adjust_after_insert (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4064 inserted);
4066 /* Now INSERTED is measured in characters. */
4068 #ifdef DOS_NT
4069 /* Use the conversion type to determine buffer-file-type
4070 (find-buffer-file-type is now used to help determine the
4071 conversion). */
4072 if ((VECTORP (CODING_ID_EOL_TYPE (coding.id))
4073 || EQ (CODING_ID_EOL_TYPE (coding.id), Qunix))
4074 && ! CODING_REQUIRE_DECODING (&coding))
4075 current_buffer->buffer_file_type = Qt;
4076 else
4077 current_buffer->buffer_file_type = Qnil;
4078 #endif
4080 handled:
4082 if (deferred_remove_unwind_protect)
4083 /* If requested above, discard the unwind protect for closing the
4084 file. */
4085 specpdl_ptr--;
4087 if (!NILP (visit))
4089 if (!EQ (current_buffer->undo_list, Qt) && !nochange)
4090 current_buffer->undo_list = Qnil;
4092 if (NILP (handler))
4094 current_buffer->modtime = st.st_mtime;
4095 current_buffer->filename = orig_filename;
4098 SAVE_MODIFF = MODIFF;
4099 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
4100 XSETFASTINT (current_buffer->save_length, Z - BEG);
4101 #ifdef CLASH_DETECTION
4102 if (NILP (handler))
4104 if (!NILP (current_buffer->file_truename))
4105 unlock_file (current_buffer->file_truename);
4106 unlock_file (filename);
4108 #endif /* CLASH_DETECTION */
4109 if (not_regular)
4110 xsignal2 (Qfile_error,
4111 build_string ("not a regular file"), orig_filename);
4114 if (set_coding_system)
4115 Vlast_coding_system_used = coding_system;
4117 if (! NILP (Ffboundp (Qafter_insert_file_set_coding)))
4119 insval = call2 (Qafter_insert_file_set_coding, make_number (inserted),
4120 visit);
4121 if (! NILP (insval))
4123 CHECK_NUMBER (insval);
4124 inserted = XFASTINT (insval);
4128 /* Decode file format. */
4129 if (inserted > 0)
4131 /* Don't run point motion or modification hooks when decoding. */
4132 int count = SPECPDL_INDEX ();
4133 EMACS_INT old_inserted = inserted;
4134 specbind (Qinhibit_point_motion_hooks, Qt);
4135 specbind (Qinhibit_modification_hooks, Qt);
4137 /* Save old undo list and don't record undo for decoding. */
4138 old_undo = current_buffer->undo_list;
4139 current_buffer->undo_list = Qt;
4141 if (NILP (replace))
4143 insval = call3 (Qformat_decode,
4144 Qnil, make_number (inserted), visit);
4145 CHECK_NUMBER (insval);
4146 inserted = XFASTINT (insval);
4148 else
4150 /* If REPLACE is non-nil and we succeeded in not replacing the
4151 beginning or end of the buffer text with the file's contents,
4152 call format-decode with `point' positioned at the beginning
4153 of the buffer and `inserted' equalling the number of
4154 characters in the buffer. Otherwise, format-decode might
4155 fail to correctly analyze the beginning or end of the buffer.
4156 Hence we temporarily save `point' and `inserted' here and
4157 restore `point' iff format-decode did not insert or delete
4158 any text. Otherwise we leave `point' at point-min. */
4159 EMACS_INT opoint = PT;
4160 EMACS_INT opoint_byte = PT_BYTE;
4161 EMACS_INT oinserted = ZV - BEGV;
4162 int ochars_modiff = CHARS_MODIFF;
4164 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4165 insval = call3 (Qformat_decode,
4166 Qnil, make_number (oinserted), visit);
4167 CHECK_NUMBER (insval);
4168 if (ochars_modiff == CHARS_MODIFF)
4169 /* format_decode didn't modify buffer's characters => move
4170 point back to position before inserted text and leave
4171 value of inserted alone. */
4172 SET_PT_BOTH (opoint, opoint_byte);
4173 else
4174 /* format_decode modified buffer's characters => consider
4175 entire buffer changed and leave point at point-min. */
4176 inserted = XFASTINT (insval);
4179 /* For consistency with format-decode call these now iff inserted > 0
4180 (martin 2007-06-28). */
4181 p = Vafter_insert_file_functions;
4182 while (CONSP (p))
4184 if (NILP (replace))
4186 insval = call1 (XCAR (p), make_number (inserted));
4187 if (!NILP (insval))
4189 CHECK_NUMBER (insval);
4190 inserted = XFASTINT (insval);
4193 else
4195 /* For the rationale of this see the comment on
4196 format-decode above. */
4197 EMACS_INT opoint = PT;
4198 EMACS_INT opoint_byte = PT_BYTE;
4199 EMACS_INT oinserted = ZV - BEGV;
4200 int ochars_modiff = CHARS_MODIFF;
4202 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4203 insval = call1 (XCAR (p), make_number (oinserted));
4204 if (!NILP (insval))
4206 CHECK_NUMBER (insval);
4207 if (ochars_modiff == CHARS_MODIFF)
4208 /* after_insert_file_functions didn't modify
4209 buffer's characters => move point back to
4210 position before inserted text and leave value of
4211 inserted alone. */
4212 SET_PT_BOTH (opoint, opoint_byte);
4213 else
4214 /* after_insert_file_functions did modify buffer's
4215 characters => consider entire buffer changed and
4216 leave point at point-min. */
4217 inserted = XFASTINT (insval);
4221 QUIT;
4222 p = XCDR (p);
4225 if (NILP (visit))
4227 current_buffer->undo_list = old_undo;
4228 if (CONSP (old_undo) && inserted != old_inserted)
4230 /* Adjust the last undo record for the size change during
4231 the format conversion. */
4232 Lisp_Object tem = XCAR (old_undo);
4233 if (CONSP (tem) && INTEGERP (XCAR (tem))
4234 && INTEGERP (XCDR (tem))
4235 && XFASTINT (XCDR (tem)) == PT + old_inserted)
4236 XSETCDR (tem, make_number (PT + inserted));
4239 else
4240 /* If undo_list was Qt before, keep it that way.
4241 Otherwise start with an empty undo_list. */
4242 current_buffer->undo_list = EQ (old_undo, Qt) ? Qt : Qnil;
4244 unbind_to (count, Qnil);
4247 /* Call after-change hooks for the inserted text, aside from the case
4248 of normal visiting (not with REPLACE), which is done in a new buffer
4249 "before" the buffer is changed. */
4250 if (inserted > 0 && total > 0
4251 && (NILP (visit) || !NILP (replace)))
4253 signal_after_change (PT, 0, inserted);
4254 update_compositions (PT, PT, CHECK_BORDER);
4257 if (!NILP (visit)
4258 && current_buffer->modtime == -1)
4260 /* If visiting nonexistent file, return nil. */
4261 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
4264 if (read_quit)
4265 Fsignal (Qquit, Qnil);
4267 /* ??? Retval needs to be dealt with in all cases consistently. */
4268 if (NILP (val))
4269 val = Fcons (orig_filename,
4270 Fcons (make_number (inserted),
4271 Qnil));
4273 RETURN_UNGCPRO (unbind_to (count, val));
4276 static Lisp_Object build_annotations P_ ((Lisp_Object, Lisp_Object));
4278 static Lisp_Object
4279 build_annotations_unwind (arg)
4280 Lisp_Object arg;
4282 Vwrite_region_annotation_buffers = arg;
4283 return Qnil;
4286 /* Decide the coding-system to encode the data with. */
4288 static Lisp_Object
4289 choose_write_coding_system (start, end, filename,
4290 append, visit, lockname, coding)
4291 Lisp_Object start, end, filename, append, visit, lockname;
4292 struct coding_system *coding;
4294 Lisp_Object val;
4295 Lisp_Object eol_parent = Qnil;
4297 if (auto_saving
4298 && NILP (Fstring_equal (current_buffer->filename,
4299 current_buffer->auto_save_file_name)))
4301 val = Qutf_8_emacs;
4302 eol_parent = Qunix;
4304 else if (!NILP (Vcoding_system_for_write))
4306 val = Vcoding_system_for_write;
4307 if (coding_system_require_warning
4308 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4309 /* Confirm that VAL can surely encode the current region. */
4310 val = call5 (Vselect_safe_coding_system_function,
4311 start, end, Fcons (Qt, Fcons (val, Qnil)),
4312 Qnil, filename);
4314 else
4316 /* If the variable `buffer-file-coding-system' is set locally,
4317 it means that the file was read with some kind of code
4318 conversion or the variable is explicitly set by users. We
4319 had better write it out with the same coding system even if
4320 `enable-multibyte-characters' is nil.
4322 If it is not set locally, we anyway have to convert EOL
4323 format if the default value of `buffer-file-coding-system'
4324 tells that it is not Unix-like (LF only) format. */
4325 int using_default_coding = 0;
4326 int force_raw_text = 0;
4328 val = current_buffer->buffer_file_coding_system;
4329 if (NILP (val)
4330 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil)))
4332 val = Qnil;
4333 if (NILP (current_buffer->enable_multibyte_characters))
4334 force_raw_text = 1;
4337 if (NILP (val))
4339 /* Check file-coding-system-alist. */
4340 Lisp_Object args[7], coding_systems;
4342 args[0] = Qwrite_region; args[1] = start; args[2] = end;
4343 args[3] = filename; args[4] = append; args[5] = visit;
4344 args[6] = lockname;
4345 coding_systems = Ffind_operation_coding_system (7, args);
4346 if (CONSP (coding_systems) && !NILP (XCDR (coding_systems)))
4347 val = XCDR (coding_systems);
4350 if (NILP (val))
4352 /* If we still have not decided a coding system, use the
4353 default value of buffer-file-coding-system. */
4354 val = current_buffer->buffer_file_coding_system;
4355 using_default_coding = 1;
4358 if (! NILP (val) && ! force_raw_text)
4360 Lisp_Object spec, attrs;
4362 CHECK_CODING_SYSTEM_GET_SPEC (val, spec);
4363 attrs = AREF (spec, 0);
4364 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text))
4365 force_raw_text = 1;
4368 if (!force_raw_text
4369 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4370 /* Confirm that VAL can surely encode the current region. */
4371 val = call5 (Vselect_safe_coding_system_function,
4372 start, end, val, Qnil, filename);
4374 /* If the decided coding-system doesn't specify end-of-line
4375 format, we use that of
4376 `default-buffer-file-coding-system'. */
4377 if (! using_default_coding
4378 && ! NILP (buffer_defaults.buffer_file_coding_system))
4379 val = (coding_inherit_eol_type
4380 (val, buffer_defaults.buffer_file_coding_system));
4382 /* If we decide not to encode text, use `raw-text' or one of its
4383 subsidiaries. */
4384 if (force_raw_text)
4385 val = raw_text_coding_system (val);
4388 val = coding_inherit_eol_type (val, eol_parent);
4389 setup_coding_system (val, coding);
4391 if (!STRINGP (start) && !NILP (current_buffer->selective_display))
4392 coding->mode |= CODING_MODE_SELECTIVE_DISPLAY;
4393 return val;
4396 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7,
4397 "r\nFWrite region to file: \ni\ni\ni\np",
4398 doc: /* Write current region into specified file.
4399 When called from a program, requires three arguments:
4400 START, END and FILENAME. START and END are normally buffer positions
4401 specifying the part of the buffer to write.
4402 If START is nil, that means to use the entire buffer contents.
4403 If START is a string, then output that string to the file
4404 instead of any buffer contents; END is ignored.
4406 Optional fourth argument APPEND if non-nil means
4407 append to existing file contents (if any). If it is an integer,
4408 seek to that offset in the file before writing.
4409 Optional fifth argument VISIT, if t or a string, means
4410 set the last-save-file-modtime of buffer to this file's modtime
4411 and mark buffer not modified.
4412 If VISIT is a string, it is a second file name;
4413 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4414 VISIT is also the file name to lock and unlock for clash detection.
4415 If VISIT is neither t nor nil nor a string,
4416 that means do not display the \"Wrote file\" message.
4417 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4418 use for locking and unlocking, overriding FILENAME and VISIT.
4419 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4420 for an existing file with the same name. If MUSTBENEW is `excl',
4421 that means to get an error if the file already exists; never overwrite.
4422 If MUSTBENEW is neither nil nor `excl', that means ask for
4423 confirmation before overwriting, but do go ahead and overwrite the file
4424 if the user confirms.
4426 This does code conversion according to the value of
4427 `coding-system-for-write', `buffer-file-coding-system', or
4428 `file-coding-system-alist', and sets the variable
4429 `last-coding-system-used' to the coding system actually used.
4431 This calls `write-region-annotate-functions' at the start, and
4432 `write-region-post-annotation-function' at the end. */)
4433 (start, end, filename, append, visit, lockname, mustbenew)
4434 Lisp_Object start, end, filename, append, visit, lockname, mustbenew;
4436 register int desc;
4437 int failure;
4438 int save_errno = 0;
4439 const unsigned char *fn;
4440 struct stat st;
4441 int count = SPECPDL_INDEX ();
4442 int count1;
4443 Lisp_Object handler;
4444 Lisp_Object visit_file;
4445 Lisp_Object annotations;
4446 Lisp_Object encoded_filename;
4447 int visiting = (EQ (visit, Qt) || STRINGP (visit));
4448 int quietly = !NILP (visit);
4449 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4450 struct buffer *given_buffer;
4451 #ifdef DOS_NT
4452 int buffer_file_type = O_BINARY;
4453 #endif /* DOS_NT */
4454 struct coding_system coding;
4456 if (current_buffer->base_buffer && visiting)
4457 error ("Cannot do file visiting in an indirect buffer");
4459 if (!NILP (start) && !STRINGP (start))
4460 validate_region (&start, &end);
4462 visit_file = Qnil;
4463 GCPRO5 (start, filename, visit, visit_file, lockname);
4465 filename = Fexpand_file_name (filename, Qnil);
4467 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl))
4468 barf_or_query_if_file_exists (filename, "overwrite", 1, 0, 1);
4470 if (STRINGP (visit))
4471 visit_file = Fexpand_file_name (visit, Qnil);
4472 else
4473 visit_file = filename;
4475 if (NILP (lockname))
4476 lockname = visit_file;
4478 annotations = Qnil;
4480 /* If the file name has special constructs in it,
4481 call the corresponding file handler. */
4482 handler = Ffind_file_name_handler (filename, Qwrite_region);
4483 /* If FILENAME has no handler, see if VISIT has one. */
4484 if (NILP (handler) && STRINGP (visit))
4485 handler = Ffind_file_name_handler (visit, Qwrite_region);
4487 if (!NILP (handler))
4489 Lisp_Object val;
4490 val = call6 (handler, Qwrite_region, start, end,
4491 filename, append, visit);
4493 if (visiting)
4495 SAVE_MODIFF = MODIFF;
4496 XSETFASTINT (current_buffer->save_length, Z - BEG);
4497 current_buffer->filename = visit_file;
4499 UNGCPRO;
4500 return val;
4503 record_unwind_protect (save_restriction_restore, save_restriction_save ());
4505 /* Special kludge to simplify auto-saving. */
4506 if (NILP (start))
4508 /* Do it later, so write-region-annotate-function can work differently
4509 if we save "the buffer" vs "a region".
4510 This is useful in tar-mode. --Stef
4511 XSETFASTINT (start, BEG);
4512 XSETFASTINT (end, Z); */
4513 Fwiden ();
4516 record_unwind_protect (build_annotations_unwind,
4517 Vwrite_region_annotation_buffers);
4518 Vwrite_region_annotation_buffers = Fcons (Fcurrent_buffer (), Qnil);
4519 count1 = SPECPDL_INDEX ();
4521 given_buffer = current_buffer;
4523 if (!STRINGP (start))
4525 annotations = build_annotations (start, end);
4527 if (current_buffer != given_buffer)
4529 XSETFASTINT (start, BEGV);
4530 XSETFASTINT (end, ZV);
4534 if (NILP (start))
4536 XSETFASTINT (start, BEGV);
4537 XSETFASTINT (end, ZV);
4540 UNGCPRO;
4542 GCPRO5 (start, filename, annotations, visit_file, lockname);
4544 /* Decide the coding-system to encode the data with.
4545 We used to make this choice before calling build_annotations, but that
4546 leads to problems when a write-annotate-function takes care of
4547 unsavable chars (as was the case with X-Symbol). */
4548 Vlast_coding_system_used
4549 = choose_write_coding_system (start, end, filename,
4550 append, visit, lockname, &coding);
4552 #ifdef CLASH_DETECTION
4553 if (!auto_saving)
4554 lock_file (lockname);
4555 #endif /* CLASH_DETECTION */
4557 encoded_filename = ENCODE_FILE (filename);
4559 fn = SDATA (encoded_filename);
4560 desc = -1;
4561 if (!NILP (append))
4562 #ifdef DOS_NT
4563 desc = emacs_open (fn, O_WRONLY | buffer_file_type, 0);
4564 #else /* not DOS_NT */
4565 desc = emacs_open (fn, O_WRONLY, 0);
4566 #endif /* not DOS_NT */
4568 if (desc < 0 && (NILP (append) || errno == ENOENT))
4569 #ifdef DOS_NT
4570 desc = emacs_open (fn,
4571 O_WRONLY | O_CREAT | buffer_file_type
4572 | (EQ (mustbenew, Qexcl) ? O_EXCL : O_TRUNC),
4573 S_IREAD | S_IWRITE);
4574 #else /* not DOS_NT */
4575 desc = emacs_open (fn, O_WRONLY | O_TRUNC | O_CREAT
4576 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0),
4577 auto_saving ? auto_save_mode_bits : 0666);
4578 #endif /* not DOS_NT */
4580 if (desc < 0)
4582 #ifdef CLASH_DETECTION
4583 save_errno = errno;
4584 if (!auto_saving) unlock_file (lockname);
4585 errno = save_errno;
4586 #endif /* CLASH_DETECTION */
4587 UNGCPRO;
4588 report_file_error ("Opening output file", Fcons (filename, Qnil));
4591 record_unwind_protect (close_file_unwind, make_number (desc));
4593 if (!NILP (append) && !NILP (Ffile_regular_p (filename)))
4595 long ret;
4597 if (NUMBERP (append))
4598 ret = lseek (desc, XINT (append), 1);
4599 else
4600 ret = lseek (desc, 0, 2);
4601 if (ret < 0)
4603 #ifdef CLASH_DETECTION
4604 if (!auto_saving) unlock_file (lockname);
4605 #endif /* CLASH_DETECTION */
4606 UNGCPRO;
4607 report_file_error ("Lseek error", Fcons (filename, Qnil));
4611 UNGCPRO;
4613 failure = 0;
4614 immediate_quit = 1;
4616 if (STRINGP (start))
4618 failure = 0 > a_write (desc, start, 0, SCHARS (start),
4619 &annotations, &coding);
4620 save_errno = errno;
4622 else if (XINT (start) != XINT (end))
4624 failure = 0 > a_write (desc, Qnil,
4625 XINT (start), XINT (end) - XINT (start),
4626 &annotations, &coding);
4627 save_errno = errno;
4629 else
4631 /* If file was empty, still need to write the annotations */
4632 coding.mode |= CODING_MODE_LAST_BLOCK;
4633 failure = 0 > a_write (desc, Qnil, XINT (end), 0, &annotations, &coding);
4634 save_errno = errno;
4637 if (CODING_REQUIRE_FLUSHING (&coding)
4638 && !(coding.mode & CODING_MODE_LAST_BLOCK)
4639 && ! failure)
4641 /* We have to flush out a data. */
4642 coding.mode |= CODING_MODE_LAST_BLOCK;
4643 failure = 0 > e_write (desc, Qnil, 1, 1, &coding);
4644 save_errno = errno;
4647 immediate_quit = 0;
4649 #ifdef HAVE_FSYNC
4650 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
4651 Disk full in NFS may be reported here. */
4652 /* mib says that closing the file will try to write as fast as NFS can do
4653 it, and that means the fsync here is not crucial for autosave files. */
4654 if (!auto_saving && !write_region_inhibit_fsync && fsync (desc) < 0)
4656 /* If fsync fails with EINTR, don't treat that as serious. Also
4657 ignore EINVAL which happens when fsync is not supported on this
4658 file. */
4659 if (errno != EINTR && errno != EINVAL)
4660 failure = 1, save_errno = errno;
4662 #endif
4664 /* NFS can report a write failure now. */
4665 if (emacs_close (desc) < 0)
4666 failure = 1, save_errno = errno;
4668 stat (fn, &st);
4670 /* Discard the unwind protect for close_file_unwind. */
4671 specpdl_ptr = specpdl + count1;
4673 /* Call write-region-post-annotation-function. */
4674 while (CONSP (Vwrite_region_annotation_buffers))
4676 Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers);
4677 if (!NILP (Fbuffer_live_p (buf)))
4679 Fset_buffer (buf);
4680 if (FUNCTIONP (Vwrite_region_post_annotation_function))
4681 call0 (Vwrite_region_post_annotation_function);
4683 Vwrite_region_annotation_buffers
4684 = XCDR (Vwrite_region_annotation_buffers);
4687 unbind_to (count, Qnil);
4689 #ifdef CLASH_DETECTION
4690 if (!auto_saving)
4691 unlock_file (lockname);
4692 #endif /* CLASH_DETECTION */
4694 /* Do this before reporting IO error
4695 to avoid a "file has changed on disk" warning on
4696 next attempt to save. */
4697 if (visiting)
4698 current_buffer->modtime = st.st_mtime;
4700 if (failure)
4701 error ("IO error writing %s: %s", SDATA (filename),
4702 emacs_strerror (save_errno));
4704 if (visiting)
4706 SAVE_MODIFF = MODIFF;
4707 XSETFASTINT (current_buffer->save_length, Z - BEG);
4708 current_buffer->filename = visit_file;
4709 update_mode_lines++;
4711 else if (quietly)
4713 if (auto_saving
4714 && ! NILP (Fstring_equal (current_buffer->filename,
4715 current_buffer->auto_save_file_name)))
4716 SAVE_MODIFF = MODIFF;
4718 return Qnil;
4721 if (!auto_saving)
4722 message_with_string ((INTEGERP (append)
4723 ? "Updated %s"
4724 : ! NILP (append)
4725 ? "Added to %s"
4726 : "Wrote %s"),
4727 visit_file, 1);
4729 return Qnil;
4732 Lisp_Object merge ();
4734 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
4735 doc: /* Return t if (car A) is numerically less than (car B). */)
4736 (a, b)
4737 Lisp_Object a, b;
4739 return Flss (Fcar (a), Fcar (b));
4742 /* Build the complete list of annotations appropriate for writing out
4743 the text between START and END, by calling all the functions in
4744 write-region-annotate-functions and merging the lists they return.
4745 If one of these functions switches to a different buffer, we assume
4746 that buffer contains altered text. Therefore, the caller must
4747 make sure to restore the current buffer in all cases,
4748 as save-excursion would do. */
4750 static Lisp_Object
4751 build_annotations (start, end)
4752 Lisp_Object start, end;
4754 Lisp_Object annotations;
4755 Lisp_Object p, res;
4756 struct gcpro gcpro1, gcpro2;
4757 Lisp_Object original_buffer;
4758 int i, used_global = 0;
4760 XSETBUFFER (original_buffer, current_buffer);
4762 annotations = Qnil;
4763 p = Vwrite_region_annotate_functions;
4764 GCPRO2 (annotations, p);
4765 while (CONSP (p))
4767 struct buffer *given_buffer = current_buffer;
4768 if (EQ (Qt, XCAR (p)) && !used_global)
4769 { /* Use the global value of the hook. */
4770 Lisp_Object arg[2];
4771 used_global = 1;
4772 arg[0] = Fdefault_value (Qwrite_region_annotate_functions);
4773 arg[1] = XCDR (p);
4774 p = Fappend (2, arg);
4775 continue;
4777 Vwrite_region_annotations_so_far = annotations;
4778 res = call2 (XCAR (p), start, end);
4779 /* If the function makes a different buffer current,
4780 assume that means this buffer contains altered text to be output.
4781 Reset START and END from the buffer bounds
4782 and discard all previous annotations because they should have
4783 been dealt with by this function. */
4784 if (current_buffer != given_buffer)
4786 Vwrite_region_annotation_buffers
4787 = Fcons (Fcurrent_buffer (),
4788 Vwrite_region_annotation_buffers);
4789 XSETFASTINT (start, BEGV);
4790 XSETFASTINT (end, ZV);
4791 annotations = Qnil;
4793 Flength (res); /* Check basic validity of return value */
4794 annotations = merge (annotations, res, Qcar_less_than_car);
4795 p = XCDR (p);
4798 /* Now do the same for annotation functions implied by the file-format */
4799 if (auto_saving && (!EQ (current_buffer->auto_save_file_format, Qt)))
4800 p = current_buffer->auto_save_file_format;
4801 else
4802 p = current_buffer->file_format;
4803 for (i = 0; CONSP (p); p = XCDR (p), ++i)
4805 struct buffer *given_buffer = current_buffer;
4807 Vwrite_region_annotations_so_far = annotations;
4809 /* Value is either a list of annotations or nil if the function
4810 has written annotations to a temporary buffer, which is now
4811 current. */
4812 res = call5 (Qformat_annotate_function, XCAR (p), start, end,
4813 original_buffer, make_number (i));
4814 if (current_buffer != given_buffer)
4816 XSETFASTINT (start, BEGV);
4817 XSETFASTINT (end, ZV);
4818 annotations = Qnil;
4821 if (CONSP (res))
4822 annotations = merge (annotations, res, Qcar_less_than_car);
4825 UNGCPRO;
4826 return annotations;
4830 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
4831 If STRING is nil, POS is the character position in the current buffer.
4832 Intersperse with them the annotations from *ANNOT
4833 which fall within the range of POS to POS + NCHARS,
4834 each at its appropriate position.
4836 We modify *ANNOT by discarding elements as we use them up.
4838 The return value is negative in case of system call failure. */
4840 static int
4841 a_write (desc, string, pos, nchars, annot, coding)
4842 int desc;
4843 Lisp_Object string;
4844 register int nchars;
4845 int pos;
4846 Lisp_Object *annot;
4847 struct coding_system *coding;
4849 Lisp_Object tem;
4850 int nextpos;
4851 int lastpos = pos + nchars;
4853 while (NILP (*annot) || CONSP (*annot))
4855 tem = Fcar_safe (Fcar (*annot));
4856 nextpos = pos - 1;
4857 if (INTEGERP (tem))
4858 nextpos = XFASTINT (tem);
4860 /* If there are no more annotations in this range,
4861 output the rest of the range all at once. */
4862 if (! (nextpos >= pos && nextpos <= lastpos))
4863 return e_write (desc, string, pos, lastpos, coding);
4865 /* Output buffer text up to the next annotation's position. */
4866 if (nextpos > pos)
4868 if (0 > e_write (desc, string, pos, nextpos, coding))
4869 return -1;
4870 pos = nextpos;
4872 /* Output the annotation. */
4873 tem = Fcdr (Fcar (*annot));
4874 if (STRINGP (tem))
4876 if (0 > e_write (desc, tem, 0, SCHARS (tem), coding))
4877 return -1;
4879 *annot = Fcdr (*annot);
4881 return 0;
4885 /* Write text in the range START and END into descriptor DESC,
4886 encoding them with coding system CODING. If STRING is nil, START
4887 and END are character positions of the current buffer, else they
4888 are indexes to the string STRING. */
4890 static int
4891 e_write (desc, string, start, end, coding)
4892 int desc;
4893 Lisp_Object string;
4894 int start, end;
4895 struct coding_system *coding;
4897 if (STRINGP (string))
4899 start = 0;
4900 end = SCHARS (string);
4903 /* We used to have a code for handling selective display here. But,
4904 now it is handled within encode_coding. */
4906 while (start < end)
4908 if (STRINGP (string))
4910 coding->src_multibyte = SCHARS (string) < SBYTES (string);
4911 if (CODING_REQUIRE_ENCODING (coding))
4913 encode_coding_object (coding, string,
4914 start, string_char_to_byte (string, start),
4915 end, string_char_to_byte (string, end), Qt);
4917 else
4919 coding->dst_object = string;
4920 coding->consumed_char = SCHARS (string);
4921 coding->produced = SBYTES (string);
4924 else
4926 int start_byte = CHAR_TO_BYTE (start);
4927 int end_byte = CHAR_TO_BYTE (end);
4929 coding->src_multibyte = (end - start) < (end_byte - start_byte);
4930 if (CODING_REQUIRE_ENCODING (coding))
4932 encode_coding_object (coding, Fcurrent_buffer (),
4933 start, start_byte, end, end_byte, Qt);
4935 else
4937 coding->dst_object = Qnil;
4938 coding->dst_pos_byte = start_byte;
4939 if (start >= GPT || end <= GPT)
4941 coding->consumed_char = end - start;
4942 coding->produced = end_byte - start_byte;
4944 else
4946 coding->consumed_char = GPT - start;
4947 coding->produced = GPT_BYTE - start_byte;
4952 if (coding->produced > 0)
4954 coding->produced -=
4955 emacs_write (desc,
4956 STRINGP (coding->dst_object)
4957 ? SDATA (coding->dst_object)
4958 : BYTE_POS_ADDR (coding->dst_pos_byte),
4959 coding->produced);
4961 if (coding->produced)
4962 return -1;
4964 start += coding->consumed_char;
4967 return 0;
4970 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
4971 Sverify_visited_file_modtime, 1, 1, 0,
4972 doc: /* Return t if last mod time of BUF's visited file matches what BUF records.
4973 This means that the file has not been changed since it was visited or saved.
4974 See Info node `(elisp)Modification Time' for more details. */)
4975 (buf)
4976 Lisp_Object buf;
4978 struct buffer *b;
4979 struct stat st;
4980 Lisp_Object handler;
4981 Lisp_Object filename;
4983 CHECK_BUFFER (buf);
4984 b = XBUFFER (buf);
4986 if (!STRINGP (b->filename)) return Qt;
4987 if (b->modtime == 0) return Qt;
4989 /* If the file name has special constructs in it,
4990 call the corresponding file handler. */
4991 handler = Ffind_file_name_handler (b->filename,
4992 Qverify_visited_file_modtime);
4993 if (!NILP (handler))
4994 return call2 (handler, Qverify_visited_file_modtime, buf);
4996 filename = ENCODE_FILE (b->filename);
4998 if (stat (SDATA (filename), &st) < 0)
5000 /* If the file doesn't exist now and didn't exist before,
5001 we say that it isn't modified, provided the error is a tame one. */
5002 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
5003 st.st_mtime = -1;
5004 else
5005 st.st_mtime = 0;
5007 if (st.st_mtime == b->modtime
5008 /* If both are positive, accept them if they are off by one second. */
5009 || (st.st_mtime > 0 && b->modtime > 0
5010 && (st.st_mtime == b->modtime + 1
5011 || st.st_mtime == b->modtime - 1)))
5012 return Qt;
5013 return Qnil;
5016 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
5017 Sclear_visited_file_modtime, 0, 0, 0,
5018 doc: /* Clear out records of last mod time of visited file.
5019 Next attempt to save will certainly not complain of a discrepancy. */)
5022 current_buffer->modtime = 0;
5023 return Qnil;
5026 DEFUN ("visited-file-modtime", Fvisited_file_modtime,
5027 Svisited_file_modtime, 0, 0, 0,
5028 doc: /* Return the current buffer's recorded visited file modification time.
5029 The value is a list of the form (HIGH LOW), like the time values
5030 that `file-attributes' returns. If the current buffer has no recorded
5031 file modification time, this function returns 0.
5032 See Info node `(elisp)Modification Time' for more details. */)
5035 if (! current_buffer->modtime)
5036 return make_number (0);
5037 return make_time ((time_t) current_buffer->modtime);
5040 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
5041 Sset_visited_file_modtime, 0, 1, 0,
5042 doc: /* Update buffer's recorded modification time from the visited file's time.
5043 Useful if the buffer was not read from the file normally
5044 or if the file itself has been changed for some known benign reason.
5045 An argument specifies the modification time value to use
5046 \(instead of that of the visited file), in the form of a list
5047 \(HIGH . LOW) or (HIGH LOW). */)
5048 (time_list)
5049 Lisp_Object time_list;
5051 if (!NILP (time_list))
5052 current_buffer->modtime = cons_to_long (time_list);
5053 else
5055 register Lisp_Object filename;
5056 struct stat st;
5057 Lisp_Object handler;
5059 filename = Fexpand_file_name (current_buffer->filename, Qnil);
5061 /* If the file name has special constructs in it,
5062 call the corresponding file handler. */
5063 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
5064 if (!NILP (handler))
5065 /* The handler can find the file name the same way we did. */
5066 return call2 (handler, Qset_visited_file_modtime, Qnil);
5068 filename = ENCODE_FILE (filename);
5070 if (stat (SDATA (filename), &st) >= 0)
5071 current_buffer->modtime = st.st_mtime;
5074 return Qnil;
5077 Lisp_Object
5078 auto_save_error (error)
5079 Lisp_Object error;
5081 Lisp_Object args[3], msg;
5082 int i, nbytes;
5083 struct gcpro gcpro1;
5084 char *msgbuf;
5085 USE_SAFE_ALLOCA;
5087 auto_save_error_occurred = 1;
5089 ring_bell (XFRAME (selected_frame));
5091 args[0] = build_string ("Auto-saving %s: %s");
5092 args[1] = current_buffer->name;
5093 args[2] = Ferror_message_string (error);
5094 msg = Fformat (3, args);
5095 GCPRO1 (msg);
5096 nbytes = SBYTES (msg);
5097 SAFE_ALLOCA (msgbuf, char *, nbytes);
5098 bcopy (SDATA (msg), msgbuf, nbytes);
5100 for (i = 0; i < 3; ++i)
5102 if (i == 0)
5103 message2 (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5104 else
5105 message2_nolog (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5106 Fsleep_for (make_number (1), Qnil);
5109 SAFE_FREE ();
5110 UNGCPRO;
5111 return Qnil;
5114 Lisp_Object
5115 auto_save_1 ()
5117 struct stat st;
5118 Lisp_Object modes;
5120 auto_save_mode_bits = 0666;
5122 /* Get visited file's mode to become the auto save file's mode. */
5123 if (! NILP (current_buffer->filename))
5125 if (stat (SDATA (current_buffer->filename), &st) >= 0)
5126 /* But make sure we can overwrite it later! */
5127 auto_save_mode_bits = st.st_mode | 0600;
5128 else if ((modes = Ffile_modes (current_buffer->filename),
5129 INTEGERP (modes)))
5130 /* Remote files don't cooperate with stat. */
5131 auto_save_mode_bits = XINT (modes) | 0600;
5134 return
5135 Fwrite_region (Qnil, Qnil, current_buffer->auto_save_file_name, Qnil,
5136 NILP (Vauto_save_visited_file_name) ? Qlambda : Qt,
5137 Qnil, Qnil);
5140 static Lisp_Object
5141 do_auto_save_unwind (arg) /* used as unwind-protect function */
5142 Lisp_Object arg;
5144 FILE *stream = (FILE *) XSAVE_VALUE (arg)->pointer;
5145 auto_saving = 0;
5146 if (stream != NULL)
5148 BLOCK_INPUT;
5149 fclose (stream);
5150 UNBLOCK_INPUT;
5152 return Qnil;
5155 static Lisp_Object
5156 do_auto_save_unwind_1 (value) /* used as unwind-protect function */
5157 Lisp_Object value;
5159 minibuffer_auto_raise = XINT (value);
5160 return Qnil;
5163 static Lisp_Object
5164 do_auto_save_make_dir (dir)
5165 Lisp_Object dir;
5167 Lisp_Object mode;
5169 call2 (Qmake_directory, dir, Qt);
5170 XSETFASTINT (mode, 0700);
5171 return Fset_file_modes (dir, mode);
5174 static Lisp_Object
5175 do_auto_save_eh (ignore)
5176 Lisp_Object ignore;
5178 return Qnil;
5181 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
5182 doc: /* Auto-save all buffers that need it.
5183 This is all buffers that have auto-saving enabled
5184 and are changed since last auto-saved.
5185 Auto-saving writes the buffer into a file
5186 so that your editing is not lost if the system crashes.
5187 This file is not the file you visited; that changes only when you save.
5188 Normally we run the normal hook `auto-save-hook' before saving.
5190 A non-nil NO-MESSAGE argument means do not print any message if successful.
5191 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5192 (no_message, current_only)
5193 Lisp_Object no_message, current_only;
5195 struct buffer *old = current_buffer, *b;
5196 Lisp_Object tail, buf;
5197 int auto_saved = 0;
5198 int do_handled_files;
5199 Lisp_Object oquit;
5200 FILE *stream = NULL;
5201 int count = SPECPDL_INDEX ();
5202 int orig_minibuffer_auto_raise = minibuffer_auto_raise;
5203 int old_message_p = 0;
5204 struct gcpro gcpro1, gcpro2;
5206 if (max_specpdl_size < specpdl_size + 40)
5207 max_specpdl_size = specpdl_size + 40;
5209 if (minibuf_level)
5210 no_message = Qt;
5212 if (NILP (no_message))
5214 old_message_p = push_message ();
5215 record_unwind_protect (pop_message_unwind, Qnil);
5218 /* Ordinarily don't quit within this function,
5219 but don't make it impossible to quit (in case we get hung in I/O). */
5220 oquit = Vquit_flag;
5221 Vquit_flag = Qnil;
5223 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5224 point to non-strings reached from Vbuffer_alist. */
5226 if (!NILP (Vrun_hooks))
5227 call1 (Vrun_hooks, intern ("auto-save-hook"));
5229 if (STRINGP (Vauto_save_list_file_name))
5231 Lisp_Object listfile;
5233 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
5235 /* Don't try to create the directory when shutting down Emacs,
5236 because creating the directory might signal an error, and
5237 that would leave Emacs in a strange state. */
5238 if (!NILP (Vrun_hooks))
5240 Lisp_Object dir;
5241 dir = Qnil;
5242 GCPRO2 (dir, listfile);
5243 dir = Ffile_name_directory (listfile);
5244 if (NILP (Ffile_directory_p (dir)))
5245 internal_condition_case_1 (do_auto_save_make_dir,
5246 dir, Fcons (Fcons (Qfile_error, Qnil), Qnil),
5247 do_auto_save_eh);
5248 UNGCPRO;
5251 stream = fopen (SDATA (listfile), "w");
5254 record_unwind_protect (do_auto_save_unwind,
5255 make_save_value (stream, 0));
5256 record_unwind_protect (do_auto_save_unwind_1,
5257 make_number (minibuffer_auto_raise));
5258 minibuffer_auto_raise = 0;
5259 auto_saving = 1;
5260 auto_save_error_occurred = 0;
5262 /* On first pass, save all files that don't have handlers.
5263 On second pass, save all files that do have handlers.
5265 If Emacs is crashing, the handlers may tweak what is causing
5266 Emacs to crash in the first place, and it would be a shame if
5267 Emacs failed to autosave perfectly ordinary files because it
5268 couldn't handle some ange-ftp'd file. */
5270 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
5271 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
5273 buf = XCDR (XCAR (tail));
5274 b = XBUFFER (buf);
5276 /* Record all the buffers that have auto save mode
5277 in the special file that lists them. For each of these buffers,
5278 Record visited name (if any) and auto save name. */
5279 if (STRINGP (b->auto_save_file_name)
5280 && stream != NULL && do_handled_files == 0)
5282 BLOCK_INPUT;
5283 if (!NILP (b->filename))
5285 fwrite (SDATA (b->filename), 1,
5286 SBYTES (b->filename), stream);
5288 putc ('\n', stream);
5289 fwrite (SDATA (b->auto_save_file_name), 1,
5290 SBYTES (b->auto_save_file_name), stream);
5291 putc ('\n', stream);
5292 UNBLOCK_INPUT;
5295 if (!NILP (current_only)
5296 && b != current_buffer)
5297 continue;
5299 /* Don't auto-save indirect buffers.
5300 The base buffer takes care of it. */
5301 if (b->base_buffer)
5302 continue;
5304 /* Check for auto save enabled
5305 and file changed since last auto save
5306 and file changed since last real save. */
5307 if (STRINGP (b->auto_save_file_name)
5308 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
5309 && BUF_AUTOSAVE_MODIFF (b) < BUF_MODIFF (b)
5310 /* -1 means we've turned off autosaving for a while--see below. */
5311 && XINT (b->save_length) >= 0
5312 && (do_handled_files
5313 || NILP (Ffind_file_name_handler (b->auto_save_file_name,
5314 Qwrite_region))))
5316 EMACS_TIME before_time, after_time;
5318 EMACS_GET_TIME (before_time);
5320 /* If we had a failure, don't try again for 20 minutes. */
5321 if (b->auto_save_failure_time >= 0
5322 && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200)
5323 continue;
5325 set_buffer_internal (b);
5326 if (NILP (Vauto_save_include_big_deletions)
5327 && (XFASTINT (b->save_length) * 10
5328 > (BUF_Z (b) - BUF_BEG (b)) * 13)
5329 /* A short file is likely to change a large fraction;
5330 spare the user annoying messages. */
5331 && XFASTINT (b->save_length) > 5000
5332 /* These messages are frequent and annoying for `*mail*'. */
5333 && !EQ (b->filename, Qnil)
5334 && NILP (no_message))
5336 /* It has shrunk too much; turn off auto-saving here. */
5337 minibuffer_auto_raise = orig_minibuffer_auto_raise;
5338 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5339 b->name, 1);
5340 minibuffer_auto_raise = 0;
5341 /* Turn off auto-saving until there's a real save,
5342 and prevent any more warnings. */
5343 XSETINT (b->save_length, -1);
5344 Fsleep_for (make_number (1), Qnil);
5345 continue;
5347 if (!auto_saved && NILP (no_message))
5348 message1 ("Auto-saving...");
5349 internal_condition_case (auto_save_1, Qt, auto_save_error);
5350 auto_saved++;
5351 BUF_AUTOSAVE_MODIFF (b) = BUF_MODIFF (b);
5352 XSETFASTINT (current_buffer->save_length, Z - BEG);
5353 set_buffer_internal (old);
5355 EMACS_GET_TIME (after_time);
5357 /* If auto-save took more than 60 seconds,
5358 assume it was an NFS failure that got a timeout. */
5359 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
5360 b->auto_save_failure_time = EMACS_SECS (after_time);
5364 /* Prevent another auto save till enough input events come in. */
5365 record_auto_save ();
5367 if (auto_saved && NILP (no_message))
5369 if (old_message_p)
5371 /* If we are going to restore an old message,
5372 give time to read ours. */
5373 sit_for (make_number (1), 0, 0);
5374 restore_message ();
5376 else if (!auto_save_error_occurred)
5377 /* Don't overwrite the error message if an error occurred.
5378 If we displayed a message and then restored a state
5379 with no message, leave a "done" message on the screen. */
5380 message1 ("Auto-saving...done");
5383 Vquit_flag = oquit;
5385 /* This restores the message-stack status. */
5386 unbind_to (count, Qnil);
5387 return Qnil;
5390 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
5391 Sset_buffer_auto_saved, 0, 0, 0,
5392 doc: /* Mark current buffer as auto-saved with its current text.
5393 No auto-save file will be written until the buffer changes again. */)
5396 /* FIXME: This should not be called in indirect buffers, since
5397 they're not autosaved. */
5398 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
5399 XSETFASTINT (current_buffer->save_length, Z - BEG);
5400 current_buffer->auto_save_failure_time = -1;
5401 return Qnil;
5404 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
5405 Sclear_buffer_auto_save_failure, 0, 0, 0,
5406 doc: /* Clear any record of a recent auto-save failure in the current buffer. */)
5409 current_buffer->auto_save_failure_time = -1;
5410 return Qnil;
5413 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
5414 0, 0, 0,
5415 doc: /* Return t if current buffer has been auto-saved recently.
5416 More precisely, if it has been auto-saved since last read from or saved
5417 in the visited file. If the buffer has no visited file,
5418 then any auto-save counts as "recent". */)
5421 /* FIXME: maybe we should return nil for indirect buffers since
5422 they're never autosaved. */
5423 return (SAVE_MODIFF < BUF_AUTOSAVE_MODIFF (current_buffer) ? Qt : Qnil);
5426 /* Reading and completing file names */
5428 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p,
5429 Snext_read_file_uses_dialog_p, 0, 0, 0,
5430 doc: /* Return t if a call to `read-file-name' will use a dialog.
5431 The return value is only relevant for a call to `read-file-name' that happens
5432 before any other event (mouse or keypress) is handled. */)
5435 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK)
5436 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
5437 && use_dialog_box
5438 && use_file_dialog
5439 && have_menus_p ())
5440 return Qt;
5441 #endif
5442 return Qnil;
5445 Lisp_Object
5446 Fread_file_name (prompt, dir, default_filename, mustmatch, initial, predicate)
5447 Lisp_Object prompt, dir, default_filename, mustmatch, initial, predicate;
5449 struct gcpro gcpro1, gcpro2;
5450 Lisp_Object args[7];
5452 GCPRO1 (default_filename);
5453 args[0] = intern ("read-file-name");
5454 args[1] = prompt;
5455 args[2] = dir;
5456 args[3] = default_filename;
5457 args[4] = mustmatch;
5458 args[5] = initial;
5459 args[6] = predicate;
5460 RETURN_UNGCPRO (Ffuncall (7, args));
5464 void
5465 syms_of_fileio ()
5467 Qoperations = intern_c_string ("operations");
5468 Qexpand_file_name = intern_c_string ("expand-file-name");
5469 Qsubstitute_in_file_name = intern_c_string ("substitute-in-file-name");
5470 Qdirectory_file_name = intern_c_string ("directory-file-name");
5471 Qfile_name_directory = intern_c_string ("file-name-directory");
5472 Qfile_name_nondirectory = intern_c_string ("file-name-nondirectory");
5473 Qunhandled_file_name_directory = intern_c_string ("unhandled-file-name-directory");
5474 Qfile_name_as_directory = intern_c_string ("file-name-as-directory");
5475 Qcopy_file = intern_c_string ("copy-file");
5476 Qmake_directory_internal = intern_c_string ("make-directory-internal");
5477 Qmake_directory = intern_c_string ("make-directory");
5478 Qdelete_directory_internal = intern_c_string ("delete-directory-internal");
5479 Qdelete_file = intern_c_string ("delete-file");
5480 Qrename_file = intern_c_string ("rename-file");
5481 Qadd_name_to_file = intern_c_string ("add-name-to-file");
5482 Qmake_symbolic_link = intern_c_string ("make-symbolic-link");
5483 Qfile_exists_p = intern_c_string ("file-exists-p");
5484 Qfile_executable_p = intern_c_string ("file-executable-p");
5485 Qfile_readable_p = intern_c_string ("file-readable-p");
5486 Qfile_writable_p = intern_c_string ("file-writable-p");
5487 Qfile_symlink_p = intern_c_string ("file-symlink-p");
5488 Qaccess_file = intern_c_string ("access-file");
5489 Qfile_directory_p = intern_c_string ("file-directory-p");
5490 Qfile_regular_p = intern_c_string ("file-regular-p");
5491 Qfile_accessible_directory_p = intern_c_string ("file-accessible-directory-p");
5492 Qfile_modes = intern_c_string ("file-modes");
5493 Qset_file_modes = intern_c_string ("set-file-modes");
5494 Qset_file_times = intern_c_string ("set-file-times");
5495 Qfile_newer_than_file_p = intern_c_string ("file-newer-than-file-p");
5496 Qinsert_file_contents = intern_c_string ("insert-file-contents");
5497 Qwrite_region = intern_c_string ("write-region");
5498 Qverify_visited_file_modtime = intern_c_string ("verify-visited-file-modtime");
5499 Qset_visited_file_modtime = intern_c_string ("set-visited-file-modtime");
5500 Qauto_save_coding = intern_c_string ("auto-save-coding");
5502 staticpro (&Qoperations);
5503 staticpro (&Qexpand_file_name);
5504 staticpro (&Qsubstitute_in_file_name);
5505 staticpro (&Qdirectory_file_name);
5506 staticpro (&Qfile_name_directory);
5507 staticpro (&Qfile_name_nondirectory);
5508 staticpro (&Qunhandled_file_name_directory);
5509 staticpro (&Qfile_name_as_directory);
5510 staticpro (&Qcopy_file);
5511 staticpro (&Qmake_directory_internal);
5512 staticpro (&Qmake_directory);
5513 staticpro (&Qdelete_directory_internal);
5514 staticpro (&Qdelete_file);
5515 staticpro (&Qrename_file);
5516 staticpro (&Qadd_name_to_file);
5517 staticpro (&Qmake_symbolic_link);
5518 staticpro (&Qfile_exists_p);
5519 staticpro (&Qfile_executable_p);
5520 staticpro (&Qfile_readable_p);
5521 staticpro (&Qfile_writable_p);
5522 staticpro (&Qaccess_file);
5523 staticpro (&Qfile_symlink_p);
5524 staticpro (&Qfile_directory_p);
5525 staticpro (&Qfile_regular_p);
5526 staticpro (&Qfile_accessible_directory_p);
5527 staticpro (&Qfile_modes);
5528 staticpro (&Qset_file_modes);
5529 staticpro (&Qset_file_times);
5530 staticpro (&Qfile_newer_than_file_p);
5531 staticpro (&Qinsert_file_contents);
5532 staticpro (&Qwrite_region);
5533 staticpro (&Qverify_visited_file_modtime);
5534 staticpro (&Qset_visited_file_modtime);
5535 staticpro (&Qauto_save_coding);
5537 Qfile_name_history = intern_c_string ("file-name-history");
5538 Fset (Qfile_name_history, Qnil);
5539 staticpro (&Qfile_name_history);
5541 Qfile_error = intern_c_string ("file-error");
5542 staticpro (&Qfile_error);
5543 Qfile_already_exists = intern_c_string ("file-already-exists");
5544 staticpro (&Qfile_already_exists);
5545 Qfile_date_error = intern_c_string ("file-date-error");
5546 staticpro (&Qfile_date_error);
5547 Qexcl = intern_c_string ("excl");
5548 staticpro (&Qexcl);
5550 #ifdef DOS_NT
5551 Qfind_buffer_file_type = intern_c_string ("find-buffer-file-type");
5552 staticpro (&Qfind_buffer_file_type);
5553 #endif /* DOS_NT */
5555 DEFVAR_LISP ("file-name-coding-system", &Vfile_name_coding_system,
5556 doc: /* *Coding system for encoding file names.
5557 If it is nil, `default-file-name-coding-system' (which see) is used. */);
5558 Vfile_name_coding_system = Qnil;
5560 DEFVAR_LISP ("default-file-name-coding-system",
5561 &Vdefault_file_name_coding_system,
5562 doc: /* Default coding system for encoding file names.
5563 This variable is used only when `file-name-coding-system' is nil.
5565 This variable is set/changed by the command `set-language-environment'.
5566 User should not set this variable manually,
5567 instead use `file-name-coding-system' to get a constant encoding
5568 of file names regardless of the current language environment. */);
5569 Vdefault_file_name_coding_system = Qnil;
5571 Qformat_decode = intern_c_string ("format-decode");
5572 staticpro (&Qformat_decode);
5573 Qformat_annotate_function = intern_c_string ("format-annotate-function");
5574 staticpro (&Qformat_annotate_function);
5575 Qafter_insert_file_set_coding = intern_c_string ("after-insert-file-set-coding");
5576 staticpro (&Qafter_insert_file_set_coding);
5578 Qcar_less_than_car = intern_c_string ("car-less-than-car");
5579 staticpro (&Qcar_less_than_car);
5581 Fput (Qfile_error, Qerror_conditions,
5582 Fpurecopy (list2 (Qfile_error, Qerror)));
5583 Fput (Qfile_error, Qerror_message,
5584 make_pure_c_string ("File error"));
5586 Fput (Qfile_already_exists, Qerror_conditions,
5587 Fpurecopy (list3 (Qfile_already_exists, Qfile_error, Qerror)));
5588 Fput (Qfile_already_exists, Qerror_message,
5589 make_pure_c_string ("File already exists"));
5591 Fput (Qfile_date_error, Qerror_conditions,
5592 Fpurecopy (list3 (Qfile_date_error, Qfile_error, Qerror)));
5593 Fput (Qfile_date_error, Qerror_message,
5594 make_pure_c_string ("Cannot set file date"));
5596 DEFVAR_LISP ("directory-sep-char", &Vdirectory_sep_char,
5597 doc: /* Directory separator character for built-in functions that return file names.
5598 The value is always ?/. Don't use this variable, just use `/'. */);
5599 XSETFASTINT (Vdirectory_sep_char, '/');
5601 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist,
5602 doc: /* *Alist of elements (REGEXP . HANDLER) for file names handled specially.
5603 If a file name matches REGEXP, then all I/O on that file is done by calling
5604 HANDLER.
5606 The first argument given to HANDLER is the name of the I/O primitive
5607 to be handled; the remaining arguments are the arguments that were
5608 passed to that primitive. For example, if you do
5609 (file-exists-p FILENAME)
5610 and FILENAME is handled by HANDLER, then HANDLER is called like this:
5611 (funcall HANDLER 'file-exists-p FILENAME)
5612 The function `find-file-name-handler' checks this list for a handler
5613 for its argument. */);
5614 Vfile_name_handler_alist = Qnil;
5616 DEFVAR_LISP ("set-auto-coding-function",
5617 &Vset_auto_coding_function,
5618 doc: /* If non-nil, a function to call to decide a coding system of file.
5619 Two arguments are passed to this function: the file name
5620 and the length of a file contents following the point.
5621 This function should return a coding system to decode the file contents.
5622 It should check the file name against `auto-coding-alist'.
5623 If no coding system is decided, it should check a coding system
5624 specified in the heading lines with the format:
5625 -*- ... coding: CODING-SYSTEM; ... -*-
5626 or local variable spec of the tailing lines with `coding:' tag. */);
5627 Vset_auto_coding_function = Qnil;
5629 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions,
5630 doc: /* A list of functions to be called at the end of `insert-file-contents'.
5631 Each is passed one argument, the number of characters inserted,
5632 with point at the start of the inserted text. Each function
5633 should leave point the same, and return the new character count.
5634 If `insert-file-contents' is intercepted by a handler from
5635 `file-name-handler-alist', that handler is responsible for calling the
5636 functions in `after-insert-file-functions' if appropriate. */);
5637 Vafter_insert_file_functions = Qnil;
5639 DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions,
5640 doc: /* A list of functions to be called at the start of `write-region'.
5641 Each is passed two arguments, START and END as for `write-region'.
5642 These are usually two numbers but not always; see the documentation
5643 for `write-region'. The function should return a list of pairs
5644 of the form (POSITION . STRING), consisting of strings to be effectively
5645 inserted at the specified positions of the file being written (1 means to
5646 insert before the first byte written). The POSITIONs must be sorted into
5647 increasing order.
5649 If there are several annotation functions, the lists returned by these
5650 functions are merged destructively. As each annotation function runs,
5651 the variable `write-region-annotations-so-far' contains a list of all
5652 annotations returned by previous annotation functions.
5654 An annotation function can return with a different buffer current.
5655 Doing so removes the annotations returned by previous functions, and
5656 resets START and END to `point-min' and `point-max' of the new buffer.
5658 After `write-region' completes, Emacs calls the function stored in
5659 `write-region-post-annotation-function', once for each buffer that was
5660 current when building the annotations (i.e., at least once), with that
5661 buffer current. */);
5662 Vwrite_region_annotate_functions = Qnil;
5663 staticpro (&Qwrite_region_annotate_functions);
5664 Qwrite_region_annotate_functions
5665 = intern_c_string ("write-region-annotate-functions");
5667 DEFVAR_LISP ("write-region-post-annotation-function",
5668 &Vwrite_region_post_annotation_function,
5669 doc: /* Function to call after `write-region' completes.
5670 The function is called with no arguments. If one or more of the
5671 annotation functions in `write-region-annotate-functions' changed the
5672 current buffer, the function stored in this variable is called for
5673 each of those additional buffers as well, in addition to the original
5674 buffer. The relevant buffer is current during each function call. */);
5675 Vwrite_region_post_annotation_function = Qnil;
5676 staticpro (&Vwrite_region_annotation_buffers);
5678 DEFVAR_LISP ("write-region-annotations-so-far",
5679 &Vwrite_region_annotations_so_far,
5680 doc: /* When an annotation function is called, this holds the previous annotations.
5681 These are the annotations made by other annotation functions
5682 that were already called. See also `write-region-annotate-functions'. */);
5683 Vwrite_region_annotations_so_far = Qnil;
5685 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers,
5686 doc: /* A list of file name handlers that temporarily should not be used.
5687 This applies only to the operation `inhibit-file-name-operation'. */);
5688 Vinhibit_file_name_handlers = Qnil;
5690 DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation,
5691 doc: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
5692 Vinhibit_file_name_operation = Qnil;
5694 DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name,
5695 doc: /* File name in which we write a list of all auto save file names.
5696 This variable is initialized automatically from `auto-save-list-file-prefix'
5697 shortly after Emacs reads your `.emacs' file, if you have not yet given it
5698 a non-nil value. */);
5699 Vauto_save_list_file_name = Qnil;
5701 DEFVAR_LISP ("auto-save-visited-file-name", &Vauto_save_visited_file_name,
5702 doc: /* Non-nil says auto-save a buffer in the file it is visiting, when practical.
5703 Normally auto-save files are written under other names. */);
5704 Vauto_save_visited_file_name = Qnil;
5706 DEFVAR_LISP ("auto-save-include-big-deletions", &Vauto_save_include_big_deletions,
5707 doc: /* If non-nil, auto-save even if a large part of the text is deleted.
5708 If nil, deleting a substantial portion of the text disables auto-save
5709 in the buffer; this is the default behavior, because the auto-save
5710 file is usually more useful if it contains the deleted text. */);
5711 Vauto_save_include_big_deletions = Qnil;
5713 #ifdef HAVE_FSYNC
5714 DEFVAR_BOOL ("write-region-inhibit-fsync", &write_region_inhibit_fsync,
5715 doc: /* *Non-nil means don't call fsync in `write-region'.
5716 This variable affects calls to `write-region' as well as save commands.
5717 A non-nil value may result in data loss! */);
5718 write_region_inhibit_fsync = 0;
5719 #endif
5721 DEFVAR_BOOL ("delete-by-moving-to-trash", &delete_by_moving_to_trash,
5722 doc: /* Specifies whether to use the system's trash can.
5723 When non-nil, the function `move-file-to-trash' will be used by
5724 `delete-file' and `delete-directory'. */);
5725 delete_by_moving_to_trash = 0;
5726 Qdelete_by_moving_to_trash = intern_c_string ("delete-by-moving-to-trash");
5727 Qmove_file_to_trash = intern_c_string ("move-file-to-trash");
5728 staticpro (&Qmove_file_to_trash);
5729 Qcopy_directory = intern_c_string ("copy-directory");
5730 staticpro (&Qcopy_directory);
5731 Qdelete_directory = intern_c_string ("delete-directory");
5732 staticpro (&Qdelete_directory);
5734 defsubr (&Sfind_file_name_handler);
5735 defsubr (&Sfile_name_directory);
5736 defsubr (&Sfile_name_nondirectory);
5737 defsubr (&Sunhandled_file_name_directory);
5738 defsubr (&Sfile_name_as_directory);
5739 defsubr (&Sdirectory_file_name);
5740 defsubr (&Smake_temp_name);
5741 defsubr (&Sexpand_file_name);
5742 defsubr (&Ssubstitute_in_file_name);
5743 defsubr (&Scopy_file);
5744 defsubr (&Smake_directory_internal);
5745 defsubr (&Sdelete_directory_internal);
5746 defsubr (&Sdelete_file);
5747 defsubr (&Srename_file);
5748 defsubr (&Sadd_name_to_file);
5749 defsubr (&Smake_symbolic_link);
5750 defsubr (&Sfile_name_absolute_p);
5751 defsubr (&Sfile_exists_p);
5752 defsubr (&Sfile_executable_p);
5753 defsubr (&Sfile_readable_p);
5754 defsubr (&Sfile_writable_p);
5755 defsubr (&Saccess_file);
5756 defsubr (&Sfile_symlink_p);
5757 defsubr (&Sfile_directory_p);
5758 defsubr (&Sfile_accessible_directory_p);
5759 defsubr (&Sfile_regular_p);
5760 defsubr (&Sfile_modes);
5761 defsubr (&Sset_file_modes);
5762 defsubr (&Sset_file_times);
5763 defsubr (&Sset_default_file_modes);
5764 defsubr (&Sdefault_file_modes);
5765 defsubr (&Sfile_newer_than_file_p);
5766 defsubr (&Sinsert_file_contents);
5767 defsubr (&Swrite_region);
5768 defsubr (&Scar_less_than_car);
5769 defsubr (&Sverify_visited_file_modtime);
5770 defsubr (&Sclear_visited_file_modtime);
5771 defsubr (&Svisited_file_modtime);
5772 defsubr (&Sset_visited_file_modtime);
5773 defsubr (&Sdo_auto_save);
5774 defsubr (&Sset_buffer_auto_saved);
5775 defsubr (&Sclear_buffer_auto_save_failure);
5776 defsubr (&Srecent_auto_save_p);
5778 defsubr (&Snext_read_file_uses_dialog_p);
5780 #ifdef HAVE_SYNC
5781 defsubr (&Sunix_sync);
5782 #endif
5785 /* arch-tag: 64ba3fd7-f844-4fb2-ba4b-427eb928786c
5786 (do not change this comment) */