(Ffloat_time): Doc fix (Bug#2768).
[emacs.git] / src / fileio.c
blob4f3573b02d7886cc45005228c119bd2cb48b181b
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 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>
32 #ifdef HAVE_UNISTD_H
33 #include <unistd.h>
34 #endif
36 #if !defined (S_ISLNK) && defined (S_IFLNK)
37 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
38 #endif
40 #if !defined (S_ISFIFO) && defined (S_IFIFO)
41 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
42 #endif
44 #if !defined (S_ISREG) && defined (S_IFREG)
45 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
46 #endif
48 #ifdef HAVE_PWD_H
49 #include <pwd.h>
50 #endif
52 #include <ctype.h>
53 #include <errno.h>
55 #ifndef vax11c
56 #ifndef USE_CRT_DLL
57 extern int errno;
58 #endif
59 #endif
61 #include "lisp.h"
62 #include "intervals.h"
63 #include "buffer.h"
64 #include "character.h"
65 #include "coding.h"
66 #include "window.h"
67 #include "blockinput.h"
68 #include "frame.h"
69 #include "dispextern.h"
71 #ifdef WINDOWSNT
72 #define NOMINMAX 1
73 #include <windows.h>
74 #include <stdlib.h>
75 #include <fcntl.h>
76 #endif /* not WINDOWSNT */
78 #ifdef MSDOS
79 #include "msdos.h"
80 #include <sys/param.h>
81 #if __DJGPP__ >= 2
82 #include <fcntl.h>
83 #include <string.h>
84 #endif
85 #endif
87 #ifdef DOS_NT
88 #define CORRECT_DIR_SEPS(s) \
89 do { if ('/' == DIRECTORY_SEP) dostounix_filename (s); \
90 else unixtodos_filename (s); \
91 } while (0)
92 /* On Windows, drive letters must be alphabetic - on DOS, the Netware
93 redirector allows the six letters between 'Z' and 'a' as well. */
94 #ifdef MSDOS
95 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
96 #endif
97 #ifdef WINDOWSNT
98 #define IS_DRIVE(x) isalpha (x)
99 #endif
100 /* Need to lower-case the drive letter, or else expanded
101 filenames will sometimes compare inequal, because
102 `expand-file-name' doesn't always down-case the drive letter. */
103 #define DRIVE_LETTER(x) (tolower (x))
104 #endif
106 #include "systime.h"
108 #ifdef HPUX
109 #include <netio.h>
110 #endif
112 #include "commands.h"
113 extern int use_dialog_box;
114 extern int use_file_dialog;
116 #ifndef O_WRONLY
117 #define O_WRONLY 1
118 #endif
120 #ifndef O_RDONLY
121 #define O_RDONLY 0
122 #endif
124 #ifndef S_ISLNK
125 # define lstat stat
126 #endif
128 #ifndef FILE_SYSTEM_CASE
129 #define FILE_SYSTEM_CASE(filename) (filename)
130 #endif
132 /* Nonzero during writing of auto-save files */
133 int auto_saving;
135 /* Set by auto_save_1 to mode of original file so Fwrite_region will create
136 a new file with the same mode as the original */
137 int auto_save_mode_bits;
139 /* Set by auto_save_1 if an error occurred during the last auto-save. */
140 int auto_save_error_occurred;
142 /* The symbol bound to coding-system-for-read when
143 insert-file-contents is called for recovering a file. This is not
144 an actual coding system name, but just an indicator to tell
145 insert-file-contents to use `emacs-mule' with a special flag for
146 auto saving and recovering a file. */
147 Lisp_Object Qauto_save_coding;
149 /* Coding system for file names, or nil if none. */
150 Lisp_Object Vfile_name_coding_system;
152 /* Coding system for file names used only when
153 Vfile_name_coding_system is nil. */
154 Lisp_Object Vdefault_file_name_coding_system;
156 /* Alist of elements (REGEXP . HANDLER) for file names
157 whose I/O is done with a special handler. */
158 Lisp_Object Vfile_name_handler_alist;
160 /* Property name of a file name handler,
161 which gives a list of operations it handles.. */
162 Lisp_Object Qoperations;
164 /* Lisp functions for translating file formats */
165 Lisp_Object Qformat_decode, Qformat_annotate_function;
167 /* Function to be called to decide a coding system of a reading file. */
168 Lisp_Object Vset_auto_coding_function;
170 /* Functions to be called to process text properties in inserted file. */
171 Lisp_Object Vafter_insert_file_functions;
173 /* Lisp function for setting buffer-file-coding-system and the
174 multibyteness of the current buffer after inserting a file. */
175 Lisp_Object Qafter_insert_file_set_coding;
177 /* Functions to be called to create text property annotations for file. */
178 Lisp_Object Vwrite_region_annotate_functions;
179 Lisp_Object Qwrite_region_annotate_functions;
180 Lisp_Object Vwrite_region_post_annotation_function;
182 /* During build_annotations, each time an annotation function is called,
183 this holds the annotations made by the previous functions. */
184 Lisp_Object Vwrite_region_annotations_so_far;
186 /* Each time an annotation function changes the buffer, the new buffer
187 is added here. */
188 Lisp_Object Vwrite_region_annotation_buffers;
190 /* File name in which we write a list of all our auto save files. */
191 Lisp_Object Vauto_save_list_file_name;
193 /* Whether or not files are auto-saved into themselves. */
194 Lisp_Object Vauto_save_visited_file_name;
196 /* On NT, specifies the directory separator character, used (eg.) when
197 expanding file names. This can be bound to / or \. */
198 Lisp_Object Vdirectory_sep_char;
200 #ifdef HAVE_FSYNC
201 /* Nonzero means skip the call to fsync in Fwrite-region. */
202 int write_region_inhibit_fsync;
203 #endif
205 /* Non-zero means call move-file-to-trash in Fdelete_file or
206 Fdelete_directory. */
207 int delete_by_moving_to_trash;
209 Lisp_Object Qdelete_by_moving_to_trash;
211 /* Lisp function for moving files to trash. */
212 Lisp_Object Qmove_file_to_trash;
214 extern Lisp_Object Vuser_login_name;
216 #ifdef WINDOWSNT
217 extern Lisp_Object Vw32_get_true_file_attributes;
218 #endif
220 extern int minibuf_level;
222 extern int minibuffer_auto_raise;
224 extern int history_delete_duplicates;
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, 0);
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;
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 beg = SDATA (filename);
428 #ifdef DOS_NT
429 beg = strcpy (alloca (strlen (beg) + 1), beg);
430 #endif
431 p = beg + SBYTES (filename);
433 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
434 #ifdef DOS_NT
435 /* only recognise drive specifier at the beginning */
436 && !(p[-1] == ':'
437 /* handle the "/:d:foo" and "/:foo" cases correctly */
438 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg))
439 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
440 #endif
441 ) p--;
443 if (p == beg)
444 return Qnil;
445 #ifdef DOS_NT
446 /* Expansion of "c:" to drive and default directory. */
447 if (p[-1] == ':')
449 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
450 unsigned char *res = alloca (MAXPATHLEN + 1);
451 unsigned char *r = res;
453 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':')
455 strncpy (res, beg, 2);
456 beg += 2;
457 r += 2;
460 if (getdefdir (toupper (*beg) - 'A' + 1, r))
462 if (!IS_DIRECTORY_SEP (res[strlen (res) - 1]))
463 strcat (res, "/");
464 beg = res;
465 p = beg + strlen (beg);
468 CORRECT_DIR_SEPS (beg);
469 #endif /* DOS_NT */
471 return make_specified_string (beg, -1, p - beg, STRING_MULTIBYTE (filename));
474 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory,
475 Sfile_name_nondirectory, 1, 1, 0,
476 doc: /* Return file name FILENAME sans its directory.
477 For example, in a Unix-syntax file name,
478 this is everything after the last slash,
479 or the entire name if it contains no slash. */)
480 (filename)
481 Lisp_Object filename;
483 register const unsigned char *beg, *p, *end;
484 Lisp_Object handler;
486 CHECK_STRING (filename);
488 /* If the file name has special constructs in it,
489 call the corresponding file handler. */
490 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory);
491 if (!NILP (handler))
492 return call2 (handler, Qfile_name_nondirectory, filename);
494 beg = SDATA (filename);
495 end = p = beg + SBYTES (filename);
497 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
498 #ifdef DOS_NT
499 /* only recognise drive specifier at beginning */
500 && !(p[-1] == ':'
501 /* handle the "/:d:foo" case correctly */
502 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
503 #endif
505 p--;
507 return make_specified_string (p, -1, end - p, STRING_MULTIBYTE (filename));
510 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory,
511 Sunhandled_file_name_directory, 1, 1, 0,
512 doc: /* Return a directly usable directory name somehow associated with FILENAME.
513 A `directly usable' directory name is one that may be used without the
514 intervention of any file handler.
515 If FILENAME is a directly usable file itself, return
516 \(file-name-directory FILENAME).
517 If FILENAME refers to a file which is not accessible from a local process,
518 then this should return nil.
519 The `call-process' and `start-process' functions use this function to
520 get a current directory to run processes in. */)
521 (filename)
522 Lisp_Object filename;
524 Lisp_Object handler;
526 /* If the file name has special constructs in it,
527 call the corresponding file handler. */
528 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
529 if (!NILP (handler))
530 return call2 (handler, Qunhandled_file_name_directory, filename);
532 return Ffile_name_directory (filename);
536 char *
537 file_name_as_directory (out, in)
538 char *out, *in;
540 int size = strlen (in) - 1;
542 strcpy (out, in);
544 if (size < 0)
546 out[0] = '.';
547 out[1] = '/';
548 out[2] = 0;
549 return out;
552 /* For Unix syntax, Append a slash if necessary */
553 if (!IS_DIRECTORY_SEP (out[size]))
555 /* Cannot use DIRECTORY_SEP, which could have any value */
556 out[size + 1] = '/';
557 out[size + 2] = '\0';
559 #ifdef DOS_NT
560 CORRECT_DIR_SEPS (out);
561 #endif
562 return out;
565 DEFUN ("file-name-as-directory", Ffile_name_as_directory,
566 Sfile_name_as_directory, 1, 1, 0,
567 doc: /* Return a string representing the file name FILE interpreted as a directory.
568 This operation exists because a directory is also a file, but its name as
569 a directory is different from its name as a file.
570 The result can be used as the value of `default-directory'
571 or passed as second argument to `expand-file-name'.
572 For a Unix-syntax file name, just appends a slash. */)
573 (file)
574 Lisp_Object file;
576 char *buf;
577 Lisp_Object handler;
579 CHECK_STRING (file);
580 if (NILP (file))
581 return Qnil;
583 /* If the file name has special constructs in it,
584 call the corresponding file handler. */
585 handler = Ffind_file_name_handler (file, Qfile_name_as_directory);
586 if (!NILP (handler))
587 return call2 (handler, Qfile_name_as_directory, file);
589 buf = (char *) alloca (SBYTES (file) + 10);
590 file_name_as_directory (buf, SDATA (file));
591 return make_specified_string (buf, -1, strlen (buf),
592 STRING_MULTIBYTE (file));
596 * Convert from directory name to filename.
597 * On UNIX, it's simple: just make sure there isn't a terminating /
599 * Value is nonzero if the string output is different from the input.
603 directory_file_name (src, dst)
604 char *src, *dst;
606 long slen;
608 slen = strlen (src);
610 /* Process as Unix format: just remove any final slash.
611 But leave "/" unchanged; do not change it to "". */
612 strcpy (dst, src);
613 if (slen > 1
614 && IS_DIRECTORY_SEP (dst[slen - 1])
615 #ifdef DOS_NT
616 && !IS_ANY_SEP (dst[slen - 2])
617 #endif
619 dst[slen - 1] = 0;
620 #ifdef DOS_NT
621 CORRECT_DIR_SEPS (dst);
622 #endif
623 return 1;
626 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
627 1, 1, 0,
628 doc: /* Returns the file name of the directory named DIRECTORY.
629 This is the name of the file that holds the data for the directory DIRECTORY.
630 This operation exists because a directory is also a file, but its name as
631 a directory is different from its name as a file.
632 In Unix-syntax, this function just removes the final slash. */)
633 (directory)
634 Lisp_Object directory;
636 char *buf;
637 Lisp_Object handler;
639 CHECK_STRING (directory);
641 if (NILP (directory))
642 return Qnil;
644 /* If the file name has special constructs in it,
645 call the corresponding file handler. */
646 handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
647 if (!NILP (handler))
648 return call2 (handler, Qdirectory_file_name, directory);
650 buf = (char *) alloca (SBYTES (directory) + 20);
651 directory_file_name (SDATA (directory), buf);
652 return make_specified_string (buf, -1, strlen (buf),
653 STRING_MULTIBYTE (directory));
656 static char make_temp_name_tbl[64] =
658 'A','B','C','D','E','F','G','H',
659 'I','J','K','L','M','N','O','P',
660 'Q','R','S','T','U','V','W','X',
661 'Y','Z','a','b','c','d','e','f',
662 'g','h','i','j','k','l','m','n',
663 'o','p','q','r','s','t','u','v',
664 'w','x','y','z','0','1','2','3',
665 '4','5','6','7','8','9','-','_'
668 static unsigned make_temp_name_count, make_temp_name_count_initialized_p;
670 /* Value is a temporary file name starting with PREFIX, a string.
672 The Emacs process number forms part of the result, so there is
673 no danger of generating a name being used by another process.
674 In addition, this function makes an attempt to choose a name
675 which has no existing file. To make this work, PREFIX should be
676 an absolute file name.
678 BASE64_P non-zero means add the pid as 3 characters in base64
679 encoding. In this case, 6 characters will be added to PREFIX to
680 form the file name. Otherwise, if Emacs is running on a system
681 with long file names, add the pid as a decimal number.
683 This function signals an error if no unique file name could be
684 generated. */
686 Lisp_Object
687 make_temp_name (prefix, base64_p)
688 Lisp_Object prefix;
689 int base64_p;
691 Lisp_Object val;
692 int len, clen;
693 int pid;
694 unsigned char *p, *data;
695 char pidbuf[20];
696 int pidlen;
698 CHECK_STRING (prefix);
700 /* VAL is created by adding 6 characters to PREFIX. The first
701 three are the PID of this process, in base 64, and the second
702 three are incremented if the file already exists. This ensures
703 262144 unique file names per PID per PREFIX. */
705 pid = (int) getpid ();
707 if (base64_p)
709 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
710 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
711 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
712 pidlen = 3;
714 else
716 #ifdef HAVE_LONG_FILE_NAMES
717 sprintf (pidbuf, "%d", pid);
718 pidlen = strlen (pidbuf);
719 #else
720 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
721 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
722 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
723 pidlen = 3;
724 #endif
727 len = SBYTES (prefix); clen = SCHARS (prefix);
728 val = make_uninit_multibyte_string (clen + 3 + pidlen, len + 3 + pidlen);
729 if (!STRING_MULTIBYTE (prefix))
730 STRING_SET_UNIBYTE (val);
731 data = SDATA (val);
732 bcopy(SDATA (prefix), data, len);
733 p = data + len;
735 bcopy (pidbuf, p, pidlen);
736 p += pidlen;
738 /* Here we try to minimize useless stat'ing when this function is
739 invoked many times successively with the same PREFIX. We achieve
740 this by initializing count to a random value, and incrementing it
741 afterwards.
743 We don't want make-temp-name to be called while dumping,
744 because then make_temp_name_count_initialized_p would get set
745 and then make_temp_name_count would not be set when Emacs starts. */
747 if (!make_temp_name_count_initialized_p)
749 make_temp_name_count = (unsigned) time (NULL);
750 make_temp_name_count_initialized_p = 1;
753 while (1)
755 struct stat ignored;
756 unsigned num = make_temp_name_count;
758 p[0] = make_temp_name_tbl[num & 63], num >>= 6;
759 p[1] = make_temp_name_tbl[num & 63], num >>= 6;
760 p[2] = make_temp_name_tbl[num & 63], num >>= 6;
762 /* Poor man's congruential RN generator. Replace with
763 ++make_temp_name_count for debugging. */
764 make_temp_name_count += 25229;
765 make_temp_name_count %= 225307;
767 if (stat (data, &ignored) < 0)
769 /* We want to return only if errno is ENOENT. */
770 if (errno == ENOENT)
771 return val;
772 else
773 /* The error here is dubious, but there is little else we
774 can do. The alternatives are to return nil, which is
775 as bad as (and in many cases worse than) throwing the
776 error, or to ignore the error, which will likely result
777 in looping through 225307 stat's, which is not only
778 dog-slow, but also useless since it will fallback to
779 the errow below, anyway. */
780 report_file_error ("Cannot create temporary name for prefix",
781 Fcons (prefix, Qnil));
782 /* not reached */
786 error ("Cannot create temporary name for prefix `%s'",
787 SDATA (prefix));
788 return Qnil;
792 DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
793 doc: /* Generate temporary file name (string) starting with PREFIX (a string).
794 The Emacs process number forms part of the result,
795 so there is no danger of generating a name being used by another process.
797 In addition, this function makes an attempt to choose a name
798 which has no existing file. To make this work,
799 PREFIX should be an absolute file name.
801 There is a race condition between calling `make-temp-name' and creating the
802 file which opens all kinds of security holes. For that reason, you should
803 probably use `make-temp-file' instead, except in three circumstances:
805 * If you are creating the file in the user's home directory.
806 * If you are creating a directory rather than an ordinary file.
807 * If you are taking special precautions as `make-temp-file' does. */)
808 (prefix)
809 Lisp_Object prefix;
811 return make_temp_name (prefix, 0);
816 DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
817 doc: /* Convert filename NAME to absolute, and canonicalize it.
818 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
819 \(does not start with slash or tilde); if DEFAULT-DIRECTORY is nil or missing,
820 the current buffer's value of `default-directory' is used.
821 File name components that are `.' are removed, and
822 so are file name components followed by `..', along with the `..' itself;
823 note that these simplifications are done without checking the resulting
824 file names in the file system.
825 An initial `~/' expands to your home directory.
826 An initial `~USER/' expands to USER's home directory.
827 See also the function `substitute-in-file-name'.
829 For technical reasons, this function can return correct but
830 non-intuitive results for the root directory; for instance,
831 \(expand-file-name ".." "/") returns "/..". For this reason, use
832 (directory-file-name (file-name-directory dirname)) to traverse a
833 filesystem tree, not (expand-file-name ".." dirname). */)
834 (name, default_directory)
835 Lisp_Object name, default_directory;
837 /* These point to SDATA and need to be careful with string-relocation
838 during GC (via DECODE_FILE). */
839 unsigned char *nm, *newdir;
840 /* This should only point to alloca'd data. */
841 unsigned char *target;
843 int tlen;
844 struct passwd *pw;
845 #ifdef DOS_NT
846 int drive = 0;
847 int collapse_newdir = 1;
848 int is_escaped = 0;
849 #endif /* DOS_NT */
850 int length;
851 Lisp_Object handler, result;
852 int multibyte;
853 Lisp_Object hdir;
855 CHECK_STRING (name);
857 /* If the file name has special constructs in it,
858 call the corresponding file handler. */
859 handler = Ffind_file_name_handler (name, Qexpand_file_name);
860 if (!NILP (handler))
861 return call3 (handler, Qexpand_file_name, name, default_directory);
863 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
864 if (NILP (default_directory))
865 default_directory = current_buffer->directory;
866 if (! STRINGP (default_directory))
868 #ifdef DOS_NT
869 /* "/" is not considered a root directory on DOS_NT, so using "/"
870 here causes an infinite recursion in, e.g., the following:
872 (let (default-directory)
873 (expand-file-name "a"))
875 To avoid this, we set default_directory to the root of the
876 current drive. */
877 extern char *emacs_root_dir (void);
879 default_directory = build_string (emacs_root_dir ());
880 #else
881 default_directory = build_string ("/");
882 #endif
885 if (!NILP (default_directory))
887 handler = Ffind_file_name_handler (default_directory, Qexpand_file_name);
888 if (!NILP (handler))
889 return call3 (handler, Qexpand_file_name, name, default_directory);
893 unsigned char *o = SDATA (default_directory);
895 /* Make sure DEFAULT_DIRECTORY is properly expanded.
896 It would be better to do this down below where we actually use
897 default_directory. Unfortunately, calling Fexpand_file_name recursively
898 could invoke GC, and the strings might be relocated. This would
899 be annoying because we have pointers into strings lying around
900 that would need adjusting, and people would add new pointers to
901 the code and forget to adjust them, resulting in intermittent bugs.
902 Putting this call here avoids all that crud.
904 The EQ test avoids infinite recursion. */
905 if (! NILP (default_directory) && !EQ (default_directory, name)
906 /* Save time in some common cases - as long as default_directory
907 is not relative, it can be canonicalized with name below (if it
908 is needed at all) without requiring it to be expanded now. */
909 #ifdef DOS_NT
910 /* Detect MSDOS file names with drive specifiers. */
911 && ! (IS_DRIVE (o[0]) && IS_DEVICE_SEP (o[1])
912 && IS_DIRECTORY_SEP (o[2]))
913 #ifdef WINDOWSNT
914 /* Detect Windows file names in UNC format. */
915 && ! (IS_DIRECTORY_SEP (o[0]) && IS_DIRECTORY_SEP (o[1]))
916 #endif
917 #else /* not DOS_NT */
918 /* Detect Unix absolute file names (/... alone is not absolute on
919 DOS or Windows). */
920 && ! (IS_DIRECTORY_SEP (o[0]))
921 #endif /* not DOS_NT */
924 struct gcpro gcpro1;
926 GCPRO1 (name);
927 default_directory = Fexpand_file_name (default_directory, Qnil);
928 UNGCPRO;
931 name = FILE_SYSTEM_CASE (name);
932 multibyte = STRING_MULTIBYTE (name);
933 if (multibyte != STRING_MULTIBYTE (default_directory))
935 if (multibyte)
936 default_directory = string_to_multibyte (default_directory);
937 else
939 name = string_to_multibyte (name);
940 multibyte = 1;
944 nm = SDATA (name);
946 /* Make a local copy of nm[] to protect it from GC in DECODE_FILE below. */
947 nm = strcpy (alloca (strlen (nm) + 1), nm);
949 #ifdef DOS_NT
950 /* Note if special escape prefix is present, but remove for now. */
951 if (nm[0] == '/' && nm[1] == ':')
953 is_escaped = 1;
954 nm += 2;
957 /* Find and remove drive specifier if present; this makes nm absolute
958 even if the rest of the name appears to be relative. Only look for
959 drive specifier at the beginning. */
960 if (IS_DRIVE (nm[0]) && IS_DEVICE_SEP (nm[1]))
962 drive = nm[0];
963 nm += 2;
966 #ifdef WINDOWSNT
967 /* If we see "c://somedir", we want to strip the first slash after the
968 colon when stripping the drive letter. Otherwise, this expands to
969 "//somedir". */
970 if (drive && IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
971 nm++;
973 /* Discard any previous drive specifier if nm is now in UNC format. */
974 if (IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
976 drive = 0;
978 #endif /* WINDOWSNT */
979 #endif /* DOS_NT */
981 /* If nm is absolute, look for `/./' or `/../' or `//''sequences; if
982 none are found, we can probably return right away. We will avoid
983 allocating a new string if name is already fully expanded. */
984 if (
985 IS_DIRECTORY_SEP (nm[0])
986 #ifdef MSDOS
987 && drive && !is_escaped
988 #endif
989 #ifdef WINDOWSNT
990 && (drive || IS_DIRECTORY_SEP (nm[1])) && !is_escaped
991 #endif
994 /* If it turns out that the filename we want to return is just a
995 suffix of FILENAME, we don't need to go through and edit
996 things; we just need to construct a new string using data
997 starting at the middle of FILENAME. If we set lose to a
998 non-zero value, that means we've discovered that we can't do
999 that cool trick. */
1000 int lose = 0;
1001 unsigned char *p = nm;
1003 while (*p)
1005 /* Since we know the name is absolute, we can assume that each
1006 element starts with a "/". */
1008 /* "." and ".." are hairy. */
1009 if (IS_DIRECTORY_SEP (p[0])
1010 && p[1] == '.'
1011 && (IS_DIRECTORY_SEP (p[2])
1012 || p[2] == 0
1013 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3])
1014 || p[3] == 0))))
1015 lose = 1;
1016 /* We want to replace multiple `/' in a row with a single
1017 slash. */
1018 else if (p > nm
1019 && IS_DIRECTORY_SEP (p[0])
1020 && IS_DIRECTORY_SEP (p[1]))
1021 lose = 1;
1022 p++;
1024 if (!lose)
1026 #ifdef DOS_NT
1027 /* Make sure directories are all separated with / or \ as
1028 desired, but avoid allocation of a new string when not
1029 required. */
1030 CORRECT_DIR_SEPS (nm);
1031 #ifdef WINDOWSNT
1032 if (IS_DIRECTORY_SEP (nm[1]))
1034 if (strcmp (nm, SDATA (name)) != 0)
1035 name = make_specified_string (nm, -1, strlen (nm), multibyte);
1037 else
1038 #endif
1039 /* drive must be set, so this is okay */
1040 if (strcmp (nm - 2, SDATA (name)) != 0)
1042 char temp[] = " :";
1044 name = make_specified_string (nm, -1, p - nm, multibyte);
1045 temp[0] = DRIVE_LETTER (drive);
1046 name = concat2 (build_string (temp), name);
1048 return name;
1049 #else /* not DOS_NT */
1050 if (strcmp (nm, SDATA (name)) == 0)
1051 return name;
1052 return make_specified_string (nm, -1, strlen (nm), multibyte);
1053 #endif /* not DOS_NT */
1057 /* At this point, nm might or might not be an absolute file name. We
1058 need to expand ~ or ~user if present, otherwise prefix nm with
1059 default_directory if nm is not absolute, and finally collapse /./
1060 and /foo/../ sequences.
1062 We set newdir to be the appropriate prefix if one is needed:
1063 - the relevant user directory if nm starts with ~ or ~user
1064 - the specified drive's working dir (DOS/NT only) if nm does not
1065 start with /
1066 - the value of default_directory.
1068 Note that these prefixes are not guaranteed to be absolute (except
1069 for the working dir of a drive). Therefore, to ensure we always
1070 return an absolute name, if the final prefix is not absolute we
1071 append it to the current working directory. */
1073 newdir = 0;
1075 if (nm[0] == '~') /* prefix ~ */
1077 if (IS_DIRECTORY_SEP (nm[1])
1078 || nm[1] == 0) /* ~ by itself */
1080 Lisp_Object tem;
1082 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1083 newdir = (unsigned char *) "";
1084 nm++;
1085 /* egetenv may return a unibyte string, which will bite us since
1086 we expect the directory to be multibyte. */
1087 tem = build_string (newdir);
1088 if (!STRING_MULTIBYTE (tem))
1090 hdir = DECODE_FILE (tem);
1091 newdir = SDATA (hdir);
1093 #ifdef DOS_NT
1094 collapse_newdir = 0;
1095 #endif
1097 else /* ~user/filename */
1099 unsigned char *o, *p;
1100 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p)); p++);
1101 o = alloca (p - nm + 1);
1102 bcopy ((char *) nm, o, p - nm);
1103 o [p - nm] = 0;
1105 BLOCK_INPUT;
1106 pw = (struct passwd *) getpwnam (o + 1);
1107 UNBLOCK_INPUT;
1108 if (pw)
1110 newdir = (unsigned char *) pw -> pw_dir;
1111 nm = p;
1112 #ifdef DOS_NT
1113 collapse_newdir = 0;
1114 #endif
1117 /* If we don't find a user of that name, leave the name
1118 unchanged; don't move nm forward to p. */
1122 #ifdef DOS_NT
1123 /* On DOS and Windows, nm is absolute if a drive name was specified;
1124 use the drive's current directory as the prefix if needed. */
1125 if (!newdir && drive)
1127 /* Get default directory if needed to make nm absolute. */
1128 if (!IS_DIRECTORY_SEP (nm[0]))
1130 newdir = alloca (MAXPATHLEN + 1);
1131 if (!getdefdir (toupper (drive) - 'A' + 1, newdir))
1132 newdir = NULL;
1134 if (!newdir)
1136 /* Either nm starts with /, or drive isn't mounted. */
1137 newdir = alloca (4);
1138 newdir[0] = DRIVE_LETTER (drive);
1139 newdir[1] = ':';
1140 newdir[2] = '/';
1141 newdir[3] = 0;
1144 #endif /* DOS_NT */
1146 /* Finally, if no prefix has been specified and nm is not absolute,
1147 then it must be expanded relative to default_directory. */
1149 if (1
1150 #ifndef DOS_NT
1151 /* /... alone is not absolute on DOS and Windows. */
1152 && !IS_DIRECTORY_SEP (nm[0])
1153 #endif
1154 #ifdef WINDOWSNT
1155 && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
1156 #endif
1157 && !newdir)
1159 newdir = SDATA (default_directory);
1160 #ifdef DOS_NT
1161 /* Note if special escape prefix is present, but remove for now. */
1162 if (newdir[0] == '/' && newdir[1] == ':')
1164 is_escaped = 1;
1165 newdir += 2;
1167 #endif
1170 #ifdef DOS_NT
1171 if (newdir)
1173 /* First ensure newdir is an absolute name. */
1174 if (
1175 /* Detect MSDOS file names with drive specifiers. */
1176 ! (IS_DRIVE (newdir[0])
1177 && IS_DEVICE_SEP (newdir[1]) && IS_DIRECTORY_SEP (newdir[2]))
1178 #ifdef WINDOWSNT
1179 /* Detect Windows file names in UNC format. */
1180 && ! (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1181 #endif
1184 /* Effectively, let newdir be (expand-file-name newdir cwd).
1185 Because of the admonition against calling expand-file-name
1186 when we have pointers into lisp strings, we accomplish this
1187 indirectly by prepending newdir to nm if necessary, and using
1188 cwd (or the wd of newdir's drive) as the new newdir. */
1190 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
1192 drive = newdir[0];
1193 newdir += 2;
1195 if (!IS_DIRECTORY_SEP (nm[0]))
1197 char * tmp = alloca (strlen (newdir) + strlen (nm) + 2);
1198 file_name_as_directory (tmp, newdir);
1199 strcat (tmp, nm);
1200 nm = tmp;
1202 newdir = alloca (MAXPATHLEN + 1);
1203 if (drive)
1205 if (!getdefdir (toupper (drive) - 'A' + 1, newdir))
1206 newdir = "/";
1208 else
1209 getwd (newdir);
1212 /* Strip off drive name from prefix, if present. */
1213 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
1215 drive = newdir[0];
1216 newdir += 2;
1219 /* Keep only a prefix from newdir if nm starts with slash
1220 (//server/share for UNC, nothing otherwise). */
1221 if (IS_DIRECTORY_SEP (nm[0]) && collapse_newdir)
1223 #ifdef WINDOWSNT
1224 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1226 unsigned char *p;
1227 newdir = strcpy (alloca (strlen (newdir) + 1), newdir);
1228 p = newdir + 2;
1229 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1230 p++;
1231 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1232 *p = 0;
1234 else
1235 #endif
1236 newdir = "";
1239 #endif /* DOS_NT */
1241 if (newdir)
1243 /* Get rid of any slash at the end of newdir, unless newdir is
1244 just / or // (an incomplete UNC name). */
1245 length = strlen (newdir);
1246 if (length > 1 && IS_DIRECTORY_SEP (newdir[length - 1])
1247 #ifdef WINDOWSNT
1248 && !(length == 2 && IS_DIRECTORY_SEP (newdir[0]))
1249 #endif
1252 unsigned char *temp = (unsigned char *) alloca (length);
1253 bcopy (newdir, temp, length - 1);
1254 temp[length - 1] = 0;
1255 newdir = temp;
1257 tlen = length + 1;
1259 else
1260 tlen = 0;
1262 /* Now concatenate the directory and name to new space in the stack frame */
1263 tlen += strlen (nm) + 1;
1264 #ifdef DOS_NT
1265 /* Reserve space for drive specifier and escape prefix, since either
1266 or both may need to be inserted. (The Microsoft x86 compiler
1267 produces incorrect code if the following two lines are combined.) */
1268 target = (unsigned char *) alloca (tlen + 4);
1269 target += 4;
1270 #else /* not DOS_NT */
1271 target = (unsigned char *) alloca (tlen);
1272 #endif /* not DOS_NT */
1273 *target = 0;
1275 if (newdir)
1277 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0]))
1279 #ifdef DOS_NT
1280 /* If newdir is effectively "C:/", then the drive letter will have
1281 been stripped and newdir will be "/". Concatenating with an
1282 absolute directory in nm produces "//", which will then be
1283 incorrectly treated as a network share. Ignore newdir in
1284 this case (keeping the drive letter). */
1285 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0])
1286 && newdir[1] == '\0'))
1287 #endif
1288 strcpy (target, newdir);
1290 else
1291 file_name_as_directory (target, newdir);
1294 strcat (target, nm);
1296 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they
1297 appear. */
1299 unsigned char *p = target;
1300 unsigned char *o = target;
1302 while (*p)
1304 if (!IS_DIRECTORY_SEP (*p))
1306 *o++ = *p++;
1308 else if (p[1] == '.'
1309 && (IS_DIRECTORY_SEP (p[2])
1310 || p[2] == 0))
1312 /* If "/." is the entire filename, keep the "/". Otherwise,
1313 just delete the whole "/.". */
1314 if (o == target && p[2] == '\0')
1315 *o++ = *p;
1316 p += 2;
1318 else if (p[1] == '.' && p[2] == '.'
1319 /* `/../' is the "superroot" on certain file systems.
1320 Turned off on DOS_NT systems because they have no
1321 "superroot" and because this causes us to produce
1322 file names like "d:/../foo" which fail file-related
1323 functions of the underlying OS. (To reproduce, try a
1324 long series of "../../" in default_directory, longer
1325 than the number of levels from the root.) */
1326 #ifndef DOS_NT
1327 && o != target
1328 #endif
1329 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0))
1331 #ifdef WINDOWSNT
1332 unsigned char *prev_o = o;
1333 #endif
1334 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o))
1336 #ifdef WINDOWSNT
1337 /* Don't go below server level in UNC filenames. */
1338 if (o == target + 1 && IS_DIRECTORY_SEP (*o)
1339 && IS_DIRECTORY_SEP (*target))
1340 o = prev_o;
1341 else
1342 #endif
1343 /* Keep initial / only if this is the whole name. */
1344 if (o == target && IS_ANY_SEP (*o) && p[3] == 0)
1345 ++o;
1346 p += 3;
1348 else if (p > target && IS_DIRECTORY_SEP (p[1]))
1349 /* Collapse multiple `/' in a row. */
1350 p++;
1351 else
1353 *o++ = *p++;
1357 #ifdef DOS_NT
1358 /* At last, set drive name. */
1359 #ifdef WINDOWSNT
1360 /* Except for network file name. */
1361 if (!(IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1])))
1362 #endif /* WINDOWSNT */
1364 if (!drive) abort ();
1365 target -= 2;
1366 target[0] = DRIVE_LETTER (drive);
1367 target[1] = ':';
1369 /* Reinsert the escape prefix if required. */
1370 if (is_escaped)
1372 target -= 2;
1373 target[0] = '/';
1374 target[1] = ':';
1376 CORRECT_DIR_SEPS (target);
1377 #endif /* DOS_NT */
1379 result = make_specified_string (target, -1, o - target, multibyte);
1382 /* Again look to see if the file name has special constructs in it
1383 and perhaps call the corresponding file handler. This is needed
1384 for filenames such as "/foo/../user@host:/bar/../baz". Expanding
1385 the ".." component gives us "/user@host:/bar/../baz" which needs
1386 to be expanded again. */
1387 handler = Ffind_file_name_handler (result, Qexpand_file_name);
1388 if (!NILP (handler))
1389 return call3 (handler, Qexpand_file_name, result, default_directory);
1391 return result;
1394 #if 0
1395 /* PLEASE DO NOT DELETE THIS COMMENTED-OUT VERSION!
1396 This is the old version of expand-file-name, before it was thoroughly
1397 rewritten for Emacs 10.31. We leave this version here commented-out,
1398 because the code is very complex and likely to have subtle bugs. If
1399 bugs _are_ found, it might be of interest to look at the old code and
1400 see what did it do in the relevant situation.
1402 Don't remove this code: it's true that it will be accessible via CVS,
1403 but a few years from deletion, people will forget it is there. */
1405 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1406 DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
1407 "Convert FILENAME to absolute, and canonicalize it.\n\
1408 Second arg DEFAULT is directory to start with if FILENAME is relative\n\
1409 \(does not start with slash); if DEFAULT is nil or missing,\n\
1410 the current buffer's value of default-directory is used.\n\
1411 Filenames containing `.' or `..' as components are simplified;\n\
1412 initial `~/' expands to your home directory.\n\
1413 See also the function `substitute-in-file-name'.")
1414 (name, defalt)
1415 Lisp_Object name, defalt;
1417 unsigned char *nm;
1419 register unsigned char *newdir, *p, *o;
1420 int tlen;
1421 unsigned char *target;
1422 struct passwd *pw;
1423 int lose;
1425 CHECK_STRING (name);
1426 nm = SDATA (name);
1428 /* If nm is absolute, flush ...// and detect /./ and /../.
1429 If no /./ or /../ we can return right away. */
1430 if (nm[0] == '/')
1432 p = nm;
1433 lose = 0;
1434 while (*p)
1436 if (p[0] == '/' && p[1] == '/'
1438 nm = p + 1;
1439 if (p[0] == '/' && p[1] == '~')
1440 nm = p + 1, lose = 1;
1441 if (p[0] == '/' && p[1] == '.'
1442 && (p[2] == '/' || p[2] == 0
1443 || (p[2] == '.' && (p[3] == '/' || p[3] == 0))))
1444 lose = 1;
1445 p++;
1447 if (!lose)
1449 if (nm == SDATA (name))
1450 return name;
1451 return build_string (nm);
1455 /* Now determine directory to start with and put it in NEWDIR */
1457 newdir = 0;
1459 if (nm[0] == '~') /* prefix ~ */
1460 if (nm[1] == '/' || nm[1] == 0)/* ~/filename */
1462 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1463 newdir = (unsigned char *) "";
1464 nm++;
1466 else /* ~user/filename */
1468 /* Get past ~ to user */
1469 unsigned char *user = nm + 1;
1470 /* Find end of name. */
1471 unsigned char *ptr = (unsigned char *) index (user, '/');
1472 int len = ptr ? ptr - user : strlen (user);
1473 /* Copy the user name into temp storage. */
1474 o = (unsigned char *) alloca (len + 1);
1475 bcopy ((char *) user, o, len);
1476 o[len] = 0;
1478 /* Look up the user name. */
1479 BLOCK_INPUT;
1480 pw = (struct passwd *) getpwnam (o + 1);
1481 UNBLOCK_INPUT;
1482 if (!pw)
1483 error ("\"%s\" isn't a registered user", o + 1);
1485 newdir = (unsigned char *) pw->pw_dir;
1487 /* Discard the user name from NM. */
1488 nm += len;
1491 if (nm[0] != '/' && !newdir)
1493 if (NILP (defalt))
1494 defalt = current_buffer->directory;
1495 CHECK_STRING (defalt);
1496 newdir = SDATA (defalt);
1499 /* Now concatenate the directory and name to new space in the stack frame */
1501 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1;
1502 target = (unsigned char *) alloca (tlen);
1503 *target = 0;
1505 if (newdir)
1507 if (nm[0] == 0 || nm[0] == '/')
1508 strcpy (target, newdir);
1509 else
1510 file_name_as_directory (target, newdir);
1513 strcat (target, nm);
1515 /* Now canonicalize by removing /. and /foo/.. if they appear */
1517 p = target;
1518 o = target;
1520 while (*p)
1522 if (*p != '/')
1524 *o++ = *p++;
1526 else if (!strncmp (p, "//", 2)
1529 o = target;
1530 p++;
1532 else if (p[0] == '/' && p[1] == '.'
1533 && (p[2] == '/' || p[2] == 0))
1534 p += 2;
1535 else if (!strncmp (p, "/..", 3)
1536 /* `/../' is the "superroot" on certain file systems. */
1537 && o != target
1538 && (p[3] == '/' || p[3] == 0))
1540 while (o != target && *--o != '/')
1542 if (o == target && *o == '/')
1543 ++o;
1544 p += 3;
1546 else
1548 *o++ = *p++;
1552 return make_string (target, o - target);
1554 #endif
1556 /* If /~ or // appears, discard everything through first slash. */
1557 static int
1558 file_name_absolute_p (filename)
1559 const unsigned char *filename;
1561 return
1562 (IS_DIRECTORY_SEP (*filename) || *filename == '~'
1563 #ifdef DOS_NT
1564 || (IS_DRIVE (*filename) && IS_DEVICE_SEP (filename[1])
1565 && IS_DIRECTORY_SEP (filename[2]))
1566 #endif
1570 static unsigned char *
1571 search_embedded_absfilename (nm, endp)
1572 unsigned char *nm, *endp;
1574 unsigned char *p, *s;
1576 for (p = nm + 1; p < endp; p++)
1578 if ((0
1579 || IS_DIRECTORY_SEP (p[-1]))
1580 && file_name_absolute_p (p)
1581 #if defined (WINDOWSNT) || defined(CYGWIN)
1582 /* // at start of file name is meaningful in Apollo,
1583 WindowsNT and Cygwin systems. */
1584 && !(IS_DIRECTORY_SEP (p[0]) && p - 1 == nm)
1585 #endif /* not (WINDOWSNT || CYGWIN) */
1588 for (s = p; *s && (!IS_DIRECTORY_SEP (*s)); s++);
1589 if (p[0] == '~' && s > p + 1) /* we've got "/~something/" */
1591 unsigned char *o = alloca (s - p + 1);
1592 struct passwd *pw;
1593 bcopy (p, o, s - p);
1594 o [s - p] = 0;
1596 /* If we have ~user and `user' exists, discard
1597 everything up to ~. But if `user' does not exist, leave
1598 ~user alone, it might be a literal file name. */
1599 BLOCK_INPUT;
1600 pw = getpwnam (o + 1);
1601 UNBLOCK_INPUT;
1602 if (pw)
1603 return p;
1605 else
1606 return p;
1609 return NULL;
1612 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
1613 Ssubstitute_in_file_name, 1, 1, 0,
1614 doc: /* Substitute environment variables referred to in FILENAME.
1615 `$FOO' where FOO is an environment variable name means to substitute
1616 the value of that variable. The variable name should be terminated
1617 with a character not a letter, digit or underscore; otherwise, enclose
1618 the entire variable name in braces.
1620 If `/~' appears, all of FILENAME through that `/' is discarded.
1621 If `//' appears, everything up to and including the first of
1622 those `/' is discarded. */)
1623 (filename)
1624 Lisp_Object filename;
1626 unsigned char *nm;
1628 register unsigned char *s, *p, *o, *x, *endp;
1629 unsigned char *target = NULL;
1630 int total = 0;
1631 int substituted = 0;
1632 int multibyte;
1633 unsigned char *xnm;
1634 Lisp_Object handler;
1636 CHECK_STRING (filename);
1638 multibyte = STRING_MULTIBYTE (filename);
1640 /* If the file name has special constructs in it,
1641 call the corresponding file handler. */
1642 handler = Ffind_file_name_handler (filename, Qsubstitute_in_file_name);
1643 if (!NILP (handler))
1644 return call2 (handler, Qsubstitute_in_file_name, filename);
1646 nm = SDATA (filename);
1647 /* Always work on a copy of the string, in case GC happens during
1648 decode of environment variables, causing the original Lisp_String
1649 data to be relocated. */
1650 nm = strcpy (alloca (strlen (nm) + 1), nm);
1651 #ifdef DOS_NT
1652 CORRECT_DIR_SEPS (nm);
1653 substituted = (strcmp (nm, SDATA (filename)) != 0);
1654 #endif
1655 endp = nm + SBYTES (filename);
1657 /* If /~ or // appears, discard everything through first slash. */
1658 p = search_embedded_absfilename (nm, endp);
1659 if (p)
1660 /* Start over with the new string, so we check the file-name-handler
1661 again. Important with filenames like "/home/foo//:/hello///there"
1662 which whould substitute to "/:/hello///there" rather than "/there". */
1663 return Fsubstitute_in_file_name
1664 (make_specified_string (p, -1, endp - p, multibyte));
1666 /* See if any variables are substituted into the string
1667 and find the total length of their values in `total' */
1669 for (p = nm; p != endp;)
1670 if (*p != '$')
1671 p++;
1672 else
1674 p++;
1675 if (p == endp)
1676 goto badsubst;
1677 else if (*p == '$')
1679 /* "$$" means a single "$" */
1680 p++;
1681 total -= 1;
1682 substituted = 1;
1683 continue;
1685 else if (*p == '{')
1687 o = ++p;
1688 while (p != endp && *p != '}') p++;
1689 if (*p != '}') goto missingclose;
1690 s = p;
1692 else
1694 o = p;
1695 while (p != endp && (isalnum (*p) || *p == '_')) p++;
1696 s = p;
1699 /* Copy out the variable name */
1700 target = (unsigned char *) alloca (s - o + 1);
1701 strncpy (target, o, s - o);
1702 target[s - o] = 0;
1703 #ifdef DOS_NT
1704 strupr (target); /* $home == $HOME etc. */
1705 #endif /* DOS_NT */
1707 /* Get variable value */
1708 o = (unsigned char *) egetenv (target);
1709 if (o)
1711 /* Don't try to guess a maximum length - UTF8 can use up to
1712 four bytes per character. This code is unlikely to run
1713 in a situation that requires performance, so decoding the
1714 env variables twice should be acceptable. Note that
1715 decoding may cause a garbage collect. */
1716 Lisp_Object orig, decoded;
1717 orig = make_unibyte_string (o, strlen (o));
1718 decoded = DECODE_FILE (orig);
1719 total += SBYTES (decoded);
1720 substituted = 1;
1722 else if (*p == '}')
1723 goto badvar;
1726 if (!substituted)
1727 return filename;
1729 /* If substitution required, recopy the string and do it */
1730 /* Make space in stack frame for the new copy */
1731 xnm = (unsigned char *) alloca (SBYTES (filename) + total + 1);
1732 x = xnm;
1734 /* Copy the rest of the name through, replacing $ constructs with values */
1735 for (p = nm; *p;)
1736 if (*p != '$')
1737 *x++ = *p++;
1738 else
1740 p++;
1741 if (p == endp)
1742 goto badsubst;
1743 else if (*p == '$')
1745 *x++ = *p++;
1746 continue;
1748 else if (*p == '{')
1750 o = ++p;
1751 while (p != endp && *p != '}') p++;
1752 if (*p != '}') goto missingclose;
1753 s = p++;
1755 else
1757 o = p;
1758 while (p != endp && (isalnum (*p) || *p == '_')) p++;
1759 s = p;
1762 /* Copy out the variable name */
1763 target = (unsigned char *) alloca (s - o + 1);
1764 strncpy (target, o, s - o);
1765 target[s - o] = 0;
1766 #ifdef DOS_NT
1767 strupr (target); /* $home == $HOME etc. */
1768 #endif /* DOS_NT */
1770 /* Get variable value */
1771 o = (unsigned char *) egetenv (target);
1772 if (!o)
1774 *x++ = '$';
1775 strcpy (x, target); x+= strlen (target);
1777 else
1779 Lisp_Object orig, decoded;
1780 int orig_length, decoded_length;
1781 orig_length = strlen (o);
1782 orig = make_unibyte_string (o, orig_length);
1783 decoded = DECODE_FILE (orig);
1784 decoded_length = SBYTES (decoded);
1785 strncpy (x, SDATA (decoded), decoded_length);
1786 x += decoded_length;
1788 /* If environment variable needed decoding, return value
1789 needs to be multibyte. */
1790 if (decoded_length != orig_length
1791 || strncmp (SDATA (decoded), o, orig_length))
1792 multibyte = 1;
1796 *x = 0;
1798 /* If /~ or // appears, discard everything through first slash. */
1799 while ((p = search_embedded_absfilename (xnm, x)))
1800 /* This time we do not start over because we've already expanded envvars
1801 and replaced $$ with $. Maybe we should start over as well, but we'd
1802 need to quote some $ to $$ first. */
1803 xnm = p;
1805 return make_specified_string (xnm, -1, x - xnm, multibyte);
1807 badsubst:
1808 error ("Bad format environment-variable substitution");
1809 missingclose:
1810 error ("Missing \"}\" in environment-variable substitution");
1811 badvar:
1812 error ("Substituting nonexistent environment variable \"%s\"", target);
1814 /* NOTREACHED */
1815 return Qnil;
1818 /* A slightly faster and more convenient way to get
1819 (directory-file-name (expand-file-name FOO)). */
1821 Lisp_Object
1822 expand_and_dir_to_file (filename, defdir)
1823 Lisp_Object filename, defdir;
1825 register Lisp_Object absname;
1827 absname = Fexpand_file_name (filename, defdir);
1829 /* Remove final slash, if any (unless this is the root dir).
1830 stat behaves differently depending! */
1831 if (SCHARS (absname) > 1
1832 && IS_DIRECTORY_SEP (SREF (absname, SBYTES (absname) - 1))
1833 && !IS_DEVICE_SEP (SREF (absname, SBYTES (absname)-2)))
1834 /* We cannot take shortcuts; they might be wrong for magic file names. */
1835 absname = Fdirectory_file_name (absname);
1836 return absname;
1839 /* Signal an error if the file ABSNAME already exists.
1840 If INTERACTIVE is nonzero, ask the user whether to proceed,
1841 and bypass the error if the user says to go ahead.
1842 QUERYSTRING is a name for the action that is being considered
1843 to alter the file.
1845 *STATPTR is used to store the stat information if the file exists.
1846 If the file does not exist, STATPTR->st_mode is set to 0.
1847 If STATPTR is null, we don't store into it.
1849 If QUICK is nonzero, we ask for y or n, not yes or no. */
1851 void
1852 barf_or_query_if_file_exists (absname, querystring, interactive, statptr, quick)
1853 Lisp_Object absname;
1854 unsigned char *querystring;
1855 int interactive;
1856 struct stat *statptr;
1857 int quick;
1859 register Lisp_Object tem, encoded_filename;
1860 struct stat statbuf;
1861 struct gcpro gcpro1;
1863 encoded_filename = ENCODE_FILE (absname);
1865 /* stat is a good way to tell whether the file exists,
1866 regardless of what access permissions it has. */
1867 if (lstat (SDATA (encoded_filename), &statbuf) >= 0)
1869 if (! interactive)
1870 xsignal2 (Qfile_already_exists,
1871 build_string ("File already exists"), absname);
1872 GCPRO1 (absname);
1873 tem = format2 ("File %s already exists; %s anyway? ",
1874 absname, build_string (querystring));
1875 if (quick)
1876 tem = Fy_or_n_p (tem);
1877 else
1878 tem = do_yes_or_no_p (tem);
1879 UNGCPRO;
1880 if (NILP (tem))
1881 xsignal2 (Qfile_already_exists,
1882 build_string ("File already exists"), absname);
1883 if (statptr)
1884 *statptr = statbuf;
1886 else
1888 if (statptr)
1889 statptr->st_mode = 0;
1891 return;
1894 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 5,
1895 "fCopy file: \nGCopy %s to file: \np\nP",
1896 doc: /* Copy FILE to NEWNAME. Both args must be strings.
1897 If NEWNAME names a directory, copy FILE there.
1899 This function always sets the file modes of the output file to match
1900 the input file.
1902 The optional third argument OK-IF-ALREADY-EXISTS specifies what to do
1903 if file NEWNAME already exists. If OK-IF-ALREADY-EXISTS is nil, we
1904 signal a `file-already-exists' error without overwriting. If
1905 OK-IF-ALREADY-EXISTS is a number, we request confirmation from the user
1906 about overwriting; this is what happens in interactive use with M-x.
1907 Any other value for OK-IF-ALREADY-EXISTS means to overwrite the
1908 existing file.
1910 Fourth arg KEEP-TIME non-nil means give the output file the same
1911 last-modified time as the old one. (This works on only some systems.)
1913 A prefix arg makes KEEP-TIME non-nil.
1915 If PRESERVE-UID-GID is non-nil, we try to transfer the
1916 uid and gid of FILE to NEWNAME. */)
1917 (file, newname, ok_if_already_exists, keep_time, preserve_uid_gid)
1918 Lisp_Object file, newname, ok_if_already_exists, keep_time;
1919 Lisp_Object preserve_uid_gid;
1921 int ifd, ofd, n;
1922 char buf[16 * 1024];
1923 struct stat st, out_st;
1924 Lisp_Object handler;
1925 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1926 int count = SPECPDL_INDEX ();
1927 int input_file_statable_p;
1928 Lisp_Object encoded_file, encoded_newname;
1930 encoded_file = encoded_newname = Qnil;
1931 GCPRO4 (file, newname, encoded_file, encoded_newname);
1932 CHECK_STRING (file);
1933 CHECK_STRING (newname);
1935 if (!NILP (Ffile_directory_p (newname)))
1936 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
1937 else
1938 newname = Fexpand_file_name (newname, Qnil);
1940 file = Fexpand_file_name (file, Qnil);
1942 /* If the input file name has special constructs in it,
1943 call the corresponding file handler. */
1944 handler = Ffind_file_name_handler (file, Qcopy_file);
1945 /* Likewise for output file name. */
1946 if (NILP (handler))
1947 handler = Ffind_file_name_handler (newname, Qcopy_file);
1948 if (!NILP (handler))
1949 RETURN_UNGCPRO (call6 (handler, Qcopy_file, file, newname,
1950 ok_if_already_exists, keep_time, preserve_uid_gid));
1952 encoded_file = ENCODE_FILE (file);
1953 encoded_newname = ENCODE_FILE (newname);
1955 if (NILP (ok_if_already_exists)
1956 || INTEGERP (ok_if_already_exists))
1957 barf_or_query_if_file_exists (newname, "copy to it",
1958 INTEGERP (ok_if_already_exists), &out_st, 0);
1959 else if (stat (SDATA (encoded_newname), &out_st) < 0)
1960 out_st.st_mode = 0;
1962 #ifdef WINDOWSNT
1963 if (!CopyFile (SDATA (encoded_file),
1964 SDATA (encoded_newname),
1965 FALSE))
1966 report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil)));
1967 /* CopyFile retains the timestamp by default. */
1968 else if (NILP (keep_time))
1970 EMACS_TIME now;
1971 DWORD attributes;
1972 char * filename;
1974 EMACS_GET_TIME (now);
1975 filename = SDATA (encoded_newname);
1977 /* Ensure file is writable while its modified time is set. */
1978 attributes = GetFileAttributes (filename);
1979 SetFileAttributes (filename, attributes & ~FILE_ATTRIBUTE_READONLY);
1980 if (set_file_times (filename, now, now))
1982 /* Restore original attributes. */
1983 SetFileAttributes (filename, attributes);
1984 xsignal2 (Qfile_date_error,
1985 build_string ("Cannot set file date"), newname);
1987 /* Restore original attributes. */
1988 SetFileAttributes (filename, attributes);
1990 #else /* not WINDOWSNT */
1991 immediate_quit = 1;
1992 ifd = emacs_open (SDATA (encoded_file), O_RDONLY, 0);
1993 immediate_quit = 0;
1995 if (ifd < 0)
1996 report_file_error ("Opening input file", Fcons (file, Qnil));
1998 record_unwind_protect (close_file_unwind, make_number (ifd));
2000 /* We can only copy regular files and symbolic links. Other files are not
2001 copyable by us. */
2002 input_file_statable_p = (fstat (ifd, &st) >= 0);
2004 #if !defined (MSDOS) || __DJGPP__ > 1
2005 if (out_st.st_mode != 0
2006 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
2008 errno = 0;
2009 report_file_error ("Input and output files are the same",
2010 Fcons (file, Fcons (newname, Qnil)));
2012 #endif
2014 #if defined (S_ISREG) && defined (S_ISLNK)
2015 if (input_file_statable_p)
2017 if (!(S_ISREG (st.st_mode)) && !(S_ISLNK (st.st_mode)))
2019 #if defined (EISDIR)
2020 /* Get a better looking error message. */
2021 errno = EISDIR;
2022 #endif /* EISDIR */
2023 report_file_error ("Non-regular file", Fcons (file, Qnil));
2026 #endif /* S_ISREG && S_ISLNK */
2028 #ifdef MSDOS
2029 /* System's default file type was set to binary by _fmode in emacs.c. */
2030 ofd = emacs_open (SDATA (encoded_newname),
2031 O_WRONLY | O_TRUNC | O_CREAT
2032 | (NILP (ok_if_already_exists) ? O_EXCL : 0),
2033 S_IREAD | S_IWRITE);
2034 #else /* not MSDOS */
2035 ofd = emacs_open (SDATA (encoded_newname),
2036 O_WRONLY | O_TRUNC | O_CREAT
2037 | (NILP (ok_if_already_exists) ? O_EXCL : 0),
2038 0666);
2039 #endif /* not MSDOS */
2040 if (ofd < 0)
2041 report_file_error ("Opening output file", Fcons (newname, Qnil));
2043 record_unwind_protect (close_file_unwind, make_number (ofd));
2045 immediate_quit = 1;
2046 QUIT;
2047 while ((n = emacs_read (ifd, buf, sizeof buf)) > 0)
2048 if (emacs_write (ofd, buf, n) != n)
2049 report_file_error ("I/O error", Fcons (newname, Qnil));
2050 immediate_quit = 0;
2052 #ifndef MSDOS
2053 /* Preserve the original file modes, and if requested, also its
2054 owner and group. */
2055 if (input_file_statable_p)
2057 if (! NILP (preserve_uid_gid))
2058 fchown (ofd, st.st_uid, st.st_gid);
2059 fchmod (ofd, st.st_mode & 07777);
2061 #endif /* not MSDOS */
2063 /* Closing the output clobbers the file times on some systems. */
2064 if (emacs_close (ofd) < 0)
2065 report_file_error ("I/O error", Fcons (newname, Qnil));
2067 if (input_file_statable_p)
2069 if (!NILP (keep_time))
2071 EMACS_TIME atime, mtime;
2072 EMACS_SET_SECS_USECS (atime, st.st_atime, 0);
2073 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0);
2074 if (set_file_times (SDATA (encoded_newname),
2075 atime, mtime))
2076 xsignal2 (Qfile_date_error,
2077 build_string ("Cannot set file date"), newname);
2081 emacs_close (ifd);
2083 #if defined (__DJGPP__) && __DJGPP__ > 1
2084 if (input_file_statable_p)
2086 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2087 and if it can't, it tells so. Otherwise, under MSDOS we usually
2088 get only the READ bit, which will make the copied file read-only,
2089 so it's better not to chmod at all. */
2090 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0)
2091 chmod (SDATA (encoded_newname), st.st_mode & 07777);
2093 #endif /* DJGPP version 2 or newer */
2094 #endif /* not WINDOWSNT */
2096 /* Discard the unwind protects. */
2097 specpdl_ptr = specpdl + count;
2099 UNGCPRO;
2100 return Qnil;
2103 DEFUN ("make-directory-internal", Fmake_directory_internal,
2104 Smake_directory_internal, 1, 1, 0,
2105 doc: /* Create a new directory named DIRECTORY. */)
2106 (directory)
2107 Lisp_Object directory;
2109 const unsigned char *dir;
2110 Lisp_Object handler;
2111 Lisp_Object encoded_dir;
2113 CHECK_STRING (directory);
2114 directory = Fexpand_file_name (directory, Qnil);
2116 handler = Ffind_file_name_handler (directory, Qmake_directory_internal);
2117 if (!NILP (handler))
2118 return call2 (handler, Qmake_directory_internal, directory);
2120 encoded_dir = ENCODE_FILE (directory);
2122 dir = SDATA (encoded_dir);
2124 #ifdef WINDOWSNT
2125 if (mkdir (dir) != 0)
2126 #else
2127 if (mkdir (dir, 0777) != 0)
2128 #endif
2129 report_file_error ("Creating directory", list1 (directory));
2131 return Qnil;
2134 DEFUN ("delete-directory", Fdelete_directory, Sdelete_directory, 1, 1, "FDelete directory: ",
2135 doc: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
2136 (directory)
2137 Lisp_Object directory;
2139 const unsigned char *dir;
2140 Lisp_Object handler;
2141 Lisp_Object encoded_dir;
2143 CHECK_STRING (directory);
2144 directory = Fdirectory_file_name (Fexpand_file_name (directory, Qnil));
2146 handler = Ffind_file_name_handler (directory, Qdelete_directory);
2147 if (!NILP (handler))
2148 return call2 (handler, Qdelete_directory, directory);
2150 if (delete_by_moving_to_trash)
2151 return call1 (Qmove_file_to_trash, directory);
2153 encoded_dir = ENCODE_FILE (directory);
2155 dir = SDATA (encoded_dir);
2157 if (rmdir (dir) != 0)
2158 report_file_error ("Removing directory", list1 (directory));
2160 return Qnil;
2163 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 1, "fDelete file: ",
2164 doc: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
2165 If file has multiple names, it continues to exist with the other names. */)
2166 (filename)
2167 Lisp_Object filename;
2169 Lisp_Object handler;
2170 Lisp_Object encoded_file;
2171 struct gcpro gcpro1;
2173 GCPRO1 (filename);
2174 if (!NILP (Ffile_directory_p (filename))
2175 && NILP (Ffile_symlink_p (filename)))
2176 xsignal2 (Qfile_error,
2177 build_string ("Removing old name: is a directory"),
2178 filename);
2179 UNGCPRO;
2180 filename = Fexpand_file_name (filename, Qnil);
2182 handler = Ffind_file_name_handler (filename, Qdelete_file);
2183 if (!NILP (handler))
2184 return call2 (handler, Qdelete_file, filename);
2186 if (delete_by_moving_to_trash)
2187 return call1 (Qmove_file_to_trash, filename);
2189 encoded_file = ENCODE_FILE (filename);
2191 if (0 > unlink (SDATA (encoded_file)))
2192 report_file_error ("Removing old name", list1 (filename));
2193 return Qnil;
2196 static Lisp_Object
2197 internal_delete_file_1 (ignore)
2198 Lisp_Object ignore;
2200 return Qt;
2203 /* Delete file FILENAME, returning 1 if successful and 0 if failed. */
2206 internal_delete_file (filename)
2207 Lisp_Object filename;
2209 Lisp_Object tem;
2210 tem = internal_condition_case_1 (Fdelete_file, filename,
2211 Qt, internal_delete_file_1);
2212 return NILP (tem);
2215 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
2216 "fRename file: \nGRename %s to file: \np",
2217 doc: /* Rename FILE as NEWNAME. Both args must be strings.
2218 If file has names other than FILE, it continues to have those names.
2219 Signals a `file-already-exists' error if a file NEWNAME already exists
2220 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2221 A number as third arg means request confirmation if NEWNAME already exists.
2222 This is what happens in interactive use with M-x. */)
2223 (file, newname, ok_if_already_exists)
2224 Lisp_Object file, newname, ok_if_already_exists;
2226 Lisp_Object handler;
2227 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2228 Lisp_Object encoded_file, encoded_newname, symlink_target;
2230 symlink_target = encoded_file = encoded_newname = Qnil;
2231 GCPRO5 (file, newname, encoded_file, encoded_newname, symlink_target);
2232 CHECK_STRING (file);
2233 CHECK_STRING (newname);
2234 file = Fexpand_file_name (file, Qnil);
2236 if ((!NILP (Ffile_directory_p (newname)))
2237 #ifdef DOS_NT
2238 /* If the file names are identical but for the case,
2239 don't attempt to move directory to itself. */
2240 && (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2241 #endif
2243 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
2244 else
2245 newname = Fexpand_file_name (newname, Qnil);
2247 /* If the file name has special constructs in it,
2248 call the corresponding file handler. */
2249 handler = Ffind_file_name_handler (file, Qrename_file);
2250 if (NILP (handler))
2251 handler = Ffind_file_name_handler (newname, Qrename_file);
2252 if (!NILP (handler))
2253 RETURN_UNGCPRO (call4 (handler, Qrename_file,
2254 file, newname, ok_if_already_exists));
2256 encoded_file = ENCODE_FILE (file);
2257 encoded_newname = ENCODE_FILE (newname);
2259 #ifdef DOS_NT
2260 /* If the file names are identical but for the case, don't ask for
2261 confirmation: they simply want to change the letter-case of the
2262 file name. */
2263 if (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2264 #endif
2265 if (NILP (ok_if_already_exists)
2266 || INTEGERP (ok_if_already_exists))
2267 barf_or_query_if_file_exists (newname, "rename to it",
2268 INTEGERP (ok_if_already_exists), 0, 0);
2269 if (0 > rename (SDATA (encoded_file), SDATA (encoded_newname)))
2271 if (errno == EXDEV)
2273 int count;
2274 #ifdef S_IFLNK
2275 symlink_target = Ffile_symlink_p (file);
2276 if (! NILP (symlink_target))
2277 Fmake_symbolic_link (symlink_target, newname,
2278 NILP (ok_if_already_exists) ? Qnil : Qt);
2279 else
2280 #endif
2281 Fcopy_file (file, newname,
2282 /* We have already prompted if it was an integer,
2283 so don't have copy-file prompt again. */
2284 NILP (ok_if_already_exists) ? Qnil : Qt,
2285 Qt, Qt);
2287 count = SPECPDL_INDEX ();
2288 specbind (Qdelete_by_moving_to_trash, Qnil);
2289 Fdelete_file (file);
2290 unbind_to (count, Qnil);
2292 else
2293 report_file_error ("Renaming", list2 (file, newname));
2295 UNGCPRO;
2296 return Qnil;
2299 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
2300 "fAdd name to file: \nGName to add to %s: \np",
2301 doc: /* Give FILE additional name NEWNAME. Both args must be strings.
2302 Signals a `file-already-exists' error if a file NEWNAME already exists
2303 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2304 A number as third arg means request confirmation if NEWNAME already exists.
2305 This is what happens in interactive use with M-x. */)
2306 (file, newname, ok_if_already_exists)
2307 Lisp_Object file, newname, ok_if_already_exists;
2309 Lisp_Object handler;
2310 Lisp_Object encoded_file, encoded_newname;
2311 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2313 GCPRO4 (file, newname, encoded_file, encoded_newname);
2314 encoded_file = encoded_newname = Qnil;
2315 CHECK_STRING (file);
2316 CHECK_STRING (newname);
2317 file = Fexpand_file_name (file, Qnil);
2319 if (!NILP (Ffile_directory_p (newname)))
2320 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
2321 else
2322 newname = Fexpand_file_name (newname, Qnil);
2324 /* If the file name has special constructs in it,
2325 call the corresponding file handler. */
2326 handler = Ffind_file_name_handler (file, Qadd_name_to_file);
2327 if (!NILP (handler))
2328 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2329 newname, ok_if_already_exists));
2331 /* If the new name has special constructs in it,
2332 call the corresponding file handler. */
2333 handler = Ffind_file_name_handler (newname, Qadd_name_to_file);
2334 if (!NILP (handler))
2335 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2336 newname, ok_if_already_exists));
2338 encoded_file = ENCODE_FILE (file);
2339 encoded_newname = ENCODE_FILE (newname);
2341 if (NILP (ok_if_already_exists)
2342 || INTEGERP (ok_if_already_exists))
2343 barf_or_query_if_file_exists (newname, "make it a new name",
2344 INTEGERP (ok_if_already_exists), 0, 0);
2346 unlink (SDATA (newname));
2347 if (0 > link (SDATA (encoded_file), SDATA (encoded_newname)))
2348 report_file_error ("Adding new name", list2 (file, newname));
2350 UNGCPRO;
2351 return Qnil;
2354 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
2355 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np",
2356 doc: /* Make a symbolic link to FILENAME, named LINKNAME.
2357 Both args must be strings.
2358 Signals a `file-already-exists' error if a file LINKNAME already exists
2359 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2360 A number as third arg means request confirmation if LINKNAME already exists.
2361 This happens for interactive use with M-x. */)
2362 (filename, linkname, ok_if_already_exists)
2363 Lisp_Object filename, linkname, ok_if_already_exists;
2365 Lisp_Object handler;
2366 Lisp_Object encoded_filename, encoded_linkname;
2367 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2369 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname);
2370 encoded_filename = encoded_linkname = Qnil;
2371 CHECK_STRING (filename);
2372 CHECK_STRING (linkname);
2373 /* If the link target has a ~, we must expand it to get
2374 a truly valid file name. Otherwise, do not expand;
2375 we want to permit links to relative file names. */
2376 if (SREF (filename, 0) == '~')
2377 filename = Fexpand_file_name (filename, Qnil);
2379 if (!NILP (Ffile_directory_p (linkname)))
2380 linkname = Fexpand_file_name (Ffile_name_nondirectory (filename), linkname);
2381 else
2382 linkname = Fexpand_file_name (linkname, Qnil);
2384 /* If the file name has special constructs in it,
2385 call the corresponding file handler. */
2386 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
2387 if (!NILP (handler))
2388 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2389 linkname, ok_if_already_exists));
2391 /* If the new link name has special constructs in it,
2392 call the corresponding file handler. */
2393 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link);
2394 if (!NILP (handler))
2395 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2396 linkname, ok_if_already_exists));
2398 #ifdef S_IFLNK
2399 encoded_filename = ENCODE_FILE (filename);
2400 encoded_linkname = ENCODE_FILE (linkname);
2402 if (NILP (ok_if_already_exists)
2403 || INTEGERP (ok_if_already_exists))
2404 barf_or_query_if_file_exists (linkname, "make it a link",
2405 INTEGERP (ok_if_already_exists), 0, 0);
2406 if (0 > symlink (SDATA (encoded_filename),
2407 SDATA (encoded_linkname)))
2409 /* If we didn't complain already, silently delete existing file. */
2410 if (errno == EEXIST)
2412 unlink (SDATA (encoded_linkname));
2413 if (0 <= symlink (SDATA (encoded_filename),
2414 SDATA (encoded_linkname)))
2416 UNGCPRO;
2417 return Qnil;
2421 report_file_error ("Making symbolic link", list2 (filename, linkname));
2423 UNGCPRO;
2424 return Qnil;
2426 #else
2427 UNGCPRO;
2428 xsignal1 (Qfile_error, build_string ("Symbolic links are not supported"));
2430 #endif /* S_IFLNK */
2434 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
2435 1, 1, 0,
2436 doc: /* Return t if file FILENAME specifies an absolute file name.
2437 On Unix, this is a name starting with a `/' or a `~'. */)
2438 (filename)
2439 Lisp_Object filename;
2441 CHECK_STRING (filename);
2442 return file_name_absolute_p (SDATA (filename)) ? Qt : Qnil;
2445 /* Return nonzero if file FILENAME exists and can be executed. */
2447 static int
2448 check_executable (filename)
2449 char *filename;
2451 #ifdef DOS_NT
2452 int len = strlen (filename);
2453 char *suffix;
2454 struct stat st;
2455 if (stat (filename, &st) < 0)
2456 return 0;
2457 #if defined (WINDOWSNT) || (defined (MSDOS) && __DJGPP__ > 1)
2458 return ((st.st_mode & S_IEXEC) != 0);
2459 #else
2460 return (S_ISREG (st.st_mode)
2461 && len >= 5
2462 && (xstrcasecmp ((suffix = filename + len-4), ".com") == 0
2463 || xstrcasecmp (suffix, ".exe") == 0
2464 || xstrcasecmp (suffix, ".bat") == 0)
2465 || (st.st_mode & S_IFMT) == S_IFDIR);
2466 #endif /* not WINDOWSNT */
2467 #else /* not DOS_NT */
2468 #ifdef HAVE_EUIDACCESS
2469 return (euidaccess (filename, 1) >= 0);
2470 #else
2471 /* Access isn't quite right because it uses the real uid
2472 and we really want to test with the effective uid.
2473 But Unix doesn't give us a right way to do it. */
2474 return (access (filename, 1) >= 0);
2475 #endif
2476 #endif /* not DOS_NT */
2479 /* Return nonzero if file FILENAME exists and can be written. */
2481 static int
2482 check_writable (filename)
2483 char *filename;
2485 #ifdef MSDOS
2486 struct stat st;
2487 if (stat (filename, &st) < 0)
2488 return 0;
2489 return (st.st_mode & S_IWRITE || (st.st_mode & S_IFMT) == S_IFDIR);
2490 #else /* not MSDOS */
2491 #ifdef HAVE_EUIDACCESS
2492 return (euidaccess (filename, 2) >= 0);
2493 #else
2494 /* Access isn't quite right because it uses the real uid
2495 and we really want to test with the effective uid.
2496 But Unix doesn't give us a right way to do it.
2497 Opening with O_WRONLY could work for an ordinary file,
2498 but would lose for directories. */
2499 return (access (filename, 2) >= 0);
2500 #endif
2501 #endif /* not MSDOS */
2504 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
2505 doc: /* Return t if file FILENAME exists (whether or not you can read it.)
2506 See also `file-readable-p' and `file-attributes'.
2507 This returns nil for a symlink to a nonexistent file.
2508 Use `file-symlink-p' to test for such links. */)
2509 (filename)
2510 Lisp_Object filename;
2512 Lisp_Object absname;
2513 Lisp_Object handler;
2514 struct stat statbuf;
2516 CHECK_STRING (filename);
2517 absname = Fexpand_file_name (filename, Qnil);
2519 /* If the file name has special constructs in it,
2520 call the corresponding file handler. */
2521 handler = Ffind_file_name_handler (absname, Qfile_exists_p);
2522 if (!NILP (handler))
2523 return call2 (handler, Qfile_exists_p, absname);
2525 absname = ENCODE_FILE (absname);
2527 return (stat (SDATA (absname), &statbuf) >= 0) ? Qt : Qnil;
2530 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
2531 doc: /* Return t if FILENAME can be executed by you.
2532 For a directory, this means you can access files in that directory. */)
2533 (filename)
2534 Lisp_Object filename;
2536 Lisp_Object absname;
2537 Lisp_Object handler;
2539 CHECK_STRING (filename);
2540 absname = Fexpand_file_name (filename, Qnil);
2542 /* If the file name has special constructs in it,
2543 call the corresponding file handler. */
2544 handler = Ffind_file_name_handler (absname, Qfile_executable_p);
2545 if (!NILP (handler))
2546 return call2 (handler, Qfile_executable_p, absname);
2548 absname = ENCODE_FILE (absname);
2550 return (check_executable (SDATA (absname)) ? Qt : Qnil);
2553 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
2554 doc: /* Return t if file FILENAME exists and you can read it.
2555 See also `file-exists-p' and `file-attributes'. */)
2556 (filename)
2557 Lisp_Object filename;
2559 Lisp_Object absname;
2560 Lisp_Object handler;
2561 int desc;
2562 int flags;
2563 struct stat statbuf;
2565 CHECK_STRING (filename);
2566 absname = Fexpand_file_name (filename, Qnil);
2568 /* If the file name has special constructs in it,
2569 call the corresponding file handler. */
2570 handler = Ffind_file_name_handler (absname, Qfile_readable_p);
2571 if (!NILP (handler))
2572 return call2 (handler, Qfile_readable_p, absname);
2574 absname = ENCODE_FILE (absname);
2576 #if defined(DOS_NT) || defined(macintosh)
2577 /* Under MS-DOS, Windows, and Macintosh, open does not work for
2578 directories. */
2579 if (access (SDATA (absname), 0) == 0)
2580 return Qt;
2581 return Qnil;
2582 #else /* not DOS_NT and not macintosh */
2583 flags = O_RDONLY;
2584 #if defined (S_ISFIFO) && defined (O_NONBLOCK)
2585 /* Opening a fifo without O_NONBLOCK can wait.
2586 We don't want to wait. But we don't want to mess wth O_NONBLOCK
2587 except in the case of a fifo, on a system which handles it. */
2588 desc = stat (SDATA (absname), &statbuf);
2589 if (desc < 0)
2590 return Qnil;
2591 if (S_ISFIFO (statbuf.st_mode))
2592 flags |= O_NONBLOCK;
2593 #endif
2594 desc = emacs_open (SDATA (absname), flags, 0);
2595 if (desc < 0)
2596 return Qnil;
2597 emacs_close (desc);
2598 return Qt;
2599 #endif /* not DOS_NT and not macintosh */
2602 /* Having this before file-symlink-p mysteriously caused it to be forgotten
2603 on the RT/PC. */
2604 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
2605 doc: /* Return t if file FILENAME can be written or created by you. */)
2606 (filename)
2607 Lisp_Object filename;
2609 Lisp_Object absname, dir, encoded;
2610 Lisp_Object handler;
2611 struct stat statbuf;
2613 CHECK_STRING (filename);
2614 absname = Fexpand_file_name (filename, Qnil);
2616 /* If the file name has special constructs in it,
2617 call the corresponding file handler. */
2618 handler = Ffind_file_name_handler (absname, Qfile_writable_p);
2619 if (!NILP (handler))
2620 return call2 (handler, Qfile_writable_p, absname);
2622 encoded = ENCODE_FILE (absname);
2623 if (stat (SDATA (encoded), &statbuf) >= 0)
2624 return (check_writable (SDATA (encoded))
2625 ? Qt : Qnil);
2627 dir = Ffile_name_directory (absname);
2628 #ifdef MSDOS
2629 if (!NILP (dir))
2630 dir = Fdirectory_file_name (dir);
2631 #endif /* MSDOS */
2633 dir = ENCODE_FILE (dir);
2634 #ifdef WINDOWSNT
2635 /* The read-only attribute of the parent directory doesn't affect
2636 whether a file or directory can be created within it. Some day we
2637 should check ACLs though, which do affect this. */
2638 if (stat (SDATA (dir), &statbuf) < 0)
2639 return Qnil;
2640 return (statbuf.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil;
2641 #else
2642 return (check_writable (!NILP (dir) ? (char *) SDATA (dir) : "")
2643 ? Qt : Qnil);
2644 #endif
2647 DEFUN ("access-file", Faccess_file, Saccess_file, 2, 2, 0,
2648 doc: /* Access file FILENAME, and get an error if that does not work.
2649 The second argument STRING is used in the error message.
2650 If there is no error, returns nil. */)
2651 (filename, string)
2652 Lisp_Object filename, string;
2654 Lisp_Object handler, encoded_filename, absname;
2655 int fd;
2657 CHECK_STRING (filename);
2658 absname = Fexpand_file_name (filename, Qnil);
2660 CHECK_STRING (string);
2662 /* If the file name has special constructs in it,
2663 call the corresponding file handler. */
2664 handler = Ffind_file_name_handler (absname, Qaccess_file);
2665 if (!NILP (handler))
2666 return call3 (handler, Qaccess_file, absname, string);
2668 encoded_filename = ENCODE_FILE (absname);
2670 fd = emacs_open (SDATA (encoded_filename), O_RDONLY, 0);
2671 if (fd < 0)
2672 report_file_error (SDATA (string), Fcons (filename, Qnil));
2673 emacs_close (fd);
2675 return Qnil;
2678 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
2679 doc: /* Return non-nil if file FILENAME is the name of a symbolic link.
2680 The value is the link target, as a string.
2681 Otherwise it returns nil.
2683 This function returns t when given the name of a symlink that
2684 points to a nonexistent file. */)
2685 (filename)
2686 Lisp_Object filename;
2688 Lisp_Object handler;
2690 CHECK_STRING (filename);
2691 filename = Fexpand_file_name (filename, Qnil);
2693 /* If the file name has special constructs in it,
2694 call the corresponding file handler. */
2695 handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
2696 if (!NILP (handler))
2697 return call2 (handler, Qfile_symlink_p, filename);
2699 #ifdef S_IFLNK
2701 char *buf;
2702 int bufsize;
2703 int valsize;
2704 Lisp_Object val;
2706 filename = ENCODE_FILE (filename);
2708 bufsize = 50;
2709 buf = NULL;
2712 bufsize *= 2;
2713 buf = (char *) xrealloc (buf, bufsize);
2714 bzero (buf, bufsize);
2716 errno = 0;
2717 valsize = readlink (SDATA (filename), buf, bufsize);
2718 if (valsize == -1)
2720 #ifdef ERANGE
2721 /* HP-UX reports ERANGE if buffer is too small. */
2722 if (errno == ERANGE)
2723 valsize = bufsize;
2724 else
2725 #endif
2727 xfree (buf);
2728 return Qnil;
2732 while (valsize >= bufsize);
2734 val = make_string (buf, valsize);
2735 if (buf[0] == '/' && index (buf, ':'))
2736 val = concat2 (build_string ("/:"), val);
2737 xfree (buf);
2738 val = DECODE_FILE (val);
2739 return val;
2741 #else /* not S_IFLNK */
2742 return Qnil;
2743 #endif /* not S_IFLNK */
2746 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
2747 doc: /* Return t if FILENAME names an existing directory.
2748 Symbolic links to directories count as directories.
2749 See `file-symlink-p' to distinguish symlinks. */)
2750 (filename)
2751 Lisp_Object filename;
2753 register Lisp_Object absname;
2754 struct stat st;
2755 Lisp_Object handler;
2757 absname = expand_and_dir_to_file (filename, current_buffer->directory);
2759 /* If the file name has special constructs in it,
2760 call the corresponding file handler. */
2761 handler = Ffind_file_name_handler (absname, Qfile_directory_p);
2762 if (!NILP (handler))
2763 return call2 (handler, Qfile_directory_p, absname);
2765 absname = ENCODE_FILE (absname);
2767 if (stat (SDATA (absname), &st) < 0)
2768 return Qnil;
2769 return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil;
2772 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p, Sfile_accessible_directory_p, 1, 1, 0,
2773 doc: /* Return t if file FILENAME names a directory you can open.
2774 For the value to be t, FILENAME must specify the name of a directory as a file,
2775 and the directory must allow you to open files in it. In order to use a
2776 directory as a buffer's current directory, this predicate must return true.
2777 A directory name spec may be given instead; then the value is t
2778 if the directory so specified exists and really is a readable and
2779 searchable directory. */)
2780 (filename)
2781 Lisp_Object filename;
2783 Lisp_Object handler;
2784 int tem;
2785 struct gcpro gcpro1;
2787 /* If the file name has special constructs in it,
2788 call the corresponding file handler. */
2789 handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p);
2790 if (!NILP (handler))
2791 return call2 (handler, Qfile_accessible_directory_p, filename);
2793 GCPRO1 (filename);
2794 tem = (NILP (Ffile_directory_p (filename))
2795 || NILP (Ffile_executable_p (filename)));
2796 UNGCPRO;
2797 return tem ? Qnil : Qt;
2800 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
2801 doc: /* Return t if FILENAME names a regular file.
2802 This is the sort of file that holds an ordinary stream of data bytes.
2803 Symbolic links to regular files count as regular files.
2804 See `file-symlink-p' to distinguish symlinks. */)
2805 (filename)
2806 Lisp_Object filename;
2808 register Lisp_Object absname;
2809 struct stat st;
2810 Lisp_Object handler;
2812 absname = expand_and_dir_to_file (filename, current_buffer->directory);
2814 /* If the file name has special constructs in it,
2815 call the corresponding file handler. */
2816 handler = Ffind_file_name_handler (absname, Qfile_regular_p);
2817 if (!NILP (handler))
2818 return call2 (handler, Qfile_regular_p, absname);
2820 absname = ENCODE_FILE (absname);
2822 #ifdef WINDOWSNT
2824 int result;
2825 Lisp_Object tem = Vw32_get_true_file_attributes;
2827 /* Tell stat to use expensive method to get accurate info. */
2828 Vw32_get_true_file_attributes = Qt;
2829 result = stat (SDATA (absname), &st);
2830 Vw32_get_true_file_attributes = tem;
2832 if (result < 0)
2833 return Qnil;
2834 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
2836 #else
2837 if (stat (SDATA (absname), &st) < 0)
2838 return Qnil;
2839 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
2840 #endif
2843 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
2844 doc: /* Return mode bits of file named FILENAME, as an integer.
2845 Return nil, if file does not exist or is not accessible. */)
2846 (filename)
2847 Lisp_Object filename;
2849 Lisp_Object absname;
2850 struct stat st;
2851 Lisp_Object handler;
2853 absname = expand_and_dir_to_file (filename, current_buffer->directory);
2855 /* If the file name has special constructs in it,
2856 call the corresponding file handler. */
2857 handler = Ffind_file_name_handler (absname, Qfile_modes);
2858 if (!NILP (handler))
2859 return call2 (handler, Qfile_modes, absname);
2861 absname = ENCODE_FILE (absname);
2863 if (stat (SDATA (absname), &st) < 0)
2864 return Qnil;
2865 #if defined (MSDOS) && __DJGPP__ < 2
2866 if (check_executable (SDATA (absname)))
2867 st.st_mode |= S_IEXEC;
2868 #endif /* MSDOS && __DJGPP__ < 2 */
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 extern void adjust_markers_for_delete P_ ((int, int, int, int));
3053 /* This function is called after Lisp functions to decide a coding
3054 system are called, or when they cause an error. Before they are
3055 called, the current buffer is set unibyte and it contains only a
3056 newly inserted text (thus the buffer was empty before the
3057 insertion).
3059 The functions may set markers, overlays, text properties, or even
3060 alter the buffer contents, change the current buffer.
3062 Here, we reset all those changes by:
3063 o set back the current buffer.
3064 o move all markers and overlays to BEG.
3065 o remove all text properties.
3066 o set back the buffer multibyteness. */
3068 static Lisp_Object
3069 decide_coding_unwind (unwind_data)
3070 Lisp_Object unwind_data;
3072 Lisp_Object multibyte, undo_list, buffer;
3074 multibyte = XCAR (unwind_data);
3075 unwind_data = XCDR (unwind_data);
3076 undo_list = XCAR (unwind_data);
3077 buffer = XCDR (unwind_data);
3079 if (current_buffer != XBUFFER (buffer))
3080 set_buffer_internal (XBUFFER (buffer));
3081 adjust_markers_for_delete (BEG, BEG_BYTE, Z, Z_BYTE);
3082 adjust_overlays_for_delete (BEG, Z - BEG);
3083 BUF_INTERVALS (current_buffer) = 0;
3084 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3086 /* Now we are safe to change the buffer's multibyteness directly. */
3087 current_buffer->enable_multibyte_characters = multibyte;
3088 current_buffer->undo_list = undo_list;
3090 return Qnil;
3094 /* Used to pass values from insert-file-contents to read_non_regular. */
3096 static int non_regular_fd;
3097 static int non_regular_inserted;
3098 static int non_regular_nbytes;
3101 /* Read from a non-regular file.
3102 Read non_regular_trytry bytes max from non_regular_fd.
3103 Non_regular_inserted specifies where to put the read bytes.
3104 Value is the number of bytes read. */
3106 static Lisp_Object
3107 read_non_regular ()
3109 int nbytes;
3111 immediate_quit = 1;
3112 QUIT;
3113 nbytes = emacs_read (non_regular_fd,
3114 BEG_ADDR + PT_BYTE - BEG_BYTE + non_regular_inserted,
3115 non_regular_nbytes);
3116 immediate_quit = 0;
3117 return make_number (nbytes);
3121 /* Condition-case handler used when reading from non-regular files
3122 in insert-file-contents. */
3124 static Lisp_Object
3125 read_non_regular_quit ()
3127 return Qnil;
3131 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
3132 1, 5, 0,
3133 doc: /* Insert contents of file FILENAME after point.
3134 Returns list of absolute file name and number of characters inserted.
3135 If second argument VISIT is non-nil, the buffer's visited filename and
3136 last save file modtime are set, and it is marked unmodified. If
3137 visiting and the file does not exist, visiting is completed before the
3138 error is signaled.
3140 The optional third and fourth arguments BEG and END specify what portion
3141 of the file to insert. These arguments count bytes in the file, not
3142 characters in the buffer. If VISIT is non-nil, BEG and END must be nil.
3144 If optional fifth argument REPLACE is non-nil, replace the current
3145 buffer contents (in the accessible portion) with the file contents.
3146 This is better than simply deleting and inserting the whole thing
3147 because (1) it preserves some marker positions and (2) it puts less data
3148 in the undo list. When REPLACE is non-nil, the second return value is
3149 the number of characters that replace previous buffer contents.
3151 This function does code conversion according to the value of
3152 `coding-system-for-read' or `file-coding-system-alist', and sets the
3153 variable `last-coding-system-used' to the coding system actually used. */)
3154 (filename, visit, beg, end, replace)
3155 Lisp_Object filename, visit, beg, end, replace;
3157 struct stat st;
3158 register int fd;
3159 int inserted = 0;
3160 int nochange = 0;
3161 register int how_much;
3162 register int unprocessed;
3163 int count = SPECPDL_INDEX ();
3164 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3165 Lisp_Object handler, val, insval, orig_filename, old_undo;
3166 Lisp_Object p;
3167 int total = 0;
3168 int not_regular = 0;
3169 unsigned char read_buf[READ_BUF_SIZE];
3170 struct coding_system coding;
3171 unsigned char buffer[1 << 14];
3172 int replace_handled = 0;
3173 int set_coding_system = 0;
3174 Lisp_Object coding_system;
3175 int read_quit = 0;
3176 Lisp_Object old_Vdeactivate_mark = Vdeactivate_mark;
3177 int we_locked_file = 0;
3178 int deferred_remove_unwind_protect = 0;
3180 if (current_buffer->base_buffer && ! NILP (visit))
3181 error ("Cannot do file visiting in an indirect buffer");
3183 if (!NILP (current_buffer->read_only))
3184 Fbarf_if_buffer_read_only ();
3186 val = Qnil;
3187 p = Qnil;
3188 orig_filename = Qnil;
3189 old_undo = Qnil;
3191 GCPRO5 (filename, val, p, orig_filename, old_undo);
3193 CHECK_STRING (filename);
3194 filename = Fexpand_file_name (filename, Qnil);
3196 /* The value Qnil means that the coding system is not yet
3197 decided. */
3198 coding_system = Qnil;
3200 /* If the file name has special constructs in it,
3201 call the corresponding file handler. */
3202 handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
3203 if (!NILP (handler))
3205 val = call6 (handler, Qinsert_file_contents, filename,
3206 visit, beg, end, replace);
3207 if (CONSP (val) && CONSP (XCDR (val)))
3208 inserted = XINT (XCAR (XCDR (val)));
3209 goto handled;
3212 orig_filename = filename;
3213 filename = ENCODE_FILE (filename);
3215 fd = -1;
3217 #ifdef WINDOWSNT
3219 Lisp_Object tem = Vw32_get_true_file_attributes;
3221 /* Tell stat to use expensive method to get accurate info. */
3222 Vw32_get_true_file_attributes = Qt;
3223 total = stat (SDATA (filename), &st);
3224 Vw32_get_true_file_attributes = tem;
3226 if (total < 0)
3227 #else
3228 if (stat (SDATA (filename), &st) < 0)
3229 #endif /* WINDOWSNT */
3231 if (fd >= 0) emacs_close (fd);
3232 badopen:
3233 if (NILP (visit))
3234 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
3235 st.st_mtime = -1;
3236 how_much = 0;
3237 if (!NILP (Vcoding_system_for_read))
3238 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read);
3239 goto notfound;
3242 #ifdef S_IFREG
3243 /* This code will need to be changed in order to work on named
3244 pipes, and it's probably just not worth it. So we should at
3245 least signal an error. */
3246 if (!S_ISREG (st.st_mode))
3248 not_regular = 1;
3250 if (! NILP (visit))
3251 goto notfound;
3253 if (! NILP (replace) || ! NILP (beg) || ! NILP (end))
3254 xsignal2 (Qfile_error,
3255 build_string ("not a regular file"), orig_filename);
3257 #endif
3259 if (fd < 0)
3260 if ((fd = emacs_open (SDATA (filename), O_RDONLY, 0)) < 0)
3261 goto badopen;
3263 /* Replacement should preserve point as it preserves markers. */
3264 if (!NILP (replace))
3265 record_unwind_protect (restore_point_unwind, Fpoint_marker ());
3267 record_unwind_protect (close_file_unwind, make_number (fd));
3269 /* Can happen on any platform that uses long as type of off_t, but allows
3270 file sizes to exceed 2Gb, so give a suitable message. */
3271 if (! not_regular && st.st_size < 0)
3272 error ("Maximum buffer size exceeded");
3274 /* Prevent redisplay optimizations. */
3275 current_buffer->clip_changed = 1;
3277 if (!NILP (visit))
3279 if (!NILP (beg) || !NILP (end))
3280 error ("Attempt to visit less than an entire file");
3281 if (BEG < Z && NILP (replace))
3282 error ("Cannot do file visiting in a non-empty buffer");
3285 if (!NILP (beg))
3286 CHECK_NUMBER (beg);
3287 else
3288 XSETFASTINT (beg, 0);
3290 if (!NILP (end))
3291 CHECK_NUMBER (end);
3292 else
3294 if (! not_regular)
3296 XSETINT (end, st.st_size);
3298 /* Arithmetic overflow can occur if an Emacs integer cannot
3299 represent the file size, or if the calculations below
3300 overflow. The calculations below double the file size
3301 twice, so check that it can be multiplied by 4 safely. */
3302 if (XINT (end) != st.st_size
3303 || st.st_size > INT_MAX / 4)
3304 error ("Maximum buffer size exceeded");
3306 /* The file size returned from stat may be zero, but data
3307 may be readable nonetheless, for example when this is a
3308 file in the /proc filesystem. */
3309 if (st.st_size == 0)
3310 XSETINT (end, READ_BUF_SIZE);
3314 if (EQ (Vcoding_system_for_read, Qauto_save_coding))
3316 coding_system = coding_inherit_eol_type (Qutf_8_emacs, Qunix);
3317 setup_coding_system (coding_system, &coding);
3318 /* Ensure we set Vlast_coding_system_used. */
3319 set_coding_system = 1;
3321 else if (BEG < Z)
3323 /* Decide the coding system to use for reading the file now
3324 because we can't use an optimized method for handling
3325 `coding:' tag if the current buffer is not empty. */
3326 if (!NILP (Vcoding_system_for_read))
3327 coding_system = Vcoding_system_for_read;
3328 else
3330 /* Don't try looking inside a file for a coding system
3331 specification if it is not seekable. */
3332 if (! not_regular && ! NILP (Vset_auto_coding_function))
3334 /* Find a coding system specified in the heading two
3335 lines or in the tailing several lines of the file.
3336 We assume that the 1K-byte and 3K-byte for heading
3337 and tailing respectively are sufficient for this
3338 purpose. */
3339 int nread;
3341 if (st.st_size <= (1024 * 4))
3342 nread = emacs_read (fd, read_buf, 1024 * 4);
3343 else
3345 nread = emacs_read (fd, read_buf, 1024);
3346 if (nread >= 0)
3348 if (lseek (fd, st.st_size - (1024 * 3), 0) < 0)
3349 report_file_error ("Setting file position",
3350 Fcons (orig_filename, Qnil));
3351 nread += emacs_read (fd, read_buf + nread, 1024 * 3);
3355 if (nread < 0)
3356 error ("IO error reading %s: %s",
3357 SDATA (orig_filename), emacs_strerror (errno));
3358 else if (nread > 0)
3360 struct buffer *prev = current_buffer;
3361 Lisp_Object buffer;
3362 struct buffer *buf;
3364 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
3366 buffer = Fget_buffer_create (build_string (" *code-converting-work*"));
3367 buf = XBUFFER (buffer);
3369 delete_all_overlays (buf);
3370 buf->directory = current_buffer->directory;
3371 buf->read_only = Qnil;
3372 buf->filename = Qnil;
3373 buf->undo_list = Qt;
3374 eassert (buf->overlays_before == NULL);
3375 eassert (buf->overlays_after == NULL);
3377 set_buffer_internal (buf);
3378 Ferase_buffer ();
3379 buf->enable_multibyte_characters = Qnil;
3381 insert_1_both (read_buf, nread, nread, 0, 0, 0);
3382 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3383 coding_system = call2 (Vset_auto_coding_function,
3384 filename, make_number (nread));
3385 set_buffer_internal (prev);
3387 /* Discard the unwind protect for recovering the
3388 current buffer. */
3389 specpdl_ptr--;
3391 /* Rewind the file for the actual read done later. */
3392 if (lseek (fd, 0, 0) < 0)
3393 report_file_error ("Setting file position",
3394 Fcons (orig_filename, Qnil));
3398 if (NILP (coding_system))
3400 /* If we have not yet decided a coding system, check
3401 file-coding-system-alist. */
3402 Lisp_Object args[6];
3404 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3405 args[2] = visit, args[3] = beg, args[4] = end, args[5] = replace;
3406 coding_system = Ffind_operation_coding_system (6, args);
3407 if (CONSP (coding_system))
3408 coding_system = XCAR (coding_system);
3412 if (NILP (coding_system))
3413 coding_system = Qundecided;
3414 else
3415 CHECK_CODING_SYSTEM (coding_system);
3417 if (NILP (current_buffer->enable_multibyte_characters))
3418 /* We must suppress all character code conversion except for
3419 end-of-line conversion. */
3420 coding_system = raw_text_coding_system (coding_system);
3422 setup_coding_system (coding_system, &coding);
3423 /* Ensure we set Vlast_coding_system_used. */
3424 set_coding_system = 1;
3427 /* If requested, replace the accessible part of the buffer
3428 with the file contents. Avoid replacing text at the
3429 beginning or end of the buffer that matches the file contents;
3430 that preserves markers pointing to the unchanged parts.
3432 Here we implement this feature in an optimized way
3433 for the case where code conversion is NOT needed.
3434 The following if-statement handles the case of conversion
3435 in a less optimal way.
3437 If the code conversion is "automatic" then we try using this
3438 method and hope for the best.
3439 But if we discover the need for conversion, we give up on this method
3440 and let the following if-statement handle the replace job. */
3441 if (!NILP (replace)
3442 && BEGV < ZV
3443 && (NILP (coding_system)
3444 || ! CODING_REQUIRE_DECODING (&coding)))
3446 /* same_at_start and same_at_end count bytes,
3447 because file access counts bytes
3448 and BEG and END count bytes. */
3449 int same_at_start = BEGV_BYTE;
3450 int same_at_end = ZV_BYTE;
3451 int overlap;
3452 /* There is still a possibility we will find the need to do code
3453 conversion. If that happens, we set this variable to 1 to
3454 give up on handling REPLACE in the optimized way. */
3455 int giveup_match_end = 0;
3457 if (XINT (beg) != 0)
3459 if (lseek (fd, XINT (beg), 0) < 0)
3460 report_file_error ("Setting file position",
3461 Fcons (orig_filename, Qnil));
3464 immediate_quit = 1;
3465 QUIT;
3466 /* Count how many chars at the start of the file
3467 match the text at the beginning of the buffer. */
3468 while (1)
3470 int nread, bufpos;
3472 nread = emacs_read (fd, buffer, sizeof buffer);
3473 if (nread < 0)
3474 error ("IO error reading %s: %s",
3475 SDATA (orig_filename), emacs_strerror (errno));
3476 else if (nread == 0)
3477 break;
3479 if (CODING_REQUIRE_DETECTION (&coding))
3481 coding_system = detect_coding_system (buffer, nread, nread, 1, 0,
3482 coding_system);
3483 setup_coding_system (coding_system, &coding);
3486 if (CODING_REQUIRE_DECODING (&coding))
3487 /* We found that the file should be decoded somehow.
3488 Let's give up here. */
3490 giveup_match_end = 1;
3491 break;
3494 bufpos = 0;
3495 while (bufpos < nread && same_at_start < ZV_BYTE
3496 && FETCH_BYTE (same_at_start) == buffer[bufpos])
3497 same_at_start++, bufpos++;
3498 /* If we found a discrepancy, stop the scan.
3499 Otherwise loop around and scan the next bufferful. */
3500 if (bufpos != nread)
3501 break;
3503 immediate_quit = 0;
3504 /* If the file matches the buffer completely,
3505 there's no need to replace anything. */
3506 if (same_at_start - BEGV_BYTE == XINT (end))
3508 emacs_close (fd);
3509 specpdl_ptr--;
3510 /* Truncate the buffer to the size of the file. */
3511 del_range_1 (same_at_start, same_at_end, 0, 0);
3512 goto handled;
3514 immediate_quit = 1;
3515 QUIT;
3516 /* Count how many chars at the end of the file
3517 match the text at the end of the buffer. But, if we have
3518 already found that decoding is necessary, don't waste time. */
3519 while (!giveup_match_end)
3521 int total_read, nread, bufpos, curpos, trial;
3523 /* At what file position are we now scanning? */
3524 curpos = XINT (end) - (ZV_BYTE - same_at_end);
3525 /* If the entire file matches the buffer tail, stop the scan. */
3526 if (curpos == 0)
3527 break;
3528 /* How much can we scan in the next step? */
3529 trial = min (curpos, sizeof buffer);
3530 if (lseek (fd, curpos - trial, 0) < 0)
3531 report_file_error ("Setting file position",
3532 Fcons (orig_filename, Qnil));
3534 total_read = nread = 0;
3535 while (total_read < trial)
3537 nread = emacs_read (fd, buffer + total_read, trial - total_read);
3538 if (nread < 0)
3539 error ("IO error reading %s: %s",
3540 SDATA (orig_filename), emacs_strerror (errno));
3541 else if (nread == 0)
3542 break;
3543 total_read += nread;
3546 /* Scan this bufferful from the end, comparing with
3547 the Emacs buffer. */
3548 bufpos = total_read;
3550 /* Compare with same_at_start to avoid counting some buffer text
3551 as matching both at the file's beginning and at the end. */
3552 while (bufpos > 0 && same_at_end > same_at_start
3553 && FETCH_BYTE (same_at_end - 1) == buffer[bufpos - 1])
3554 same_at_end--, bufpos--;
3556 /* If we found a discrepancy, stop the scan.
3557 Otherwise loop around and scan the preceding bufferful. */
3558 if (bufpos != 0)
3560 /* If this discrepancy is because of code conversion,
3561 we cannot use this method; giveup and try the other. */
3562 if (same_at_end > same_at_start
3563 && FETCH_BYTE (same_at_end - 1) >= 0200
3564 && ! NILP (current_buffer->enable_multibyte_characters)
3565 && (CODING_MAY_REQUIRE_DECODING (&coding)))
3566 giveup_match_end = 1;
3567 break;
3570 if (nread == 0)
3571 break;
3573 immediate_quit = 0;
3575 if (! giveup_match_end)
3577 int temp;
3579 /* We win! We can handle REPLACE the optimized way. */
3581 /* Extend the start of non-matching text area to multibyte
3582 character boundary. */
3583 if (! NILP (current_buffer->enable_multibyte_characters))
3584 while (same_at_start > BEGV_BYTE
3585 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3586 same_at_start--;
3588 /* Extend the end of non-matching text area to multibyte
3589 character boundary. */
3590 if (! NILP (current_buffer->enable_multibyte_characters))
3591 while (same_at_end < ZV_BYTE
3592 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3593 same_at_end++;
3595 /* Don't try to reuse the same piece of text twice. */
3596 overlap = (same_at_start - BEGV_BYTE
3597 - (same_at_end + st.st_size - ZV));
3598 if (overlap > 0)
3599 same_at_end += overlap;
3601 /* Arrange to read only the nonmatching middle part of the file. */
3602 XSETFASTINT (beg, XINT (beg) + (same_at_start - BEGV_BYTE));
3603 XSETFASTINT (end, XINT (end) - (ZV_BYTE - same_at_end));
3605 del_range_byte (same_at_start, same_at_end, 0);
3606 /* Insert from the file at the proper position. */
3607 temp = BYTE_TO_CHAR (same_at_start);
3608 SET_PT_BOTH (temp, same_at_start);
3610 /* If display currently starts at beginning of line,
3611 keep it that way. */
3612 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3613 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
3615 replace_handled = 1;
3619 /* If requested, replace the accessible part of the buffer
3620 with the file contents. Avoid replacing text at the
3621 beginning or end of the buffer that matches the file contents;
3622 that preserves markers pointing to the unchanged parts.
3624 Here we implement this feature for the case where code conversion
3625 is needed, in a simple way that needs a lot of memory.
3626 The preceding if-statement handles the case of no conversion
3627 in a more optimized way. */
3628 if (!NILP (replace) && ! replace_handled && BEGV < ZV)
3630 EMACS_INT same_at_start = BEGV_BYTE;
3631 EMACS_INT same_at_end = ZV_BYTE;
3632 EMACS_INT same_at_start_charpos;
3633 EMACS_INT inserted_chars;
3634 EMACS_INT overlap;
3635 EMACS_INT bufpos;
3636 unsigned char *decoded;
3637 int temp;
3638 int this_count = SPECPDL_INDEX ();
3639 int multibyte = ! NILP (current_buffer->enable_multibyte_characters);
3640 Lisp_Object conversion_buffer;
3642 conversion_buffer = code_conversion_save (1, multibyte);
3644 /* First read the whole file, performing code conversion into
3645 CONVERSION_BUFFER. */
3647 if (lseek (fd, XINT (beg), 0) < 0)
3648 report_file_error ("Setting file position",
3649 Fcons (orig_filename, Qnil));
3651 total = st.st_size; /* Total bytes in the file. */
3652 how_much = 0; /* Bytes read from file so far. */
3653 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */
3654 unprocessed = 0; /* Bytes not processed in previous loop. */
3656 GCPRO1 (conversion_buffer);
3657 while (how_much < total)
3659 /* We read one bunch by one (READ_BUF_SIZE bytes) to allow
3660 quitting while reading a huge while. */
3661 /* try is reserved in some compilers (Microsoft C) */
3662 int trytry = min (total - how_much, READ_BUF_SIZE - unprocessed);
3663 int this;
3665 /* Allow quitting out of the actual I/O. */
3666 immediate_quit = 1;
3667 QUIT;
3668 this = emacs_read (fd, read_buf + unprocessed, trytry);
3669 immediate_quit = 0;
3671 if (this <= 0)
3673 if (this < 0)
3674 how_much = this;
3675 break;
3678 how_much += this;
3680 BUF_TEMP_SET_PT (XBUFFER (conversion_buffer),
3681 BUF_Z (XBUFFER (conversion_buffer)));
3682 decode_coding_c_string (&coding, read_buf, unprocessed + this,
3683 conversion_buffer);
3684 unprocessed = coding.carryover_bytes;
3685 if (coding.carryover_bytes > 0)
3686 bcopy (coding.carryover, read_buf, unprocessed);
3688 UNGCPRO;
3689 emacs_close (fd);
3691 /* We should remove the unwind_protect calling
3692 close_file_unwind, but other stuff has been added the stack,
3693 so defer the removal till we reach the `handled' label. */
3694 deferred_remove_unwind_protect = 1;
3696 /* At this point, HOW_MUCH should equal TOTAL, or should be <= 0
3697 if we couldn't read the file. */
3699 if (how_much < 0)
3700 error ("IO error reading %s: %s",
3701 SDATA (orig_filename), emacs_strerror (errno));
3703 if (unprocessed > 0)
3705 coding.mode |= CODING_MODE_LAST_BLOCK;
3706 decode_coding_c_string (&coding, read_buf, unprocessed,
3707 conversion_buffer);
3708 coding.mode &= ~CODING_MODE_LAST_BLOCK;
3711 coding_system = CODING_ID_NAME (coding.id);
3712 decoded = BUF_BEG_ADDR (XBUFFER (conversion_buffer));
3713 inserted = (BUF_Z_BYTE (XBUFFER (conversion_buffer))
3714 - BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
3716 /* Compare the beginning of the converted string with the buffer
3717 text. */
3719 bufpos = 0;
3720 while (bufpos < inserted && same_at_start < same_at_end
3721 && FETCH_BYTE (same_at_start) == decoded[bufpos])
3722 same_at_start++, bufpos++;
3724 /* If the file matches the head of buffer completely,
3725 there's no need to replace anything. */
3727 if (bufpos == inserted)
3729 /* Truncate the buffer to the size of the file. */
3730 if (same_at_start == same_at_end)
3731 nochange = 1;
3732 else
3733 del_range_byte (same_at_start, same_at_end, 0);
3734 inserted = 0;
3736 unbind_to (this_count, Qnil);
3737 goto handled;
3740 /* Extend the start of non-matching text area to the previous
3741 multibyte character boundary. */
3742 if (! NILP (current_buffer->enable_multibyte_characters))
3743 while (same_at_start > BEGV_BYTE
3744 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3745 same_at_start--;
3747 /* Scan this bufferful from the end, comparing with
3748 the Emacs buffer. */
3749 bufpos = inserted;
3751 /* Compare with same_at_start to avoid counting some buffer text
3752 as matching both at the file's beginning and at the end. */
3753 while (bufpos > 0 && same_at_end > same_at_start
3754 && FETCH_BYTE (same_at_end - 1) == decoded[bufpos - 1])
3755 same_at_end--, bufpos--;
3757 /* Extend the end of non-matching text area to the next
3758 multibyte character boundary. */
3759 if (! NILP (current_buffer->enable_multibyte_characters))
3760 while (same_at_end < ZV_BYTE
3761 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3762 same_at_end++;
3764 /* Don't try to reuse the same piece of text twice. */
3765 overlap = same_at_start - BEGV_BYTE - (same_at_end + inserted - ZV_BYTE);
3766 if (overlap > 0)
3767 same_at_end += overlap;
3769 /* If display currently starts at beginning of line,
3770 keep it that way. */
3771 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3772 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
3774 /* Replace the chars that we need to replace,
3775 and update INSERTED to equal the number of bytes
3776 we are taking from the decoded string. */
3777 inserted -= (ZV_BYTE - same_at_end) + (same_at_start - BEGV_BYTE);
3779 if (same_at_end != same_at_start)
3781 del_range_byte (same_at_start, same_at_end, 0);
3782 temp = GPT;
3783 same_at_start = GPT_BYTE;
3785 else
3787 temp = BYTE_TO_CHAR (same_at_start);
3789 /* Insert from the file at the proper position. */
3790 SET_PT_BOTH (temp, same_at_start);
3791 same_at_start_charpos
3792 = buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
3793 same_at_start - BEGV_BYTE
3794 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
3795 inserted_chars
3796 = (buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
3797 same_at_start + inserted - BEGV_BYTE
3798 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)))
3799 - same_at_start_charpos);
3800 /* This binding is to avoid ask-user-about-supersession-threat
3801 being called in insert_from_buffer (via in
3802 prepare_to_modify_buffer). */
3803 specbind (intern ("buffer-file-name"), Qnil);
3804 insert_from_buffer (XBUFFER (conversion_buffer),
3805 same_at_start_charpos, inserted_chars, 0);
3806 /* Set `inserted' to the number of inserted characters. */
3807 inserted = PT - temp;
3808 /* Set point before the inserted characters. */
3809 SET_PT_BOTH (temp, same_at_start);
3811 unbind_to (this_count, Qnil);
3813 goto handled;
3816 if (! not_regular)
3818 register Lisp_Object temp;
3820 total = XINT (end) - XINT (beg);
3822 /* Make sure point-max won't overflow after this insertion. */
3823 XSETINT (temp, total);
3824 if (total != XINT (temp))
3825 error ("Maximum buffer size exceeded");
3827 else
3828 /* For a special file, all we can do is guess. */
3829 total = READ_BUF_SIZE;
3831 if (NILP (visit) && inserted > 0)
3833 #ifdef CLASH_DETECTION
3834 if (!NILP (current_buffer->file_truename)
3835 /* Make binding buffer-file-name to nil effective. */
3836 && !NILP (current_buffer->filename)
3837 && SAVE_MODIFF >= MODIFF)
3838 we_locked_file = 1;
3839 #endif /* CLASH_DETECTION */
3840 prepare_to_modify_buffer (GPT, GPT, NULL);
3843 move_gap (PT);
3844 if (GAP_SIZE < total)
3845 make_gap (total - GAP_SIZE);
3847 if (XINT (beg) != 0 || !NILP (replace))
3849 if (lseek (fd, XINT (beg), 0) < 0)
3850 report_file_error ("Setting file position",
3851 Fcons (orig_filename, Qnil));
3854 /* In the following loop, HOW_MUCH contains the total bytes read so
3855 far for a regular file, and not changed for a special file. But,
3856 before exiting the loop, it is set to a negative value if I/O
3857 error occurs. */
3858 how_much = 0;
3860 /* Total bytes inserted. */
3861 inserted = 0;
3863 /* Here, we don't do code conversion in the loop. It is done by
3864 decode_coding_gap after all data are read into the buffer. */
3866 int gap_size = GAP_SIZE;
3868 while (how_much < total)
3870 /* try is reserved in some compilers (Microsoft C) */
3871 int trytry = min (total - how_much, READ_BUF_SIZE);
3872 int this;
3874 if (not_regular)
3876 Lisp_Object val;
3878 /* Maybe make more room. */
3879 if (gap_size < trytry)
3881 make_gap (total - gap_size);
3882 gap_size = GAP_SIZE;
3885 /* Read from the file, capturing `quit'. When an
3886 error occurs, end the loop, and arrange for a quit
3887 to be signaled after decoding the text we read. */
3888 non_regular_fd = fd;
3889 non_regular_inserted = inserted;
3890 non_regular_nbytes = trytry;
3891 val = internal_condition_case_1 (read_non_regular, Qnil, Qerror,
3892 read_non_regular_quit);
3893 if (NILP (val))
3895 read_quit = 1;
3896 break;
3899 this = XINT (val);
3901 else
3903 /* Allow quitting out of the actual I/O. We don't make text
3904 part of the buffer until all the reading is done, so a C-g
3905 here doesn't do any harm. */
3906 immediate_quit = 1;
3907 QUIT;
3908 this = emacs_read (fd, BEG_ADDR + PT_BYTE - BEG_BYTE + inserted, trytry);
3909 immediate_quit = 0;
3912 if (this <= 0)
3914 how_much = this;
3915 break;
3918 gap_size -= this;
3920 /* For a regular file, where TOTAL is the real size,
3921 count HOW_MUCH to compare with it.
3922 For a special file, where TOTAL is just a buffer size,
3923 so don't bother counting in HOW_MUCH.
3924 (INSERTED is where we count the number of characters inserted.) */
3925 if (! not_regular)
3926 how_much += this;
3927 inserted += this;
3931 /* Now we have read all the file data into the gap.
3932 If it was empty, undo marking the buffer modified. */
3934 if (inserted == 0)
3936 #ifdef CLASH_DETECTION
3937 if (we_locked_file)
3938 unlock_file (current_buffer->file_truename);
3939 #endif
3940 Vdeactivate_mark = old_Vdeactivate_mark;
3942 else
3943 Vdeactivate_mark = Qt;
3945 /* Make the text read part of the buffer. */
3946 GAP_SIZE -= inserted;
3947 GPT += inserted;
3948 GPT_BYTE += inserted;
3949 ZV += inserted;
3950 ZV_BYTE += inserted;
3951 Z += inserted;
3952 Z_BYTE += inserted;
3954 if (GAP_SIZE > 0)
3955 /* Put an anchor to ensure multi-byte form ends at gap. */
3956 *GPT_ADDR = 0;
3958 emacs_close (fd);
3960 /* Discard the unwind protect for closing the file. */
3961 specpdl_ptr--;
3963 if (how_much < 0)
3964 error ("IO error reading %s: %s",
3965 SDATA (orig_filename), emacs_strerror (errno));
3967 notfound:
3969 if (NILP (coding_system))
3971 /* The coding system is not yet decided. Decide it by an
3972 optimized method for handling `coding:' tag.
3974 Note that we can get here only if the buffer was empty
3975 before the insertion. */
3977 if (!NILP (Vcoding_system_for_read))
3978 coding_system = Vcoding_system_for_read;
3979 else
3981 /* Since we are sure that the current buffer was empty
3982 before the insertion, we can toggle
3983 enable-multibyte-characters directly here without taking
3984 care of marker adjustment. By this way, we can run Lisp
3985 program safely before decoding the inserted text. */
3986 Lisp_Object unwind_data;
3987 int count = SPECPDL_INDEX ();
3989 unwind_data = Fcons (current_buffer->enable_multibyte_characters,
3990 Fcons (current_buffer->undo_list,
3991 Fcurrent_buffer ()));
3992 current_buffer->enable_multibyte_characters = Qnil;
3993 current_buffer->undo_list = Qt;
3994 record_unwind_protect (decide_coding_unwind, unwind_data);
3996 if (inserted > 0 && ! NILP (Vset_auto_coding_function))
3998 coding_system = call2 (Vset_auto_coding_function,
3999 filename, make_number (inserted));
4002 if (NILP (coding_system))
4004 /* If the coding system is not yet decided, check
4005 file-coding-system-alist. */
4006 Lisp_Object args[6];
4008 args[0] = Qinsert_file_contents, args[1] = orig_filename;
4009 args[2] = visit, args[3] = beg, args[4] = end, args[5] = Qnil;
4010 coding_system = Ffind_operation_coding_system (6, args);
4011 if (CONSP (coding_system))
4012 coding_system = XCAR (coding_system);
4014 unbind_to (count, Qnil);
4015 inserted = Z_BYTE - BEG_BYTE;
4018 if (NILP (coding_system))
4019 coding_system = Qundecided;
4020 else
4021 CHECK_CODING_SYSTEM (coding_system);
4023 if (NILP (current_buffer->enable_multibyte_characters))
4024 /* We must suppress all character code conversion except for
4025 end-of-line conversion. */
4026 coding_system = raw_text_coding_system (coding_system);
4027 setup_coding_system (coding_system, &coding);
4028 /* Ensure we set Vlast_coding_system_used. */
4029 set_coding_system = 1;
4032 if (!NILP (visit))
4034 /* When we visit a file by raw-text, we change the buffer to
4035 unibyte. */
4036 if (CODING_FOR_UNIBYTE (&coding)
4037 /* Can't do this if part of the buffer might be preserved. */
4038 && NILP (replace))
4039 /* Visiting a file with these coding system makes the buffer
4040 unibyte. */
4041 current_buffer->enable_multibyte_characters = Qnil;
4044 coding.dst_multibyte = ! NILP (current_buffer->enable_multibyte_characters);
4045 if (CODING_MAY_REQUIRE_DECODING (&coding)
4046 && (inserted > 0 || CODING_REQUIRE_FLUSHING (&coding)))
4048 move_gap_both (PT, PT_BYTE);
4049 GAP_SIZE += inserted;
4050 ZV_BYTE -= inserted;
4051 Z_BYTE -= inserted;
4052 ZV -= inserted;
4053 Z -= inserted;
4054 decode_coding_gap (&coding, inserted, inserted);
4055 inserted = coding.produced_char;
4056 coding_system = CODING_ID_NAME (coding.id);
4058 else if (inserted > 0)
4059 adjust_after_insert (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4060 inserted);
4062 /* Now INSERTED is measured in characters. */
4064 #ifdef DOS_NT
4065 /* Use the conversion type to determine buffer-file-type
4066 (find-buffer-file-type is now used to help determine the
4067 conversion). */
4068 if ((VECTORP (CODING_ID_EOL_TYPE (coding.id))
4069 || EQ (CODING_ID_EOL_TYPE (coding.id), Qunix))
4070 && ! CODING_REQUIRE_DECODING (&coding))
4071 current_buffer->buffer_file_type = Qt;
4072 else
4073 current_buffer->buffer_file_type = Qnil;
4074 #endif
4076 handled:
4078 if (deferred_remove_unwind_protect)
4079 /* If requested above, discard the unwind protect for closing the
4080 file. */
4081 specpdl_ptr--;
4083 if (!NILP (visit))
4085 if (!EQ (current_buffer->undo_list, Qt) && !nochange)
4086 current_buffer->undo_list = Qnil;
4088 if (NILP (handler))
4090 current_buffer->modtime = st.st_mtime;
4091 current_buffer->filename = orig_filename;
4094 SAVE_MODIFF = MODIFF;
4095 current_buffer->auto_save_modified = MODIFF;
4096 XSETFASTINT (current_buffer->save_length, Z - BEG);
4097 #ifdef CLASH_DETECTION
4098 if (NILP (handler))
4100 if (!NILP (current_buffer->file_truename))
4101 unlock_file (current_buffer->file_truename);
4102 unlock_file (filename);
4104 #endif /* CLASH_DETECTION */
4105 if (not_regular)
4106 xsignal2 (Qfile_error,
4107 build_string ("not a regular file"), orig_filename);
4110 if (set_coding_system)
4111 Vlast_coding_system_used = coding_system;
4113 if (! NILP (Ffboundp (Qafter_insert_file_set_coding)))
4115 insval = call2 (Qafter_insert_file_set_coding, make_number (inserted),
4116 visit);
4117 if (! NILP (insval))
4119 CHECK_NUMBER (insval);
4120 inserted = XFASTINT (insval);
4124 /* Decode file format. */
4125 if (inserted > 0)
4127 /* Don't run point motion or modification hooks when decoding. */
4128 int count = SPECPDL_INDEX ();
4129 int old_inserted = inserted;
4130 specbind (Qinhibit_point_motion_hooks, Qt);
4131 specbind (Qinhibit_modification_hooks, Qt);
4133 /* Save old undo list and don't record undo for decoding. */
4134 old_undo = current_buffer->undo_list;
4135 current_buffer->undo_list = Qt;
4137 if (NILP (replace))
4139 insval = call3 (Qformat_decode,
4140 Qnil, make_number (inserted), visit);
4141 CHECK_NUMBER (insval);
4142 inserted = XFASTINT (insval);
4144 else
4146 /* If REPLACE is non-nil and we succeeded in not replacing the
4147 beginning or end of the buffer text with the file's contents,
4148 call format-decode with `point' positioned at the beginning
4149 of the buffer and `inserted' equalling the number of
4150 characters in the buffer. Otherwise, format-decode might
4151 fail to correctly analyze the beginning or end of the buffer.
4152 Hence we temporarily save `point' and `inserted' here and
4153 restore `point' iff format-decode did not insert or delete
4154 any text. Otherwise we leave `point' at point-min. */
4155 int opoint = PT;
4156 int opoint_byte = PT_BYTE;
4157 int oinserted = ZV - BEGV;
4158 int ochars_modiff = CHARS_MODIFF;
4160 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4161 insval = call3 (Qformat_decode,
4162 Qnil, make_number (oinserted), visit);
4163 CHECK_NUMBER (insval);
4164 if (ochars_modiff == CHARS_MODIFF)
4165 /* format_decode didn't modify buffer's characters => move
4166 point back to position before inserted text and leave
4167 value of inserted alone. */
4168 SET_PT_BOTH (opoint, opoint_byte);
4169 else
4170 /* format_decode modified buffer's characters => consider
4171 entire buffer changed and leave point at point-min. */
4172 inserted = XFASTINT (insval);
4175 /* For consistency with format-decode call these now iff inserted > 0
4176 (martin 2007-06-28). */
4177 p = Vafter_insert_file_functions;
4178 while (CONSP (p))
4180 if (NILP (replace))
4182 insval = call1 (XCAR (p), make_number (inserted));
4183 if (!NILP (insval))
4185 CHECK_NUMBER (insval);
4186 inserted = XFASTINT (insval);
4189 else
4191 /* For the rationale of this see the comment on
4192 format-decode above. */
4193 int opoint = PT;
4194 int opoint_byte = PT_BYTE;
4195 int oinserted = ZV - BEGV;
4196 int ochars_modiff = CHARS_MODIFF;
4198 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4199 insval = call1 (XCAR (p), make_number (oinserted));
4200 if (!NILP (insval))
4202 CHECK_NUMBER (insval);
4203 if (ochars_modiff == CHARS_MODIFF)
4204 /* after_insert_file_functions didn't modify
4205 buffer's characters => move point back to
4206 position before inserted text and leave value of
4207 inserted alone. */
4208 SET_PT_BOTH (opoint, opoint_byte);
4209 else
4210 /* after_insert_file_functions did modify buffer's
4211 characters => consider entire buffer changed and
4212 leave point at point-min. */
4213 inserted = XFASTINT (insval);
4217 QUIT;
4218 p = XCDR (p);
4221 if (NILP (visit))
4223 current_buffer->undo_list = old_undo;
4224 if (CONSP (old_undo) && inserted != old_inserted)
4226 /* Adjust the last undo record for the size change during
4227 the format conversion. */
4228 Lisp_Object tem = XCAR (old_undo);
4229 if (CONSP (tem) && INTEGERP (XCAR (tem))
4230 && INTEGERP (XCDR (tem))
4231 && XFASTINT (XCDR (tem)) == PT + old_inserted)
4232 XSETCDR (tem, make_number (PT + inserted));
4235 else
4236 /* If undo_list was Qt before, keep it that way.
4237 Otherwise start with an empty undo_list. */
4238 current_buffer->undo_list = EQ (old_undo, Qt) ? Qt : Qnil;
4240 unbind_to (count, Qnil);
4243 /* Call after-change hooks for the inserted text, aside from the case
4244 of normal visiting (not with REPLACE), which is done in a new buffer
4245 "before" the buffer is changed. */
4246 if (inserted > 0 && total > 0
4247 && (NILP (visit) || !NILP (replace)))
4249 signal_after_change (PT, 0, inserted);
4250 update_compositions (PT, PT, CHECK_BORDER);
4253 if (!NILP (visit)
4254 && current_buffer->modtime == -1)
4256 /* If visiting nonexistent file, return nil. */
4257 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
4260 if (read_quit)
4261 Fsignal (Qquit, Qnil);
4263 /* ??? Retval needs to be dealt with in all cases consistently. */
4264 if (NILP (val))
4265 val = Fcons (orig_filename,
4266 Fcons (make_number (inserted),
4267 Qnil));
4269 RETURN_UNGCPRO (unbind_to (count, val));
4272 static Lisp_Object build_annotations P_ ((Lisp_Object, Lisp_Object));
4274 static Lisp_Object
4275 build_annotations_unwind (arg)
4276 Lisp_Object arg;
4278 Vwrite_region_annotation_buffers = arg;
4279 return Qnil;
4282 /* Decide the coding-system to encode the data with. */
4284 static Lisp_Object
4285 choose_write_coding_system (start, end, filename,
4286 append, visit, lockname, coding)
4287 Lisp_Object start, end, filename, append, visit, lockname;
4288 struct coding_system *coding;
4290 Lisp_Object val;
4291 Lisp_Object eol_parent = Qnil;
4293 if (auto_saving
4294 && NILP (Fstring_equal (current_buffer->filename,
4295 current_buffer->auto_save_file_name)))
4297 val = Qutf_8_emacs;
4298 eol_parent = Qunix;
4300 else if (!NILP (Vcoding_system_for_write))
4302 val = Vcoding_system_for_write;
4303 if (coding_system_require_warning
4304 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4305 /* Confirm that VAL can surely encode the current region. */
4306 val = call5 (Vselect_safe_coding_system_function,
4307 start, end, Fcons (Qt, Fcons (val, Qnil)),
4308 Qnil, filename);
4310 else
4312 /* If the variable `buffer-file-coding-system' is set locally,
4313 it means that the file was read with some kind of code
4314 conversion or the variable is explicitly set by users. We
4315 had better write it out with the same coding system even if
4316 `enable-multibyte-characters' is nil.
4318 If it is not set locally, we anyway have to convert EOL
4319 format if the default value of `buffer-file-coding-system'
4320 tells that it is not Unix-like (LF only) format. */
4321 int using_default_coding = 0;
4322 int force_raw_text = 0;
4324 val = current_buffer->buffer_file_coding_system;
4325 if (NILP (val)
4326 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil)))
4328 val = Qnil;
4329 if (NILP (current_buffer->enable_multibyte_characters))
4330 force_raw_text = 1;
4333 if (NILP (val))
4335 /* Check file-coding-system-alist. */
4336 Lisp_Object args[7], coding_systems;
4338 args[0] = Qwrite_region; args[1] = start; args[2] = end;
4339 args[3] = filename; args[4] = append; args[5] = visit;
4340 args[6] = lockname;
4341 coding_systems = Ffind_operation_coding_system (7, args);
4342 if (CONSP (coding_systems) && !NILP (XCDR (coding_systems)))
4343 val = XCDR (coding_systems);
4346 if (NILP (val))
4348 /* If we still have not decided a coding system, use the
4349 default value of buffer-file-coding-system. */
4350 val = current_buffer->buffer_file_coding_system;
4351 using_default_coding = 1;
4354 if (! NILP (val) && ! force_raw_text)
4356 Lisp_Object spec, attrs;
4358 CHECK_CODING_SYSTEM_GET_SPEC (val, spec);
4359 attrs = AREF (spec, 0);
4360 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text))
4361 force_raw_text = 1;
4364 if (!force_raw_text
4365 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4366 /* Confirm that VAL can surely encode the current region. */
4367 val = call5 (Vselect_safe_coding_system_function,
4368 start, end, val, Qnil, filename);
4370 /* If the decided coding-system doesn't specify end-of-line
4371 format, we use that of
4372 `default-buffer-file-coding-system'. */
4373 if (! using_default_coding
4374 && ! NILP (buffer_defaults.buffer_file_coding_system))
4375 val = (coding_inherit_eol_type
4376 (val, buffer_defaults.buffer_file_coding_system));
4378 /* If we decide not to encode text, use `raw-text' or one of its
4379 subsidiaries. */
4380 if (force_raw_text)
4381 val = raw_text_coding_system (val);
4384 val = coding_inherit_eol_type (val, eol_parent);
4385 setup_coding_system (val, coding);
4387 if (!STRINGP (start) && !NILP (current_buffer->selective_display))
4388 coding->mode |= CODING_MODE_SELECTIVE_DISPLAY;
4389 return val;
4392 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7,
4393 "r\nFWrite region to file: \ni\ni\ni\np",
4394 doc: /* Write current region into specified file.
4395 When called from a program, requires three arguments:
4396 START, END and FILENAME. START and END are normally buffer positions
4397 specifying the part of the buffer to write.
4398 If START is nil, that means to use the entire buffer contents.
4399 If START is a string, then output that string to the file
4400 instead of any buffer contents; END is ignored.
4402 Optional fourth argument APPEND if non-nil means
4403 append to existing file contents (if any). If it is an integer,
4404 seek to that offset in the file before writing.
4405 Optional fifth argument VISIT, if t or a string, means
4406 set the last-save-file-modtime of buffer to this file's modtime
4407 and mark buffer not modified.
4408 If VISIT is a string, it is a second file name;
4409 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4410 VISIT is also the file name to lock and unlock for clash detection.
4411 If VISIT is neither t nor nil nor a string,
4412 that means do not display the \"Wrote file\" message.
4413 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4414 use for locking and unlocking, overriding FILENAME and VISIT.
4415 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4416 for an existing file with the same name. If MUSTBENEW is `excl',
4417 that means to get an error if the file already exists; never overwrite.
4418 If MUSTBENEW is neither nil nor `excl', that means ask for
4419 confirmation before overwriting, but do go ahead and overwrite the file
4420 if the user confirms.
4422 This does code conversion according to the value of
4423 `coding-system-for-write', `buffer-file-coding-system', or
4424 `file-coding-system-alist', and sets the variable
4425 `last-coding-system-used' to the coding system actually used.
4427 This calls `write-region-annotate-functions' at the start, and
4428 `write-region-post-annotation-function' at the end. */)
4429 (start, end, filename, append, visit, lockname, mustbenew)
4430 Lisp_Object start, end, filename, append, visit, lockname, mustbenew;
4432 register int desc;
4433 int failure;
4434 int save_errno = 0;
4435 const unsigned char *fn;
4436 struct stat st;
4437 int count = SPECPDL_INDEX ();
4438 int count1;
4439 Lisp_Object handler;
4440 Lisp_Object visit_file;
4441 Lisp_Object annotations;
4442 Lisp_Object encoded_filename;
4443 int visiting = (EQ (visit, Qt) || STRINGP (visit));
4444 int quietly = !NILP (visit);
4445 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4446 struct buffer *given_buffer;
4447 #ifdef DOS_NT
4448 int buffer_file_type = O_BINARY;
4449 #endif /* DOS_NT */
4450 struct coding_system coding;
4452 if (current_buffer->base_buffer && visiting)
4453 error ("Cannot do file visiting in an indirect buffer");
4455 if (!NILP (start) && !STRINGP (start))
4456 validate_region (&start, &end);
4458 visit_file = Qnil;
4459 GCPRO5 (start, filename, visit, visit_file, lockname);
4461 filename = Fexpand_file_name (filename, Qnil);
4463 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl))
4464 barf_or_query_if_file_exists (filename, "overwrite", 1, 0, 1);
4466 if (STRINGP (visit))
4467 visit_file = Fexpand_file_name (visit, Qnil);
4468 else
4469 visit_file = filename;
4471 if (NILP (lockname))
4472 lockname = visit_file;
4474 annotations = Qnil;
4476 /* If the file name has special constructs in it,
4477 call the corresponding file handler. */
4478 handler = Ffind_file_name_handler (filename, Qwrite_region);
4479 /* If FILENAME has no handler, see if VISIT has one. */
4480 if (NILP (handler) && STRINGP (visit))
4481 handler = Ffind_file_name_handler (visit, Qwrite_region);
4483 if (!NILP (handler))
4485 Lisp_Object val;
4486 val = call6 (handler, Qwrite_region, start, end,
4487 filename, append, visit);
4489 if (visiting)
4491 SAVE_MODIFF = MODIFF;
4492 XSETFASTINT (current_buffer->save_length, Z - BEG);
4493 current_buffer->filename = visit_file;
4495 UNGCPRO;
4496 return val;
4499 record_unwind_protect (save_restriction_restore, save_restriction_save ());
4501 /* Special kludge to simplify auto-saving. */
4502 if (NILP (start))
4504 /* Do it later, so write-region-annotate-function can work differently
4505 if we save "the buffer" vs "a region".
4506 This is useful in tar-mode. --Stef
4507 XSETFASTINT (start, BEG);
4508 XSETFASTINT (end, Z); */
4509 Fwiden ();
4512 record_unwind_protect (build_annotations_unwind,
4513 Vwrite_region_annotation_buffers);
4514 Vwrite_region_annotation_buffers = Fcons (Fcurrent_buffer (), Qnil);
4515 count1 = SPECPDL_INDEX ();
4517 given_buffer = current_buffer;
4519 if (!STRINGP (start))
4521 annotations = build_annotations (start, end);
4523 if (current_buffer != given_buffer)
4525 XSETFASTINT (start, BEGV);
4526 XSETFASTINT (end, ZV);
4530 if (NILP (start))
4532 XSETFASTINT (start, BEGV);
4533 XSETFASTINT (end, ZV);
4536 UNGCPRO;
4538 GCPRO5 (start, filename, annotations, visit_file, lockname);
4540 /* Decide the coding-system to encode the data with.
4541 We used to make this choice before calling build_annotations, but that
4542 leads to problems when a write-annotate-function takes care of
4543 unsavable chars (as was the case with X-Symbol). */
4544 Vlast_coding_system_used
4545 = choose_write_coding_system (start, end, filename,
4546 append, visit, lockname, &coding);
4548 #ifdef CLASH_DETECTION
4549 if (!auto_saving)
4550 lock_file (lockname);
4551 #endif /* CLASH_DETECTION */
4553 encoded_filename = ENCODE_FILE (filename);
4555 fn = SDATA (encoded_filename);
4556 desc = -1;
4557 if (!NILP (append))
4558 #ifdef DOS_NT
4559 desc = emacs_open (fn, O_WRONLY | buffer_file_type, 0);
4560 #else /* not DOS_NT */
4561 desc = emacs_open (fn, O_WRONLY, 0);
4562 #endif /* not DOS_NT */
4564 if (desc < 0 && (NILP (append) || errno == ENOENT))
4565 #ifdef DOS_NT
4566 desc = emacs_open (fn,
4567 O_WRONLY | O_CREAT | buffer_file_type
4568 | (EQ (mustbenew, Qexcl) ? O_EXCL : O_TRUNC),
4569 S_IREAD | S_IWRITE);
4570 #else /* not DOS_NT */
4571 desc = emacs_open (fn, O_WRONLY | O_TRUNC | O_CREAT
4572 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0),
4573 auto_saving ? auto_save_mode_bits : 0666);
4574 #endif /* not DOS_NT */
4576 if (desc < 0)
4578 #ifdef CLASH_DETECTION
4579 save_errno = errno;
4580 if (!auto_saving) unlock_file (lockname);
4581 errno = save_errno;
4582 #endif /* CLASH_DETECTION */
4583 UNGCPRO;
4584 report_file_error ("Opening output file", Fcons (filename, Qnil));
4587 record_unwind_protect (close_file_unwind, make_number (desc));
4589 if (!NILP (append) && !NILP (Ffile_regular_p (filename)))
4591 long ret;
4593 if (NUMBERP (append))
4594 ret = lseek (desc, XINT (append), 1);
4595 else
4596 ret = lseek (desc, 0, 2);
4597 if (ret < 0)
4599 #ifdef CLASH_DETECTION
4600 if (!auto_saving) unlock_file (lockname);
4601 #endif /* CLASH_DETECTION */
4602 UNGCPRO;
4603 report_file_error ("Lseek error", Fcons (filename, Qnil));
4607 UNGCPRO;
4609 failure = 0;
4610 immediate_quit = 1;
4612 if (STRINGP (start))
4614 failure = 0 > a_write (desc, start, 0, SCHARS (start),
4615 &annotations, &coding);
4616 save_errno = errno;
4618 else if (XINT (start) != XINT (end))
4620 failure = 0 > a_write (desc, Qnil,
4621 XINT (start), XINT (end) - XINT (start),
4622 &annotations, &coding);
4623 save_errno = errno;
4625 else
4627 /* If file was empty, still need to write the annotations */
4628 coding.mode |= CODING_MODE_LAST_BLOCK;
4629 failure = 0 > a_write (desc, Qnil, XINT (end), 0, &annotations, &coding);
4630 save_errno = errno;
4633 if (CODING_REQUIRE_FLUSHING (&coding)
4634 && !(coding.mode & CODING_MODE_LAST_BLOCK)
4635 && ! failure)
4637 /* We have to flush out a data. */
4638 coding.mode |= CODING_MODE_LAST_BLOCK;
4639 failure = 0 > e_write (desc, Qnil, 1, 1, &coding);
4640 save_errno = errno;
4643 immediate_quit = 0;
4645 #ifdef HAVE_FSYNC
4646 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
4647 Disk full in NFS may be reported here. */
4648 /* mib says that closing the file will try to write as fast as NFS can do
4649 it, and that means the fsync here is not crucial for autosave files. */
4650 if (!auto_saving && !write_region_inhibit_fsync && fsync (desc) < 0)
4652 /* If fsync fails with EINTR, don't treat that as serious. Also
4653 ignore EINVAL which happens when fsync is not supported on this
4654 file. */
4655 if (errno != EINTR && errno != EINVAL)
4656 failure = 1, save_errno = errno;
4658 #endif
4660 /* NFS can report a write failure now. */
4661 if (emacs_close (desc) < 0)
4662 failure = 1, save_errno = errno;
4664 stat (fn, &st);
4666 /* Discard the unwind protect for close_file_unwind. */
4667 specpdl_ptr = specpdl + count1;
4669 /* Call write-region-post-annotation-function. */
4670 while (CONSP (Vwrite_region_annotation_buffers))
4672 Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers);
4673 if (!NILP (Fbuffer_live_p (buf)))
4675 Fset_buffer (buf);
4676 if (FUNCTIONP (Vwrite_region_post_annotation_function))
4677 call0 (Vwrite_region_post_annotation_function);
4679 Vwrite_region_annotation_buffers
4680 = XCDR (Vwrite_region_annotation_buffers);
4683 unbind_to (count, Qnil);
4685 #ifdef CLASH_DETECTION
4686 if (!auto_saving)
4687 unlock_file (lockname);
4688 #endif /* CLASH_DETECTION */
4690 /* Do this before reporting IO error
4691 to avoid a "file has changed on disk" warning on
4692 next attempt to save. */
4693 if (visiting)
4694 current_buffer->modtime = st.st_mtime;
4696 if (failure)
4697 error ("IO error writing %s: %s", SDATA (filename),
4698 emacs_strerror (save_errno));
4700 if (visiting)
4702 SAVE_MODIFF = MODIFF;
4703 XSETFASTINT (current_buffer->save_length, Z - BEG);
4704 current_buffer->filename = visit_file;
4705 update_mode_lines++;
4707 else if (quietly)
4709 if (auto_saving
4710 && ! NILP (Fstring_equal (current_buffer->filename,
4711 current_buffer->auto_save_file_name)))
4712 SAVE_MODIFF = MODIFF;
4714 return Qnil;
4717 if (!auto_saving)
4718 message_with_string ((INTEGERP (append)
4719 ? "Updated %s"
4720 : ! NILP (append)
4721 ? "Added to %s"
4722 : "Wrote %s"),
4723 visit_file, 1);
4725 return Qnil;
4728 Lisp_Object merge ();
4730 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
4731 doc: /* Return t if (car A) is numerically less than (car B). */)
4732 (a, b)
4733 Lisp_Object a, b;
4735 return Flss (Fcar (a), Fcar (b));
4738 /* Build the complete list of annotations appropriate for writing out
4739 the text between START and END, by calling all the functions in
4740 write-region-annotate-functions and merging the lists they return.
4741 If one of these functions switches to a different buffer, we assume
4742 that buffer contains altered text. Therefore, the caller must
4743 make sure to restore the current buffer in all cases,
4744 as save-excursion would do. */
4746 static Lisp_Object
4747 build_annotations (start, end)
4748 Lisp_Object start, end;
4750 Lisp_Object annotations;
4751 Lisp_Object p, res;
4752 struct gcpro gcpro1, gcpro2;
4753 Lisp_Object original_buffer;
4754 int i, used_global = 0;
4756 XSETBUFFER (original_buffer, current_buffer);
4758 annotations = Qnil;
4759 p = Vwrite_region_annotate_functions;
4760 GCPRO2 (annotations, p);
4761 while (CONSP (p))
4763 struct buffer *given_buffer = current_buffer;
4764 if (EQ (Qt, XCAR (p)) && !used_global)
4765 { /* Use the global value of the hook. */
4766 Lisp_Object arg[2];
4767 used_global = 1;
4768 arg[0] = Fdefault_value (Qwrite_region_annotate_functions);
4769 arg[1] = XCDR (p);
4770 p = Fappend (2, arg);
4771 continue;
4773 Vwrite_region_annotations_so_far = annotations;
4774 res = call2 (XCAR (p), start, end);
4775 /* If the function makes a different buffer current,
4776 assume that means this buffer contains altered text to be output.
4777 Reset START and END from the buffer bounds
4778 and discard all previous annotations because they should have
4779 been dealt with by this function. */
4780 if (current_buffer != given_buffer)
4782 Vwrite_region_annotation_buffers
4783 = Fcons (Fcurrent_buffer (),
4784 Vwrite_region_annotation_buffers);
4785 XSETFASTINT (start, BEGV);
4786 XSETFASTINT (end, ZV);
4787 annotations = Qnil;
4789 Flength (res); /* Check basic validity of return value */
4790 annotations = merge (annotations, res, Qcar_less_than_car);
4791 p = XCDR (p);
4794 /* Now do the same for annotation functions implied by the file-format */
4795 if (auto_saving && (!EQ (current_buffer->auto_save_file_format, Qt)))
4796 p = current_buffer->auto_save_file_format;
4797 else
4798 p = current_buffer->file_format;
4799 for (i = 0; CONSP (p); p = XCDR (p), ++i)
4801 struct buffer *given_buffer = current_buffer;
4803 Vwrite_region_annotations_so_far = annotations;
4805 /* Value is either a list of annotations or nil if the function
4806 has written annotations to a temporary buffer, which is now
4807 current. */
4808 res = call5 (Qformat_annotate_function, XCAR (p), start, end,
4809 original_buffer, make_number (i));
4810 if (current_buffer != given_buffer)
4812 XSETFASTINT (start, BEGV);
4813 XSETFASTINT (end, ZV);
4814 annotations = Qnil;
4817 if (CONSP (res))
4818 annotations = merge (annotations, res, Qcar_less_than_car);
4821 UNGCPRO;
4822 return annotations;
4826 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
4827 If STRING is nil, POS is the character position in the current buffer.
4828 Intersperse with them the annotations from *ANNOT
4829 which fall within the range of POS to POS + NCHARS,
4830 each at its appropriate position.
4832 We modify *ANNOT by discarding elements as we use them up.
4834 The return value is negative in case of system call failure. */
4836 static int
4837 a_write (desc, string, pos, nchars, annot, coding)
4838 int desc;
4839 Lisp_Object string;
4840 register int nchars;
4841 int pos;
4842 Lisp_Object *annot;
4843 struct coding_system *coding;
4845 Lisp_Object tem;
4846 int nextpos;
4847 int lastpos = pos + nchars;
4849 while (NILP (*annot) || CONSP (*annot))
4851 tem = Fcar_safe (Fcar (*annot));
4852 nextpos = pos - 1;
4853 if (INTEGERP (tem))
4854 nextpos = XFASTINT (tem);
4856 /* If there are no more annotations in this range,
4857 output the rest of the range all at once. */
4858 if (! (nextpos >= pos && nextpos <= lastpos))
4859 return e_write (desc, string, pos, lastpos, coding);
4861 /* Output buffer text up to the next annotation's position. */
4862 if (nextpos > pos)
4864 if (0 > e_write (desc, string, pos, nextpos, coding))
4865 return -1;
4866 pos = nextpos;
4868 /* Output the annotation. */
4869 tem = Fcdr (Fcar (*annot));
4870 if (STRINGP (tem))
4872 if (0 > e_write (desc, tem, 0, SCHARS (tem), coding))
4873 return -1;
4875 *annot = Fcdr (*annot);
4877 return 0;
4881 /* Write text in the range START and END into descriptor DESC,
4882 encoding them with coding system CODING. If STRING is nil, START
4883 and END are character positions of the current buffer, else they
4884 are indexes to the string STRING. */
4886 static int
4887 e_write (desc, string, start, end, coding)
4888 int desc;
4889 Lisp_Object string;
4890 int start, end;
4891 struct coding_system *coding;
4893 if (STRINGP (string))
4895 start = 0;
4896 end = SCHARS (string);
4899 /* We used to have a code for handling selective display here. But,
4900 now it is handled within encode_coding. */
4902 while (start < end)
4904 if (STRINGP (string))
4906 coding->src_multibyte = SCHARS (string) < SBYTES (string);
4907 if (CODING_REQUIRE_ENCODING (coding))
4909 encode_coding_object (coding, string,
4910 start, string_char_to_byte (string, start),
4911 end, string_char_to_byte (string, end), Qt);
4913 else
4915 coding->dst_object = string;
4916 coding->consumed_char = SCHARS (string);
4917 coding->produced = SBYTES (string);
4920 else
4922 int start_byte = CHAR_TO_BYTE (start);
4923 int end_byte = CHAR_TO_BYTE (end);
4925 coding->src_multibyte = (end - start) < (end_byte - start_byte);
4926 if (CODING_REQUIRE_ENCODING (coding))
4928 encode_coding_object (coding, Fcurrent_buffer (),
4929 start, start_byte, end, end_byte, Qt);
4931 else
4933 coding->dst_object = Qnil;
4934 coding->dst_pos_byte = start_byte;
4935 if (start >= GPT || end <= GPT)
4937 coding->consumed_char = end - start;
4938 coding->produced = end_byte - start_byte;
4940 else
4942 coding->consumed_char = GPT - start;
4943 coding->produced = GPT_BYTE - start_byte;
4948 if (coding->produced > 0)
4950 coding->produced -=
4951 emacs_write (desc,
4952 STRINGP (coding->dst_object)
4953 ? SDATA (coding->dst_object)
4954 : BYTE_POS_ADDR (coding->dst_pos_byte),
4955 coding->produced);
4957 if (coding->produced)
4958 return -1;
4960 start += coding->consumed_char;
4963 return 0;
4966 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
4967 Sverify_visited_file_modtime, 1, 1, 0,
4968 doc: /* Return t if last mod time of BUF's visited file matches what BUF records.
4969 This means that the file has not been changed since it was visited or saved.
4970 See Info node `(elisp)Modification Time' for more details. */)
4971 (buf)
4972 Lisp_Object buf;
4974 struct buffer *b;
4975 struct stat st;
4976 Lisp_Object handler;
4977 Lisp_Object filename;
4979 CHECK_BUFFER (buf);
4980 b = XBUFFER (buf);
4982 if (!STRINGP (b->filename)) return Qt;
4983 if (b->modtime == 0) return Qt;
4985 /* If the file name has special constructs in it,
4986 call the corresponding file handler. */
4987 handler = Ffind_file_name_handler (b->filename,
4988 Qverify_visited_file_modtime);
4989 if (!NILP (handler))
4990 return call2 (handler, Qverify_visited_file_modtime, buf);
4992 filename = ENCODE_FILE (b->filename);
4994 if (stat (SDATA (filename), &st) < 0)
4996 /* If the file doesn't exist now and didn't exist before,
4997 we say that it isn't modified, provided the error is a tame one. */
4998 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
4999 st.st_mtime = -1;
5000 else
5001 st.st_mtime = 0;
5003 if (st.st_mtime == b->modtime
5004 /* If both are positive, accept them if they are off by one second. */
5005 || (st.st_mtime > 0 && b->modtime > 0
5006 && (st.st_mtime == b->modtime + 1
5007 || st.st_mtime == b->modtime - 1)))
5008 return Qt;
5009 return Qnil;
5012 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
5013 Sclear_visited_file_modtime, 0, 0, 0,
5014 doc: /* Clear out records of last mod time of visited file.
5015 Next attempt to save will certainly not complain of a discrepancy. */)
5018 current_buffer->modtime = 0;
5019 return Qnil;
5022 DEFUN ("visited-file-modtime", Fvisited_file_modtime,
5023 Svisited_file_modtime, 0, 0, 0,
5024 doc: /* Return the current buffer's recorded visited file modification time.
5025 The value is a list of the form (HIGH LOW), like the time values
5026 that `file-attributes' returns. If the current buffer has no recorded
5027 file modification time, this function returns 0.
5028 See Info node `(elisp)Modification Time' for more details. */)
5031 if (! current_buffer->modtime)
5032 return make_number (0);
5033 return make_time ((time_t) current_buffer->modtime);
5036 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
5037 Sset_visited_file_modtime, 0, 1, 0,
5038 doc: /* Update buffer's recorded modification time from the visited file's time.
5039 Useful if the buffer was not read from the file normally
5040 or if the file itself has been changed for some known benign reason.
5041 An argument specifies the modification time value to use
5042 \(instead of that of the visited file), in the form of a list
5043 \(HIGH . LOW) or (HIGH LOW). */)
5044 (time_list)
5045 Lisp_Object time_list;
5047 if (!NILP (time_list))
5048 current_buffer->modtime = cons_to_long (time_list);
5049 else
5051 register Lisp_Object filename;
5052 struct stat st;
5053 Lisp_Object handler;
5055 filename = Fexpand_file_name (current_buffer->filename, Qnil);
5057 /* If the file name has special constructs in it,
5058 call the corresponding file handler. */
5059 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
5060 if (!NILP (handler))
5061 /* The handler can find the file name the same way we did. */
5062 return call2 (handler, Qset_visited_file_modtime, Qnil);
5064 filename = ENCODE_FILE (filename);
5066 if (stat (SDATA (filename), &st) >= 0)
5067 current_buffer->modtime = st.st_mtime;
5070 return Qnil;
5073 Lisp_Object
5074 auto_save_error (error)
5075 Lisp_Object error;
5077 Lisp_Object args[3], msg;
5078 int i, nbytes;
5079 struct gcpro gcpro1;
5080 char *msgbuf;
5081 USE_SAFE_ALLOCA;
5083 auto_save_error_occurred = 1;
5085 ring_bell (XFRAME (selected_frame));
5087 args[0] = build_string ("Auto-saving %s: %s");
5088 args[1] = current_buffer->name;
5089 args[2] = Ferror_message_string (error);
5090 msg = Fformat (3, args);
5091 GCPRO1 (msg);
5092 nbytes = SBYTES (msg);
5093 SAFE_ALLOCA (msgbuf, char *, nbytes);
5094 bcopy (SDATA (msg), msgbuf, nbytes);
5096 for (i = 0; i < 3; ++i)
5098 if (i == 0)
5099 message2 (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5100 else
5101 message2_nolog (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5102 Fsleep_for (make_number (1), Qnil);
5105 SAFE_FREE ();
5106 UNGCPRO;
5107 return Qnil;
5110 Lisp_Object
5111 auto_save_1 ()
5113 struct stat st;
5114 Lisp_Object modes;
5116 auto_save_mode_bits = 0666;
5118 /* Get visited file's mode to become the auto save file's mode. */
5119 if (! NILP (current_buffer->filename))
5121 if (stat (SDATA (current_buffer->filename), &st) >= 0)
5122 /* But make sure we can overwrite it later! */
5123 auto_save_mode_bits = st.st_mode | 0600;
5124 else if ((modes = Ffile_modes (current_buffer->filename),
5125 INTEGERP (modes)))
5126 /* Remote files don't cooperate with stat. */
5127 auto_save_mode_bits = XINT (modes) | 0600;
5130 return
5131 Fwrite_region (Qnil, Qnil, current_buffer->auto_save_file_name, Qnil,
5132 NILP (Vauto_save_visited_file_name) ? Qlambda : Qt,
5133 Qnil, Qnil);
5136 static Lisp_Object
5137 do_auto_save_unwind (arg) /* used as unwind-protect function */
5138 Lisp_Object arg;
5140 FILE *stream = (FILE *) XSAVE_VALUE (arg)->pointer;
5141 auto_saving = 0;
5142 if (stream != NULL)
5144 BLOCK_INPUT;
5145 fclose (stream);
5146 UNBLOCK_INPUT;
5148 return Qnil;
5151 static Lisp_Object
5152 do_auto_save_unwind_1 (value) /* used as unwind-protect function */
5153 Lisp_Object value;
5155 minibuffer_auto_raise = XINT (value);
5156 return Qnil;
5159 static Lisp_Object
5160 do_auto_save_make_dir (dir)
5161 Lisp_Object dir;
5163 Lisp_Object mode;
5165 call2 (Qmake_directory, dir, Qt);
5166 XSETFASTINT (mode, 0700);
5167 return Fset_file_modes (dir, mode);
5170 static Lisp_Object
5171 do_auto_save_eh (ignore)
5172 Lisp_Object ignore;
5174 return Qnil;
5177 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
5178 doc: /* Auto-save all buffers that need it.
5179 This is all buffers that have auto-saving enabled
5180 and are changed since last auto-saved.
5181 Auto-saving writes the buffer into a file
5182 so that your editing is not lost if the system crashes.
5183 This file is not the file you visited; that changes only when you save.
5184 Normally we run the normal hook `auto-save-hook' before saving.
5186 A non-nil NO-MESSAGE argument means do not print any message if successful.
5187 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5188 (no_message, current_only)
5189 Lisp_Object no_message, current_only;
5191 struct buffer *old = current_buffer, *b;
5192 Lisp_Object tail, buf;
5193 int auto_saved = 0;
5194 int do_handled_files;
5195 Lisp_Object oquit;
5196 FILE *stream = NULL;
5197 int count = SPECPDL_INDEX ();
5198 int orig_minibuffer_auto_raise = minibuffer_auto_raise;
5199 int old_message_p = 0;
5200 struct gcpro gcpro1, gcpro2;
5202 if (max_specpdl_size < specpdl_size + 40)
5203 max_specpdl_size = specpdl_size + 40;
5205 if (minibuf_level)
5206 no_message = Qt;
5208 if (NILP (no_message))
5210 old_message_p = push_message ();
5211 record_unwind_protect (pop_message_unwind, Qnil);
5214 /* Ordinarily don't quit within this function,
5215 but don't make it impossible to quit (in case we get hung in I/O). */
5216 oquit = Vquit_flag;
5217 Vquit_flag = Qnil;
5219 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5220 point to non-strings reached from Vbuffer_alist. */
5222 if (!NILP (Vrun_hooks))
5223 call1 (Vrun_hooks, intern ("auto-save-hook"));
5225 if (STRINGP (Vauto_save_list_file_name))
5227 Lisp_Object listfile;
5229 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
5231 /* Don't try to create the directory when shutting down Emacs,
5232 because creating the directory might signal an error, and
5233 that would leave Emacs in a strange state. */
5234 if (!NILP (Vrun_hooks))
5236 Lisp_Object dir;
5237 dir = Qnil;
5238 GCPRO2 (dir, listfile);
5239 dir = Ffile_name_directory (listfile);
5240 if (NILP (Ffile_directory_p (dir)))
5241 internal_condition_case_1 (do_auto_save_make_dir,
5242 dir, Fcons (Fcons (Qfile_error, Qnil), Qnil),
5243 do_auto_save_eh);
5244 UNGCPRO;
5247 stream = fopen (SDATA (listfile), "w");
5250 record_unwind_protect (do_auto_save_unwind,
5251 make_save_value (stream, 0));
5252 record_unwind_protect (do_auto_save_unwind_1,
5253 make_number (minibuffer_auto_raise));
5254 minibuffer_auto_raise = 0;
5255 auto_saving = 1;
5256 auto_save_error_occurred = 0;
5258 /* On first pass, save all files that don't have handlers.
5259 On second pass, save all files that do have handlers.
5261 If Emacs is crashing, the handlers may tweak what is causing
5262 Emacs to crash in the first place, and it would be a shame if
5263 Emacs failed to autosave perfectly ordinary files because it
5264 couldn't handle some ange-ftp'd file. */
5266 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
5267 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
5269 buf = XCDR (XCAR (tail));
5270 b = XBUFFER (buf);
5272 /* Record all the buffers that have auto save mode
5273 in the special file that lists them. For each of these buffers,
5274 Record visited name (if any) and auto save name. */
5275 if (STRINGP (b->auto_save_file_name)
5276 && stream != NULL && do_handled_files == 0)
5278 BLOCK_INPUT;
5279 if (!NILP (b->filename))
5281 fwrite (SDATA (b->filename), 1,
5282 SBYTES (b->filename), stream);
5284 putc ('\n', stream);
5285 fwrite (SDATA (b->auto_save_file_name), 1,
5286 SBYTES (b->auto_save_file_name), stream);
5287 putc ('\n', stream);
5288 UNBLOCK_INPUT;
5291 if (!NILP (current_only)
5292 && b != current_buffer)
5293 continue;
5295 /* Don't auto-save indirect buffers.
5296 The base buffer takes care of it. */
5297 if (b->base_buffer)
5298 continue;
5300 /* Check for auto save enabled
5301 and file changed since last auto save
5302 and file changed since last real save. */
5303 if (STRINGP (b->auto_save_file_name)
5304 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
5305 && b->auto_save_modified < BUF_MODIFF (b)
5306 /* -1 means we've turned off autosaving for a while--see below. */
5307 && XINT (b->save_length) >= 0
5308 && (do_handled_files
5309 || NILP (Ffind_file_name_handler (b->auto_save_file_name,
5310 Qwrite_region))))
5312 EMACS_TIME before_time, after_time;
5314 EMACS_GET_TIME (before_time);
5316 /* If we had a failure, don't try again for 20 minutes. */
5317 if (b->auto_save_failure_time >= 0
5318 && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200)
5319 continue;
5321 if ((XFASTINT (b->save_length) * 10
5322 > (BUF_Z (b) - BUF_BEG (b)) * 13)
5323 /* A short file is likely to change a large fraction;
5324 spare the user annoying messages. */
5325 && XFASTINT (b->save_length) > 5000
5326 /* These messages are frequent and annoying for `*mail*'. */
5327 && !EQ (b->filename, Qnil)
5328 && NILP (no_message))
5330 /* It has shrunk too much; turn off auto-saving here. */
5331 minibuffer_auto_raise = orig_minibuffer_auto_raise;
5332 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5333 b->name, 1);
5334 minibuffer_auto_raise = 0;
5335 /* Turn off auto-saving until there's a real save,
5336 and prevent any more warnings. */
5337 XSETINT (b->save_length, -1);
5338 Fsleep_for (make_number (1), Qnil);
5339 continue;
5341 set_buffer_internal (b);
5342 if (!auto_saved && NILP (no_message))
5343 message1 ("Auto-saving...");
5344 internal_condition_case (auto_save_1, Qt, auto_save_error);
5345 auto_saved++;
5346 b->auto_save_modified = BUF_MODIFF (b);
5347 XSETFASTINT (current_buffer->save_length, Z - BEG);
5348 set_buffer_internal (old);
5350 EMACS_GET_TIME (after_time);
5352 /* If auto-save took more than 60 seconds,
5353 assume it was an NFS failure that got a timeout. */
5354 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
5355 b->auto_save_failure_time = EMACS_SECS (after_time);
5359 /* Prevent another auto save till enough input events come in. */
5360 record_auto_save ();
5362 if (auto_saved && NILP (no_message))
5364 if (old_message_p)
5366 /* If we are going to restore an old message,
5367 give time to read ours. */
5368 sit_for (make_number (1), 0, 0);
5369 restore_message ();
5371 else if (!auto_save_error_occurred)
5372 /* Don't overwrite the error message if an error occurred.
5373 If we displayed a message and then restored a state
5374 with no message, leave a "done" message on the screen. */
5375 message1 ("Auto-saving...done");
5378 Vquit_flag = oquit;
5380 /* This restores the message-stack status. */
5381 unbind_to (count, Qnil);
5382 return Qnil;
5385 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
5386 Sset_buffer_auto_saved, 0, 0, 0,
5387 doc: /* Mark current buffer as auto-saved with its current text.
5388 No auto-save file will be written until the buffer changes again. */)
5391 current_buffer->auto_save_modified = MODIFF;
5392 XSETFASTINT (current_buffer->save_length, Z - BEG);
5393 current_buffer->auto_save_failure_time = -1;
5394 return Qnil;
5397 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
5398 Sclear_buffer_auto_save_failure, 0, 0, 0,
5399 doc: /* Clear any record of a recent auto-save failure in the current buffer. */)
5402 current_buffer->auto_save_failure_time = -1;
5403 return Qnil;
5406 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
5407 0, 0, 0,
5408 doc: /* Return t if current buffer has been auto-saved recently.
5409 More precisely, if it has been auto-saved since last read from or saved
5410 in the visited file. If the buffer has no visited file,
5411 then any auto-save counts as "recent". */)
5414 return (SAVE_MODIFF < current_buffer->auto_save_modified) ? Qt : Qnil;
5417 /* Reading and completing file names */
5419 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p,
5420 Snext_read_file_uses_dialog_p, 0, 0, 0,
5421 doc: /* Return t if a call to `read-file-name' will use a dialog.
5422 The return value is only relevant for a call to `read-file-name' that happens
5423 before any other event (mouse or keypress) is handled. */)
5426 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK)
5427 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
5428 && use_dialog_box
5429 && use_file_dialog
5430 && have_menus_p ())
5431 return Qt;
5432 #endif
5433 return Qnil;
5436 Lisp_Object
5437 Fread_file_name (prompt, dir, default_filename, mustmatch, initial, predicate)
5438 Lisp_Object prompt, dir, default_filename, mustmatch, initial, predicate;
5440 struct gcpro gcpro1, gcpro2;
5441 Lisp_Object args[7];
5443 GCPRO1 (default_filename);
5444 args[0] = intern ("read-file-name");
5445 args[1] = prompt;
5446 args[2] = dir;
5447 args[3] = default_filename;
5448 args[4] = mustmatch;
5449 args[5] = initial;
5450 args[6] = predicate;
5451 RETURN_UNGCPRO (Ffuncall (7, args));
5455 void
5456 init_fileio_once ()
5458 /* Must be set before any path manipulation is performed. */
5459 XSETFASTINT (Vdirectory_sep_char, '/');
5463 void
5464 syms_of_fileio ()
5466 Qoperations = intern ("operations");
5467 Qexpand_file_name = intern ("expand-file-name");
5468 Qsubstitute_in_file_name = intern ("substitute-in-file-name");
5469 Qdirectory_file_name = intern ("directory-file-name");
5470 Qfile_name_directory = intern ("file-name-directory");
5471 Qfile_name_nondirectory = intern ("file-name-nondirectory");
5472 Qunhandled_file_name_directory = intern ("unhandled-file-name-directory");
5473 Qfile_name_as_directory = intern ("file-name-as-directory");
5474 Qcopy_file = intern ("copy-file");
5475 Qmake_directory_internal = intern ("make-directory-internal");
5476 Qmake_directory = intern ("make-directory");
5477 Qdelete_directory = intern ("delete-directory");
5478 Qdelete_file = intern ("delete-file");
5479 Qrename_file = intern ("rename-file");
5480 Qadd_name_to_file = intern ("add-name-to-file");
5481 Qmake_symbolic_link = intern ("make-symbolic-link");
5482 Qfile_exists_p = intern ("file-exists-p");
5483 Qfile_executable_p = intern ("file-executable-p");
5484 Qfile_readable_p = intern ("file-readable-p");
5485 Qfile_writable_p = intern ("file-writable-p");
5486 Qfile_symlink_p = intern ("file-symlink-p");
5487 Qaccess_file = intern ("access-file");
5488 Qfile_directory_p = intern ("file-directory-p");
5489 Qfile_regular_p = intern ("file-regular-p");
5490 Qfile_accessible_directory_p = intern ("file-accessible-directory-p");
5491 Qfile_modes = intern ("file-modes");
5492 Qset_file_modes = intern ("set-file-modes");
5493 Qset_file_times = intern ("set-file-times");
5494 Qfile_newer_than_file_p = intern ("file-newer-than-file-p");
5495 Qinsert_file_contents = intern ("insert-file-contents");
5496 Qwrite_region = intern ("write-region");
5497 Qverify_visited_file_modtime = intern ("verify-visited-file-modtime");
5498 Qset_visited_file_modtime = intern ("set-visited-file-modtime");
5499 Qauto_save_coding = intern ("auto-save-coding");
5501 staticpro (&Qoperations);
5502 staticpro (&Qexpand_file_name);
5503 staticpro (&Qsubstitute_in_file_name);
5504 staticpro (&Qdirectory_file_name);
5505 staticpro (&Qfile_name_directory);
5506 staticpro (&Qfile_name_nondirectory);
5507 staticpro (&Qunhandled_file_name_directory);
5508 staticpro (&Qfile_name_as_directory);
5509 staticpro (&Qcopy_file);
5510 staticpro (&Qmake_directory_internal);
5511 staticpro (&Qmake_directory);
5512 staticpro (&Qdelete_directory);
5513 staticpro (&Qdelete_file);
5514 staticpro (&Qrename_file);
5515 staticpro (&Qadd_name_to_file);
5516 staticpro (&Qmake_symbolic_link);
5517 staticpro (&Qfile_exists_p);
5518 staticpro (&Qfile_executable_p);
5519 staticpro (&Qfile_readable_p);
5520 staticpro (&Qfile_writable_p);
5521 staticpro (&Qaccess_file);
5522 staticpro (&Qfile_symlink_p);
5523 staticpro (&Qfile_directory_p);
5524 staticpro (&Qfile_regular_p);
5525 staticpro (&Qfile_accessible_directory_p);
5526 staticpro (&Qfile_modes);
5527 staticpro (&Qset_file_modes);
5528 staticpro (&Qset_file_times);
5529 staticpro (&Qfile_newer_than_file_p);
5530 staticpro (&Qinsert_file_contents);
5531 staticpro (&Qwrite_region);
5532 staticpro (&Qverify_visited_file_modtime);
5533 staticpro (&Qset_visited_file_modtime);
5534 staticpro (&Qauto_save_coding);
5536 Qfile_name_history = intern ("file-name-history");
5537 Fset (Qfile_name_history, Qnil);
5538 staticpro (&Qfile_name_history);
5540 Qfile_error = intern ("file-error");
5541 staticpro (&Qfile_error);
5542 Qfile_already_exists = intern ("file-already-exists");
5543 staticpro (&Qfile_already_exists);
5544 Qfile_date_error = intern ("file-date-error");
5545 staticpro (&Qfile_date_error);
5546 Qexcl = intern ("excl");
5547 staticpro (&Qexcl);
5549 #ifdef DOS_NT
5550 Qfind_buffer_file_type = intern ("find-buffer-file-type");
5551 staticpro (&Qfind_buffer_file_type);
5552 #endif /* DOS_NT */
5554 DEFVAR_LISP ("file-name-coding-system", &Vfile_name_coding_system,
5555 doc: /* *Coding system for encoding file names.
5556 If it is nil, `default-file-name-coding-system' (which see) is used. */);
5557 Vfile_name_coding_system = Qnil;
5559 DEFVAR_LISP ("default-file-name-coding-system",
5560 &Vdefault_file_name_coding_system,
5561 doc: /* Default coding system for encoding file names.
5562 This variable is used only when `file-name-coding-system' is nil.
5564 This variable is set/changed by the command `set-language-environment'.
5565 User should not set this variable manually,
5566 instead use `file-name-coding-system' to get a constant encoding
5567 of file names regardless of the current language environment. */);
5568 Vdefault_file_name_coding_system = Qnil;
5570 Qformat_decode = intern ("format-decode");
5571 staticpro (&Qformat_decode);
5572 Qformat_annotate_function = intern ("format-annotate-function");
5573 staticpro (&Qformat_annotate_function);
5574 Qafter_insert_file_set_coding = intern ("after-insert-file-set-coding");
5575 staticpro (&Qafter_insert_file_set_coding);
5577 Qcar_less_than_car = intern ("car-less-than-car");
5578 staticpro (&Qcar_less_than_car);
5580 Fput (Qfile_error, Qerror_conditions,
5581 list2 (Qfile_error, Qerror));
5582 Fput (Qfile_error, Qerror_message,
5583 build_string ("File error"));
5585 Fput (Qfile_already_exists, Qerror_conditions,
5586 list3 (Qfile_already_exists, Qfile_error, Qerror));
5587 Fput (Qfile_already_exists, Qerror_message,
5588 build_string ("File already exists"));
5590 Fput (Qfile_date_error, Qerror_conditions,
5591 list3 (Qfile_date_error, Qfile_error, Qerror));
5592 Fput (Qfile_date_error, Qerror_message,
5593 build_string ("Cannot set file date"));
5595 DEFVAR_LISP ("directory-sep-char", &Vdirectory_sep_char,
5596 doc: /* Directory separator character for built-in functions that return file names.
5597 The value is always ?/. Don't use this variable, just use `/'. */);
5599 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist,
5600 doc: /* *Alist of elements (REGEXP . HANDLER) for file names handled specially.
5601 If a file name matches REGEXP, then all I/O on that file is done by calling
5602 HANDLER.
5604 The first argument given to HANDLER is the name of the I/O primitive
5605 to be handled; the remaining arguments are the arguments that were
5606 passed to that primitive. For example, if you do
5607 (file-exists-p FILENAME)
5608 and FILENAME is handled by HANDLER, then HANDLER is called like this:
5609 (funcall HANDLER 'file-exists-p FILENAME)
5610 The function `find-file-name-handler' checks this list for a handler
5611 for its argument. */);
5612 Vfile_name_handler_alist = Qnil;
5614 DEFVAR_LISP ("set-auto-coding-function",
5615 &Vset_auto_coding_function,
5616 doc: /* If non-nil, a function to call to decide a coding system of file.
5617 Two arguments are passed to this function: the file name
5618 and the length of a file contents following the point.
5619 This function should return a coding system to decode the file contents.
5620 It should check the file name against `auto-coding-alist'.
5621 If no coding system is decided, it should check a coding system
5622 specified in the heading lines with the format:
5623 -*- ... coding: CODING-SYSTEM; ... -*-
5624 or local variable spec of the tailing lines with `coding:' tag. */);
5625 Vset_auto_coding_function = Qnil;
5627 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions,
5628 doc: /* A list of functions to be called at the end of `insert-file-contents'.
5629 Each is passed one argument, the number of characters inserted,
5630 with point at the start of the inserted text. Each function
5631 should leave point the same, and return the new character count.
5632 If `insert-file-contents' is intercepted by a handler from
5633 `file-name-handler-alist', that handler is responsible for calling the
5634 functions in `after-insert-file-functions' if appropriate. */);
5635 Vafter_insert_file_functions = Qnil;
5637 DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions,
5638 doc: /* A list of functions to be called at the start of `write-region'.
5639 Each is passed two arguments, START and END as for `write-region'.
5640 These are usually two numbers but not always; see the documentation
5641 for `write-region'. The function should return a list of pairs
5642 of the form (POSITION . STRING), consisting of strings to be effectively
5643 inserted at the specified positions of the file being written (1 means to
5644 insert before the first byte written). The POSITIONs must be sorted into
5645 increasing order.
5647 If there are several annotation functions, the lists returned by these
5648 functions are merged destructively. As each annotation function runs,
5649 the variable `write-region-annotations-so-far' contains a list of all
5650 annotations returned by previous annotation functions.
5652 An annotation function can return with a different buffer current.
5653 Doing so removes the annotations returned by previous functions, and
5654 resets START and END to `point-min' and `point-max' of the new buffer.
5656 After `write-region' completes, Emacs calls the function stored in
5657 `write-region-post-annotation-function', once for each buffer that was
5658 current when building the annotations (i.e., at least once), with that
5659 buffer current. */);
5660 Vwrite_region_annotate_functions = Qnil;
5661 staticpro (&Qwrite_region_annotate_functions);
5662 Qwrite_region_annotate_functions
5663 = intern ("write-region-annotate-functions");
5665 DEFVAR_LISP ("write-region-post-annotation-function",
5666 &Vwrite_region_post_annotation_function,
5667 doc: /* Function to call after `write-region' completes.
5668 The function is called with no arguments. If one or more of the
5669 annotation functions in `write-region-annotate-functions' changed the
5670 current buffer, the function stored in this variable is called for
5671 each of those additional buffers as well, in addition to the original
5672 buffer. The relevant buffer is current during each function call. */);
5673 Vwrite_region_post_annotation_function = Qnil;
5674 staticpro (&Vwrite_region_annotation_buffers);
5676 DEFVAR_LISP ("write-region-annotations-so-far",
5677 &Vwrite_region_annotations_so_far,
5678 doc: /* When an annotation function is called, this holds the previous annotations.
5679 These are the annotations made by other annotation functions
5680 that were already called. See also `write-region-annotate-functions'. */);
5681 Vwrite_region_annotations_so_far = Qnil;
5683 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers,
5684 doc: /* A list of file name handlers that temporarily should not be used.
5685 This applies only to the operation `inhibit-file-name-operation'. */);
5686 Vinhibit_file_name_handlers = Qnil;
5688 DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation,
5689 doc: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
5690 Vinhibit_file_name_operation = Qnil;
5692 DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name,
5693 doc: /* File name in which we write a list of all auto save file names.
5694 This variable is initialized automatically from `auto-save-list-file-prefix'
5695 shortly after Emacs reads your `.emacs' file, if you have not yet given it
5696 a non-nil value. */);
5697 Vauto_save_list_file_name = Qnil;
5699 DEFVAR_LISP ("auto-save-visited-file-name", &Vauto_save_visited_file_name,
5700 doc: /* Non-nil says auto-save a buffer in the file it is visiting, when practical.
5701 Normally auto-save files are written under other names. */);
5702 Vauto_save_visited_file_name = Qnil;
5704 #ifdef HAVE_FSYNC
5705 DEFVAR_BOOL ("write-region-inhibit-fsync", &write_region_inhibit_fsync,
5706 doc: /* *Non-nil means don't call fsync in `write-region'.
5707 This variable affects calls to `write-region' as well as save commands.
5708 A non-nil value may result in data loss! */);
5709 write_region_inhibit_fsync = 0;
5710 #endif
5712 DEFVAR_BOOL ("delete-by-moving-to-trash", &delete_by_moving_to_trash,
5713 doc: /* Specifies whether to use the system's trash can.
5714 When non-nil, the function `move-file-to-trash' will be used by
5715 `delete-file' and `delete-directory'. */);
5716 delete_by_moving_to_trash = 0;
5717 Qdelete_by_moving_to_trash = intern ("delete-by-moving-to-trash");
5718 Qmove_file_to_trash = intern ("move-file-to-trash");
5719 staticpro (&Qmove_file_to_trash);
5721 defsubr (&Sfind_file_name_handler);
5722 defsubr (&Sfile_name_directory);
5723 defsubr (&Sfile_name_nondirectory);
5724 defsubr (&Sunhandled_file_name_directory);
5725 defsubr (&Sfile_name_as_directory);
5726 defsubr (&Sdirectory_file_name);
5727 defsubr (&Smake_temp_name);
5728 defsubr (&Sexpand_file_name);
5729 defsubr (&Ssubstitute_in_file_name);
5730 defsubr (&Scopy_file);
5731 defsubr (&Smake_directory_internal);
5732 defsubr (&Sdelete_directory);
5733 defsubr (&Sdelete_file);
5734 defsubr (&Srename_file);
5735 defsubr (&Sadd_name_to_file);
5736 defsubr (&Smake_symbolic_link);
5737 defsubr (&Sfile_name_absolute_p);
5738 defsubr (&Sfile_exists_p);
5739 defsubr (&Sfile_executable_p);
5740 defsubr (&Sfile_readable_p);
5741 defsubr (&Sfile_writable_p);
5742 defsubr (&Saccess_file);
5743 defsubr (&Sfile_symlink_p);
5744 defsubr (&Sfile_directory_p);
5745 defsubr (&Sfile_accessible_directory_p);
5746 defsubr (&Sfile_regular_p);
5747 defsubr (&Sfile_modes);
5748 defsubr (&Sset_file_modes);
5749 defsubr (&Sset_file_times);
5750 defsubr (&Sset_default_file_modes);
5751 defsubr (&Sdefault_file_modes);
5752 defsubr (&Sfile_newer_than_file_p);
5753 defsubr (&Sinsert_file_contents);
5754 defsubr (&Swrite_region);
5755 defsubr (&Scar_less_than_car);
5756 defsubr (&Sverify_visited_file_modtime);
5757 defsubr (&Sclear_visited_file_modtime);
5758 defsubr (&Svisited_file_modtime);
5759 defsubr (&Sset_visited_file_modtime);
5760 defsubr (&Sdo_auto_save);
5761 defsubr (&Sset_buffer_auto_saved);
5762 defsubr (&Sclear_buffer_auto_save_failure);
5763 defsubr (&Srecent_auto_save_p);
5765 defsubr (&Snext_read_file_uses_dialog_p);
5767 #ifdef HAVE_SYNC
5768 defsubr (&Sunix_sync);
5769 #endif
5772 /* arch-tag: 64ba3fd7-f844-4fb2-ba4b-427eb928786c
5773 (do not change this comment) */