Assume POSIX 1003.1-1988 or later for errno.h.
[bpt/emacs.git] / src / fileio.c
CommitLineData
570d7624 1/* File IO for GNU Emacs.
e9bffc61 2
24c51a09 3Copyright (C) 1985-1988, 1993-2012 Free Software Foundation, Inc.
570d7624
JB
4
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
570d7624 8it under the terms of the GNU General Public License as published by
9ec0b715
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
570d7624
JB
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
9ec0b715 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
570d7624 19
18160b98 20#include <config.h>
77a28bbf 21#include <limits.h>
bb369dc6 22#include <fcntl.h>
1b335d29 23#include <stdio.h>
570d7624
JB
24#include <sys/types.h>
25#include <sys/stat.h>
29beb080 26#include <unistd.h>
29beb080 27
5b9c0a1d 28#ifdef HAVE_PWD_H
570d7624 29#include <pwd.h>
bfb61299
JB
30#endif
31
570d7624
JB
32#include <errno.h>
33
574c05e2
KK
34#ifdef HAVE_LIBSELINUX
35#include <selinux/selinux.h>
36#include <selinux/context.h>
37#endif
38
620f13b0
PE
39#include <c-ctype.h>
40
570d7624 41#include "lisp.h"
8d4e077b 42#include "intervals.h"
db327c7e 43#include "character.h"
e5560ff7 44#include "buffer.h"
6fdaa9a0 45#include "coding.h"
570d7624 46#include "window.h"
67c08d6c 47#include "blockinput.h"
385ed61f
KL
48#include "frame.h"
49#include "dispextern.h"
570d7624 50
5e570b75
RS
51#ifdef WINDOWSNT
52#define NOMINMAX 1
53#include <windows.h>
5e570b75 54#include <fcntl.h>
bb385a92 55#include <sys/file.h>
a68089e4 56#include "w32.h"
5e570b75
RS
57#endif /* not WINDOWSNT */
58
7990d02a
EZ
59#ifdef MSDOS
60#include "msdos.h"
61#include <sys/param.h>
7990d02a 62#include <fcntl.h>
7990d02a 63#endif
7990d02a 64
199607e4 65#ifdef DOS_NT
199607e4 66/* On Windows, drive letters must be alphabetic - on DOS, the Netware
a5bb9bd3 67 redirector allows the six letters between 'Z' and 'a' as well. */
199607e4
RS
68#ifdef MSDOS
69#define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
70#endif
71#ifdef WINDOWSNT
620f13b0 72#define IS_DRIVE(x) c_isalpha (x)
199607e4 73#endif
f54b565c 74/* Need to lower-case the drive letter, or else expanded
53964682 75 filenames will sometimes compare unequal, because
f54b565c 76 `expand-file-name' doesn't always down-case the drive letter. */
620f13b0 77#define DRIVE_LETTER(x) c_tolower (x)
199607e4
RS
78#endif
79
de5bf5d3 80#include "systime.h"
d35af63c 81#include <stat-time.h>
570d7624
JB
82
83#ifdef HPUX
84#include <netio.h>
47e7b9e5 85#endif
570d7624 86
9c856db9 87#include "commands.h"
9c856db9 88
f75d7a91
PE
89/* True during writing of auto-save files. */
90static bool auto_saving;
570d7624 91
71873e2b 92/* Nonzero umask during creation of auto-save directories. */
f75d7a91 93static mode_t auto_saving_dir_umask;
09450bae 94
570d7624 95/* Set by auto_save_1 to mode of original file so Fwrite_region will create
71873e2b 96 a new file with the same mode as the original. */
f75d7a91 97static mode_t auto_save_mode_bits;
570d7624 98
71873e2b 99/* Set by auto_save_1 if an error occurred during the last auto-save. */
f75d7a91 100static bool auto_save_error_occurred;
ca730bf0 101
356a6224
KH
102/* The symbol bound to coding-system-for-read when
103 insert-file-contents is called for recovering a file. This is not
104 an actual coding system name, but just an indicator to tell
105 insert-file-contents to use `emacs-mule' with a special flag for
106 auto saving and recovering a file. */
955cbe7b 107static Lisp_Object Qauto_save_coding;
356a6224 108
f6c9b683
RS
109/* Property name of a file name handler,
110 which gives a list of operations it handles.. */
955cbe7b 111static Lisp_Object Qoperations;
f6c9b683 112
71873e2b 113/* Lisp functions for translating file formats. */
955cbe7b 114static Lisp_Object Qformat_decode, Qformat_annotate_function;
0d420e88 115
2080470e 116/* Lisp function for setting buffer-file-coding-system and the
b6426b03 117 multibyteness of the current buffer after inserting a file. */
955cbe7b 118static Lisp_Object Qafter_insert_file_set_coding;
b6426b03 119
955cbe7b 120static Lisp_Object Qwrite_region_annotate_functions;
67fbc0cb
CY
121/* Each time an annotation function changes the buffer, the new buffer
122 is added here. */
5045092b 123static Lisp_Object Vwrite_region_annotation_buffers;
67fbc0cb 124
ccf61795 125#ifdef HAVE_FSYNC
ccf61795
RF
126#endif
127
955cbe7b 128static Lisp_Object Qdelete_by_moving_to_trash;
d2b66acf 129
6cf29fe8 130/* Lisp function for moving files to trash. */
955cbe7b 131static Lisp_Object Qmove_file_to_trash;
6cf29fe8 132
8719abec 133/* Lisp function for recursively copying directories. */
955cbe7b 134static Lisp_Object Qcopy_directory;
8719abec
CY
135
136/* Lisp function for recursively deleting directories. */
955cbe7b 137static Lisp_Object Qdelete_directory;
8719abec 138
c1c4693e 139#ifdef WINDOWSNT
c1c4693e
RS
140#endif
141
955cbe7b
PE
142Lisp_Object Qfile_error;
143static Lisp_Object Qfile_already_exists, Qfile_date_error;
144static Lisp_Object Qexcl;
15c65264
RS
145Lisp_Object Qfile_name_history;
146
955cbe7b 147static Lisp_Object Qcar_less_than_car;
d6a3cc15 148
f75d7a91
PE
149static bool a_write (int, Lisp_Object, ptrdiff_t, ptrdiff_t,
150 Lisp_Object *, struct coding_system *);
151static bool e_write (int, Lisp_Object, ptrdiff_t, ptrdiff_t,
152 struct coding_system *);
ce51c54c 153
ec7adf26 154\f
5d01d666 155void
971de7fb 156report_file_error (const char *string, Lisp_Object data)
570d7624
JB
157{
158 Lisp_Object errstring;
505ab9bc 159 int errorno = errno;
d7259fdb 160 char *str;
570d7624 161
ca9c0567 162 synchronize_system_messages_locale ();
d7259fdb 163 str = strerror (errorno);
d7ea76b4 164 errstring = code_convert_string_norecord (build_unibyte_string (str),
68c45bf0
PE
165 Vlocale_coding_system, 0);
166
570d7624 167 while (1)
505ab9bc
RS
168 switch (errorno)
169 {
170 case EEXIST:
24b1ddad 171 xsignal (Qfile_already_exists, Fcons (errstring, data));
505ab9bc
RS
172 break;
173 default:
174 /* System error messages are capitalized. Downcase the initial
39824137
EZ
175 unless it is followed by a slash. (The slash case caters to
176 error messages that begin with "I/O" or, in German, "E/A".) */
d5443ffd
KH
177 if (STRING_MULTIBYTE (errstring)
178 && ! EQ (Faref (errstring, make_number (1)), make_number ('/')))
6c0969ca
KH
179 {
180 int c;
181
51b59d79 182 str = SSDATA (errstring);
5976c3fe 183 c = STRING_CHAR ((unsigned char *) str);
5da9919f 184 Faset (errstring, make_number (0), make_number (downcase (c)));
6c0969ca 185 }
505ab9bc 186
24b1ddad 187 xsignal (Qfile_error,
505ab9bc
RS
188 Fcons (build_string (string), Fcons (errstring, data)));
189 }
570d7624 190}
b5148e85 191
b27a1703 192Lisp_Object
971de7fb 193close_file_unwind (Lisp_Object fd)
b5148e85 194{
68c45bf0 195 emacs_close (XFASTINT (fd));
b27a1703 196 return Qnil;
b5148e85 197}
a1d2b64a
RS
198
199/* Restore point, having saved it as a marker. */
200
5dcde606 201Lisp_Object
971de7fb 202restore_point_unwind (Lisp_Object location)
a1d2b64a 203{
ec7adf26 204 Fgoto_char (location);
a1d2b64a 205 Fset_marker (location, Qnil, Qnil);
b27a1703 206 return Qnil;
a1d2b64a 207}
59c94f03 208
570d7624 209\f
955cbe7b
PE
210static Lisp_Object Qexpand_file_name;
211static Lisp_Object Qsubstitute_in_file_name;
212static Lisp_Object Qdirectory_file_name;
213static Lisp_Object Qfile_name_directory;
214static Lisp_Object Qfile_name_nondirectory;
215static Lisp_Object Qunhandled_file_name_directory;
216static Lisp_Object Qfile_name_as_directory;
217static Lisp_Object Qcopy_file;
218static Lisp_Object Qmake_directory_internal;
219static Lisp_Object Qmake_directory;
220static Lisp_Object Qdelete_directory_internal;
32f4334d 221Lisp_Object Qdelete_file;
955cbe7b
PE
222static Lisp_Object Qrename_file;
223static Lisp_Object Qadd_name_to_file;
224static Lisp_Object Qmake_symbolic_link;
32f4334d 225Lisp_Object Qfile_exists_p;
955cbe7b
PE
226static Lisp_Object Qfile_executable_p;
227static Lisp_Object Qfile_readable_p;
228static Lisp_Object Qfile_writable_p;
229static Lisp_Object Qfile_symlink_p;
230static Lisp_Object Qaccess_file;
32f4334d 231Lisp_Object Qfile_directory_p;
955cbe7b
PE
232static Lisp_Object Qfile_regular_p;
233static Lisp_Object Qfile_accessible_directory_p;
234static Lisp_Object Qfile_modes;
235static Lisp_Object Qset_file_modes;
236static Lisp_Object Qset_file_times;
237static Lisp_Object Qfile_selinux_context;
238static Lisp_Object Qset_file_selinux_context;
239static Lisp_Object Qfile_newer_than_file_p;
32f4334d
RS
240Lisp_Object Qinsert_file_contents;
241Lisp_Object Qwrite_region;
955cbe7b
PE
242static Lisp_Object Qverify_visited_file_modtime;
243static Lisp_Object Qset_visited_file_modtime;
32f4334d 244
a7ca3326 245DEFUN ("find-file-name-handler", Ffind_file_name_handler,
16a97296 246 Sfind_file_name_handler, 2, 2, 0,
8c1a1077
PJ
247 doc: /* Return FILENAME's handler function for OPERATION, if it has one.
248Otherwise, return nil.
249A file name is handled if one of the regular expressions in
250`file-name-handler-alist' matches it.
251
252If OPERATION equals `inhibit-file-name-operation', then we ignore
253any handlers that are members of `inhibit-file-name-handlers',
254but we still do run any other handlers. This lets handlers
255use the standard functions without calling themselves recursively. */)
5842a27b 256 (Lisp_Object filename, Lisp_Object operation)
32f4334d 257{
642ef245 258 /* This function must not munge the match data. */
204ee271 259 Lisp_Object chain, inhibited_handlers, result;
d311d28c 260 ptrdiff_t pos = -1;
642ef245 261
204ee271 262 result = Qnil;
b7826503 263 CHECK_STRING (filename);
e4432095 264
a65970a0
RS
265 if (EQ (operation, Vinhibit_file_name_operation))
266 inhibited_handlers = Vinhibit_file_name_handlers;
267 else
268 inhibited_handlers = Qnil;
82c2d839 269
93c30b5f 270 for (chain = Vfile_name_handler_alist; CONSP (chain);
03699b14 271 chain = XCDR (chain))
32f4334d
RS
272 {
273 Lisp_Object elt;
03699b14 274 elt = XCAR (chain);
93c30b5f 275 if (CONSP (elt))
32f4334d 276 {
f6c9b683 277 Lisp_Object string = XCAR (elt);
d311d28c 278 ptrdiff_t match_pos;
f6c9b683 279 Lisp_Object handler = XCDR (elt);
68780e2a
RS
280 Lisp_Object operations = Qnil;
281
282 if (SYMBOLP (handler))
283 operations = Fget (handler, Qoperations);
f6c9b683 284
8d2ced53 285 if (STRINGP (string)
f6c9b683
RS
286 && (match_pos = fast_string_match (string, filename)) > pos
287 && (NILP (operations) || ! NILP (Fmemq (operation, operations))))
a65970a0 288 {
f6c9b683 289 Lisp_Object tem;
a65970a0 290
03699b14 291 handler = XCDR (elt);
a65970a0
RS
292 tem = Fmemq (handler, inhibited_handlers);
293 if (NILP (tem))
8d2ced53
SM
294 {
295 result = handler;
296 pos = match_pos;
297 }
a65970a0 298 }
32f4334d 299 }
642ef245
JB
300
301 QUIT;
32f4334d 302 }
8d2ced53 303 return result;
32f4334d
RS
304}
305\f
a7ca3326 306DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory,
8c1a1077
PJ
307 1, 1, 0,
308 doc: /* Return the directory component in file name FILENAME.
309Return nil if FILENAME does not include a directory.
78379264 310Otherwise return a directory name.
7c2fb837 311Given a Unix syntax file name, returns a string ending in slash. */)
5842a27b 312 (Lisp_Object filename)
570d7624 313{
100c44b7 314#ifndef DOS_NT
5976c3fe 315 register const char *beg;
100c44b7 316#else
5976c3fe 317 register char *beg;
273ac8d1 318 Lisp_Object tem_fn;
100c44b7 319#endif
5976c3fe 320 register const char *p;
0bf2eed2 321 Lisp_Object handler;
570d7624 322
b7826503 323 CHECK_STRING (filename);
570d7624 324
0bf2eed2
RS
325 /* If the file name has special constructs in it,
326 call the corresponding file handler. */
3b7f6e60 327 handler = Ffind_file_name_handler (filename, Qfile_name_directory);
0bf2eed2 328 if (!NILP (handler))
2375c96a
CY
329 {
330 Lisp_Object handled_name = call2 (handler, Qfile_name_directory,
331 filename);
332 return STRINGP (handled_name) ? handled_name : Qnil;
333 }
0bf2eed2 334
199607e4 335#ifdef DOS_NT
38182d90 336 beg = alloca (SBYTES (filename) + 1);
5976c3fe 337 memcpy (beg, SSDATA (filename), SBYTES (filename) + 1);
0f3f018c 338#else
5976c3fe 339 beg = SSDATA (filename);
199607e4 340#endif
d5db4077 341 p = beg + SBYTES (filename);
570d7624 342
199607e4 343 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
199607e4 344#ifdef DOS_NT
e1dbe924 345 /* only recognize drive specifier at the beginning */
ba14e174
RS
346 && !(p[-1] == ':'
347 /* handle the "/:d:foo" and "/:foo" cases correctly */
348 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg))
349 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
199607e4 350#endif
570d7624
JB
351 ) p--;
352
353 if (p == beg)
354 return Qnil;
5e570b75 355#ifdef DOS_NT
4c3c22f3 356 /* Expansion of "c:" to drive and default directory. */
ba14e174 357 if (p[-1] == ':')
4c3c22f3 358 {
4c3c22f3 359 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
5976c3fe
PE
360 char *res = alloca (MAXPATHLEN + 1);
361 char *r = res;
ba14e174
RS
362
363 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':')
364 {
e99a530f 365 memcpy (res, beg, 2);
ba14e174
RS
366 beg += 2;
367 r += 2;
368 }
369
620f13b0 370 if (getdefdir (c_toupper (*beg) - 'A' + 1, r))
4c3c22f3 371 {
199607e4 372 if (!IS_DIRECTORY_SEP (res[strlen (res) - 1]))
4c3c22f3
RS
373 strcat (res, "/");
374 beg = res;
375 p = beg + strlen (beg);
376 }
377 }
273ac8d1
EZ
378 tem_fn = ENCODE_FILE (make_specified_string (beg, -1, p - beg,
379 STRING_MULTIBYTE (filename)));
380 dostounix_filename (SSDATA (tem_fn));
381 return DECODE_FILE (tem_fn);
382#else /* DOS_NT */
d7231f93 383 return make_specified_string (beg, -1, p - beg, STRING_MULTIBYTE (filename));
273ac8d1 384#endif /* DOS_NT */
570d7624
JB
385}
386
a7ca3326 387DEFUN ("file-name-nondirectory", Ffile_name_nondirectory,
60d67b83 388 Sfile_name_nondirectory, 1, 1, 0,
8c1a1077
PJ
389 doc: /* Return file name FILENAME sans its directory.
390For example, in a Unix-syntax file name,
391this is everything after the last slash,
392or the entire name if it contains no slash. */)
5842a27b 393 (Lisp_Object filename)
570d7624 394{
5976c3fe 395 register const char *beg, *p, *end;
0bf2eed2 396 Lisp_Object handler;
570d7624 397
b7826503 398 CHECK_STRING (filename);
570d7624 399
0bf2eed2
RS
400 /* If the file name has special constructs in it,
401 call the corresponding file handler. */
3b7f6e60 402 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory);
0bf2eed2 403 if (!NILP (handler))
2375c96a
CY
404 {
405 Lisp_Object handled_name = call2 (handler, Qfile_name_nondirectory,
406 filename);
407 if (STRINGP (handled_name))
408 return handled_name;
409 error ("Invalid handler in `file-name-handler-alist'");
410 }
0bf2eed2 411
5976c3fe 412 beg = SSDATA (filename);
d5db4077 413 end = p = beg + SBYTES (filename);
570d7624 414
199607e4 415 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
199607e4 416#ifdef DOS_NT
e1dbe924 417 /* only recognize drive specifier at beginning */
ba14e174
RS
418 && !(p[-1] == ':'
419 /* handle the "/:d:foo" case correctly */
420 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
199607e4 421#endif
60d67b83
RS
422 )
423 p--;
570d7624 424
d7231f93 425 return make_specified_string (p, -1, end - p, STRING_MULTIBYTE (filename));
570d7624 426}
642ef245 427
a7ca3326 428DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory,
60d67b83 429 Sunhandled_file_name_directory, 1, 1, 0,
8c1a1077
PJ
430 doc: /* Return a directly usable directory name somehow associated with FILENAME.
431A `directly usable' directory name is one that may be used without the
432intervention of any file handler.
433If FILENAME is a directly usable file itself, return
434\(file-name-directory FILENAME).
ca319910
SM
435If FILENAME refers to a file which is not accessible from a local process,
436then this should return nil.
8c1a1077
PJ
437The `call-process' and `start-process' functions use this function to
438get a current directory to run processes in. */)
5842a27b 439 (Lisp_Object filename)
642ef245
JB
440{
441 Lisp_Object handler;
442
443 /* If the file name has special constructs in it,
444 call the corresponding file handler. */
49307295 445 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
642ef245 446 if (!NILP (handler))
2375c96a
CY
447 {
448 Lisp_Object handled_name = call2 (handler, Qunhandled_file_name_directory,
449 filename);
450 return STRINGP (handled_name) ? handled_name : Qnil;
451 }
642ef245
JB
452
453 return Ffile_name_directory (filename);
454}
455
c293e30c
DA
456/* Convert from file name SRC of length SRCLEN to directory name
457 in DST. On UNIX, just make sure there is a terminating /.
458 Return the length of DST. */
570d7624 459
c293e30c
DA
460static ptrdiff_t
461file_name_as_directory (char *dst, const char *src, ptrdiff_t srclen)
462{
463 if (srclen == 0)
8aa3a244 464 {
c293e30c
DA
465 dst[0] = '.';
466 dst[1] = '/';
467 dst[2] = '\0';
468 return 2;
8aa3a244
RS
469 }
470
c293e30c 471 strcpy (dst, src);
93f4cf88 472
c293e30c 473 if (!IS_DIRECTORY_SEP (dst[srclen - 1]))
5e570b75 474 {
c293e30c
DA
475 dst[srclen] = DIRECTORY_SEP;
476 dst[srclen + 1] = '\0';
477 srclen++;
5e570b75 478 }
199607e4 479#ifdef DOS_NT
c293e30c 480 dostounix_filename (dst);
199607e4 481#endif
c293e30c 482 return srclen;
570d7624
JB
483}
484
a7ca3326 485DEFUN ("file-name-as-directory", Ffile_name_as_directory,
570d7624 486 Sfile_name_as_directory, 1, 1, 0,
0dac4f85 487 doc: /* Return a string representing the file name FILE interpreted as a directory.
8c1a1077
PJ
488This operation exists because a directory is also a file, but its name as
489a directory is different from its name as a file.
490The result can be used as the value of `default-directory'
491or passed as second argument to `expand-file-name'.
7c2fb837 492For a Unix-syntax file name, just appends a slash. */)
5842a27b 493 (Lisp_Object file)
570d7624
JB
494{
495 char *buf;
c293e30c 496 ptrdiff_t length;
0bf2eed2 497 Lisp_Object handler;
570d7624 498
b7826503 499 CHECK_STRING (file);
265a9e55 500 if (NILP (file))
570d7624 501 return Qnil;
0bf2eed2
RS
502
503 /* If the file name has special constructs in it,
504 call the corresponding file handler. */
49307295 505 handler = Ffind_file_name_handler (file, Qfile_name_as_directory);
0bf2eed2 506 if (!NILP (handler))
2375c96a
CY
507 {
508 Lisp_Object handled_name = call2 (handler, Qfile_name_as_directory,
509 file);
510 if (STRINGP (handled_name))
511 return handled_name;
512 error ("Invalid handler in `file-name-handler-alist'");
513 }
0bf2eed2 514
38182d90 515 buf = alloca (SBYTES (file) + 10);
c293e30c
DA
516 length = file_name_as_directory (buf, SSDATA (file), SBYTES (file));
517 return make_specified_string (buf, -1, length, STRING_MULTIBYTE (file));
570d7624
JB
518}
519\f
c293e30c
DA
520/* Convert from directory name SRC of length SRCLEN to
521 file name in DST. On UNIX, just make sure there isn't
522 a terminating /. Return the length of DST. */
570d7624 523
c293e30c
DA
524static ptrdiff_t
525directory_file_name (char *dst, char *src, ptrdiff_t srclen)
570d7624 526{
570d7624
JB
527 /* Process as Unix format: just remove any final slash.
528 But leave "/" unchanged; do not change it to "". */
529 strcpy (dst, src);
c293e30c
DA
530 if (srclen > 1
531 && IS_DIRECTORY_SEP (dst[srclen - 1])
4592782e 532#ifdef DOS_NT
c293e30c 533 && !IS_ANY_SEP (dst[srclen - 2])
4592782e
RS
534#endif
535 )
c293e30c
DA
536 {
537 dst[srclen - 1] = 0;
538 srclen--;
539 }
199607e4 540#ifdef DOS_NT
087fc47a 541 dostounix_filename (dst);
125feee8 542#endif
c293e30c 543 return srclen;
570d7624
JB
544}
545
a7ca3326 546DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
8c1a1077
PJ
547 1, 1, 0,
548 doc: /* Returns the file name of the directory named DIRECTORY.
549This is the name of the file that holds the data for the directory DIRECTORY.
550This operation exists because a directory is also a file, but its name as
551a directory is different from its name as a file.
7c2fb837 552In Unix-syntax, this function just removes the final slash. */)
5842a27b 553 (Lisp_Object directory)
570d7624
JB
554{
555 char *buf;
c293e30c 556 ptrdiff_t length;
0bf2eed2 557 Lisp_Object handler;
570d7624 558
b7826503 559 CHECK_STRING (directory);
570d7624 560
265a9e55 561 if (NILP (directory))
570d7624 562 return Qnil;
0bf2eed2
RS
563
564 /* If the file name has special constructs in it,
565 call the corresponding file handler. */
49307295 566 handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
0bf2eed2 567 if (!NILP (handler))
2375c96a
CY
568 {
569 Lisp_Object handled_name = call2 (handler, Qdirectory_file_name,
570 directory);
571 if (STRINGP (handled_name))
572 return handled_name;
573 error ("Invalid handler in `file-name-handler-alist'");
574 }
0bf2eed2 575
38182d90 576 buf = alloca (SBYTES (directory) + 20);
c293e30c
DA
577 length = directory_file_name (buf, SSDATA (directory), SBYTES (directory));
578 return make_specified_string (buf, -1, length, STRING_MULTIBYTE (directory));
570d7624
JB
579}
580
91433552 581static const char make_temp_name_tbl[64] =
3ce839e4
RS
582{
583 'A','B','C','D','E','F','G','H',
584 'I','J','K','L','M','N','O','P',
585 'Q','R','S','T','U','V','W','X',
586 'Y','Z','a','b','c','d','e','f',
587 'g','h','i','j','k','l','m','n',
588 'o','p','q','r','s','t','u','v',
589 'w','x','y','z','0','1','2','3',
590 '4','5','6','7','8','9','-','_'
591};
cb613bb8 592
3ce839e4
RS
593static unsigned make_temp_name_count, make_temp_name_count_initialized_p;
594
cb613bb8 595/* Value is a temporary file name starting with PREFIX, a string.
efdc16c9 596
cb613bb8
GM
597 The Emacs process number forms part of the result, so there is
598 no danger of generating a name being used by another process.
599 In addition, this function makes an attempt to choose a name
600 which has no existing file. To make this work, PREFIX should be
601 an absolute file name.
efdc16c9 602
f75d7a91 603 BASE64_P means add the pid as 3 characters in base64
cb613bb8
GM
604 encoding. In this case, 6 characters will be added to PREFIX to
605 form the file name. Otherwise, if Emacs is running on a system
606 with long file names, add the pid as a decimal number.
607
608 This function signals an error if no unique file name could be
609 generated. */
610
611Lisp_Object
f75d7a91 612make_temp_name (Lisp_Object prefix, bool base64_p)
570d7624
JB
613{
614 Lisp_Object val;
0cedd530 615 int len, clen;
a81d11a3 616 printmax_t pid;
5976c3fe 617 char *p, *data;
a81d11a3 618 char pidbuf[INT_BUFSIZE_BOUND (printmax_t)];
3ce839e4 619 int pidlen;
efdc16c9 620
b7826503 621 CHECK_STRING (prefix);
3ce839e4
RS
622
623 /* VAL is created by adding 6 characters to PREFIX. The first
624 three are the PID of this process, in base 64, and the second
625 three are incremented if the file already exists. This ensures
626 262144 unique file names per PID per PREFIX. */
627
93f4cf88 628 pid = getpid ();
3ce839e4 629
cb613bb8
GM
630 if (base64_p)
631 {
632 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
633 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
634 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
635 pidlen = 3;
636 }
637 else
638 {
3ce839e4 639#ifdef HAVE_LONG_FILE_NAMES
a81d11a3 640 pidlen = sprintf (pidbuf, "%"pMd, pid);
3a3bfb18 641#else
cb613bb8
GM
642 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
643 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
644 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
645 pidlen = 3;
3ce839e4 646#endif
cb613bb8 647 }
efdc16c9 648
0cedd530
SM
649 len = SBYTES (prefix); clen = SCHARS (prefix);
650 val = make_uninit_multibyte_string (clen + 3 + pidlen, len + 3 + pidlen);
651 if (!STRING_MULTIBYTE (prefix))
652 STRING_SET_UNIBYTE (val);
5976c3fe
PE
653 data = SSDATA (val);
654 memcpy (data, SSDATA (prefix), len);
3ce839e4
RS
655 p = data + len;
656
72af86bd 657 memcpy (p, pidbuf, pidlen);
3ce839e4
RS
658 p += pidlen;
659
660 /* Here we try to minimize useless stat'ing when this function is
661 invoked many times successively with the same PREFIX. We achieve
662 this by initializing count to a random value, and incrementing it
f6a492a9
RS
663 afterwards.
664
665 We don't want make-temp-name to be called while dumping,
666 because then make_temp_name_count_initialized_p would get set
667 and then make_temp_name_count would not be set when Emacs starts. */
668
3ce839e4
RS
669 if (!make_temp_name_count_initialized_p)
670 {
327eeec8 671 make_temp_name_count = time (NULL);
3ce839e4
RS
672 make_temp_name_count_initialized_p = 1;
673 }
674
675 while (1)
676 {
8a7777fc 677 unsigned num = make_temp_name_count;
3ce839e4
RS
678
679 p[0] = make_temp_name_tbl[num & 63], num >>= 6;
680 p[1] = make_temp_name_tbl[num & 63], num >>= 6;
681 p[2] = make_temp_name_tbl[num & 63], num >>= 6;
682
8a7777fc
RS
683 /* Poor man's congruential RN generator. Replace with
684 ++make_temp_name_count for debugging. */
685 make_temp_name_count += 25229;
686 make_temp_name_count %= 225307;
687
bb385a92 688 if (!check_existing (data))
3ce839e4
RS
689 {
690 /* We want to return only if errno is ENOENT. */
691 if (errno == ENOENT)
692 return val;
693 else
694 /* The error here is dubious, but there is little else we
695 can do. The alternatives are to return nil, which is
696 as bad as (and in many cases worse than) throwing the
697 error, or to ignore the error, which will likely result
8a7777fc 698 in looping through 225307 stat's, which is not only
410ed5c3
PE
699 dog-slow, but also useless since eventually nil would
700 have to be returned anyway. */
9869bb0b 701 report_file_error ("Cannot create temporary name for prefix",
3ce839e4
RS
702 Fcons (prefix, Qnil));
703 /* not reached */
704 }
705 }
570d7624 706}
3ce839e4 707
cb613bb8
GM
708
709DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
8c1a1077
PJ
710 doc: /* Generate temporary file name (string) starting with PREFIX (a string).
711The Emacs process number forms part of the result,
712so there is no danger of generating a name being used by another process.
713
714In addition, this function makes an attempt to choose a name
715which has no existing file. To make this work,
716PREFIX should be an absolute file name.
717
718There is a race condition between calling `make-temp-name' and creating the
719file which opens all kinds of security holes. For that reason, you should
f9e6f049
RS
720probably use `make-temp-file' instead, except in three circumstances:
721
722* If you are creating the file in the user's home directory.
723* If you are creating a directory rather than an ordinary file.
724* If you are taking special precautions as `make-temp-file' does. */)
5842a27b 725 (Lisp_Object prefix)
cb613bb8
GM
726{
727 return make_temp_name (prefix, 0);
728}
729
730
570d7624 731\f
a7ca3326 732DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
8c1a1077
PJ
733 doc: /* Convert filename NAME to absolute, and canonicalize it.
734Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
78379264 735\(does not start with slash or tilde); if DEFAULT-DIRECTORY is nil or missing,
a4e03fe5 736the current buffer's value of `default-directory' is used.
1b2a627f
EZ
737NAME should be a string that is a valid file name for the underlying
738filesystem.
8c1a1077
PJ
739File name components that are `.' are removed, and
740so are file name components followed by `..', along with the `..' itself;
741note that these simplifications are done without checking the resulting
742file names in the file system.
15579471
EZ
743Multiple consecutive slashes are collapsed into a single slash,
744except at the beginning of the file name when they are significant (e.g.,
745UNC file names on MS-Windows.)
8c1a1077
PJ
746An initial `~/' expands to your home directory.
747An initial `~USER/' expands to USER's home directory.
07114296
CY
748See also the function `substitute-in-file-name'.
749
750For technical reasons, this function can return correct but
751non-intuitive results for the root directory; for instance,
752\(expand-file-name ".." "/") returns "/..". For this reason, use
15579471 753\(directory-file-name (file-name-directory dirname)) to traverse a
07114296 754filesystem tree, not (expand-file-name ".." dirname). */)
5842a27b 755 (Lisp_Object name, Lisp_Object default_directory)
570d7624 756{
5b5a2ea1
SM
757 /* These point to SDATA and need to be careful with string-relocation
758 during GC (via DECODE_FILE). */
2893f146
PE
759 char *nm;
760 const char *newdir;
5b5a2ea1 761 /* This should only point to alloca'd data. */
5976c3fe 762 char *target;
199607e4 763
93f4cf88 764 ptrdiff_t tlen;
570d7624 765 struct passwd *pw;
5e570b75 766#ifdef DOS_NT
199607e4 767 int drive = 0;
f75d7a91
PE
768 bool collapse_newdir = 1;
769 bool is_escaped = 0;
5e570b75 770#endif /* DOS_NT */
93f4cf88 771 ptrdiff_t length;
2375c96a 772 Lisp_Object handler, result, handled_name;
fce31d69 773 bool multibyte;
9c06a1f3 774 Lisp_Object hdir;
199607e4 775
b7826503 776 CHECK_STRING (name);
570d7624 777
0bf2eed2
RS
778 /* If the file name has special constructs in it,
779 call the corresponding file handler. */
49307295 780 handler = Ffind_file_name_handler (name, Qexpand_file_name);
0bf2eed2 781 if (!NILP (handler))
2375c96a
CY
782 {
783 handled_name = call3 (handler, Qexpand_file_name,
784 name, default_directory);
785 if (STRINGP (handled_name))
786 return handled_name;
787 error ("Invalid handler in `file-name-handler-alist'");
788 }
789
58fc9587 790
3b7f6e60
EN
791 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
792 if (NILP (default_directory))
4b4deea2 793 default_directory = BVAR (current_buffer, directory);
82330e7f 794 if (! STRINGP (default_directory))
dd693537
EZ
795 {
796#ifdef DOS_NT
797 /* "/" is not considered a root directory on DOS_NT, so using "/"
798 here causes an infinite recursion in, e.g., the following:
799
800 (let (default-directory)
801 (expand-file-name "a"))
802
803 To avoid this, we set default_directory to the root of the
804 current drive. */
dd693537
EZ
805 default_directory = build_string (emacs_root_dir ());
806#else
807 default_directory = build_string ("/");
808#endif
809 }
58fc9587 810
3b7f6e60 811 if (!NILP (default_directory))
273e0829 812 {
3b7f6e60 813 handler = Ffind_file_name_handler (default_directory, Qexpand_file_name);
273e0829 814 if (!NILP (handler))
2375c96a
CY
815 {
816 handled_name = call3 (handler, Qexpand_file_name,
817 name, default_directory);
818 if (STRINGP (handled_name))
819 return handled_name;
820 error ("Invalid handler in `file-name-handler-alist'");
821 }
273e0829 822 }
0bf2eed2 823
5b5a2ea1 824 {
5976c3fe 825 char *o = SSDATA (default_directory);
5b5a2ea1
SM
826
827 /* Make sure DEFAULT_DIRECTORY is properly expanded.
828 It would be better to do this down below where we actually use
829 default_directory. Unfortunately, calling Fexpand_file_name recursively
830 could invoke GC, and the strings might be relocated. This would
831 be annoying because we have pointers into strings lying around
832 that would need adjusting, and people would add new pointers to
833 the code and forget to adjust them, resulting in intermittent bugs.
834 Putting this call here avoids all that crud.
835
836 The EQ test avoids infinite recursion. */
837 if (! NILP (default_directory) && !EQ (default_directory, name)
838 /* Save time in some common cases - as long as default_directory
839 is not relative, it can be canonicalized with name below (if it
840 is needed at all) without requiring it to be expanded now. */
01937013 841#ifdef DOS_NT
5b5a2ea1
SM
842 /* Detect MSDOS file names with drive specifiers. */
843 && ! (IS_DRIVE (o[0]) && IS_DEVICE_SEP (o[1])
844 && IS_DIRECTORY_SEP (o[2]))
199607e4 845#ifdef WINDOWSNT
5b5a2ea1
SM
846 /* Detect Windows file names in UNC format. */
847 && ! (IS_DIRECTORY_SEP (o[0]) && IS_DIRECTORY_SEP (o[1]))
01937013 848#endif
199607e4
RS
849#else /* not DOS_NT */
850 /* Detect Unix absolute file names (/... alone is not absolute on
851 DOS or Windows). */
5b5a2ea1 852 && ! (IS_DIRECTORY_SEP (o[0]))
199607e4 853#endif /* not DOS_NT */
5b5a2ea1
SM
854 )
855 {
856 struct gcpro gcpro1;
f14b1c68 857
5b5a2ea1
SM
858 GCPRO1 (name);
859 default_directory = Fexpand_file_name (default_directory, Qnil);
860 UNGCPRO;
861 }
862 }
2b046a72 863 multibyte = STRING_MULTIBYTE (name);
6d060996
KH
864 if (multibyte != STRING_MULTIBYTE (default_directory))
865 {
866 if (multibyte)
867 default_directory = string_to_multibyte (default_directory);
868 else
869 {
870 name = string_to_multibyte (name);
871 multibyte = 1;
872 }
873 }
874
e8d32c7e 875 /* Make a local copy of nm[] to protect it from GC in DECODE_FILE below. */
38182d90 876 nm = alloca (SBYTES (name) + 1);
5976c3fe 877 memcpy (nm, SSDATA (name), SBYTES (name) + 1);
199607e4 878
565f0b98 879#ifdef DOS_NT
f0f95d31
RS
880 /* Note if special escape prefix is present, but remove for now. */
881 if (nm[0] == '/' && nm[1] == ':')
882 {
883 is_escaped = 1;
884 nm += 2;
885 }
886
199607e4 887 /* Find and remove drive specifier if present; this makes nm absolute
f0f95d31
RS
888 even if the rest of the name appears to be relative. Only look for
889 drive specifier at the beginning. */
890 if (IS_DRIVE (nm[0]) && IS_DEVICE_SEP (nm[1]))
891 {
5976c3fe 892 drive = (unsigned char) nm[0];
f0f95d31
RS
893 nm += 2;
894 }
bb1ff1f4
GV
895
896#ifdef WINDOWSNT
897 /* If we see "c://somedir", we want to strip the first slash after the
898 colon when stripping the drive letter. Otherwise, this expands to
899 "//somedir". */
900 if (drive && IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
901 nm++;
4c3c22f3 902
e8d32c7e 903 /* Discard any previous drive specifier if nm is now in UNC format. */
199607e4
RS
904 if (IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
905 {
906 drive = 0;
907 }
5b5a2ea1
SM
908#endif /* WINDOWSNT */
909#endif /* DOS_NT */
199607e4 910
214378ec
GM
911 /* If nm is absolute, look for `/./' or `/../' or `//''sequences; if
912 none are found, we can probably return right away. We will avoid
913 allocating a new string if name is already fully expanded. */
570d7624 914 if (
5e570b75 915 IS_DIRECTORY_SEP (nm[0])
199607e4 916#ifdef MSDOS
f0f95d31 917 && drive && !is_escaped
199607e4
RS
918#endif
919#ifdef WINDOWSNT
f0f95d31 920 && (drive || IS_DIRECTORY_SEP (nm[1])) && !is_escaped
199607e4 921#endif
570d7624
JB
922 )
923 {
f14b1c68
JB
924 /* If it turns out that the filename we want to return is just a
925 suffix of FILENAME, we don't need to go through and edit
926 things; we just need to construct a new string using data
f75d7a91
PE
927 starting at the middle of FILENAME. If we set LOSE, that
928 means we've discovered that we can't do that cool trick. */
929 bool lose = 0;
5976c3fe 930 char *p = nm;
f14b1c68 931
570d7624
JB
932 while (*p)
933 {
199607e4 934 /* Since we know the name is absolute, we can assume that each
c77d647e
JB
935 element starts with a "/". */
936
c77d647e 937 /* "." and ".." are hairy. */
5e570b75 938 if (IS_DIRECTORY_SEP (p[0])
c77d647e 939 && p[1] == '.'
5e570b75 940 && (IS_DIRECTORY_SEP (p[2])
c77d647e 941 || p[2] == 0
5e570b75 942 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3])
c77d647e 943 || p[3] == 0))))
570d7624 944 lose = 1;
214378ec
GM
945 /* We want to replace multiple `/' in a row with a single
946 slash. */
947 else if (p > nm
948 && IS_DIRECTORY_SEP (p[0])
949 && IS_DIRECTORY_SEP (p[1]))
950 lose = 1;
570d7624
JB
951 p++;
952 }
953 if (!lose)
954 {
199607e4 955#ifdef DOS_NT
087fc47a
JB
956 /* Make sure directories are all separated with /, but
957 avoid allocation of a new string when not required. */
273ac8d1
EZ
958 if (multibyte)
959 {
960 Lisp_Object tem_name = make_specified_string (nm, -1, strlen (nm),
961 multibyte);
962
963 tem_name = ENCODE_FILE (tem_name);
964 dostounix_filename (SSDATA (tem_name));
965 tem_name = DECODE_FILE (tem_name);
966 memcpy (nm, SSDATA (tem_name), SBYTES (tem_name) + 1);
967 }
968 else
969 dostounix_filename (nm);
199607e4
RS
970#ifdef WINDOWSNT
971 if (IS_DIRECTORY_SEP (nm[1]))
972 {
42a5b22f 973 if (strcmp (nm, SSDATA (name)) != 0)
2b046a72 974 name = make_specified_string (nm, -1, strlen (nm), multibyte);
199607e4
RS
975 }
976 else
977#endif
e8d32c7e 978 /* Drive must be set, so this is okay. */
5976c3fe 979 if (strcmp (nm - 2, SSDATA (name)) != 0)
199607e4 980 {
3f817c73
KH
981 char temp[] = " :";
982
2b046a72 983 name = make_specified_string (nm, -1, p - nm, multibyte);
3f817c73
KH
984 temp[0] = DRIVE_LETTER (drive);
985 name = concat2 (build_string (temp), name);
199607e4
RS
986 }
987 return name;
988#else /* not DOS_NT */
42a5b22f 989 if (strcmp (nm, SSDATA (name)) == 0)
570d7624 990 return name;
2b046a72 991 return make_specified_string (nm, -1, strlen (nm), multibyte);
5e570b75 992#endif /* not DOS_NT */
570d7624
JB
993 }
994 }
995
199607e4
RS
996 /* At this point, nm might or might not be an absolute file name. We
997 need to expand ~ or ~user if present, otherwise prefix nm with
998 default_directory if nm is not absolute, and finally collapse /./
999 and /foo/../ sequences.
1000
1001 We set newdir to be the appropriate prefix if one is needed:
1002 - the relevant user directory if nm starts with ~ or ~user
1003 - the specified drive's working dir (DOS/NT only) if nm does not
1004 start with /
1005 - the value of default_directory.
1006
1007 Note that these prefixes are not guaranteed to be absolute (except
1008 for the working dir of a drive). Therefore, to ensure we always
1009 return an absolute name, if the final prefix is not absolute we
1010 append it to the current working directory. */
570d7624
JB
1011
1012 newdir = 0;
1013
1014 if (nm[0] == '~') /* prefix ~ */
c77d647e 1015 {
5e570b75 1016 if (IS_DIRECTORY_SEP (nm[1])
c77d647e
JB
1017 || nm[1] == 0) /* ~ by itself */
1018 {
6d557778
EZ
1019 Lisp_Object tem;
1020
5976c3fe
PE
1021 if (!(newdir = egetenv ("HOME")))
1022 newdir = "";
199607e4 1023 nm++;
e8d32c7e 1024 /* `egetenv' may return a unibyte string, which will bite us since
6d557778 1025 we expect the directory to be multibyte. */
9c06a1f3
EZ
1026 tem = build_string (newdir);
1027 if (!STRING_MULTIBYTE (tem))
1028 {
1029 hdir = DECODE_FILE (tem);
5976c3fe 1030 newdir = SSDATA (hdir);
9c06a1f3 1031 }
5e570b75 1032#ifdef DOS_NT
9a1dc3be 1033 collapse_newdir = 0;
4c3c22f3 1034#endif
c77d647e
JB
1035 }
1036 else /* ~user/filename */
1037 {
5976c3fe 1038 char *o, *p;
7c2fb837 1039 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p)); p++);
5b5a2ea1 1040 o = alloca (p - nm + 1);
72af86bd 1041 memcpy (o, nm, p - nm);
c77d647e
JB
1042 o [p - nm] = 0;
1043
4d7e6e51 1044 block_input ();
c77d647e 1045 pw = (struct passwd *) getpwnam (o + 1);
4d7e6e51 1046 unblock_input ();
c77d647e
JB
1047 if (pw)
1048 {
5976c3fe 1049 newdir = pw->pw_dir;
c77d647e 1050 nm = p;
199607e4 1051#ifdef DOS_NT
9a1dc3be 1052 collapse_newdir = 0;
199607e4 1053#endif
c77d647e 1054 }
e5d77022 1055
c77d647e
JB
1056 /* If we don't find a user of that name, leave the name
1057 unchanged; don't move nm forward to p. */
1058 }
1059 }
570d7624 1060
5e570b75 1061#ifdef DOS_NT
199607e4
RS
1062 /* On DOS and Windows, nm is absolute if a drive name was specified;
1063 use the drive's current directory as the prefix if needed. */
1064 if (!newdir && drive)
1065 {
e8d32c7e 1066 /* Get default directory if needed to make nm absolute. */
2893f146 1067 char *adir = NULL;
199607e4
RS
1068 if (!IS_DIRECTORY_SEP (nm[0]))
1069 {
2893f146 1070 adir = alloca (MAXPATHLEN + 1);
620f13b0 1071 if (!getdefdir (c_toupper (drive) - 'A' + 1, adir))
2893f146 1072 adir = NULL;
199607e4 1073 }
2893f146 1074 if (!adir)
199607e4 1075 {
e8d32c7e 1076 /* Either nm starts with /, or drive isn't mounted. */
2893f146
PE
1077 adir = alloca (4);
1078 adir[0] = DRIVE_LETTER (drive);
1079 adir[1] = ':';
1080 adir[2] = '/';
1081 adir[3] = 0;
199607e4 1082 }
2893f146 1083 newdir = adir;
199607e4 1084 }
5e570b75 1085#endif /* DOS_NT */
199607e4
RS
1086
1087 /* Finally, if no prefix has been specified and nm is not absolute,
e8d32c7e 1088 then it must be expanded relative to default_directory. */
199607e4 1089
34097368 1090 if (1
199607e4 1091#ifndef DOS_NT
e8d32c7e 1092 /* /... alone is not absolute on DOS and Windows. */
34097368 1093 && !IS_DIRECTORY_SEP (nm[0])
199607e4
RS
1094#endif
1095#ifdef WINDOWSNT
34097368 1096 && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
199607e4 1097#endif
570d7624
JB
1098 && !newdir)
1099 {
5976c3fe 1100 newdir = SSDATA (default_directory);
f0f95d31
RS
1101#ifdef DOS_NT
1102 /* Note if special escape prefix is present, but remove for now. */
1103 if (newdir[0] == '/' && newdir[1] == ':')
1104 {
1105 is_escaped = 1;
1106 newdir += 2;
1107 }
1108#endif
570d7624
JB
1109 }
1110
5e570b75 1111#ifdef DOS_NT
199607e4
RS
1112 if (newdir)
1113 {
e8d32c7e 1114 /* First ensure newdir is an absolute name. */
199607e4
RS
1115 if (
1116 /* Detect MSDOS file names with drive specifiers. */
1117 ! (IS_DRIVE (newdir[0])
1118 && IS_DEVICE_SEP (newdir[1]) && IS_DIRECTORY_SEP (newdir[2]))
1119#ifdef WINDOWSNT
1120 /* Detect Windows file names in UNC format. */
1121 && ! (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1122#endif
1123 )
1124 {
1125 /* Effectively, let newdir be (expand-file-name newdir cwd).
1126 Because of the admonition against calling expand-file-name
1127 when we have pointers into lisp strings, we accomplish this
1128 indirectly by prepending newdir to nm if necessary, and using
e8d32c7e 1129 cwd (or the wd of newdir's drive) as the new newdir. */
2893f146 1130 char *adir;
c70a4df6 1131 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
199607e4 1132 {
5976c3fe 1133 drive = (unsigned char) newdir[0];
199607e4
RS
1134 newdir += 2;
1135 }
1136 if (!IS_DIRECTORY_SEP (nm[0]))
1137 {
c293e30c
DA
1138 ptrdiff_t newlen = strlen (newdir);
1139 char *tmp = alloca (newlen + strlen (nm) + 2);
1140 file_name_as_directory (tmp, newdir, newlen);
199607e4
RS
1141 strcat (tmp, nm);
1142 nm = tmp;
1143 }
2893f146 1144 adir = alloca (MAXPATHLEN + 1);
199607e4
RS
1145 if (drive)
1146 {
620f13b0 1147 if (!getdefdir (c_toupper (drive) - 'A' + 1, adir))
199607e4
RS
1148 newdir = "/";
1149 }
1150 else
9239d970 1151 getcwd (adir, MAXPATHLEN + 1);
2893f146 1152 newdir = adir;
199607e4
RS
1153 }
1154
e8d32c7e 1155 /* Strip off drive name from prefix, if present. */
c70a4df6 1156 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
199607e4
RS
1157 {
1158 drive = newdir[0];
1159 newdir += 2;
1160 }
1161
1162 /* Keep only a prefix from newdir if nm starts with slash
82330e7f 1163 (//server/share for UNC, nothing otherwise). */
9a1dc3be 1164 if (IS_DIRECTORY_SEP (nm[0]) && collapse_newdir)
199607e4
RS
1165 {
1166#ifdef WINDOWSNT
1167 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1168 {
2893f146
PE
1169 char *adir = strcpy (alloca (strlen (newdir) + 1), newdir);
1170 char *p = adir + 2;
199607e4
RS
1171 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1172 p++;
1173 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1174 *p = 0;
2893f146 1175 newdir = adir;
199607e4
RS
1176 }
1177 else
1178#endif
1179 newdir = "";
1180 }
1181 }
5e570b75 1182#endif /* DOS_NT */
199607e4
RS
1183
1184 if (newdir)
bfb61299 1185 {
57676091 1186 /* Get rid of any slash at the end of newdir, unless newdir is
f0f95d31 1187 just / or // (an incomplete UNC name). */
199607e4 1188 length = strlen (newdir);
c293e30c 1189 tlen = length + 1;
f0f95d31 1190 if (length > 1 && IS_DIRECTORY_SEP (newdir[length - 1])
57676091
RS
1191#ifdef WINDOWSNT
1192 && !(length == 2 && IS_DIRECTORY_SEP (newdir[0]))
1193#endif
1194 )
bfb61299 1195 {
38182d90 1196 char *temp = alloca (length);
72af86bd 1197 memcpy (temp, newdir, length - 1);
bfb61299 1198 temp[length - 1] = 0;
c293e30c 1199 length--;
bfb61299
JB
1200 newdir = temp;
1201 }
bfb61299
JB
1202 }
1203 else
c293e30c
DA
1204 {
1205 length = 0;
1206 tlen = 0;
1207 }
570d7624 1208
e8d32c7e 1209 /* Now concatenate the directory and name to new space in the stack frame. */
bfb61299 1210 tlen += strlen (nm) + 1;
5e570b75 1211#ifdef DOS_NT
f0f95d31
RS
1212 /* Reserve space for drive specifier and escape prefix, since either
1213 or both may need to be inserted. (The Microsoft x86 compiler
5e570b75 1214 produces incorrect code if the following two lines are combined.) */
38182d90 1215 target = alloca (tlen + 4);
f0f95d31 1216 target += 4;
5e570b75 1217#else /* not DOS_NT */
38182d90 1218 target = alloca (tlen);
5e570b75 1219#endif /* not DOS_NT */
570d7624
JB
1220 *target = 0;
1221
1222 if (newdir)
1223 {
5e570b75 1224 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0]))
f5321b5c 1225 {
3ea2d8b2 1226#ifdef DOS_NT
f5321b5c
RS
1227 /* If newdir is effectively "C:/", then the drive letter will have
1228 been stripped and newdir will be "/". Concatenating with an
1229 absolute directory in nm produces "//", which will then be
1230 incorrectly treated as a network share. Ignore newdir in
1231 this case (keeping the drive letter). */
efdc16c9 1232 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0])
f5321b5c
RS
1233 && newdir[1] == '\0'))
1234#endif
1235 strcpy (target, newdir);
1236 }
570d7624 1237 else
c293e30c 1238 file_name_as_directory (target, newdir, length);
570d7624
JB
1239 }
1240
1241 strcat (target, nm);
199607e4 1242
214378ec
GM
1243 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they
1244 appear. */
5b5a2ea1 1245 {
5976c3fe
PE
1246 char *p = target;
1247 char *o = target;
570d7624 1248
5b5a2ea1
SM
1249 while (*p)
1250 {
5b5a2ea1
SM
1251 if (!IS_DIRECTORY_SEP (*p))
1252 {
1253 *o++ = *p++;
1254 }
1255 else if (p[1] == '.'
1256 && (IS_DIRECTORY_SEP (p[2])
1257 || p[2] == 0))
1258 {
1259 /* If "/." is the entire filename, keep the "/". Otherwise,
1260 just delete the whole "/.". */
1261 if (o == target && p[2] == '\0')
1262 *o++ = *p;
1263 p += 2;
1264 }
1265 else if (p[1] == '.' && p[2] == '.'
1266 /* `/../' is the "superroot" on certain file systems.
1267 Turned off on DOS_NT systems because they have no
1268 "superroot" and because this causes us to produce
1269 file names like "d:/../foo" which fail file-related
1270 functions of the underlying OS. (To reproduce, try a
1271 long series of "../../" in default_directory, longer
1272 than the number of levels from the root.) */
aa4060b9 1273#ifndef DOS_NT
5b5a2ea1 1274 && o != target
aa4060b9 1275#endif
5b5a2ea1
SM
1276 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0))
1277 {
972ed246 1278#ifdef WINDOWSNT
5976c3fe 1279 char *prev_o = o;
972ed246 1280#endif
5b5a2ea1
SM
1281 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o))
1282 ;
972ed246
JR
1283#ifdef WINDOWSNT
1284 /* Don't go below server level in UNC filenames. */
1285 if (o == target + 1 && IS_DIRECTORY_SEP (*o)
1286 && IS_DIRECTORY_SEP (*target))
1287 o = prev_o;
1288 else
1289#endif
5b5a2ea1
SM
1290 /* Keep initial / only if this is the whole name. */
1291 if (o == target && IS_ANY_SEP (*o) && p[3] == 0)
1292 ++o;
1293 p += 3;
1294 }
1295 else if (p > target && IS_DIRECTORY_SEP (p[1]))
1296 /* Collapse multiple `/' in a row. */
1297 p++;
1298 else
1299 {
1300 *o++ = *p++;
1301 }
5b5a2ea1 1302 }
570d7624 1303
5e570b75 1304#ifdef DOS_NT
e8d32c7e 1305 /* At last, set drive name. */
5e570b75 1306#ifdef WINDOWSNT
5b5a2ea1
SM
1307 /* Except for network file name. */
1308 if (!(IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1])))
5e570b75 1309#endif /* WINDOWSNT */
5b5a2ea1 1310 {
1088b922 1311 if (!drive) emacs_abort ();
5b5a2ea1
SM
1312 target -= 2;
1313 target[0] = DRIVE_LETTER (drive);
1314 target[1] = ':';
1315 }
1316 /* Reinsert the escape prefix if required. */
1317 if (is_escaped)
1318 {
1319 target -= 2;
1320 target[0] = '/';
1321 target[1] = ':';
1322 }
5b5a2ea1 1323 result = make_specified_string (target, -1, o - target, multibyte);
273ac8d1
EZ
1324 result = ENCODE_FILE (result);
1325 dostounix_filename (SSDATA (result));
1326 result = DECODE_FILE (result);
1327#else /* !DOS_NT */
1328 result = make_specified_string (target, -1, o - target, multibyte);
1329#endif /* !DOS_NT */
5b5a2ea1 1330 }
beb402de
KG
1331
1332 /* Again look to see if the file name has special constructs in it
1333 and perhaps call the corresponding file handler. This is needed
1334 for filenames such as "/foo/../user@host:/bar/../baz". Expanding
1335 the ".." component gives us "/user@host:/bar/../baz" which needs
e8d32c7e 1336 to be expanded again. */
beb402de
KG
1337 handler = Ffind_file_name_handler (result, Qexpand_file_name);
1338 if (!NILP (handler))
2375c96a
CY
1339 {
1340 handled_name = call3 (handler, Qexpand_file_name,
1341 result, default_directory);
1342 if (STRINGP (handled_name))
1343 return handled_name;
1344 error ("Invalid handler in `file-name-handler-alist'");
1345 }
beb402de
KG
1346
1347 return result;
570d7624 1348}
5e570b75 1349
4887597a
EZ
1350#if 0
1351/* PLEASE DO NOT DELETE THIS COMMENTED-OUT VERSION!
1352 This is the old version of expand-file-name, before it was thoroughly
1353 rewritten for Emacs 10.31. We leave this version here commented-out,
1354 because the code is very complex and likely to have subtle bugs. If
1355 bugs _are_ found, it might be of interest to look at the old code and
1356 see what did it do in the relevant situation.
1357
30f50381
GM
1358 Don't remove this code: it's true that it will be accessible
1359 from the repository, but a few years from deletion, people will
1360 forget it is there. */
4887597a
EZ
1361
1362/* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1363DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
1364 "Convert FILENAME to absolute, and canonicalize it.\n\
1365Second arg DEFAULT is directory to start with if FILENAME is relative\n\
c70a4df6 1366\(does not start with slash); if DEFAULT is nil or missing,\n\
4887597a
EZ
1367the current buffer's value of default-directory is used.\n\
1368Filenames containing `.' or `..' as components are simplified;\n\
1369initial `~/' expands to your home directory.\n\
1370See also the function `substitute-in-file-name'.")
1371 (name, defalt)
1372 Lisp_Object name, defalt;
1373{
1374 unsigned char *nm;
1375
1376 register unsigned char *newdir, *p, *o;
93f4cf88 1377 ptrdiff_t tlen;
4887597a
EZ
1378 unsigned char *target;
1379 struct passwd *pw;
4887597a 1380
b7826503 1381 CHECK_STRING (name);
d5db4077 1382 nm = SDATA (name);
4887597a
EZ
1383
1384 /* If nm is absolute, flush ...// and detect /./ and /../.
1385 If no /./ or /../ we can return right away. */
7c2fb837 1386 if (nm[0] == '/')
4887597a 1387 {
f75d7a91 1388 bool lose = 0;
4887597a 1389 p = nm;
4887597a
EZ
1390 while (*p)
1391 {
ce2fe65a 1392 if (p[0] == '/' && p[1] == '/')
4887597a
EZ
1393 nm = p + 1;
1394 if (p[0] == '/' && p[1] == '~')
1395 nm = p + 1, lose = 1;
1396 if (p[0] == '/' && p[1] == '.'
1397 && (p[2] == '/' || p[2] == 0
1398 || (p[2] == '.' && (p[3] == '/' || p[3] == 0))))
1399 lose = 1;
4887597a
EZ
1400 p++;
1401 }
1402 if (!lose)
1403 {
d5db4077 1404 if (nm == SDATA (name))
4887597a
EZ
1405 return name;
1406 return build_string (nm);
1407 }
1408 }
1409
e8d32c7e 1410 /* Now determine directory to start with and put it in NEWDIR. */
4887597a
EZ
1411
1412 newdir = 0;
1413
1414 if (nm[0] == '~') /* prefix ~ */
7c2fb837 1415 if (nm[1] == '/' || nm[1] == 0)/* ~/filename */
4887597a
EZ
1416 {
1417 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1418 newdir = (unsigned char *) "";
1419 nm++;
4887597a
EZ
1420 }
1421 else /* ~user/filename */
1422 {
e8d32c7e 1423 /* Get past ~ to user. */
4887597a 1424 unsigned char *user = nm + 1;
e8d32c7e 1425 /* Find end of name. */
8966b757 1426 unsigned char *ptr = (unsigned char *) strchr (user, '/');
93f4cf88 1427 ptrdiff_t len = ptr ? ptr - user : strlen (user);
e8d32c7e 1428 /* Copy the user name into temp storage. */
38182d90 1429 o = alloca (len + 1);
72af86bd 1430 memcpy (o, user, len);
4887597a
EZ
1431 o[len] = 0;
1432
e8d32c7e 1433 /* Look up the user name. */
4d7e6e51 1434 block_input ();
4887597a 1435 pw = (struct passwd *) getpwnam (o + 1);
4d7e6e51 1436 unblock_input ();
4887597a
EZ
1437 if (!pw)
1438 error ("\"%s\" isn't a registered user", o + 1);
1439
1440 newdir = (unsigned char *) pw->pw_dir;
1441
1442 /* Discard the user name from NM. */
1443 nm += len;
1444 }
1445
7c2fb837 1446 if (nm[0] != '/' && !newdir)
4887597a
EZ
1447 {
1448 if (NILP (defalt))
1449 defalt = current_buffer->directory;
b7826503 1450 CHECK_STRING (defalt);
d5db4077 1451 newdir = SDATA (defalt);
4887597a
EZ
1452 }
1453
e8d32c7e 1454 /* Now concatenate the directory and name to new space in the stack frame. */
4887597a
EZ
1455
1456 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1;
38182d90 1457 target = alloca (tlen);
4887597a
EZ
1458 *target = 0;
1459
1460 if (newdir)
1461 {
4887597a
EZ
1462 if (nm[0] == 0 || nm[0] == '/')
1463 strcpy (target, newdir);
1464 else
4887597a
EZ
1465 file_name_as_directory (target, newdir);
1466 }
1467
1468 strcat (target, nm);
4887597a 1469
e8d32c7e 1470 /* Now canonicalize by removing /. and /foo/.. if they appear. */
4887597a
EZ
1471
1472 p = target;
1473 o = target;
1474
1475 while (*p)
1476 {
4887597a
EZ
1477 if (*p != '/')
1478 {
1479 *o++ = *p++;
1480 }
1481 else if (!strncmp (p, "//", 2)
4887597a
EZ
1482 )
1483 {
1484 o = target;
1485 p++;
1486 }
994a7262
RS
1487 else if (p[0] == '/' && p[1] == '.'
1488 && (p[2] == '/' || p[2] == 0))
4887597a
EZ
1489 p += 2;
1490 else if (!strncmp (p, "/..", 3)
1491 /* `/../' is the "superroot" on certain file systems. */
1492 && o != target
1493 && (p[3] == '/' || p[3] == 0))
1494 {
1495 while (o != target && *--o != '/')
1496 ;
4887597a
EZ
1497 if (o == target && *o == '/')
1498 ++o;
1499 p += 3;
1500 }
1501 else
1502 {
1503 *o++ = *p++;
1504 }
4887597a
EZ
1505 }
1506
1507 return make_string (target, o - target);
1508}
1509#endif
570d7624 1510\f
c70a4df6 1511/* If /~ or // appears, discard everything through first slash. */
f75d7a91 1512static bool
5976c3fe 1513file_name_absolute_p (const char *filename)
c70a4df6
SM
1514{
1515 return
1516 (IS_DIRECTORY_SEP (*filename) || *filename == '~'
c70a4df6
SM
1517#ifdef DOS_NT
1518 || (IS_DRIVE (*filename) && IS_DEVICE_SEP (filename[1])
1519 && IS_DIRECTORY_SEP (filename[2]))
1520#endif
1521 );
1522}
1523
5976c3fe
PE
1524static char *
1525search_embedded_absfilename (char *nm, char *endp)
c70a4df6 1526{
5976c3fe 1527 char *p, *s;
c70a4df6
SM
1528
1529 for (p = nm + 1; p < endp; p++)
1530 {
ce2fe65a 1531 if (IS_DIRECTORY_SEP (p[-1])
c70a4df6 1532 && file_name_absolute_p (p)
5e617bc2 1533#if defined (WINDOWSNT) || defined (CYGWIN)
c70a4df6
SM
1534 /* // at start of file name is meaningful in Apollo,
1535 WindowsNT and Cygwin systems. */
f34574c6 1536 && !(IS_DIRECTORY_SEP (p[0]) && p - 1 == nm)
e39a993c 1537#endif /* not (WINDOWSNT || CYGWIN) */
ce2fe65a 1538 )
c70a4df6 1539 {
ce2fe65a 1540 for (s = p; *s && !IS_DIRECTORY_SEP (*s); s++);
e8d32c7e 1541 if (p[0] == '~' && s > p + 1) /* We've got "/~something/". */
c70a4df6 1542 {
5976c3fe 1543 char *o = alloca (s - p + 1);
c70a4df6 1544 struct passwd *pw;
72af86bd 1545 memcpy (o, p, s - p);
c70a4df6
SM
1546 o [s - p] = 0;
1547
1548 /* If we have ~user and `user' exists, discard
1549 everything up to ~. But if `user' does not exist, leave
1550 ~user alone, it might be a literal file name. */
4d7e6e51 1551 block_input ();
67c08d6c 1552 pw = getpwnam (o + 1);
4d7e6e51 1553 unblock_input ();
67c08d6c 1554 if (pw)
c70a4df6 1555 return p;
c70a4df6
SM
1556 }
1557 else
1558 return p;
1559 }
1560 }
1561 return NULL;
1562}
1563
a7ca3326 1564DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
8c1a1077
PJ
1565 Ssubstitute_in_file_name, 1, 1, 0,
1566 doc: /* Substitute environment variables referred to in FILENAME.
1567`$FOO' where FOO is an environment variable name means to substitute
1568the value of that variable. The variable name should be terminated
1569with a character not a letter, digit or underscore; otherwise, enclose
1570the entire variable name in braces.
c68845e0
GM
1571
1572If `/~' appears, all of FILENAME through that `/' is discarded.
1573If `//' appears, everything up to and including the first of
1574those `/' is discarded. */)
5842a27b 1575 (Lisp_Object filename)
570d7624 1576{
f75d7a91 1577 char *nm, *s, *p, *o, *x, *endp;
5976c3fe 1578 char *target = NULL;
570d7624 1579 int total = 0;
f75d7a91 1580 bool substituted = 0;
fce31d69 1581 bool multibyte;
5976c3fe 1582 char *xnm;
8ce069f5 1583 Lisp_Object handler;
570d7624 1584
b7826503 1585 CHECK_STRING (filename);
570d7624 1586
58aec0d6
JR
1587 multibyte = STRING_MULTIBYTE (filename);
1588
8ce069f5
RS
1589 /* If the file name has special constructs in it,
1590 call the corresponding file handler. */
3b7f6e60 1591 handler = Ffind_file_name_handler (filename, Qsubstitute_in_file_name);
8ce069f5 1592 if (!NILP (handler))
2375c96a
CY
1593 {
1594 Lisp_Object handled_name = call2 (handler, Qsubstitute_in_file_name,
1595 filename);
1596 if (STRINGP (handled_name))
1597 return handled_name;
1598 error ("Invalid handler in `file-name-handler-alist'");
1599 }
8ce069f5 1600
58aec0d6
JR
1601 /* Always work on a copy of the string, in case GC happens during
1602 decode of environment variables, causing the original Lisp_String
1603 data to be relocated. */
38182d90 1604 nm = alloca (SBYTES (filename) + 1);
72af86bd 1605 memcpy (nm, SDATA (filename), SBYTES (filename) + 1);
0f3f018c 1606
58aec0d6 1607#ifdef DOS_NT
273ac8d1
EZ
1608 {
1609 Lisp_Object encoded_filename = ENCODE_FILE (filename);
1610 Lisp_Object tem_fn;
1611
1612 dostounix_filename (SDATA (encoded_filename));
1613 tem_fn = DECODE_FILE (encoded_filename);
1614 nm = alloca (SBYTES (tem_fn) + 1);
1615 memcpy (nm, SDATA (tem_fn), SBYTES (tem_fn) + 1);
1616 substituted = (memcmp (nm, SDATA (filename), SBYTES (filename)) != 0);
1617 if (substituted)
1618 filename = tem_fn;
1619 }
a5a1cc06 1620#endif
d5db4077 1621 endp = nm + SBYTES (filename);
570d7624 1622
82330e7f 1623 /* If /~ or // appears, discard everything through first slash. */
c70a4df6
SM
1624 p = search_embedded_absfilename (nm, endp);
1625 if (p)
1626 /* Start over with the new string, so we check the file-name-handler
1627 again. Important with filenames like "/home/foo//:/hello///there"
ee7683eb 1628 which would substitute to "/:/hello///there" rather than "/there". */
c70a4df6 1629 return Fsubstitute_in_file_name
58aec0d6 1630 (make_specified_string (p, -1, endp - p, multibyte));
570d7624
JB
1631
1632 /* See if any variables are substituted into the string
e8d32c7e 1633 and find the total length of their values in `total'. */
570d7624
JB
1634
1635 for (p = nm; p != endp;)
1636 if (*p != '$')
1637 p++;
1638 else
1639 {
1640 p++;
1641 if (p == endp)
1642 goto badsubst;
1643 else if (*p == '$')
1644 {
e8d32c7e 1645 /* "$$" means a single "$". */
570d7624
JB
1646 p++;
1647 total -= 1;
1648 substituted = 1;
1649 continue;
1650 }
1651 else if (*p == '{')
1652 {
1653 o = ++p;
1654 while (p != endp && *p != '}') p++;
1655 if (*p != '}') goto missingclose;
1656 s = p;
1657 }
1658 else
1659 {
1660 o = p;
620f13b0 1661 while (p != endp && (c_isalnum (*p) || *p == '_')) p++;
570d7624
JB
1662 s = p;
1663 }
1664
e8d32c7e 1665 /* Copy out the variable name. */
38182d90 1666 target = alloca (s - o + 1);
e99a530f 1667 memcpy (target, o, s - o);
570d7624 1668 target[s - o] = 0;
5e570b75 1669#ifdef DOS_NT
4c3c22f3 1670 strupr (target); /* $home == $HOME etc. */
5e570b75 1671#endif /* DOS_NT */
570d7624 1672
e8d32c7e 1673 /* Get variable value. */
5976c3fe 1674 o = egetenv (target);
8d2ced53 1675 if (o)
58aec0d6
JR
1676 {
1677 /* Don't try to guess a maximum length - UTF8 can use up to
1678 four bytes per character. This code is unlikely to run
1679 in a situation that requires performance, so decoding the
1680 env variables twice should be acceptable. Note that
1681 decoding may cause a garbage collect. */
1682 Lisp_Object orig, decoded;
d7ea76b4 1683 orig = build_unibyte_string (o);
58aec0d6
JR
1684 decoded = DECODE_FILE (orig);
1685 total += SBYTES (decoded);
8d2ced53
SM
1686 substituted = 1;
1687 }
1688 else if (*p == '}')
1689 goto badvar;
570d7624
JB
1690 }
1691
1692 if (!substituted)
3b7f6e60 1693 return filename;
570d7624 1694
e8d32c7e
SM
1695 /* If substitution required, recopy the string and do it. */
1696 /* Make space in stack frame for the new copy. */
38182d90 1697 xnm = alloca (SBYTES (filename) + total + 1);
570d7624
JB
1698 x = xnm;
1699
e8d32c7e 1700 /* Copy the rest of the name through, replacing $ constructs with values. */
570d7624
JB
1701 for (p = nm; *p;)
1702 if (*p != '$')
1703 *x++ = *p++;
1704 else
1705 {
1706 p++;
1707 if (p == endp)
1708 goto badsubst;
1709 else if (*p == '$')
1710 {
1711 *x++ = *p++;
1712 continue;
1713 }
1714 else if (*p == '{')
1715 {
1716 o = ++p;
1717 while (p != endp && *p != '}') p++;
1718 if (*p != '}') goto missingclose;
1719 s = p++;
1720 }
1721 else
1722 {
1723 o = p;
620f13b0 1724 while (p != endp && (c_isalnum (*p) || *p == '_')) p++;
570d7624
JB
1725 s = p;
1726 }
1727
e8d32c7e 1728 /* Copy out the variable name. */
38182d90 1729 target = alloca (s - o + 1);
e99a530f 1730 memcpy (target, o, s - o);
570d7624 1731 target[s - o] = 0;
5e570b75 1732#ifdef DOS_NT
4c3c22f3 1733 strupr (target); /* $home == $HOME etc. */
5e570b75 1734#endif /* DOS_NT */
570d7624 1735
e8d32c7e 1736 /* Get variable value. */
5976c3fe 1737 o = egetenv (target);
570d7624 1738 if (!o)
8d2ced53
SM
1739 {
1740 *x++ = '$';
1741 strcpy (x, target); x+= strlen (target);
1742 }
60d67b83
RS
1743 else
1744 {
58aec0d6 1745 Lisp_Object orig, decoded;
93f4cf88 1746 ptrdiff_t orig_length, decoded_length;
58aec0d6
JR
1747 orig_length = strlen (o);
1748 orig = make_unibyte_string (o, orig_length);
1749 decoded = DECODE_FILE (orig);
1750 decoded_length = SBYTES (decoded);
e99a530f 1751 memcpy (x, SDATA (decoded), decoded_length);
58aec0d6
JR
1752 x += decoded_length;
1753
1754 /* If environment variable needed decoding, return value
1755 needs to be multibyte. */
1756 if (decoded_length != orig_length
e99a530f 1757 || memcmp (SDATA (decoded), o, orig_length))
58aec0d6 1758 multibyte = 1;
60d67b83 1759 }
570d7624
JB
1760 }
1761
1762 *x = 0;
1763
82330e7f 1764 /* If /~ or // appears, discard everything through first slash. */
ce2fe65a 1765 while ((p = search_embedded_absfilename (xnm, x)) != NULL)
c70a4df6
SM
1766 /* This time we do not start over because we've already expanded envvars
1767 and replaced $$ with $. Maybe we should start over as well, but we'd
1768 need to quote some $ to $$ first. */
1769 xnm = p;
570d7624 1770
58aec0d6 1771 return make_specified_string (xnm, -1, x - xnm, multibyte);
570d7624
JB
1772
1773 badsubst:
1774 error ("Bad format environment-variable substitution");
1775 missingclose:
1776 error ("Missing \"}\" in environment-variable substitution");
1777 badvar:
1778 error ("Substituting nonexistent environment variable \"%s\"", target);
1779
1780 /* NOTREACHED */
6bbd7a29 1781 return Qnil;
570d7624
JB
1782}
1783\f
067ffa38 1784/* A slightly faster and more convenient way to get
298b760e 1785 (directory-file-name (expand-file-name FOO)). */
067ffa38 1786
570d7624 1787Lisp_Object
971de7fb 1788expand_and_dir_to_file (Lisp_Object filename, Lisp_Object defdir)
570d7624 1789{
199607e4 1790 register Lisp_Object absname;
570d7624 1791
199607e4 1792 absname = Fexpand_file_name (filename, defdir);
7c2fb837 1793
199607e4 1794 /* Remove final slash, if any (unless this is the root dir).
570d7624 1795 stat behaves differently depending! */
d5db4077
KR
1796 if (SCHARS (absname) > 1
1797 && IS_DIRECTORY_SEP (SREF (absname, SBYTES (absname) - 1))
e8d32c7e 1798 && !IS_DEVICE_SEP (SREF (absname, SBYTES (absname) - 2)))
ddc61f46 1799 /* We cannot take shortcuts; they might be wrong for magic file names. */
199607e4 1800 absname = Fdirectory_file_name (absname);
199607e4 1801 return absname;
570d7624
JB
1802}
1803\f
3ed15d97 1804/* Signal an error if the file ABSNAME already exists.
f75d7a91 1805 If INTERACTIVE, ask the user whether to proceed,
3ed15d97
RS
1806 and bypass the error if the user says to go ahead.
1807 QUERYSTRING is a name for the action that is being considered
1808 to alter the file.
de1d0127 1809
3ed15d97 1810 *STATPTR is used to store the stat information if the file exists.
de1d0127 1811 If the file does not exist, STATPTR->st_mode is set to 0.
b8b29dc9
RS
1812 If STATPTR is null, we don't store into it.
1813
f75d7a91 1814 If QUICK, ask for y or n, not yes or no. */
3ed15d97 1815
f14b7e14 1816static void
5976c3fe 1817barf_or_query_if_file_exists (Lisp_Object absname, const char *querystring,
f75d7a91
PE
1818 bool interactive, struct stat *statptr,
1819 bool quick)
570d7624 1820{
f75d7a91 1821 Lisp_Object tem, encoded_filename;
4018b5ef 1822 struct stat statbuf;
570d7624
JB
1823 struct gcpro gcpro1;
1824
643c73b9
RS
1825 encoded_filename = ENCODE_FILE (absname);
1826
e8d32c7e 1827 /* `stat' is a good way to tell whether the file exists,
4018b5ef 1828 regardless of what access permissions it has. */
42a5b22f 1829 if (lstat (SSDATA (encoded_filename), &statbuf) >= 0)
570d7624 1830 {
6e9b2be9 1831 if (S_ISDIR (statbuf.st_mode))
c4f2d8d4 1832 xsignal2 (Qfile_error,
ad637907 1833 build_string ("File is a directory"), absname);
c4f2d8d4 1834
570d7624 1835 if (! interactive)
24b1ddad
KS
1836 xsignal2 (Qfile_already_exists,
1837 build_string ("File already exists"), absname);
570d7624 1838 GCPRO1 (absname);
67e8e2b8
RS
1839 tem = format2 ("File %s already exists; %s anyway? ",
1840 absname, build_string (querystring));
b8b29dc9 1841 if (quick)
5616cc54 1842 tem = call1 (intern ("y-or-n-p"), tem);
b8b29dc9
RS
1843 else
1844 tem = do_yes_or_no_p (tem);
570d7624 1845 UNGCPRO;
265a9e55 1846 if (NILP (tem))
24b1ddad
KS
1847 xsignal2 (Qfile_already_exists,
1848 build_string ("File already exists"), absname);
3ed15d97
RS
1849 if (statptr)
1850 *statptr = statbuf;
1851 }
1852 else
1853 {
1854 if (statptr)
1855 statptr->st_mode = 0;
570d7624
JB
1856 }
1857 return;
1858}
1859
574c05e2 1860DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 6,
7c0f6118 1861 "fCopy file: \nGCopy %s to file: \np\nP",
8c1a1077
PJ
1862 doc: /* Copy FILE to NEWNAME. Both args must be strings.
1863If NEWNAME names a directory, copy FILE there.
795c20df
CY
1864
1865This function always sets the file modes of the output file to match
1866the input file.
1867
1868The optional third argument OK-IF-ALREADY-EXISTS specifies what to do
1869if file NEWNAME already exists. If OK-IF-ALREADY-EXISTS is nil, we
1870signal a `file-already-exists' error without overwriting. If
1871OK-IF-ALREADY-EXISTS is a number, we request confirmation from the user
1872about overwriting; this is what happens in interactive use with M-x.
1873Any other value for OK-IF-ALREADY-EXISTS means to overwrite the
1874existing file.
c50f15d0 1875
7f08b80e 1876Fourth arg KEEP-TIME non-nil means give the output file the same
8c1a1077 1877last-modified time as the old one. (This works on only some systems.)
c50f15d0 1878
7fce7dfe
EZ
1879A prefix arg makes KEEP-TIME non-nil.
1880
586702ce 1881If PRESERVE-UID-GID is non-nil, we try to transfer the
574c05e2
KK
1882uid and gid of FILE to NEWNAME.
1883
f5783df3 1884If PRESERVE-SELINUX-CONTEXT is non-nil and SELinux is enabled
574c05e2 1885on the system, we copy the SELinux context of FILE to NEWNAME. */)
5842a27b 1886 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists, Lisp_Object keep_time, Lisp_Object preserve_uid_gid, Lisp_Object preserve_selinux_context)
570d7624 1887{
8a2cbd72 1888 int ifd, ofd;
d311d28c 1889 int n;
570d7624 1890 char buf[16 * 1024];
3ed15d97 1891 struct stat st, out_st;
32f4334d 1892 Lisp_Object handler;
b1d1b865 1893 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
d311d28c 1894 ptrdiff_t count = SPECPDL_INDEX ();
f75d7a91 1895 bool input_file_statable_p;
b1d1b865 1896 Lisp_Object encoded_file, encoded_newname;
574c05e2
KK
1897#if HAVE_LIBSELINUX
1898 security_context_t con;
f75d7a91 1899 int conlength = 0;
574c05e2 1900#endif
570d7624 1901
b1d1b865
RS
1902 encoded_file = encoded_newname = Qnil;
1903 GCPRO4 (file, newname, encoded_file, encoded_newname);
b7826503
PJ
1904 CHECK_STRING (file);
1905 CHECK_STRING (newname);
b1d1b865 1906
a9d14e54 1907 if (!NILP (Ffile_directory_p (newname)))
6b61353c 1908 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
a9d14e54
GM
1909 else
1910 newname = Fexpand_file_name (newname, Qnil);
1911
3b7f6e60 1912 file = Fexpand_file_name (file, Qnil);
32f4334d 1913
0bf2eed2 1914 /* If the input file name has special constructs in it,
32f4334d 1915 call the corresponding file handler. */
3b7f6e60 1916 handler = Ffind_file_name_handler (file, Qcopy_file);
0bf2eed2 1917 /* Likewise for output file name. */
51cf6d37 1918 if (NILP (handler))
49307295 1919 handler = Ffind_file_name_handler (newname, Qcopy_file);
32f4334d 1920 if (!NILP (handler))
574c05e2
KK
1921 RETURN_UNGCPRO (call7 (handler, Qcopy_file, file, newname,
1922 ok_if_already_exists, keep_time, preserve_uid_gid,
1923 preserve_selinux_context));
32f4334d 1924
b1d1b865
RS
1925 encoded_file = ENCODE_FILE (file);
1926 encoded_newname = ENCODE_FILE (newname);
1927
265a9e55 1928 if (NILP (ok_if_already_exists)
93c30b5f 1929 || INTEGERP (ok_if_already_exists))
2f868094 1930 barf_or_query_if_file_exists (newname, "copy to it",
b8b29dc9 1931 INTEGERP (ok_if_already_exists), &out_st, 0);
42a5b22f 1932 else if (stat (SSDATA (encoded_newname), &out_st) < 0)
3ed15d97 1933 out_st.st_mode = 0;
570d7624 1934
e8691c59 1935#ifdef WINDOWSNT
d5db4077 1936 if (!CopyFile (SDATA (encoded_file),
efdc16c9 1937 SDATA (encoded_newname),
e8691c59
GM
1938 FALSE))
1939 report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil)));
8b53dc06
JR
1940 /* CopyFile retains the timestamp by default. */
1941 else if (NILP (keep_time))
e8691c59
GM
1942 {
1943 EMACS_TIME now;
ad497129
JR
1944 DWORD attributes;
1945 char * filename;
1946
d5db4077 1947 filename = SDATA (encoded_newname);
ad497129
JR
1948
1949 /* Ensure file is writable while its modified time is set. */
1950 attributes = GetFileAttributes (filename);
02cca86b 1951 SetFileAttributes (filename, attributes & ~FILE_ATTRIBUTE_READONLY);
e9a9ae03 1952 now = current_emacs_time ();
d35af63c 1953 if (set_file_times (-1, filename, now, now))
ad497129
JR
1954 {
1955 /* Restore original attributes. */
1956 SetFileAttributes (filename, attributes);
24b1ddad
KS
1957 xsignal2 (Qfile_date_error,
1958 build_string ("Cannot set file date"), newname);
ad497129
JR
1959 }
1960 /* Restore original attributes. */
1961 SetFileAttributes (filename, attributes);
e8691c59
GM
1962 }
1963#else /* not WINDOWSNT */
13336908 1964 immediate_quit = 1;
42a5b22f 1965 ifd = emacs_open (SSDATA (encoded_file), O_RDONLY, 0);
13336908
RS
1966 immediate_quit = 0;
1967
570d7624 1968 if (ifd < 0)
3b7f6e60 1969 report_file_error ("Opening input file", Fcons (file, Qnil));
570d7624 1970
b5148e85
RS
1971 record_unwind_protect (close_file_unwind, make_number (ifd));
1972
f73b0ada
BF
1973 /* We can only copy regular files and symbolic links. Other files are not
1974 copyable by us. */
1975 input_file_statable_p = (fstat (ifd, &st) >= 0);
1976
574c05e2
KK
1977#if HAVE_LIBSELINUX
1978 if (!NILP (preserve_selinux_context) && is_selinux_enabled ())
1979 {
1980 conlength = fgetfilecon (ifd, &con);
1981 if (conlength == -1)
1982 report_file_error ("Doing fgetfilecon", Fcons (file, Qnil));
1983 }
1984#endif
1985
3ed15d97
RS
1986 if (out_st.st_mode != 0
1987 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
1988 {
1989 errno = 0;
1990 report_file_error ("Input and output files are the same",
3b7f6e60 1991 Fcons (file, Fcons (newname, Qnil)));
3ed15d97 1992 }
3ed15d97 1993
f73b0ada
BF
1994 if (input_file_statable_p)
1995 {
1996 if (!(S_ISREG (st.st_mode)) && !(S_ISLNK (st.st_mode)))
1997 {
f73b0ada
BF
1998 /* Get a better looking error message. */
1999 errno = EISDIR;
3b7f6e60 2000 report_file_error ("Non-regular file", Fcons (file, Qnil));
f73b0ada
BF
2001 }
2002 }
f73b0ada 2003
4c3c22f3
RS
2004#ifdef MSDOS
2005 /* System's default file type was set to binary by _fmode in emacs.c. */
c50f15d0 2006 ofd = emacs_open (SDATA (encoded_newname),
7fce7dfe 2007 O_WRONLY | O_TRUNC | O_CREAT
795c20df 2008 | (NILP (ok_if_already_exists) ? O_EXCL : 0),
c50f15d0
RS
2009 S_IREAD | S_IWRITE);
2010#else /* not MSDOS */
15e3a074 2011 {
f75d7a91 2012 mode_t new_mask = 0666;
15e3a074
PE
2013 if (input_file_statable_p)
2014 {
2015 if (!NILP (preserve_uid_gid))
2016 new_mask = 0600;
2017 new_mask &= st.st_mode;
2018 }
2019 ofd = emacs_open (SSDATA (encoded_newname),
2020 (O_WRONLY | O_TRUNC | O_CREAT
2021 | (NILP (ok_if_already_exists) ? O_EXCL : 0)),
2022 new_mask);
2023 }
4c3c22f3 2024#endif /* not MSDOS */
570d7624 2025 if (ofd < 0)
3ed15d97 2026 report_file_error ("Opening output file", Fcons (newname, Qnil));
b5148e85
RS
2027
2028 record_unwind_protect (close_file_unwind, make_number (ofd));
570d7624 2029
b5148e85
RS
2030 immediate_quit = 1;
2031 QUIT;
68c45bf0
PE
2032 while ((n = emacs_read (ifd, buf, sizeof buf)) > 0)
2033 if (emacs_write (ofd, buf, n) != n)
3ed15d97 2034 report_file_error ("I/O error", Fcons (newname, Qnil));
b5148e85 2035 immediate_quit = 0;
570d7624 2036
b016179b
EZ
2037#ifndef MSDOS
2038 /* Preserve the original file modes, and if requested, also its
2039 owner and group. */
586702ce
RS
2040 if (input_file_statable_p)
2041 {
f75d7a91 2042 mode_t mode_mask = 07777;
a8031457 2043 if (!NILP (preserve_uid_gid))
b59b67c5
PE
2044 {
2045 /* Attempt to change owner and group. If that doesn't work
2046 attempt to change just the group, as that is sometimes allowed.
2047 Adjust the mode mask to eliminate setuid or setgid bits
2048 that are inappropriate if the owner and group are wrong. */
2049 if (fchown (ofd, st.st_uid, st.st_gid) != 0)
2050 {
2051 mode_mask &= ~06000;
2052 if (fchown (ofd, -1, st.st_gid) == 0)
2053 mode_mask |= 02000;
2054 }
2055 }
2056 if (fchmod (ofd, st.st_mode & mode_mask) != 0)
81e56e61 2057 report_file_error ("Doing chmod", Fcons (newname, Qnil));
586702ce 2058 }
b016179b 2059#endif /* not MSDOS */
586702ce 2060
574c05e2
KK
2061#if HAVE_LIBSELINUX
2062 if (conlength > 0)
2063 {
24c51a09 2064 /* Set the modified context back to the file. */
f75d7a91 2065 bool fail = fsetfilecon (ofd, con) != 0;
24c51a09
GM
2066 /* See http://debbugs.gnu.org/11245 for ENOTSUP. */
2067 if (fail && errno != ENOTSUP)
574c05e2
KK
2068 report_file_error ("Doing fsetfilecon", Fcons (newname, Qnil));
2069
2070 freecon (con);
2071 }
2072#endif
2073
f73b0ada 2074 if (input_file_statable_p)
570d7624 2075 {
8ca6602c 2076 if (!NILP (keep_time))
570d7624 2077 {
d35af63c
PE
2078 EMACS_TIME atime = get_stat_atime (&st);
2079 EMACS_TIME mtime = get_stat_mtime (&st);
2080 if (set_file_times (ofd, SSDATA (encoded_newname), atime, mtime))
24b1ddad
KS
2081 xsignal2 (Qfile_date_error,
2082 build_string ("Cannot set file date"), newname);
570d7624 2083 }
570d7624
JB
2084 }
2085
d35af63c
PE
2086 if (emacs_close (ofd) < 0)
2087 report_file_error ("I/O error", Fcons (newname, Qnil));
2088
68c45bf0 2089 emacs_close (ifd);
b016179b 2090
ed68db4d 2091#ifdef MSDOS
b016179b
EZ
2092 if (input_file_statable_p)
2093 {
2094 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2095 and if it can't, it tells so. Otherwise, under MSDOS we usually
2096 get only the READ bit, which will make the copied file read-only,
2097 so it's better not to chmod at all. */
2098 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0)
2099 chmod (SDATA (encoded_newname), st.st_mode & 07777);
2100 }
ed68db4d 2101#endif /* MSDOS */
b016179b 2102#endif /* not WINDOWSNT */
5acac34e 2103
b5148e85
RS
2104 /* Discard the unwind protects. */
2105 specpdl_ptr = specpdl + count;
2106
570d7624
JB
2107 UNGCPRO;
2108 return Qnil;
2109}
385b6cc7 2110\f
9bbe01fb 2111DEFUN ("make-directory-internal", Fmake_directory_internal,
353cfc19 2112 Smake_directory_internal, 1, 1, 0,
8c1a1077 2113 doc: /* Create a new directory named DIRECTORY. */)
5842a27b 2114 (Lisp_Object directory)
570d7624 2115{
5976c3fe 2116 const char *dir;
32f4334d 2117 Lisp_Object handler;
b1d1b865 2118 Lisp_Object encoded_dir;
570d7624 2119
b7826503 2120 CHECK_STRING (directory);
3b7f6e60 2121 directory = Fexpand_file_name (directory, Qnil);
32f4334d 2122
3b7f6e60 2123 handler = Ffind_file_name_handler (directory, Qmake_directory_internal);
32f4334d 2124 if (!NILP (handler))
3b7f6e60 2125 return call2 (handler, Qmake_directory_internal, directory);
9bbe01fb 2126
b1d1b865
RS
2127 encoded_dir = ENCODE_FILE (directory);
2128
5976c3fe 2129 dir = SSDATA (encoded_dir);
570d7624 2130
5e570b75
RS
2131#ifdef WINDOWSNT
2132 if (mkdir (dir) != 0)
2133#else
09450bae 2134 if (mkdir (dir, 0777 & ~auto_saving_dir_umask) != 0)
5e570b75 2135#endif
a9f2aeae 2136 report_file_error ("Creating directory", list1 (directory));
570d7624 2137
32f4334d 2138 return Qnil;
570d7624
JB
2139}
2140
9d8f3bd9
MA
2141DEFUN ("delete-directory-internal", Fdelete_directory_internal,
2142 Sdelete_directory_internal, 1, 1, 0,
efdc16c9 2143 doc: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
5842a27b 2144 (Lisp_Object directory)
570d7624 2145{
5976c3fe 2146 const char *dir;
b1d1b865 2147 Lisp_Object encoded_dir;
570d7624 2148
b7826503 2149 CHECK_STRING (directory);
3b7f6e60 2150 directory = Fdirectory_file_name (Fexpand_file_name (directory, Qnil));
b1d1b865 2151 encoded_dir = ENCODE_FILE (directory);
5976c3fe 2152 dir = SSDATA (encoded_dir);
b1d1b865 2153
570d7624 2154 if (rmdir (dir) != 0)
a9f2aeae 2155 report_file_error ("Removing directory", list1 (directory));
570d7624
JB
2156
2157 return Qnil;
2158}
2159
2e2bbddb 2160DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 2,
f1a5d776
CY
2161 "(list (read-file-name \
2162 (if (and delete-by-moving-to-trash (null current-prefix-arg)) \
2163 \"Move file to trash: \" \"Delete file: \") \
2164 nil default-directory (confirm-nonexistent-file-or-buffer)) \
2165 (null current-prefix-arg))",
efdc16c9 2166 doc: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
53967e09 2167If file has multiple names, it continues to exist with the other names.
f1a5d776
CY
2168TRASH non-nil means to trash the file instead of deleting, provided
2169`delete-by-moving-to-trash' is non-nil.
53967e09 2170
f1a5d776
CY
2171When called interactively, TRASH is t if no prefix argument is given.
2172With a prefix argument, TRASH is nil. */)
5842a27b 2173 (Lisp_Object filename, Lisp_Object trash)
570d7624 2174{
32f4334d 2175 Lisp_Object handler;
b1d1b865 2176 Lisp_Object encoded_file;
efdc16c9 2177 struct gcpro gcpro1;
b1d1b865 2178
efdc16c9 2179 GCPRO1 (filename);
b4bd27c5
RS
2180 if (!NILP (Ffile_directory_p (filename))
2181 && NILP (Ffile_symlink_p (filename)))
24b1ddad
KS
2182 xsignal2 (Qfile_error,
2183 build_string ("Removing old name: is a directory"),
2184 filename);
efdc16c9 2185 UNGCPRO;
570d7624 2186 filename = Fexpand_file_name (filename, Qnil);
32f4334d 2187
49307295 2188 handler = Ffind_file_name_handler (filename, Qdelete_file);
32f4334d 2189 if (!NILP (handler))
f5783df3 2190 return call3 (handler, Qdelete_file, filename, trash);
32f4334d 2191
f1a5d776 2192 if (delete_by_moving_to_trash && !NILP (trash))
6cf29fe8
JR
2193 return call1 (Qmove_file_to_trash, filename);
2194
b1d1b865
RS
2195 encoded_file = ENCODE_FILE (filename);
2196
ce2fe65a 2197 if (unlink (SSDATA (encoded_file)) < 0)
a9f2aeae 2198 report_file_error ("Removing old name", list1 (filename));
8a9b0da9 2199 return Qnil;
570d7624
JB
2200}
2201
385b6cc7 2202static Lisp_Object
971de7fb 2203internal_delete_file_1 (Lisp_Object ignore)
385b6cc7
RS
2204{
2205 return Qt;
2206}
2207
f75d7a91 2208/* Delete file FILENAME.
f1a5d776 2209 This ignores `delete-by-moving-to-trash'. */
385b6cc7 2210
f75d7a91 2211void
f1a5d776 2212internal_delete_file (Lisp_Object filename)
385b6cc7 2213{
f75d7a91
PE
2214 internal_condition_case_2 (Fdelete_file, filename, Qnil,
2215 Qt, internal_delete_file_1);
385b6cc7
RS
2216}
2217\f
570d7624 2218DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
7c0f6118 2219 "fRename file: \nGRename %s to file: \np",
a4e03fe5 2220 doc: /* Rename FILE as NEWNAME. Both args must be strings.
8c1a1077
PJ
2221If file has names other than FILE, it continues to have those names.
2222Signals a `file-already-exists' error if a file NEWNAME already exists
2223unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2224A number as third arg means request confirmation if NEWNAME already exists.
2225This is what happens in interactive use with M-x. */)
5842a27b 2226 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
570d7624 2227{
32f4334d 2228 Lisp_Object handler;
f72b5416
JD
2229 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2230 Lisp_Object encoded_file, encoded_newname, symlink_target;
570d7624 2231
f72b5416
JD
2232 symlink_target = encoded_file = encoded_newname = Qnil;
2233 GCPRO5 (file, newname, encoded_file, encoded_newname, symlink_target);
b7826503
PJ
2234 CHECK_STRING (file);
2235 CHECK_STRING (newname);
3b7f6e60 2236 file = Fexpand_file_name (file, Qnil);
1ffc5c90 2237
f83caf70
EZ
2238 if ((!NILP (Ffile_directory_p (newname)))
2239#ifdef DOS_NT
2240 /* If the file names are identical but for the case,
2241 don't attempt to move directory to itself. */
2242 && (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2243#endif
2244 )
8719abec 2245 {
ce2fe65a
AS
2246 Lisp_Object fname = (NILP (Ffile_directory_p (file))
2247 ? file : Fdirectory_file_name (file));
8719abec
CY
2248 newname = Fexpand_file_name (Ffile_name_nondirectory (fname), newname);
2249 }
1ffc5c90
RS
2250 else
2251 newname = Fexpand_file_name (newname, Qnil);
32f4334d
RS
2252
2253 /* If the file name has special constructs in it,
2254 call the corresponding file handler. */
3b7f6e60 2255 handler = Ffind_file_name_handler (file, Qrename_file);
51cf6d37 2256 if (NILP (handler))
49307295 2257 handler = Ffind_file_name_handler (newname, Qrename_file);
32f4334d 2258 if (!NILP (handler))
36712b0a 2259 RETURN_UNGCPRO (call4 (handler, Qrename_file,
3b7f6e60 2260 file, newname, ok_if_already_exists));
32f4334d 2261
b1d1b865
RS
2262 encoded_file = ENCODE_FILE (file);
2263 encoded_newname = ENCODE_FILE (newname);
2264
bc77278f
EZ
2265#ifdef DOS_NT
2266 /* If the file names are identical but for the case, don't ask for
2267 confirmation: they simply want to change the letter-case of the
2268 file name. */
2269 if (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2270#endif
265a9e55 2271 if (NILP (ok_if_already_exists)
93c30b5f 2272 || INTEGERP (ok_if_already_exists))
2f868094 2273 barf_or_query_if_file_exists (newname, "rename to it",
b8b29dc9 2274 INTEGERP (ok_if_already_exists), 0, 0);
ce2fe65a 2275 if (rename (SSDATA (encoded_file), SSDATA (encoded_newname)) < 0)
570d7624
JB
2276 {
2277 if (errno == EXDEV)
2278 {
d311d28c 2279 ptrdiff_t count;
f72b5416 2280 symlink_target = Ffile_symlink_p (file);
440c7d00
JD
2281 if (! NILP (symlink_target))
2282 Fmake_symbolic_link (symlink_target, newname,
f59abab9 2283 NILP (ok_if_already_exists) ? Qnil : Qt);
ae0d7250 2284 else if (!NILP (Ffile_directory_p (file)))
8719abec
CY
2285 call4 (Qcopy_directory, file, newname, Qt, Qnil);
2286 else
2287 /* We have already prompted if it was an integer, so don't
2288 have copy-file prompt again. */
586702ce 2289 Fcopy_file (file, newname,
586702ce 2290 NILP (ok_if_already_exists) ? Qnil : Qt,
574c05e2 2291 Qt, Qt, Qt);
d550c425 2292
6bddfc97 2293 count = SPECPDL_INDEX ();
d2b66acf 2294 specbind (Qdelete_by_moving_to_trash, Qnil);
8fab2362 2295
ae0d7250 2296 if (!NILP (Ffile_directory_p (file)) && NILP (symlink_target))
8719abec
CY
2297 call2 (Qdelete_directory, file, Qt);
2298 else
f1a5d776 2299 Fdelete_file (file, Qnil);
6bddfc97 2300 unbind_to (count, Qnil);
570d7624
JB
2301 }
2302 else
a9f2aeae 2303 report_file_error ("Renaming", list2 (file, newname));
570d7624
JB
2304 }
2305 UNGCPRO;
2306 return Qnil;
2307}
2308
2309DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
7c0f6118 2310 "fAdd name to file: \nGName to add to %s: \np",
a4e03fe5 2311 doc: /* Give FILE additional name NEWNAME. Both args must be strings.
8c1a1077
PJ
2312Signals a `file-already-exists' error if a file NEWNAME already exists
2313unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2314A number as third arg means request confirmation if NEWNAME already exists.
2315This is what happens in interactive use with M-x. */)
5842a27b 2316 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
570d7624 2317{
32f4334d 2318 Lisp_Object handler;
b1d1b865
RS
2319 Lisp_Object encoded_file, encoded_newname;
2320 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
570d7624 2321
b1d1b865
RS
2322 GCPRO4 (file, newname, encoded_file, encoded_newname);
2323 encoded_file = encoded_newname = Qnil;
b7826503
PJ
2324 CHECK_STRING (file);
2325 CHECK_STRING (newname);
3b7f6e60 2326 file = Fexpand_file_name (file, Qnil);
1ffc5c90
RS
2327
2328 if (!NILP (Ffile_directory_p (newname)))
2329 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
2330 else
2331 newname = Fexpand_file_name (newname, Qnil);
32f4334d
RS
2332
2333 /* If the file name has special constructs in it,
2334 call the corresponding file handler. */
3b7f6e60 2335 handler = Ffind_file_name_handler (file, Qadd_name_to_file);
32f4334d 2336 if (!NILP (handler))
3b7f6e60 2337 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
36712b0a 2338 newname, ok_if_already_exists));
32f4334d 2339
adc6741c
RS
2340 /* If the new name has special constructs in it,
2341 call the corresponding file handler. */
2342 handler = Ffind_file_name_handler (newname, Qadd_name_to_file);
2343 if (!NILP (handler))
3b7f6e60 2344 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
adc6741c
RS
2345 newname, ok_if_already_exists));
2346
b1d1b865
RS
2347 encoded_file = ENCODE_FILE (file);
2348 encoded_newname = ENCODE_FILE (newname);
2349
265a9e55 2350 if (NILP (ok_if_already_exists)
93c30b5f 2351 || INTEGERP (ok_if_already_exists))
2f868094 2352 barf_or_query_if_file_exists (newname, "make it a new name",
b8b29dc9 2353 INTEGERP (ok_if_already_exists), 0, 0);
5e570b75 2354
42a5b22f 2355 unlink (SSDATA (newname));
ce2fe65a 2356 if (link (SSDATA (encoded_file), SSDATA (encoded_newname)) < 0)
a9f2aeae 2357 report_file_error ("Adding new name", list2 (file, newname));
570d7624
JB
2358
2359 UNGCPRO;
2360 return Qnil;
2361}
2362
570d7624 2363DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
7c0f6118 2364 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np",
68780e2a
RS
2365 doc: /* Make a symbolic link to FILENAME, named LINKNAME.
2366Both args must be strings.
8c1a1077
PJ
2367Signals a `file-already-exists' error if a file LINKNAME already exists
2368unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2369A number as third arg means request confirmation if LINKNAME already exists.
2370This happens for interactive use with M-x. */)
5842a27b 2371 (Lisp_Object filename, Lisp_Object linkname, Lisp_Object ok_if_already_exists)
570d7624 2372{
32f4334d 2373 Lisp_Object handler;
b1d1b865
RS
2374 Lisp_Object encoded_filename, encoded_linkname;
2375 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
570d7624 2376
b1d1b865
RS
2377 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname);
2378 encoded_filename = encoded_linkname = Qnil;
b7826503
PJ
2379 CHECK_STRING (filename);
2380 CHECK_STRING (linkname);
d9bc1c99
RS
2381 /* If the link target has a ~, we must expand it to get
2382 a truly valid file name. Otherwise, do not expand;
2383 we want to permit links to relative file names. */
d5db4077 2384 if (SREF (filename, 0) == '~')
d9bc1c99 2385 filename = Fexpand_file_name (filename, Qnil);
1ffc5c90
RS
2386
2387 if (!NILP (Ffile_directory_p (linkname)))
dac24db4 2388 linkname = Fexpand_file_name (Ffile_name_nondirectory (filename), linkname);
1ffc5c90
RS
2389 else
2390 linkname = Fexpand_file_name (linkname, Qnil);
32f4334d
RS
2391
2392 /* If the file name has special constructs in it,
2393 call the corresponding file handler. */
49307295 2394 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
32f4334d 2395 if (!NILP (handler))
36712b0a
KH
2396 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2397 linkname, ok_if_already_exists));
32f4334d 2398
adc6741c
RS
2399 /* If the new link name has special constructs in it,
2400 call the corresponding file handler. */
2401 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link);
2402 if (!NILP (handler))
2403 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2404 linkname, ok_if_already_exists));
2405
b1d1b865
RS
2406 encoded_filename = ENCODE_FILE (filename);
2407 encoded_linkname = ENCODE_FILE (linkname);
2408
265a9e55 2409 if (NILP (ok_if_already_exists)
93c30b5f 2410 || INTEGERP (ok_if_already_exists))
2f868094 2411 barf_or_query_if_file_exists (linkname, "make it a link",
b8b29dc9 2412 INTEGERP (ok_if_already_exists), 0, 0);
ce2fe65a 2413 if (symlink (SSDATA (encoded_filename), SSDATA (encoded_linkname)) < 0)
570d7624
JB
2414 {
2415 /* If we didn't complain already, silently delete existing file. */
2416 if (errno == EEXIST)
2417 {
42a5b22f 2418 unlink (SSDATA (encoded_linkname));
ce2fe65a
AS
2419 if (symlink (SSDATA (encoded_filename), SSDATA (encoded_linkname))
2420 >= 0)
1a04498e
KH
2421 {
2422 UNGCPRO;
2423 return Qnil;
2424 }
570d7624 2425 }
d9d0d182
PE
2426 if (errno == ENOSYS)
2427 {
2428 UNGCPRO;
2429 xsignal1 (Qfile_error,
2430 build_string ("Symbolic links are not supported"));
2431 }
570d7624 2432
a9f2aeae 2433 report_file_error ("Making symbolic link", list2 (filename, linkname));
570d7624
JB
2434 }
2435 UNGCPRO;
2436 return Qnil;
e89b536d 2437}
570d7624 2438
570d7624 2439\f
a7ca3326 2440DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
570d7624 2441 1, 1, 0,
8c1a1077
PJ
2442 doc: /* Return t if file FILENAME specifies an absolute file name.
2443On Unix, this is a name starting with a `/' or a `~'. */)
5842a27b 2444 (Lisp_Object filename)
570d7624 2445{
b7826503 2446 CHECK_STRING (filename);
5976c3fe 2447 return file_name_absolute_p (SSDATA (filename)) ? Qt : Qnil;
570d7624 2448}
3beeedfe 2449\f
bb385a92
EZ
2450/* Return true if FILENAME exists. */
2451bool
2452check_existing (const char *filename)
2453{
73dcdb9f 2454 return faccessat (AT_FDCWD, filename, F_OK, AT_EACCESS) == 0;
bb385a92
EZ
2455}
2456
f75d7a91 2457/* Return true if file FILENAME exists and can be executed. */
3beeedfe 2458
f75d7a91 2459static bool
971de7fb 2460check_executable (char *filename)
3beeedfe 2461{
73dcdb9f 2462 return faccessat (AT_FDCWD, filename, X_OK, AT_EACCESS) == 0;
3beeedfe
RS
2463}
2464
73dcdb9f
PE
2465/* Return true if file FILENAME exists and can be accessed
2466 according to AMODE, which should include W_OK.
2467 On failure, return false and set errno. */
3beeedfe 2468
f75d7a91 2469static bool
73dcdb9f 2470check_writable (const char *filename, int amode)
3beeedfe 2471{
3be3c08e 2472#ifdef MSDOS
73dcdb9f
PE
2473 /* FIXME: an faccessat implementation should be added to the
2474 DOS/Windows ports and this #ifdef branch should be removed. */
3be3c08e
RS
2475 struct stat st;
2476 if (stat (filename, &st) < 0)
2477 return 0;
73dcdb9f 2478 errno = EPERM;
f68c809d 2479 return (st.st_mode & S_IWRITE || S_ISDIR (st.st_mode));
3be3c08e 2480#else /* not MSDOS */
73dcdb9f 2481 bool res = faccessat (AT_FDCWD, filename, amode, AT_EACCESS) == 0;
e1b01a3a 2482#ifdef CYGWIN
73dcdb9f 2483 /* faccessat may have returned failure because Cygwin couldn't
e1b01a3a
KB
2484 determine the file's UID or GID; if so, we return success. */
2485 if (!res)
2486 {
73dcdb9f 2487 int faccessat_errno = errno;
e1b01a3a
KB
2488 struct stat st;
2489 if (stat (filename, &st) < 0)
2490 return 0;
2491 res = (st.st_uid == -1 || st.st_gid == -1);
73dcdb9f 2492 errno = faccessat_errno;
e1b01a3a
KB
2493 }
2494#endif /* CYGWIN */
2495 return res;
3be3c08e 2496#endif /* not MSDOS */
3beeedfe 2497}
570d7624 2498
a7ca3326 2499DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
68780e2a
RS
2500 doc: /* Return t if file FILENAME exists (whether or not you can read it.)
2501See also `file-readable-p' and `file-attributes'.
2502This returns nil for a symlink to a nonexistent file.
2503Use `file-symlink-p' to test for such links. */)
5842a27b 2504 (Lisp_Object filename)
570d7624 2505{
199607e4 2506 Lisp_Object absname;
32f4334d 2507 Lisp_Object handler;
570d7624 2508
b7826503 2509 CHECK_STRING (filename);
199607e4 2510 absname = Fexpand_file_name (filename, Qnil);
32f4334d
RS
2511
2512 /* If the file name has special constructs in it,
2513 call the corresponding file handler. */
199607e4 2514 handler = Ffind_file_name_handler (absname, Qfile_exists_p);
32f4334d 2515 if (!NILP (handler))
199607e4 2516 return call2 (handler, Qfile_exists_p, absname);
32f4334d 2517
b1d1b865
RS
2518 absname = ENCODE_FILE (absname);
2519
bb385a92 2520 return (check_existing (SSDATA (absname))) ? Qt : Qnil;
570d7624
JB
2521}
2522
2523DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
8c1a1077
PJ
2524 doc: /* Return t if FILENAME can be executed by you.
2525For a directory, this means you can access files in that directory. */)
5842a27b 2526 (Lisp_Object filename)
570d7624 2527{
199607e4 2528 Lisp_Object absname;
32f4334d 2529 Lisp_Object handler;
570d7624 2530
b7826503 2531 CHECK_STRING (filename);
199607e4 2532 absname = Fexpand_file_name (filename, Qnil);
32f4334d
RS
2533
2534 /* If the file name has special constructs in it,
2535 call the corresponding file handler. */
199607e4 2536 handler = Ffind_file_name_handler (absname, Qfile_executable_p);
32f4334d 2537 if (!NILP (handler))
199607e4 2538 return call2 (handler, Qfile_executable_p, absname);
32f4334d 2539
b1d1b865
RS
2540 absname = ENCODE_FILE (absname);
2541
42a5b22f 2542 return (check_executable (SSDATA (absname)) ? Qt : Qnil);
570d7624
JB
2543}
2544
a7ca3326 2545DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
8c1a1077
PJ
2546 doc: /* Return t if file FILENAME exists and you can read it.
2547See also `file-exists-p' and `file-attributes'. */)
5842a27b 2548 (Lisp_Object filename)
570d7624 2549{
199607e4 2550 Lisp_Object absname;
32f4334d 2551 Lisp_Object handler;
570d7624 2552
b7826503 2553 CHECK_STRING (filename);
199607e4 2554 absname = Fexpand_file_name (filename, Qnil);
32f4334d
RS
2555
2556 /* If the file name has special constructs in it,
2557 call the corresponding file handler. */
199607e4 2558 handler = Ffind_file_name_handler (absname, Qfile_readable_p);
32f4334d 2559 if (!NILP (handler))
199607e4 2560 return call2 (handler, Qfile_readable_p, absname);
32f4334d 2561
b1d1b865 2562 absname = ENCODE_FILE (absname);
73dcdb9f
PE
2563 return (faccessat (AT_FDCWD, SSDATA (absname), R_OK, AT_EACCESS) == 0
2564 ? Qt : Qnil);
570d7624
JB
2565}
2566
f793dc6c 2567DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
8c1a1077 2568 doc: /* Return t if file FILENAME can be written or created by you. */)
5842a27b 2569 (Lisp_Object filename)
f793dc6c 2570{
b1d1b865 2571 Lisp_Object absname, dir, encoded;
f793dc6c 2572 Lisp_Object handler;
f793dc6c 2573
b7826503 2574 CHECK_STRING (filename);
199607e4 2575 absname = Fexpand_file_name (filename, Qnil);
f793dc6c
RS
2576
2577 /* If the file name has special constructs in it,
2578 call the corresponding file handler. */
199607e4 2579 handler = Ffind_file_name_handler (absname, Qfile_writable_p);
f793dc6c 2580 if (!NILP (handler))
199607e4 2581 return call2 (handler, Qfile_writable_p, absname);
f793dc6c 2582
b1d1b865 2583 encoded = ENCODE_FILE (absname);
73dcdb9f
PE
2584 if (check_writable (SSDATA (encoded), W_OK))
2585 return Qt;
2586 if (errno != ENOENT)
2587 return Qnil;
b1d1b865 2588
199607e4 2589 dir = Ffile_name_directory (absname);
73dcdb9f 2590 eassert (!NILP (dir));
f793dc6c 2591#ifdef MSDOS
73dcdb9f 2592 dir = Fdirectory_file_name (dir);
f793dc6c 2593#endif /* MSDOS */
b1d1b865
RS
2594
2595 dir = ENCODE_FILE (dir);
e3e8a75a
GM
2596#ifdef WINDOWSNT
2597 /* The read-only attribute of the parent directory doesn't affect
2598 whether a file or directory can be created within it. Some day we
2599 should check ACLs though, which do affect this. */
73dcdb9f 2600 return file_directory_p (SDATA (dir)) ? Qt : Qnil;
e3e8a75a 2601#else
73dcdb9f 2602 return check_writable (SSDATA (dir), W_OK | X_OK) ? Qt : Qnil;
e3e8a75a 2603#endif
f793dc6c
RS
2604}
2605\f
1f8653eb 2606DEFUN ("access-file", Faccess_file, Saccess_file, 2, 2, 0,
8c1a1077
PJ
2607 doc: /* Access file FILENAME, and get an error if that does not work.
2608The second argument STRING is used in the error message.
a4e03fe5 2609If there is no error, returns nil. */)
5842a27b 2610 (Lisp_Object filename, Lisp_Object string)
1f8653eb 2611{
49475635 2612 Lisp_Object handler, encoded_filename, absname;
1f8653eb
RS
2613 int fd;
2614
b7826503 2615 CHECK_STRING (filename);
49475635
EZ
2616 absname = Fexpand_file_name (filename, Qnil);
2617
b7826503 2618 CHECK_STRING (string);
1f8653eb
RS
2619
2620 /* If the file name has special constructs in it,
2621 call the corresponding file handler. */
49475635 2622 handler = Ffind_file_name_handler (absname, Qaccess_file);
1f8653eb 2623 if (!NILP (handler))
49475635 2624 return call3 (handler, Qaccess_file, absname, string);
1f8653eb 2625
49475635 2626 encoded_filename = ENCODE_FILE (absname);
b1d1b865 2627
42a5b22f 2628 fd = emacs_open (SSDATA (encoded_filename), O_RDONLY, 0);
1f8653eb 2629 if (fd < 0)
42a5b22f 2630 report_file_error (SSDATA (string), Fcons (filename, Qnil));
68c45bf0 2631 emacs_close (fd);
1f8653eb
RS
2632
2633 return Qnil;
2634}
2635\f
a7ca3326 2636DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
8c1a1077 2637 doc: /* Return non-nil if file FILENAME is the name of a symbolic link.
1c353c74 2638The value is the link target, as a string.
68780e2a
RS
2639Otherwise it returns nil.
2640
2641This function returns t when given the name of a symlink that
2642points to a nonexistent file. */)
5842a27b 2643 (Lisp_Object filename)
570d7624 2644{
32f4334d 2645 Lisp_Object handler;
ae0d7250 2646 char *buf;
ae0d7250 2647 Lisp_Object val;
d1fdcab7 2648 char readlink_buf[READLINK_BUFSIZE];
570d7624 2649
b7826503 2650 CHECK_STRING (filename);
570d7624
JB
2651 filename = Fexpand_file_name (filename, Qnil);
2652
32f4334d
RS
2653 /* If the file name has special constructs in it,
2654 call the corresponding file handler. */
49307295 2655 handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
32f4334d
RS
2656 if (!NILP (handler))
2657 return call2 (handler, Qfile_symlink_p, filename);
2658
b1d1b865
RS
2659 filename = ENCODE_FILE (filename);
2660
d1fdcab7
PE
2661 buf = emacs_readlink (SSDATA (filename), readlink_buf);
2662 if (! buf)
2663 return Qnil;
efdc16c9 2664
d1fdcab7 2665 val = build_string (buf);
8966b757 2666 if (buf[0] == '/' && strchr (buf, ':'))
69ac1891 2667 val = concat2 (build_string ("/:"), val);
d1fdcab7
PE
2668 if (buf != readlink_buf)
2669 xfree (buf);
cd913586
KH
2670 val = DECODE_FILE (val);
2671 return val;
570d7624
JB
2672}
2673
a7ca3326 2674DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
8c1a1077
PJ
2675 doc: /* Return t if FILENAME names an existing directory.
2676Symbolic links to directories count as directories.
2677See `file-symlink-p' to distinguish symlinks. */)
5842a27b 2678 (Lisp_Object filename)
570d7624 2679{
73dcdb9f 2680 Lisp_Object absname;
32f4334d 2681 Lisp_Object handler;
570d7624 2682
4b4deea2 2683 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
570d7624 2684
32f4334d
RS
2685 /* If the file name has special constructs in it,
2686 call the corresponding file handler. */
199607e4 2687 handler = Ffind_file_name_handler (absname, Qfile_directory_p);
32f4334d 2688 if (!NILP (handler))
199607e4 2689 return call2 (handler, Qfile_directory_p, absname);
32f4334d 2690
b1d1b865
RS
2691 absname = ENCODE_FILE (absname);
2692
73dcdb9f
PE
2693 return file_directory_p (SSDATA (absname)) ? Qt : Qnil;
2694}
2695
2696/* Return true if FILE is a directory or a symlink to a directory. */
2697bool
2698file_directory_p (char const *file)
2699{
2700#ifdef WINDOWSNT
2701 /* This is cheaper than 'stat'. */
2702 return faccessat (AT_FDCWD, file, D_OK, AT_EACCESS) == 0;
2703#else
2704 struct stat st;
2705 return stat (file, &st) == 0 && S_ISDIR (st.st_mode);
2706#endif
570d7624
JB
2707}
2708
a7ca3326 2709DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p,
16a97296 2710 Sfile_accessible_directory_p, 1, 1, 0,
e385ec41
RS
2711 doc: /* Return t if file FILENAME names a directory you can open.
2712For the value to be t, FILENAME must specify the name of a directory as a file,
2713and the directory must allow you to open files in it. In order to use a
8c1a1077
PJ
2714directory as a buffer's current directory, this predicate must return true.
2715A directory name spec may be given instead; then the value is t
2716if the directory so specified exists and really is a readable and
2717searchable directory. */)
5842a27b 2718 (Lisp_Object filename)
b72dea2a 2719{
73dcdb9f 2720 Lisp_Object absname;
32f4334d 2721 Lisp_Object handler;
73dcdb9f
PE
2722
2723 CHECK_STRING (filename);
2724 absname = Fexpand_file_name (filename, Qnil);
32f4334d
RS
2725
2726 /* If the file name has special constructs in it,
2727 call the corresponding file handler. */
73dcdb9f 2728 handler = Ffind_file_name_handler (absname, Qfile_accessible_directory_p);
32f4334d 2729 if (!NILP (handler))
73dcdb9f 2730 return call2 (handler, Qfile_accessible_directory_p, absname);
32f4334d 2731
73dcdb9f
PE
2732 absname = ENCODE_FILE (absname);
2733 return file_accessible_directory_p (SSDATA (absname)) ? Qt : Qnil;
2734}
2735
2736/* If FILE is a searchable directory or a symlink to a
2737 searchable directory, return true. Otherwise return
2738 false and set errno to an error number. */
2739bool
2740file_accessible_directory_p (char const *file)
2741{
2742#ifdef DOS_NT
2743 /* There's no need to test whether FILE is searchable, as the
2744 searchable/executable bit is invented on DOS_NT platforms. */
2745 return file_directory_p (file);
2746#else
2747 /* On POSIXish platforms, use just one system call; this avoids a
2748 race and is typically faster. */
2749 ptrdiff_t len = strlen (file);
2750 char const *dir;
2751 bool ok;
2752 int saved_errno;
2753 USE_SAFE_ALLOCA;
2754
2755 /* Normally a file "FOO" is an accessible directory if "FOO/." exists.
2756 There are three exceptions: "", "/", and "//". Leave "" alone,
2757 as it's invalid. Append only "." to the other two exceptions as
2758 "/" and "//" are distinct on some platforms, whereas "/", "///",
2759 "////", etc. are all equivalent. */
2760 if (! len)
2761 dir = file;
2762 else
2763 {
2764 /* Just check for trailing '/' when deciding whether to append '/'.
2765 That's simpler than testing the two special cases "/" and "//",
2766 and it's a safe optimization here. */
2767 char *buf = SAFE_ALLOCA (len + 3);
2768 memcpy (buf, file, len);
2769 strcpy (buf + len, "/." + (file[len - 1] == '/'));
2770 dir = buf;
2771 }
2772
2773 ok = check_existing (dir);
2774 saved_errno = errno;
2775 SAFE_FREE ();
2776 errno = saved_errno;
2777 return ok;
2778#endif
b72dea2a
JB
2779}
2780
f793dc6c 2781DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
19a9c3b7
LH
2782 doc: /* Return t if FILENAME names a regular file.
2783This is the sort of file that holds an ordinary stream of data bytes.
2784Symbolic links to regular files count as regular files.
2785See `file-symlink-p' to distinguish symlinks. */)
5842a27b 2786 (Lisp_Object filename)
f793dc6c 2787{
199607e4 2788 register Lisp_Object absname;
f793dc6c
RS
2789 struct stat st;
2790 Lisp_Object handler;
2791
4b4deea2 2792 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
f793dc6c
RS
2793
2794 /* If the file name has special constructs in it,
2795 call the corresponding file handler. */
199607e4 2796 handler = Ffind_file_name_handler (absname, Qfile_regular_p);
f793dc6c 2797 if (!NILP (handler))
199607e4 2798 return call2 (handler, Qfile_regular_p, absname);
f793dc6c 2799
b1d1b865
RS
2800 absname = ENCODE_FILE (absname);
2801
c1c4693e
RS
2802#ifdef WINDOWSNT
2803 {
2804 int result;
2805 Lisp_Object tem = Vw32_get_true_file_attributes;
2806
2807 /* Tell stat to use expensive method to get accurate info. */
2808 Vw32_get_true_file_attributes = Qt;
d5db4077 2809 result = stat (SDATA (absname), &st);
c1c4693e
RS
2810 Vw32_get_true_file_attributes = tem;
2811
2812 if (result < 0)
2813 return Qnil;
f68c809d 2814 return S_ISREG (st.st_mode) ? Qt : Qnil;
c1c4693e
RS
2815 }
2816#else
42a5b22f 2817 if (stat (SSDATA (absname), &st) < 0)
f793dc6c 2818 return Qnil;
f68c809d 2819 return S_ISREG (st.st_mode) ? Qt : Qnil;
c1c4693e 2820#endif
f793dc6c
RS
2821}
2822\f
574c05e2
KK
2823DEFUN ("file-selinux-context", Ffile_selinux_context,
2824 Sfile_selinux_context, 1, 1, 0,
fa74b241
CY
2825 doc: /* Return SELinux context of file named FILENAME.
2826The return value is a list (USER ROLE TYPE RANGE), where the list
2827elements are strings naming the user, role, type, and range of the
2828file's SELinux security context.
2829
2830Return (nil nil nil nil) if the file is nonexistent or inaccessible,
2831or if SELinux is disabled, or if Emacs lacks SELinux support. */)
5842a27b 2832 (Lisp_Object filename)
574c05e2
KK
2833{
2834 Lisp_Object absname;
2835 Lisp_Object values[4];
2836 Lisp_Object handler;
2837#if HAVE_LIBSELINUX
2838 security_context_t con;
2839 int conlength;
2840 context_t context;
2841#endif
2842
4b4deea2 2843 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
574c05e2
KK
2844
2845 /* If the file name has special constructs in it,
2846 call the corresponding file handler. */
2847 handler = Ffind_file_name_handler (absname, Qfile_selinux_context);
2848 if (!NILP (handler))
2849 return call2 (handler, Qfile_selinux_context, absname);
2850
2851 absname = ENCODE_FILE (absname);
2852
2853 values[0] = Qnil;
2854 values[1] = Qnil;
2855 values[2] = Qnil;
2856 values[3] = Qnil;
2857#if HAVE_LIBSELINUX
2858 if (is_selinux_enabled ())
2859 {
b14aac08 2860 conlength = lgetfilecon (SSDATA (absname), &con);
574c05e2
KK
2861 if (conlength > 0)
2862 {
2863 context = context_new (con);
45841e65
KK
2864 if (context_user_get (context))
2865 values[0] = build_string (context_user_get (context));
2866 if (context_role_get (context))
2867 values[1] = build_string (context_role_get (context));
2868 if (context_type_get (context))
2869 values[2] = build_string (context_type_get (context));
2870 if (context_range_get (context))
2871 values[3] = build_string (context_range_get (context));
574c05e2 2872 context_free (context);
c6ba4138 2873 freecon (con);
574c05e2 2874 }
574c05e2
KK
2875 }
2876#endif
2877
5e617bc2 2878 return Flist (sizeof (values) / sizeof (values[0]), values);
574c05e2
KK
2879}
2880\f
2881DEFUN ("set-file-selinux-context", Fset_file_selinux_context,
2882 Sset_file_selinux_context, 2, 2, 0,
fa74b241
CY
2883 doc: /* Set SELinux context of file named FILENAME to CONTEXT.
2884CONTEXT should be a list (USER ROLE TYPE RANGE), where the list
2885elements are strings naming the components of a SELinux context.
2886
2887This function does nothing if SELinux is disabled, or if Emacs was not
2888compiled with SELinux support. */)
5842a27b 2889 (Lisp_Object filename, Lisp_Object context)
574c05e2 2890{
0f4a96b5 2891 Lisp_Object absname;
574c05e2 2892 Lisp_Object handler;
0f4a96b5
JB
2893#if HAVE_LIBSELINUX
2894 Lisp_Object encoded_absname;
574c05e2
KK
2895 Lisp_Object user = CAR_SAFE (context);
2896 Lisp_Object role = CAR_SAFE (CDR_SAFE (context));
2897 Lisp_Object type = CAR_SAFE (CDR_SAFE (CDR_SAFE (context)));
2898 Lisp_Object range = CAR_SAFE (CDR_SAFE (CDR_SAFE (CDR_SAFE (context))));
574c05e2 2899 security_context_t con;
f75d7a91
PE
2900 bool fail;
2901 int conlength;
574c05e2
KK
2902 context_t parsed_con;
2903#endif
2904
4b4deea2 2905 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
574c05e2
KK
2906
2907 /* If the file name has special constructs in it,
2908 call the corresponding file handler. */
2909 handler = Ffind_file_name_handler (absname, Qset_file_selinux_context);
2910 if (!NILP (handler))
2911 return call3 (handler, Qset_file_selinux_context, absname, context);
2912
0f4a96b5 2913#if HAVE_LIBSELINUX
574c05e2
KK
2914 if (is_selinux_enabled ())
2915 {
2916 /* Get current file context. */
a9b53ad3 2917 encoded_absname = ENCODE_FILE (absname);
b14aac08 2918 conlength = lgetfilecon (SSDATA (encoded_absname), &con);
574c05e2
KK
2919 if (conlength > 0)
2920 {
2921 parsed_con = context_new (con);
2922 /* Change the parts defined in the parameter.*/
2923 if (STRINGP (user))
2924 {
b14aac08 2925 if (context_user_set (parsed_con, SSDATA (user)))
574c05e2
KK
2926 error ("Doing context_user_set");
2927 }
2928 if (STRINGP (role))
2929 {
b14aac08 2930 if (context_role_set (parsed_con, SSDATA (role)))
574c05e2
KK
2931 error ("Doing context_role_set");
2932 }
2933 if (STRINGP (type))
2934 {
b14aac08 2935 if (context_type_set (parsed_con, SSDATA (type)))
574c05e2
KK
2936 error ("Doing context_type_set");
2937 }
2938 if (STRINGP (range))
2939 {
b14aac08 2940 if (context_range_set (parsed_con, SSDATA (range)))
574c05e2
KK
2941 error ("Doing context_range_set");
2942 }
2943
24c51a09 2944 /* Set the modified context back to the file. */
f75d7a91
PE
2945 fail = (lsetfilecon (SSDATA (encoded_absname),
2946 context_str (parsed_con))
2947 != 0);
24c51a09
GM
2948 /* See http://debbugs.gnu.org/11245 for ENOTSUP. */
2949 if (fail && errno != ENOTSUP)
574c05e2
KK
2950 report_file_error ("Doing lsetfilecon", Fcons (absname, Qnil));
2951
2952 context_free (parsed_con);
c6ba4138 2953 freecon (con);
574c05e2
KK
2954 }
2955 else
5e617bc2 2956 report_file_error ("Doing lgetfilecon", Fcons (absname, Qnil));
574c05e2
KK
2957 }
2958#endif
2959
2960 return Qnil;
2961}
2962\f
570d7624 2963DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
d4a42098
KS
2964 doc: /* Return mode bits of file named FILENAME, as an integer.
2965Return nil, if file does not exist or is not accessible. */)
5842a27b 2966 (Lisp_Object filename)
570d7624 2967{
199607e4 2968 Lisp_Object absname;
570d7624 2969 struct stat st;
32f4334d 2970 Lisp_Object handler;
570d7624 2971
4b4deea2 2972 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
570d7624 2973
32f4334d
RS
2974 /* If the file name has special constructs in it,
2975 call the corresponding file handler. */
199607e4 2976 handler = Ffind_file_name_handler (absname, Qfile_modes);
32f4334d 2977 if (!NILP (handler))
199607e4 2978 return call2 (handler, Qfile_modes, absname);
32f4334d 2979
b1d1b865
RS
2980 absname = ENCODE_FILE (absname);
2981
42a5b22f 2982 if (stat (SSDATA (absname), &st) < 0)
570d7624 2983 return Qnil;
3ace87e3 2984
570d7624
JB
2985 return make_number (st.st_mode & 07777);
2986}
2987
09fbdf6c
MC
2988DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2,
2989 "(let ((file (read-file-name \"File: \"))) \
2990 (list file (read-file-modes nil file)))",
8c1a1077 2991 doc: /* Set mode bits of file named FILENAME to MODE (an integer).
ea429250
EZ
2992Only the 12 low bits of MODE are used.
2993
2994Interactively, mode bits are read by `read-file-modes', which accepts
712adc82 2995symbolic notation, like the `chmod' command from GNU Coreutils. */)
5842a27b 2996 (Lisp_Object filename, Lisp_Object mode)
570d7624 2997{
b1d1b865 2998 Lisp_Object absname, encoded_absname;
32f4334d 2999 Lisp_Object handler;
570d7624 3000
4b4deea2 3001 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
b7826503 3002 CHECK_NUMBER (mode);
570d7624 3003
32f4334d
RS
3004 /* If the file name has special constructs in it,
3005 call the corresponding file handler. */
199607e4 3006 handler = Ffind_file_name_handler (absname, Qset_file_modes);
32f4334d 3007 if (!NILP (handler))
199607e4 3008 return call3 (handler, Qset_file_modes, absname, mode);
32f4334d 3009
b1d1b865
RS
3010 encoded_absname = ENCODE_FILE (absname);
3011
18c52557 3012 if (chmod (SSDATA (encoded_absname), XINT (mode) & 07777) < 0)
199607e4 3013 report_file_error ("Doing chmod", Fcons (absname, Qnil));
570d7624
JB
3014
3015 return Qnil;
3016}
3017
c24e9a53 3018DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0,
8c1a1077
PJ
3019 doc: /* Set the file permission bits for newly created files.
3020The argument MODE should be an integer; only the low 9 bits are used.
3021This setting is inherited by subprocesses. */)
5842a27b 3022 (Lisp_Object mode)
36a8c287 3023{
b7826503 3024 CHECK_NUMBER (mode);
199607e4 3025
5f85ea58 3026 umask ((~ XINT (mode)) & 0777);
36a8c287
JB
3027
3028 return Qnil;
3029}
3030
c24e9a53 3031DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0,
8c1a1077
PJ
3032 doc: /* Return the default file protection for created files.
3033The value is an integer. */)
5842a27b 3034 (void)
36a8c287 3035{
f75d7a91 3036 mode_t realmask;
5f85ea58 3037 Lisp_Object value;
36a8c287 3038
4d7e6e51 3039 block_input ();
5f85ea58
RS
3040 realmask = umask (0);
3041 umask (realmask);
4d7e6e51 3042 unblock_input ();
36a8c287 3043
46283abe 3044 XSETINT (value, (~ realmask) & 0777);
5f85ea58 3045 return value;
36a8c287 3046}
819da85b 3047\f
819da85b
EZ
3048
3049DEFUN ("set-file-times", Fset_file_times, Sset_file_times, 1, 2, 0,
f839df0c 3050 doc: /* Set times of file FILENAME to TIMESTAMP.
819da85b
EZ
3051Set both access and modification times.
3052Return t on success, else nil.
f839df0c 3053Use the current time if TIMESTAMP is nil. TIMESTAMP is in the format of
819da85b 3054`current-time'. */)
f839df0c 3055 (Lisp_Object filename, Lisp_Object timestamp)
819da85b
EZ
3056{
3057 Lisp_Object absname, encoded_absname;
3058 Lisp_Object handler;
31571fd7 3059 EMACS_TIME t = lisp_time_argument (timestamp);
819da85b 3060
4b4deea2 3061 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
819da85b
EZ
3062
3063 /* If the file name has special constructs in it,
3064 call the corresponding file handler. */
3065 handler = Ffind_file_name_handler (absname, Qset_file_times);
3066 if (!NILP (handler))
f839df0c 3067 return call3 (handler, Qset_file_times, absname, timestamp);
819da85b
EZ
3068
3069 encoded_absname = ENCODE_FILE (absname);
5df5e07c 3070
819da85b 3071 {
d35af63c 3072 if (set_file_times (-1, SSDATA (encoded_absname), t, t))
819da85b 3073 {
0d9f584b 3074#ifdef MSDOS
819da85b 3075 /* Setting times on a directory always fails. */
73dcdb9f 3076 if (file_directory_p (SSDATA (encoded_absname)))
819da85b
EZ
3077 return Qnil;
3078#endif
3079 report_file_error ("Setting file times", Fcons (absname, Qnil));
3080 return Qnil;
3081 }
3082 }
5df5e07c 3083
819da85b
EZ
3084 return Qt;
3085}
f793dc6c 3086\f
697c17a2 3087#ifdef HAVE_SYNC
85ffea93 3088DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
8c1a1077 3089 doc: /* Tell Unix to finish all pending disk updates. */)
5842a27b 3090 (void)
85ffea93
RS
3091{
3092 sync ();
3093 return Qnil;
3094}
3095
697c17a2 3096#endif /* HAVE_SYNC */
85ffea93 3097
570d7624 3098DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
8c1a1077
PJ
3099 doc: /* Return t if file FILE1 is newer than file FILE2.
3100If FILE1 does not exist, the answer is nil;
3101otherwise, if FILE2 does not exist, the answer is t. */)
5842a27b 3102 (Lisp_Object file1, Lisp_Object file2)
570d7624 3103{
199607e4 3104 Lisp_Object absname1, absname2;
39adff0d 3105 struct stat st1, st2;
32f4334d 3106 Lisp_Object handler;
09121adc 3107 struct gcpro gcpro1, gcpro2;
570d7624 3108
b7826503
PJ
3109 CHECK_STRING (file1);
3110 CHECK_STRING (file2);
570d7624 3111
199607e4
RS
3112 absname1 = Qnil;
3113 GCPRO2 (absname1, file2);
4b4deea2
TT
3114 absname1 = expand_and_dir_to_file (file1, BVAR (current_buffer, directory));
3115 absname2 = expand_and_dir_to_file (file2, BVAR (current_buffer, directory));
09121adc 3116 UNGCPRO;
570d7624 3117
32f4334d
RS
3118 /* If the file name has special constructs in it,
3119 call the corresponding file handler. */
199607e4 3120 handler = Ffind_file_name_handler (absname1, Qfile_newer_than_file_p);
51cf6d37 3121 if (NILP (handler))
199607e4 3122 handler = Ffind_file_name_handler (absname2, Qfile_newer_than_file_p);
32f4334d 3123 if (!NILP (handler))
199607e4 3124 return call3 (handler, Qfile_newer_than_file_p, absname1, absname2);
32f4334d 3125
b1d1b865
RS
3126 GCPRO2 (absname1, absname2);
3127 absname1 = ENCODE_FILE (absname1);
3128 absname2 = ENCODE_FILE (absname2);
3129 UNGCPRO;
3130
39adff0d 3131 if (stat (SSDATA (absname1), &st1) < 0)
570d7624
JB
3132 return Qnil;
3133
39adff0d 3134 if (stat (SSDATA (absname2), &st2) < 0)
570d7624
JB
3135 return Qt;
3136
39adff0d
PE
3137 return (EMACS_TIME_GT (get_stat_mtime (&st1), get_stat_mtime (&st2))
3138 ? Qt : Qnil);
570d7624
JB
3139}
3140\f
6fdaa9a0
KH
3141#ifndef READ_BUF_SIZE
3142#define READ_BUF_SIZE (64 << 10)
3143#endif
d311d28c
PE
3144/* Some buffer offsets are stored in 'int' variables. */
3145verify (READ_BUF_SIZE <= INT_MAX);
6fdaa9a0 3146
98a7d268
KH
3147/* This function is called after Lisp functions to decide a coding
3148 system are called, or when they cause an error. Before they are
3149 called, the current buffer is set unibyte and it contains only a
3150 newly inserted text (thus the buffer was empty before the
3151 insertion).
3152
3153 The functions may set markers, overlays, text properties, or even
3154 alter the buffer contents, change the current buffer.
3155
3156 Here, we reset all those changes by:
3157 o set back the current buffer.
3158 o move all markers and overlays to BEG.
3159 o remove all text properties.
3160 o set back the buffer multibyteness. */
f736ffbf
KH
3161
3162static Lisp_Object
971de7fb 3163decide_coding_unwind (Lisp_Object unwind_data)
f736ffbf 3164{
98a7d268 3165 Lisp_Object multibyte, undo_list, buffer;
f736ffbf 3166
98a7d268
KH
3167 multibyte = XCAR (unwind_data);
3168 unwind_data = XCDR (unwind_data);
3169 undo_list = XCAR (unwind_data);
3170 buffer = XCDR (unwind_data);
3171
a3d794a1 3172 set_buffer_internal (XBUFFER (buffer));
98a7d268
KH
3173 adjust_markers_for_delete (BEG, BEG_BYTE, Z, Z_BYTE);
3174 adjust_overlays_for_delete (BEG, Z - BEG);
0c94c8d6 3175 set_buffer_intervals (current_buffer, NULL);
98a7d268
KH
3176 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3177
3178 /* Now we are safe to change the buffer's multibyteness directly. */
39eb03f1
PE
3179 bset_enable_multibyte_characters (current_buffer, multibyte);
3180 bset_undo_list (current_buffer, undo_list);
f736ffbf
KH
3181
3182 return Qnil;
3183}
3184
55587f8a 3185
1b978129 3186/* Used to pass values from insert-file-contents to read_non_regular. */
55587f8a 3187
1b978129 3188static int non_regular_fd;
d311d28c
PE
3189static ptrdiff_t non_regular_inserted;
3190static int non_regular_nbytes;
55587f8a 3191
55587f8a 3192
1b978129 3193/* Read from a non-regular file.
438105ed 3194 Read non_regular_nbytes bytes max from non_regular_fd.
1b978129
GM
3195 Non_regular_inserted specifies where to put the read bytes.
3196 Value is the number of bytes read. */
55587f8a
GM
3197
3198static Lisp_Object
9c8a2331 3199read_non_regular (Lisp_Object ignore)
55587f8a 3200{
d311d28c 3201 int nbytes;
efdc16c9 3202
1b978129
GM
3203 immediate_quit = 1;
3204 QUIT;
3205 nbytes = emacs_read (non_regular_fd,
5976c3fe
PE
3206 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
3207 + non_regular_inserted),
1b978129 3208 non_regular_nbytes);
1b978129
GM
3209 immediate_quit = 0;
3210 return make_number (nbytes);
3211}
55587f8a 3212
d0e2444e 3213
1b978129
GM
3214/* Condition-case handler used when reading from non-regular files
3215 in insert-file-contents. */
3216
3217static Lisp_Object
9c8a2331 3218read_non_regular_quit (Lisp_Object ignore)
1b978129 3219{
55587f8a
GM
3220 return Qnil;
3221}
3222
e69dafad
PE
3223/* Reposition FD to OFFSET, based on WHENCE. This acts like lseek
3224 except that it also tests for OFFSET being out of lseek's range. */
3225static off_t
3226emacs_lseek (int fd, EMACS_INT offset, int whence)
3227{
096a9774
PE
3228 /* Use "&" rather than "&&" to suppress a bogus GCC warning; see
3229 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43772>. */
ce2fe65a 3230 if (! ((offset >= TYPE_MINIMUM (off_t)) & (offset <= TYPE_MAXIMUM (off_t))))
e69dafad
PE
3231 {
3232 errno = EINVAL;
3233 return -1;
3234 }
3235 return lseek (fd, offset, whence);
3236}
3237
f0941253 3238/* Return a special time value indicating the error number ERRNUM. */
dbeed9a6 3239static EMACS_TIME
f0941253 3240time_error_value (int errnum)
dbeed9a6 3241{
0497dc44 3242 int ns = (errnum == ENOENT || errnum == EACCES || errnum == ENOTDIR
dbeed9a6
PE
3243 ? NONEXISTENT_MODTIME_NSECS
3244 : UNKNOWN_MODTIME_NSECS);
e9a9ae03 3245 return make_emacs_time (0, ns);
dbeed9a6 3246}
55587f8a 3247
570d7624 3248DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
8c1a1077
PJ
3249 1, 5, 0,
3250 doc: /* Insert contents of file FILENAME after point.
cf6d2357 3251Returns list of absolute file name and number of characters inserted.
6f2528d8
MR
3252If second argument VISIT is non-nil, the buffer's visited filename and
3253last save file modtime are set, and it is marked unmodified. If
3254visiting and the file does not exist, visiting is completed before the
3255error is signaled.
3256
3257The optional third and fourth arguments BEG and END specify what portion
3258of the file to insert. These arguments count bytes in the file, not
3259characters in the buffer. If VISIT is non-nil, BEG and END must be nil.
3260
3261If optional fifth argument REPLACE is non-nil, replace the current
3262buffer contents (in the accessible portion) with the file contents.
3263This is better than simply deleting and inserting the whole thing
3264because (1) it preserves some marker positions and (2) it puts less data
3265in the undo list. When REPLACE is non-nil, the second return value is
3266the number of characters that replace previous buffer contents.
3267
3268This function does code conversion according to the value of
3269`coding-system-for-read' or `file-coding-system-alist', and sets the
3270variable `last-coding-system-used' to the coding system actually used. */)
5842a27b 3271 (Lisp_Object filename, Lisp_Object visit, Lisp_Object beg, Lisp_Object end, Lisp_Object replace)
570d7624
JB
3272{
3273 struct stat st;
dbeed9a6
PE
3274 int file_status;
3275 EMACS_TIME mtime;
f75d7a91 3276 int fd;
d311d28c 3277 ptrdiff_t inserted = 0;
f75d7a91
PE
3278 bool nochange = 0;
3279 ptrdiff_t how_much;
728f8f0a 3280 off_t beg_offset, end_offset;
f75d7a91 3281 int unprocessed;
d311d28c 3282 ptrdiff_t count = SPECPDL_INDEX ();
6f2528d8
MR
3283 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3284 Lisp_Object handler, val, insval, orig_filename, old_undo;
d6a3cc15 3285 Lisp_Object p;
d311d28c 3286 ptrdiff_t total = 0;
f75d7a91 3287 bool not_regular = 0;
e5e9d610 3288 int save_errno = 0;
5976c3fe 3289 char read_buf[READ_BUF_SIZE];
6fdaa9a0 3290 struct coding_system coding;
5976c3fe 3291 char buffer[1 << 14];
f75d7a91
PE
3292 bool replace_handled = 0;
3293 bool set_coding_system = 0;
db327c7e 3294 Lisp_Object coding_system;
f75d7a91 3295 bool read_quit = 0;
490ee853 3296 Lisp_Object old_Vdeactivate_mark = Vdeactivate_mark;
f75d7a91
PE
3297 bool we_locked_file = 0;
3298 bool deferred_remove_unwind_protect = 0;
32f4334d 3299
95385625
RS
3300 if (current_buffer->base_buffer && ! NILP (visit))
3301 error ("Cannot do file visiting in an indirect buffer");
3302
4b4deea2 3303 if (!NILP (BVAR (current_buffer, read_only)))
95385625
RS
3304 Fbarf_if_buffer_read_only ();
3305
32f4334d 3306 val = Qnil;
d6a3cc15 3307 p = Qnil;
b1d1b865 3308 orig_filename = Qnil;
6f2528d8 3309 old_undo = Qnil;
32f4334d 3310
6f2528d8 3311 GCPRO5 (filename, val, p, orig_filename, old_undo);
570d7624 3312
b7826503 3313 CHECK_STRING (filename);
570d7624
JB
3314 filename = Fexpand_file_name (filename, Qnil);
3315
1c157f8d
KH
3316 /* The value Qnil means that the coding system is not yet
3317 decided. */
3318 coding_system = Qnil;
3319
32f4334d
RS
3320 /* If the file name has special constructs in it,
3321 call the corresponding file handler. */
49307295 3322 handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
32f4334d
RS
3323 if (!NILP (handler))
3324 {
3d0387c0
RS
3325 val = call6 (handler, Qinsert_file_contents, filename,
3326 visit, beg, end, replace);
d311d28c
PE
3327 if (CONSP (val) && CONSP (XCDR (val))
3328 && RANGED_INTEGERP (0, XCAR (XCDR (val)), ZV - PT))
03699b14 3329 inserted = XINT (XCAR (XCDR (val)));
32f4334d
RS
3330 goto handled;
3331 }
3332
b1d1b865
RS
3333 orig_filename = filename;
3334 filename = ENCODE_FILE (filename);
3335
570d7624
JB
3336 fd = -1;
3337
c1c4693e
RS
3338#ifdef WINDOWSNT
3339 {
3340 Lisp_Object tem = Vw32_get_true_file_attributes;
3341
3342 /* Tell stat to use expensive method to get accurate info. */
3343 Vw32_get_true_file_attributes = Qt;
dbeed9a6 3344 file_status = stat (SSDATA (filename), &st);
c1c4693e
RS
3345 Vw32_get_true_file_attributes = tem;
3346 }
c1c4693e 3347#else
dbeed9a6 3348 file_status = stat (SSDATA (filename), &st);
c1c4693e 3349#endif /* WINDOWSNT */
dbeed9a6
PE
3350
3351 if (file_status == 0)
3352 mtime = get_stat_mtime (&st);
3353 else
570d7624 3354 {
99bc28f4 3355 badopen:
e5e9d610 3356 save_errno = errno;
265a9e55 3357 if (NILP (visit))
b1d1b865 3358 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
f0941253 3359 mtime = time_error_value (save_errno);
b885bf36 3360 st.st_size = -1;
570d7624 3361 how_much = 0;
0de6b8f4 3362 if (!NILP (Vcoding_system_for_read))
22d92d6b 3363 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read);
570d7624
JB
3364 goto notfound;
3365 }
3366
be53b411
JB
3367 /* This code will need to be changed in order to work on named
3368 pipes, and it's probably just not worth it. So we should at
3369 least signal an error. */
99bc28f4 3370 if (!S_ISREG (st.st_mode))
330bfe57 3371 {
d4b8687b
RS
3372 not_regular = 1;
3373
3374 if (! NILP (visit))
3375 goto notfound;
3376
3377 if (! NILP (replace) || ! NILP (beg) || ! NILP (end))
24b1ddad
KS
3378 xsignal2 (Qfile_error,
3379 build_string ("not a regular file"), orig_filename);
330bfe57 3380 }
be53b411 3381
99bc28f4 3382 if (fd < 0)
42a5b22f 3383 if ((fd = emacs_open (SSDATA (filename), O_RDONLY, 0)) < 0)
99bc28f4
KH
3384 goto badopen;
3385
3386 /* Replacement should preserve point as it preserves markers. */
3387 if (!NILP (replace))
3388 record_unwind_protect (restore_point_unwind, Fpoint_marker ());
3389
3390 record_unwind_protect (close_file_unwind, make_number (fd));
3391
2a47c44d 3392
9f57b6b4
KH
3393 if (!NILP (visit))
3394 {
3395 if (!NILP (beg) || !NILP (end))
3396 error ("Attempt to visit less than an entire file");
3397 if (BEG < Z && NILP (replace))
3398 error ("Cannot do file visiting in a non-empty buffer");
3399 }
7fded690
JB
3400
3401 if (!NILP (beg))
728f8f0a 3402 {
ce2fe65a 3403 if (! RANGED_INTEGERP (0, beg, TYPE_MAXIMUM (off_t)))
728f8f0a
PE
3404 wrong_type_argument (intern ("file-offset"), beg);
3405 beg_offset = XFASTINT (beg);
3406 }
7fded690 3407 else
728f8f0a 3408 beg_offset = 0;
7fded690
JB
3409
3410 if (!NILP (end))
728f8f0a 3411 {
ce2fe65a 3412 if (! RANGED_INTEGERP (0, end, TYPE_MAXIMUM (off_t)))
728f8f0a
PE
3413 wrong_type_argument (intern ("file-offset"), end);
3414 end_offset = XFASTINT (end);
3415 }
7fded690
JB
3416 else
3417 {
728f8f0a
PE
3418 if (not_regular)
3419 end_offset = TYPE_MAXIMUM (off_t);
3420 else
d4b8687b 3421 {
728f8f0a
PE
3422 end_offset = st.st_size;
3423
3424 /* A negative size can happen on a platform that allows file
3425 sizes greater than the maximum off_t value. */
3426 if (end_offset < 0)
3427 buffer_overflow ();
68c45bf0 3428
d21dd12d
GM
3429 /* The file size returned from stat may be zero, but data
3430 may be readable nonetheless, for example when this is a
3431 file in the /proc filesystem. */
728f8f0a
PE
3432 if (end_offset == 0)
3433 end_offset = READ_BUF_SIZE;
d4b8687b 3434 }
7fded690
JB
3435 }
3436
728f8f0a
PE
3437 /* Check now whether the buffer will become too large,
3438 in the likely case where the file's length is not changing.
3439 This saves a lot of needless work before a buffer overflow. */
3440 if (! not_regular)
3441 {
3442 /* The likely offset where we will stop reading. We could read
3443 more (or less), if the file grows (or shrinks) as we read it. */
3444 off_t likely_end = min (end_offset, st.st_size);
3445
3446 if (beg_offset < likely_end)
3447 {
ce2fe65a
AS
3448 ptrdiff_t buf_bytes
3449 = Z_BYTE - (!NILP (replace) ? ZV_BYTE - BEGV_BYTE : 0);
728f8f0a
PE
3450 ptrdiff_t buf_growth_max = BUF_BYTES_MAX - buf_bytes;
3451 off_t likely_growth = likely_end - beg_offset;
3452 if (buf_growth_max < likely_growth)
3453 buffer_overflow ();
3454 }
3455 }
3456
3457 /* Prevent redisplay optimizations. */
3458 current_buffer->clip_changed = 1;
3459
356a6224 3460 if (EQ (Vcoding_system_for_read, Qauto_save_coding))
5560aecd 3461 {
75421805 3462 coding_system = coding_inherit_eol_type (Qutf_8_emacs, Qunix);
5560aecd
KH
3463 setup_coding_system (coding_system, &coding);
3464 /* Ensure we set Vlast_coding_system_used. */
3465 set_coding_system = 1;
3466 }
356a6224 3467 else if (BEG < Z)
f736ffbf
KH
3468 {
3469 /* Decide the coding system to use for reading the file now
3470 because we can't use an optimized method for handling
3471 `coding:' tag if the current buffer is not empty. */
f736ffbf 3472 if (!NILP (Vcoding_system_for_read))
db327c7e 3473 coding_system = Vcoding_system_for_read;
f736ffbf
KH
3474 else
3475 {
3476 /* Don't try looking inside a file for a coding system
3477 specification if it is not seekable. */
3478 if (! not_regular && ! NILP (Vset_auto_coding_function))
3479 {
3480 /* Find a coding system specified in the heading two
3481 lines or in the tailing several lines of the file.
3482 We assume that the 1K-byte and 3K-byte for heading
003a7eaa 3483 and tailing respectively are sufficient for this
f736ffbf 3484 purpose. */
d311d28c 3485 int nread;
f736ffbf
KH
3486
3487 if (st.st_size <= (1024 * 4))
68c45bf0 3488 nread = emacs_read (fd, read_buf, 1024 * 4);
f736ffbf
KH
3489 else
3490 {
68c45bf0 3491 nread = emacs_read (fd, read_buf, 1024);
f736ffbf
KH
3492 if (nread >= 0)
3493 {
e69dafad 3494 if (lseek (fd, st.st_size - (1024 * 3), SEEK_SET) < 0)
f736ffbf
KH
3495 report_file_error ("Setting file position",
3496 Fcons (orig_filename, Qnil));
68c45bf0 3497 nread += emacs_read (fd, read_buf + nread, 1024 * 3);
f736ffbf
KH
3498 }
3499 }
feb9dc27 3500
f736ffbf
KH
3501 if (nread < 0)
3502 error ("IO error reading %s: %s",
d5db4077 3503 SDATA (orig_filename), emacs_strerror (errno));
f736ffbf
KH
3504 else if (nread > 0)
3505 {
f736ffbf 3506 struct buffer *prev = current_buffer;
f839df0c 3507 Lisp_Object workbuf;
685fc579 3508 struct buffer *buf;
f736ffbf 3509
66322887 3510 record_unwind_current_buffer ();
1d92afcd 3511
f839df0c
PE
3512 workbuf = Fget_buffer_create (build_string (" *code-converting-work*"));
3513 buf = XBUFFER (workbuf);
685fc579 3514
29ea8ae9 3515 delete_all_overlays (buf);
39eb03f1
PE
3516 bset_directory (buf, BVAR (current_buffer, directory));
3517 bset_read_only (buf, Qnil);
3518 bset_filename (buf, Qnil);
3519 bset_undo_list (buf, Qt);
fd318b54
DA
3520 eassert (buf->overlays_before == NULL);
3521 eassert (buf->overlays_after == NULL);
efdc16c9 3522
685fc579
RS
3523 set_buffer_internal (buf);
3524 Ferase_buffer ();
39eb03f1 3525 bset_enable_multibyte_characters (buf, Qnil);
685fc579 3526
b68864e5 3527 insert_1_both ((char *) read_buf, nread, nread, 0, 0, 0);
f736ffbf 3528 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
db327c7e 3529 coding_system = call2 (Vset_auto_coding_function,
8f924df7 3530 filename, make_number (nread));
f736ffbf 3531 set_buffer_internal (prev);
efdc16c9 3532
f736ffbf
KH
3533 /* Discard the unwind protect for recovering the
3534 current buffer. */
3535 specpdl_ptr--;
3536
3537 /* Rewind the file for the actual read done later. */
e69dafad 3538 if (lseek (fd, 0, SEEK_SET) < 0)
f736ffbf
KH
3539 report_file_error ("Setting file position",
3540 Fcons (orig_filename, Qnil));
3541 }
3542 }
feb9dc27 3543
db327c7e 3544 if (NILP (coding_system))
f736ffbf
KH
3545 {
3546 /* If we have not yet decided a coding system, check
3547 file-coding-system-alist. */
8f924df7 3548 Lisp_Object args[6];
f736ffbf
KH
3549
3550 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3551 args[2] = visit, args[3] = beg, args[4] = end, args[5] = replace;
8f924df7
KH
3552 coding_system = Ffind_operation_coding_system (6, args);
3553 if (CONSP (coding_system))
3554 coding_system = XCAR (coding_system);
f736ffbf
KH
3555 }
3556 }
c9e82392 3557
db327c7e
KH
3558 if (NILP (coding_system))
3559 coding_system = Qundecided;
3560 else
3561 CHECK_CODING_SYSTEM (coding_system);
c8a6d68a 3562
4b4deea2 3563 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
237a6fd2
RS
3564 /* We must suppress all character code conversion except for
3565 end-of-line conversion. */
db327c7e 3566 coding_system = raw_text_coding_system (coding_system);
54369368 3567
db327c7e
KH
3568 setup_coding_system (coding_system, &coding);
3569 /* Ensure we set Vlast_coding_system_used. */
3570 set_coding_system = 1;
f736ffbf 3571 }
6cf71bf1 3572
3d0387c0
RS
3573 /* If requested, replace the accessible part of the buffer
3574 with the file contents. Avoid replacing text at the
3575 beginning or end of the buffer that matches the file contents;
3dbcf3f6
RS
3576 that preserves markers pointing to the unchanged parts.
3577
3578 Here we implement this feature in an optimized way
3579 for the case where code conversion is NOT needed.
3580 The following if-statement handles the case of conversion
727a0b4a
RS
3581 in a less optimal way.
3582
3583 If the code conversion is "automatic" then we try using this
3584 method and hope for the best.
3585 But if we discover the need for conversion, we give up on this method
3586 and let the following if-statement handle the replace job. */
3dbcf3f6 3587 if (!NILP (replace)
f736ffbf 3588 && BEGV < ZV
db327c7e
KH
3589 && (NILP (coding_system)
3590 || ! CODING_REQUIRE_DECODING (&coding)))
3d0387c0 3591 {
ec7adf26
RS
3592 /* same_at_start and same_at_end count bytes,
3593 because file access counts bytes
3594 and BEG and END count bytes. */
d311d28c
PE
3595 ptrdiff_t same_at_start = BEGV_BYTE;
3596 ptrdiff_t same_at_end = ZV_BYTE;
3597 ptrdiff_t overlap;
6fdaa9a0 3598 /* There is still a possibility we will find the need to do code
f75d7a91 3599 conversion. If that happens, set this variable to
727a0b4a 3600 give up on handling REPLACE in the optimized way. */
f75d7a91 3601 bool giveup_match_end = 0;
9c28748f 3602
728f8f0a 3603 if (beg_offset != 0)
4d2a0879 3604 {
728f8f0a 3605 if (lseek (fd, beg_offset, SEEK_SET) < 0)
4d2a0879 3606 report_file_error ("Setting file position",
b1d1b865 3607 Fcons (orig_filename, Qnil));
4d2a0879
RS
3608 }
3609
3d0387c0
RS
3610 immediate_quit = 1;
3611 QUIT;
3612 /* Count how many chars at the start of the file
3613 match the text at the beginning of the buffer. */
3614 while (1)
3615 {
d311d28c 3616 int nread, bufpos;
3d0387c0 3617
68c45bf0 3618 nread = emacs_read (fd, buffer, sizeof buffer);
3d0387c0
RS
3619 if (nread < 0)
3620 error ("IO error reading %s: %s",
5976c3fe 3621 SSDATA (orig_filename), emacs_strerror (errno));
3d0387c0
RS
3622 else if (nread == 0)
3623 break;
6fdaa9a0 3624
db327c7e 3625 if (CODING_REQUIRE_DETECTION (&coding))
727a0b4a 3626 {
5976c3fe
PE
3627 coding_system = detect_coding_system ((unsigned char *) buffer,
3628 nread, nread, 1, 0,
db327c7e
KH
3629 coding_system);
3630 setup_coding_system (coding_system, &coding);
727a0b4a
RS
3631 }
3632
db327c7e
KH
3633 if (CODING_REQUIRE_DECODING (&coding))
3634 /* We found that the file should be decoded somehow.
727a0b4a
RS
3635 Let's give up here. */
3636 {
3637 giveup_match_end = 1;
3638 break;
3639 }
3640
3d0387c0 3641 bufpos = 0;
ec7adf26 3642 while (bufpos < nread && same_at_start < ZV_BYTE
6fdaa9a0 3643 && FETCH_BYTE (same_at_start) == buffer[bufpos])
3d0387c0
RS
3644 same_at_start++, bufpos++;
3645 /* If we found a discrepancy, stop the scan.
8e6208c5 3646 Otherwise loop around and scan the next bufferful. */
3d0387c0
RS
3647 if (bufpos != nread)
3648 break;
3649 }
3650 immediate_quit = 0;
3651 /* If the file matches the buffer completely,
3652 there's no need to replace anything. */
2ba8e008 3653 if (same_at_start - BEGV_BYTE == end_offset - beg_offset)
3d0387c0 3654 {
68c45bf0 3655 emacs_close (fd);
a1d2b64a 3656 specpdl_ptr--;
1051b3b3 3657 /* Truncate the buffer to the size of the file. */
7dae4502 3658 del_range_1 (same_at_start, same_at_end, 0, 0);
3d0387c0
RS
3659 goto handled;
3660 }
3661 immediate_quit = 1;
3662 QUIT;
3663 /* Count how many chars at the end of the file
6fdaa9a0
KH
3664 match the text at the end of the buffer. But, if we have
3665 already found that decoding is necessary, don't waste time. */
3666 while (!giveup_match_end)
3d0387c0 3667 {
728f8f0a
PE
3668 int total_read, nread, bufpos, trial;
3669 off_t curpos;
3d0387c0
RS
3670
3671 /* At what file position are we now scanning? */
728f8f0a 3672 curpos = end_offset - (ZV_BYTE - same_at_end);
fc81fa9e
KH
3673 /* If the entire file matches the buffer tail, stop the scan. */
3674 if (curpos == 0)
3675 break;
3d0387c0
RS
3676 /* How much can we scan in the next step? */
3677 trial = min (curpos, sizeof buffer);
728f8f0a 3678 if (lseek (fd, curpos - trial, SEEK_SET) < 0)
3d0387c0 3679 report_file_error ("Setting file position",
b1d1b865 3680 Fcons (orig_filename, Qnil));
3d0387c0 3681
b02439c8 3682 total_read = nread = 0;
3d0387c0
RS
3683 while (total_read < trial)
3684 {
68c45bf0 3685 nread = emacs_read (fd, buffer + total_read, trial - total_read);
2bd2273e 3686 if (nread < 0)
3d0387c0 3687 error ("IO error reading %s: %s",
d5db4077 3688 SDATA (orig_filename), emacs_strerror (errno));
2bd2273e
GM
3689 else if (nread == 0)
3690 break;
3d0387c0
RS
3691 total_read += nread;
3692 }
efdc16c9 3693
8e6208c5 3694 /* Scan this bufferful from the end, comparing with
3d0387c0
RS
3695 the Emacs buffer. */
3696 bufpos = total_read;
efdc16c9 3697
3d0387c0
RS
3698 /* Compare with same_at_start to avoid counting some buffer text
3699 as matching both at the file's beginning and at the end. */
3700 while (bufpos > 0 && same_at_end > same_at_start
6fdaa9a0 3701 && FETCH_BYTE (same_at_end - 1) == buffer[bufpos - 1])
3d0387c0 3702 same_at_end--, bufpos--;
727a0b4a 3703
3d0387c0 3704 /* If we found a discrepancy, stop the scan.
8e6208c5 3705 Otherwise loop around and scan the preceding bufferful. */
3d0387c0 3706 if (bufpos != 0)
727a0b4a
RS
3707 {
3708 /* If this discrepancy is because of code conversion,
3709 we cannot use this method; giveup and try the other. */
3710 if (same_at_end > same_at_start
3711 && FETCH_BYTE (same_at_end - 1) >= 0200
4b4deea2 3712 && ! NILP (BVAR (current_buffer, enable_multibyte_characters))
c8a6d68a 3713 && (CODING_MAY_REQUIRE_DECODING (&coding)))
727a0b4a
RS
3714 giveup_match_end = 1;
3715 break;
3716 }
b02439c8
GM
3717
3718 if (nread == 0)
3719 break;
3d0387c0
RS
3720 }
3721 immediate_quit = 0;
9c28748f 3722
727a0b4a
RS
3723 if (! giveup_match_end)
3724 {
d311d28c 3725 ptrdiff_t temp;
ec7adf26 3726
727a0b4a 3727 /* We win! We can handle REPLACE the optimized way. */
9c28748f 3728
20f6783d
RS
3729 /* Extend the start of non-matching text area to multibyte
3730 character boundary. */
4b4deea2 3731 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
20f6783d
RS
3732 while (same_at_start > BEGV_BYTE
3733 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3734 same_at_start--;
3735
3736 /* Extend the end of non-matching text area to multibyte
71312b68 3737 character boundary. */
4b4deea2 3738 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
ec7adf26
RS
3739 while (same_at_end < ZV_BYTE
3740 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
71312b68
RS
3741 same_at_end++;
3742
727a0b4a 3743 /* Don't try to reuse the same piece of text twice. */
ec7adf26 3744 overlap = (same_at_start - BEGV_BYTE
728f8f0a
PE
3745 - (same_at_end
3746 + (! NILP (end) ? end_offset : st.st_size) - ZV_BYTE));
727a0b4a
RS
3747 if (overlap > 0)
3748 same_at_end += overlap;
9c28748f 3749
727a0b4a 3750 /* Arrange to read only the nonmatching middle part of the file. */
728f8f0a
PE
3751 beg_offset += same_at_start - BEGV_BYTE;
3752 end_offset -= ZV_BYTE - same_at_end;
3dbcf3f6 3753
ec7adf26 3754 del_range_byte (same_at_start, same_at_end, 0);
727a0b4a 3755 /* Insert from the file at the proper position. */
ec7adf26
RS
3756 temp = BYTE_TO_CHAR (same_at_start);
3757 SET_PT_BOTH (temp, same_at_start);
727a0b4a
RS
3758
3759 /* If display currently starts at beginning of line,
3760 keep it that way. */
d3d50620 3761 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
c98ff5dd 3762 XWINDOW (selected_window)->start_at_line_beg = !NILP (Fbolp ());
727a0b4a
RS
3763
3764 replace_handled = 1;
3765 }
3dbcf3f6
RS
3766 }
3767
3768 /* If requested, replace the accessible part of the buffer
3769 with the file contents. Avoid replacing text at the
3770 beginning or end of the buffer that matches the file contents;
3771 that preserves markers pointing to the unchanged parts.
3772
3773 Here we implement this feature for the case where code conversion
3774 is needed, in a simple way that needs a lot of memory.
3775 The preceding if-statement handles the case of no conversion
3776 in a more optimized way. */
f736ffbf 3777 if (!NILP (replace) && ! replace_handled && BEGV < ZV)
3dbcf3f6 3778 {
d311d28c
PE
3779 ptrdiff_t same_at_start = BEGV_BYTE;
3780 ptrdiff_t same_at_end = ZV_BYTE;
3781 ptrdiff_t same_at_start_charpos;
3782 ptrdiff_t inserted_chars;
3783 ptrdiff_t overlap;
3784 ptrdiff_t bufpos;
db327c7e 3785 unsigned char *decoded;
d311d28c
PE
3786 ptrdiff_t temp;
3787 ptrdiff_t this = 0;
3788 ptrdiff_t this_count = SPECPDL_INDEX ();
f10fe38f
PE
3789 bool multibyte
3790 = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
5b359650 3791 Lisp_Object conversion_buffer;
83aca1cb 3792 struct gcpro gcpro1;
db327c7e 3793
5b359650 3794 conversion_buffer = code_conversion_save (1, multibyte);
3dbcf3f6
RS
3795
3796 /* First read the whole file, performing code conversion into
3797 CONVERSION_BUFFER. */
3798
728f8f0a 3799 if (lseek (fd, beg_offset, SEEK_SET) < 0)
8f924df7
KH
3800 report_file_error ("Setting file position",
3801 Fcons (orig_filename, Qnil));
727a0b4a 3802
3dbcf3f6
RS
3803 total = st.st_size; /* Total bytes in the file. */
3804 how_much = 0; /* Bytes read from file so far. */
3805 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */
3806 unprocessed = 0; /* Bytes not processed in previous loop. */
3807
2ba48777 3808 GCPRO1 (conversion_buffer);
3dbcf3f6
RS
3809 while (how_much < total)
3810 {
db327c7e
KH
3811 /* We read one bunch by one (READ_BUF_SIZE bytes) to allow
3812 quitting while reading a huge while. */
a5bb9bd3 3813 /* `try'' is reserved in some compilers (Microsoft C). */
d311d28c 3814 int trytry = min (total - how_much, READ_BUF_SIZE - unprocessed);
3dbcf3f6
RS
3815
3816 /* Allow quitting out of the actual I/O. */
3817 immediate_quit = 1;
3818 QUIT;
db327c7e 3819 this = emacs_read (fd, read_buf + unprocessed, trytry);
3dbcf3f6
RS
3820 immediate_quit = 0;
3821
db327c7e 3822 if (this <= 0)
43aae36e 3823 break;
3dbcf3f6
RS
3824
3825 how_much += this;
3826
bf1c0f27
SM
3827 BUF_TEMP_SET_PT (XBUFFER (conversion_buffer),
3828 BUF_Z (XBUFFER (conversion_buffer)));
5976c3fe
PE
3829 decode_coding_c_string (&coding, (unsigned char *) read_buf,
3830 unprocessed + this, conversion_buffer);
db327c7e
KH
3831 unprocessed = coding.carryover_bytes;
3832 if (coding.carryover_bytes > 0)
72af86bd 3833 memcpy (read_buf, coding.carryover, unprocessed);
3dbcf3f6 3834 }
2ba48777 3835 UNGCPRO;
db327c7e 3836 emacs_close (fd);
3dbcf3f6 3837
db65a627
CY
3838 /* We should remove the unwind_protect calling
3839 close_file_unwind, but other stuff has been added the stack,
3840 so defer the removal till we reach the `handled' label. */
3841 deferred_remove_unwind_protect = 1;
3842
db327c7e
KH
3843 /* At this point, HOW_MUCH should equal TOTAL, or should be <= 0
3844 if we couldn't read the file. */
3dbcf3f6 3845
43aae36e 3846 if (this < 0)
4ed925c6
MB
3847 error ("IO error reading %s: %s",
3848 SDATA (orig_filename), emacs_strerror (errno));
3dbcf3f6 3849
db327c7e
KH
3850 if (unprocessed > 0)
3851 {
3852 coding.mode |= CODING_MODE_LAST_BLOCK;
5976c3fe
PE
3853 decode_coding_c_string (&coding, (unsigned char *) read_buf,
3854 unprocessed, conversion_buffer);
db327c7e
KH
3855 coding.mode &= ~CODING_MODE_LAST_BLOCK;
3856 }
3857
50b06221 3858 coding_system = CODING_ID_NAME (coding.id);
f6a07420 3859 set_coding_system = 1;
db327c7e 3860 decoded = BUF_BEG_ADDR (XBUFFER (conversion_buffer));
50342b35
KH
3861 inserted = (BUF_Z_BYTE (XBUFFER (conversion_buffer))
3862 - BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
db327c7e
KH
3863
3864 /* Compare the beginning of the converted string with the buffer
3865 text. */
3dbcf3f6
RS
3866
3867 bufpos = 0;
3868 while (bufpos < inserted && same_at_start < same_at_end
db327c7e 3869 && FETCH_BYTE (same_at_start) == decoded[bufpos])
3dbcf3f6
RS
3870 same_at_start++, bufpos++;
3871
db327c7e 3872 /* If the file matches the head of buffer completely,
3dbcf3f6
RS
3873 there's no need to replace anything. */
3874
3875 if (bufpos == inserted)
3876 {
3dbcf3f6 3877 /* Truncate the buffer to the size of the file. */
18a9f8d9
SM
3878 if (same_at_start == same_at_end)
3879 nochange = 1;
3880 else
3881 del_range_byte (same_at_start, same_at_end, 0);
427f5aab 3882 inserted = 0;
e8553dd1
KH
3883
3884 unbind_to (this_count, Qnil);
3dbcf3f6
RS
3885 goto handled;
3886 }
3887
db327c7e
KH
3888 /* Extend the start of non-matching text area to the previous
3889 multibyte character boundary. */
4b4deea2 3890 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
20f6783d
RS
3891 while (same_at_start > BEGV_BYTE
3892 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3893 same_at_start--;
3894
3dbcf3f6
RS
3895 /* Scan this bufferful from the end, comparing with
3896 the Emacs buffer. */
3897 bufpos = inserted;
3898
3899 /* Compare with same_at_start to avoid counting some buffer text
3900 as matching both at the file's beginning and at the end. */
3901 while (bufpos > 0 && same_at_end > same_at_start
db327c7e 3902 && FETCH_BYTE (same_at_end - 1) == decoded[bufpos - 1])
3dbcf3f6
RS
3903 same_at_end--, bufpos--;
3904
db327c7e
KH
3905 /* Extend the end of non-matching text area to the next
3906 multibyte character boundary. */
4b4deea2 3907 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
20f6783d
RS
3908 while (same_at_end < ZV_BYTE
3909 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3910 same_at_end++;
3911
3dbcf3f6 3912 /* Don't try to reuse the same piece of text twice. */
ec7adf26 3913 overlap = same_at_start - BEGV_BYTE - (same_at_end + inserted - ZV_BYTE);
3dbcf3f6
RS
3914 if (overlap > 0)
3915 same_at_end += overlap;
3916
727a0b4a
RS
3917 /* If display currently starts at beginning of line,
3918 keep it that way. */
d3d50620 3919 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
c98ff5dd 3920 XWINDOW (selected_window)->start_at_line_beg = !NILP (Fbolp ());
727a0b4a 3921
3dbcf3f6
RS
3922 /* Replace the chars that we need to replace,
3923 and update INSERTED to equal the number of bytes
db327c7e 3924 we are taking from the decoded string. */
4b70e2c9 3925 inserted -= (ZV_BYTE - same_at_end) + (same_at_start - BEGV_BYTE);
427f5aab 3926
643c73b9 3927 if (same_at_end != same_at_start)
427f5aab
KH
3928 {
3929 del_range_byte (same_at_start, same_at_end, 0);
3930 temp = GPT;
3931 same_at_start = GPT_BYTE;
3932 }
643c73b9
RS
3933 else
3934 {
643c73b9 3935 temp = BYTE_TO_CHAR (same_at_start);
643c73b9 3936 }
427f5aab
KH
3937 /* Insert from the file at the proper position. */
3938 SET_PT_BOTH (temp, same_at_start);
50342b35
KH
3939 same_at_start_charpos
3940 = buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
7f5d2c72
SM
3941 same_at_start - BEGV_BYTE
3942 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
50342b35
KH
3943 inserted_chars
3944 = (buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
7f5d2c72
SM
3945 same_at_start + inserted - BEGV_BYTE
3946 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)))
50342b35 3947 - same_at_start_charpos);
d07af40d
KH
3948 /* This binding is to avoid ask-user-about-supersession-threat
3949 being called in insert_from_buffer (via in
3950 prepare_to_modify_buffer). */
3951 specbind (intern ("buffer-file-name"), Qnil);
db327c7e 3952 insert_from_buffer (XBUFFER (conversion_buffer),
50342b35 3953 same_at_start_charpos, inserted_chars, 0);
427f5aab
KH
3954 /* Set `inserted' to the number of inserted characters. */
3955 inserted = PT - temp;
77343e1d
KH
3956 /* Set point before the inserted characters. */
3957 SET_PT_BOTH (temp, same_at_start);
3dbcf3f6 3958
db327c7e 3959 unbind_to (this_count, Qnil);
3dbcf3f6 3960
3dbcf3f6 3961 goto handled;
3d0387c0
RS
3962 }
3963
d4b8687b 3964 if (! not_regular)
728f8f0a 3965 total = end_offset - beg_offset;
d4b8687b
RS
3966 else
3967 /* For a special file, all we can do is guess. */
3968 total = READ_BUF_SIZE;
570d7624 3969
8b913b57 3970 if (NILP (visit) && total > 0)
68780e2a
RS
3971 {
3972#ifdef CLASH_DETECTION
4b4deea2 3973 if (!NILP (BVAR (current_buffer, file_truename))
68780e2a 3974 /* Make binding buffer-file-name to nil effective. */
4b4deea2 3975 && !NILP (BVAR (current_buffer, filename))
68780e2a
RS
3976 && SAVE_MODIFF >= MODIFF)
3977 we_locked_file = 1;
3978#endif /* CLASH_DETECTION */
3979 prepare_to_modify_buffer (GPT, GPT, NULL);
3980 }
570d7624 3981
7fe52289 3982 move_gap (PT);
7fded690
JB
3983 if (GAP_SIZE < total)
3984 make_gap (total - GAP_SIZE);
3985
728f8f0a 3986 if (beg_offset != 0 || !NILP (replace))
7fded690 3987 {
728f8f0a 3988 if (lseek (fd, beg_offset, SEEK_SET) < 0)
b1d1b865
RS
3989 report_file_error ("Setting file position",
3990 Fcons (orig_filename, Qnil));
7fded690
JB
3991 }
3992
6fdaa9a0 3993 /* In the following loop, HOW_MUCH contains the total bytes read so
c8a6d68a
KH
3994 far for a regular file, and not changed for a special file. But,
3995 before exiting the loop, it is set to a negative value if I/O
3996 error occurs. */
a1d2b64a 3997 how_much = 0;
efdc16c9 3998
6fdaa9a0
KH
3999 /* Total bytes inserted. */
4000 inserted = 0;
efdc16c9 4001
c8a6d68a 4002 /* Here, we don't do code conversion in the loop. It is done by
db327c7e 4003 decode_coding_gap after all data are read into the buffer. */
1b978129 4004 {
d311d28c 4005 ptrdiff_t gap_size = GAP_SIZE;
efdc16c9 4006
1b978129
GM
4007 while (how_much < total)
4008 {
5e570b75 4009 /* try is reserved in some compilers (Microsoft C) */
d311d28c
PE
4010 int trytry = min (total - how_much, READ_BUF_SIZE);
4011 ptrdiff_t this;
570d7624 4012
1b978129
GM
4013 if (not_regular)
4014 {
f839df0c 4015 Lisp_Object nbytes;
570d7624 4016
1b978129
GM
4017 /* Maybe make more room. */
4018 if (gap_size < trytry)
4019 {
4020 make_gap (total - gap_size);
4021 gap_size = GAP_SIZE;
4022 }
4023
4024 /* Read from the file, capturing `quit'. When an
4025 error occurs, end the loop, and arrange for a quit
4026 to be signaled after decoding the text we read. */
4027 non_regular_fd = fd;
4028 non_regular_inserted = inserted;
4029 non_regular_nbytes = trytry;
f839df0c
PE
4030 nbytes = internal_condition_case_1 (read_non_regular,
4031 Qnil, Qerror,
4032 read_non_regular_quit);
4033 if (NILP (nbytes))
1b978129
GM
4034 {
4035 read_quit = 1;
4036 break;
4037 }
4038
f839df0c 4039 this = XINT (nbytes);
1b978129
GM
4040 }
4041 else
4042 {
4043 /* Allow quitting out of the actual I/O. We don't make text
4044 part of the buffer until all the reading is done, so a C-g
4045 here doesn't do any harm. */
4046 immediate_quit = 1;
4047 QUIT;
5976c3fe
PE
4048 this = emacs_read (fd,
4049 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
4050 + inserted),
4051 trytry);
1b978129
GM
4052 immediate_quit = 0;
4053 }
efdc16c9 4054
1b978129
GM
4055 if (this <= 0)
4056 {
4057 how_much = this;
4058 break;
4059 }
4060
4061 gap_size -= this;
4062
4063 /* For a regular file, where TOTAL is the real size,
4064 count HOW_MUCH to compare with it.
4065 For a special file, where TOTAL is just a buffer size,
4066 so don't bother counting in HOW_MUCH.
4067 (INSERTED is where we count the number of characters inserted.) */
4068 if (! not_regular)
4069 how_much += this;
4070 inserted += this;
4071 }
4072 }
4073
68780e2a
RS
4074 /* Now we have read all the file data into the gap.
4075 If it was empty, undo marking the buffer modified. */
4076
4077 if (inserted == 0)
4078 {
6840d350 4079#ifdef CLASH_DETECTION
68780e2a 4080 if (we_locked_file)
4b4deea2 4081 unlock_file (BVAR (current_buffer, file_truename));
6840d350 4082#endif
68780e2a
RS
4083 Vdeactivate_mark = old_Vdeactivate_mark;
4084 }
83c1cf6d
RS
4085 else
4086 Vdeactivate_mark = Qt;
68780e2a 4087
1b978129
GM
4088 /* Make the text read part of the buffer. */
4089 GAP_SIZE -= inserted;
4090 GPT += inserted;
4091 GPT_BYTE += inserted;
4092 ZV += inserted;
4093 ZV_BYTE += inserted;
4094 Z += inserted;
4095 Z_BYTE += inserted;
6fdaa9a0 4096
c8a6d68a
KH
4097 if (GAP_SIZE > 0)
4098 /* Put an anchor to ensure multi-byte form ends at gap. */
4099 *GPT_ADDR = 0;
d4b8687b 4100
68c45bf0 4101 emacs_close (fd);
6fdaa9a0 4102
c8a6d68a
KH
4103 /* Discard the unwind protect for closing the file. */
4104 specpdl_ptr--;
6fdaa9a0 4105
c8a6d68a
KH
4106 if (how_much < 0)
4107 error ("IO error reading %s: %s",
d5db4077 4108 SDATA (orig_filename), emacs_strerror (errno));
ec7adf26 4109
f8569325
DL
4110 notfound:
4111
db327c7e 4112 if (NILP (coding_system))
c8a6d68a 4113 {
2df42e09 4114 /* The coding system is not yet decided. Decide it by an
dfe35e7b
RS
4115 optimized method for handling `coding:' tag.
4116
4117 Note that we can get here only if the buffer was empty
4118 before the insertion. */
f736ffbf 4119
2df42e09 4120 if (!NILP (Vcoding_system_for_read))
db327c7e 4121 coding_system = Vcoding_system_for_read;
2df42e09
KH
4122 else
4123 {
98a7d268
KH
4124 /* Since we are sure that the current buffer was empty
4125 before the insertion, we can toggle
4126 enable-multibyte-characters directly here without taking
9a7f80aa
KH
4127 care of marker adjustment. By this way, we can run Lisp
4128 program safely before decoding the inserted text. */
98a7d268 4129 Lisp_Object unwind_data;
d311d28c 4130 ptrdiff_t count1 = SPECPDL_INDEX ();
2df42e09 4131
4b4deea2
TT
4132 unwind_data = Fcons (BVAR (current_buffer, enable_multibyte_characters),
4133 Fcons (BVAR (current_buffer, undo_list),
98a7d268 4134 Fcurrent_buffer ()));
39eb03f1
PE
4135 bset_enable_multibyte_characters (current_buffer, Qnil);
4136 bset_undo_list (current_buffer, Qt);
98a7d268
KH
4137 record_unwind_protect (decide_coding_unwind, unwind_data);
4138
4139 if (inserted > 0 && ! NILP (Vset_auto_coding_function))
4140 {
db327c7e 4141 coding_system = call2 (Vset_auto_coding_function,
8f924df7 4142 filename, make_number (inserted));
2df42e09 4143 }
f736ffbf 4144
db327c7e 4145 if (NILP (coding_system))
2df42e09
KH
4146 {
4147 /* If the coding system is not yet decided, check
4148 file-coding-system-alist. */
8f924df7 4149 Lisp_Object args[6];
f736ffbf 4150
2df42e09
KH
4151 args[0] = Qinsert_file_contents, args[1] = orig_filename;
4152 args[2] = visit, args[3] = beg, args[4] = end, args[5] = Qnil;
8f924df7
KH
4153 coding_system = Ffind_operation_coding_system (6, args);
4154 if (CONSP (coding_system))
4155 coding_system = XCAR (coding_system);
f736ffbf 4156 }
f839df0c 4157 unbind_to (count1, Qnil);
98a7d268 4158 inserted = Z_BYTE - BEG_BYTE;
2df42e09 4159 }
f736ffbf 4160
db327c7e
KH
4161 if (NILP (coding_system))
4162 coding_system = Qundecided;
4163 else
4164 CHECK_CODING_SYSTEM (coding_system);
f736ffbf 4165
4b4deea2 4166 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
237a6fd2 4167 /* We must suppress all character code conversion except for
2df42e09 4168 end-of-line conversion. */
db327c7e 4169 coding_system = raw_text_coding_system (coding_system);
db327c7e
KH
4170 setup_coding_system (coding_system, &coding);
4171 /* Ensure we set Vlast_coding_system_used. */
4172 set_coding_system = 1;
2df42e09 4173 }
f736ffbf 4174
db327c7e 4175 if (!NILP (visit))
8c3b9441 4176 {
db327c7e 4177 /* When we visit a file by raw-text, we change the buffer to
9a7f80aa 4178 unibyte. */
db327c7e
KH
4179 if (CODING_FOR_UNIBYTE (&coding)
4180 /* Can't do this if part of the buffer might be preserved. */
4181 && NILP (replace))
4182 /* Visiting a file with these coding system makes the buffer
4183 unibyte. */
39eb03f1 4184 bset_enable_multibyte_characters (current_buffer, Qnil);
8c3b9441
KH
4185 }
4186
4b4deea2 4187 coding.dst_multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
5b359650 4188 if (CODING_MAY_REQUIRE_DECODING (&coding)
1c157f8d 4189 && (inserted > 0 || CODING_REQUIRE_FLUSHING (&coding)))
2df42e09 4190 {
db327c7e
KH
4191 move_gap_both (PT, PT_BYTE);
4192 GAP_SIZE += inserted;
4193 ZV_BYTE -= inserted;
4194 Z_BYTE -= inserted;
4195 ZV -= inserted;
4196 Z -= inserted;
4197 decode_coding_gap (&coding, inserted, inserted);
4198 inserted = coding.produced_char;
5b359650 4199 coding_system = CODING_ID_NAME (coding.id);
2df42e09 4200 }
db327c7e
KH
4201 else if (inserted > 0)
4202 adjust_after_insert (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4203 inserted);
570d7624 4204
0068070e
SM
4205 /* Call after-change hooks for the inserted text, aside from the case
4206 of normal visiting (not with REPLACE), which is done in a new buffer
4207 "before" the buffer is changed. */
4208 if (inserted > 0 && total > 0
4209 && (NILP (visit) || !NILP (replace)))
4210 {
4211 signal_after_change (PT, 0, inserted);
4212 update_compositions (PT, PT, CHECK_BORDER);
4213 }
4214
cf6d2357
RS
4215 /* Now INSERTED is measured in characters. */
4216
32f4334d 4217 handled:
570d7624 4218
db65a627
CY
4219 if (deferred_remove_unwind_protect)
4220 /* If requested above, discard the unwind protect for closing the
4221 file. */
4222 specpdl_ptr--;
4223
265a9e55 4224 if (!NILP (visit))
570d7624 4225 {
4b4deea2 4226 if (!EQ (BVAR (current_buffer, undo_list), Qt) && !nochange)
39eb03f1 4227 bset_undo_list (current_buffer, Qnil);
62bcf009 4228
a7e82472
RS
4229 if (NILP (handler))
4230 {
dbeed9a6 4231 current_buffer->modtime = mtime;
58b963f7 4232 current_buffer->modtime_size = st.st_size;
39eb03f1 4233 bset_filename (current_buffer, orig_filename);
a7e82472 4234 }
62bcf009 4235
95385625 4236 SAVE_MODIFF = MODIFF;
0b5397c2 4237 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
4b4deea2 4238 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
570d7624 4239#ifdef CLASH_DETECTION
32f4334d
RS
4240 if (NILP (handler))
4241 {
4b4deea2
TT
4242 if (!NILP (BVAR (current_buffer, file_truename)))
4243 unlock_file (BVAR (current_buffer, file_truename));
32f4334d
RS
4244 unlock_file (filename);
4245 }
570d7624 4246#endif /* CLASH_DETECTION */
330bfe57 4247 if (not_regular)
24b1ddad
KS
4248 xsignal2 (Qfile_error,
4249 build_string ("not a regular file"), orig_filename);
570d7624
JB
4250 }
4251
b6426b03 4252 if (set_coding_system)
8f924df7 4253 Vlast_coding_system_used = coding_system;
b6426b03 4254
2080470e 4255 if (! NILP (Ffboundp (Qafter_insert_file_set_coding)))
b6426b03 4256 {
37a3c774
KH
4257 insval = call2 (Qafter_insert_file_set_coding, make_number (inserted),
4258 visit);
b6426b03
KH
4259 if (! NILP (insval))
4260 {
d311d28c
PE
4261 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4262 wrong_type_argument (intern ("inserted-chars"), insval);
b6426b03
KH
4263 inserted = XFASTINT (insval);
4264 }
4265 }
4266
6420e80c 4267 /* Decode file format. */
c8a6d68a 4268 if (inserted > 0)
0d420e88 4269 {
6420e80c 4270 /* Don't run point motion or modification hooks when decoding. */
d311d28c
PE
4271 ptrdiff_t count1 = SPECPDL_INDEX ();
4272 ptrdiff_t old_inserted = inserted;
6f2528d8
MR
4273 specbind (Qinhibit_point_motion_hooks, Qt);
4274 specbind (Qinhibit_modification_hooks, Qt);
4275
6420e80c 4276 /* Save old undo list and don't record undo for decoding. */
4b4deea2 4277 old_undo = BVAR (current_buffer, undo_list);
39eb03f1 4278 bset_undo_list (current_buffer, Qt);
efdc16c9 4279
6f2528d8 4280 if (NILP (replace))
ed8e506f 4281 {
6f2528d8
MR
4282 insval = call3 (Qformat_decode,
4283 Qnil, make_number (inserted), visit);
d311d28c
PE
4284 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4285 wrong_type_argument (intern ("inserted-chars"), insval);
6f2528d8
MR
4286 inserted = XFASTINT (insval);
4287 }
4288 else
4289 {
4290 /* If REPLACE is non-nil and we succeeded in not replacing the
6420e80c
AS
4291 beginning or end of the buffer text with the file's contents,
4292 call format-decode with `point' positioned at the beginning
fa463103 4293 of the buffer and `inserted' equaling the number of
6420e80c
AS
4294 characters in the buffer. Otherwise, format-decode might
4295 fail to correctly analyze the beginning or end of the buffer.
4296 Hence we temporarily save `point' and `inserted' here and
4297 restore `point' iff format-decode did not insert or delete
4298 any text. Otherwise we leave `point' at point-min. */
d311d28c
PE
4299 ptrdiff_t opoint = PT;
4300 ptrdiff_t opoint_byte = PT_BYTE;
4301 ptrdiff_t oinserted = ZV - BEGV;
4302 EMACS_INT ochars_modiff = CHARS_MODIFF;
1f163f28
MA
4303
4304 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
6f2528d8
MR
4305 insval = call3 (Qformat_decode,
4306 Qnil, make_number (oinserted), visit);
d311d28c
PE
4307 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4308 wrong_type_argument (intern ("inserted-chars"), insval);
cac4219c
MR
4309 if (ochars_modiff == CHARS_MODIFF)
4310 /* format_decode didn't modify buffer's characters => move
4311 point back to position before inserted text and leave
6420e80c 4312 value of inserted alone. */
6f2528d8 4313 SET_PT_BOTH (opoint, opoint_byte);
cac4219c
MR
4314 else
4315 /* format_decode modified buffer's characters => consider
6420e80c 4316 entire buffer changed and leave point at point-min. */
cac4219c 4317 inserted = XFASTINT (insval);
ed8e506f 4318 }
efdc16c9 4319
6f2528d8 4320 /* For consistency with format-decode call these now iff inserted > 0
6420e80c 4321 (martin 2007-06-28). */
6f2528d8
MR
4322 p = Vafter_insert_file_functions;
4323 while (CONSP (p))
4324 {
4325 if (NILP (replace))
4326 {
4327 insval = call1 (XCAR (p), make_number (inserted));
4328 if (!NILP (insval))
4329 {
d311d28c
PE
4330 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4331 wrong_type_argument (intern ("inserted-chars"), insval);
6f2528d8
MR
4332 inserted = XFASTINT (insval);
4333 }
4334 }
4335 else
4336 {
6420e80c
AS
4337 /* For the rationale of this see the comment on
4338 format-decode above. */
d311d28c
PE
4339 ptrdiff_t opoint = PT;
4340 ptrdiff_t opoint_byte = PT_BYTE;
4341 ptrdiff_t oinserted = ZV - BEGV;
4342 EMACS_INT ochars_modiff = CHARS_MODIFF;
1f163f28 4343
6f2528d8
MR
4344 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4345 insval = call1 (XCAR (p), make_number (oinserted));
4346 if (!NILP (insval))
4347 {
d311d28c
PE
4348 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4349 wrong_type_argument (intern ("inserted-chars"), insval);
cac4219c
MR
4350 if (ochars_modiff == CHARS_MODIFF)
4351 /* after_insert_file_functions didn't modify
4352 buffer's characters => move point back to
4353 position before inserted text and leave value of
6420e80c 4354 inserted alone. */
6f2528d8 4355 SET_PT_BOTH (opoint, opoint_byte);
cac4219c
MR
4356 else
4357 /* after_insert_file_functions did modify buffer's
4358 characters => consider entire buffer changed and
6420e80c 4359 leave point at point-min. */
cac4219c 4360 inserted = XFASTINT (insval);
6f2528d8
MR
4361 }
4362 }
4363
4364 QUIT;
4365 p = XCDR (p);
ed8e506f 4366 }
efdc16c9 4367
6f2528d8
MR
4368 if (NILP (visit))
4369 {
39eb03f1 4370 bset_undo_list (current_buffer, old_undo);
6420e80c 4371 if (CONSP (old_undo) && inserted != old_inserted)
6f2528d8 4372 {
6420e80c
AS
4373 /* Adjust the last undo record for the size change during
4374 the format conversion. */
6f2528d8 4375 Lisp_Object tem = XCAR (old_undo);
6420e80c
AS
4376 if (CONSP (tem) && INTEGERP (XCAR (tem))
4377 && INTEGERP (XCDR (tem))
4378 && XFASTINT (XCDR (tem)) == PT + old_inserted)
4379 XSETCDR (tem, make_number (PT + inserted));
6f2528d8
MR
4380 }
4381 }
6f2528d8 4382 else
1bc99c9c 4383 /* If undo_list was Qt before, keep it that way.
6420e80c 4384 Otherwise start with an empty undo_list. */
39eb03f1 4385 bset_undo_list (current_buffer, EQ (old_undo, Qt) ? Qt : Qnil);
efdc16c9 4386
f839df0c 4387 unbind_to (count1, Qnil);
0d420e88
BG
4388 }
4389
f8569325 4390 if (!NILP (visit)
d35af63c 4391 && EMACS_NSECS (current_buffer->modtime) == NONEXISTENT_MODTIME_NSECS)
f8569325
DL
4392 {
4393 /* If visiting nonexistent file, return nil. */
e5e9d610 4394 errno = save_errno;
f8569325 4395 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
d6a3cc15
RS
4396 }
4397
1b978129
GM
4398 if (read_quit)
4399 Fsignal (Qquit, Qnil);
4400
ec7adf26 4401 /* ??? Retval needs to be dealt with in all cases consistently. */
a1d2b64a 4402 if (NILP (val))
b1d1b865 4403 val = Fcons (orig_filename,
a1d2b64a
RS
4404 Fcons (make_number (inserted),
4405 Qnil));
4406
4407 RETURN_UNGCPRO (unbind_to (count, val));
570d7624 4408}
7fded690 4409\f
f57e2426 4410static Lisp_Object build_annotations (Lisp_Object, Lisp_Object);
d6a3cc15 4411
199607e4 4412static Lisp_Object
971de7fb 4413build_annotations_unwind (Lisp_Object arg)
6fc6f94b 4414{
67fbc0cb 4415 Vwrite_region_annotation_buffers = arg;
6fc6f94b
RS
4416 return Qnil;
4417}
4418
7c82a4a9
SM
4419/* Decide the coding-system to encode the data with. */
4420
c934586d 4421static Lisp_Object
dd4c5104
DN
4422choose_write_coding_system (Lisp_Object start, Lisp_Object end, Lisp_Object filename,
4423 Lisp_Object append, Lisp_Object visit, Lisp_Object lockname,
4424 struct coding_system *coding)
7c82a4a9
SM
4425{
4426 Lisp_Object val;
75421805 4427 Lisp_Object eol_parent = Qnil;
7c82a4a9 4428
6b61353c 4429 if (auto_saving
4b4deea2
TT
4430 && NILP (Fstring_equal (BVAR (current_buffer, filename),
4431 BVAR (current_buffer, auto_save_file_name))))
75421805
KH
4432 {
4433 val = Qutf_8_emacs;
4434 eol_parent = Qunix;
4435 }
7c82a4a9 4436 else if (!NILP (Vcoding_system_for_write))
42b01e1e
KH
4437 {
4438 val = Vcoding_system_for_write;
4439 if (coding_system_require_warning
4440 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4441 /* Confirm that VAL can surely encode the current region. */
4442 val = call5 (Vselect_safe_coding_system_function,
4443 start, end, Fcons (Qt, Fcons (val, Qnil)),
4444 Qnil, filename);
4445 }
7c82a4a9
SM
4446 else
4447 {
4448 /* If the variable `buffer-file-coding-system' is set locally,
4449 it means that the file was read with some kind of code
4450 conversion or the variable is explicitly set by users. We
4451 had better write it out with the same coding system even if
4452 `enable-multibyte-characters' is nil.
4453
4454 If it is not set locally, we anyway have to convert EOL
4455 format if the default value of `buffer-file-coding-system'
4456 tells that it is not Unix-like (LF only) format. */
f75d7a91
PE
4457 bool using_default_coding = 0;
4458 bool force_raw_text = 0;
7c82a4a9 4459
4b4deea2 4460 val = BVAR (current_buffer, buffer_file_coding_system);
7c82a4a9
SM
4461 if (NILP (val)
4462 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil)))
4463 {
4464 val = Qnil;
4b4deea2 4465 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
7c82a4a9
SM
4466 force_raw_text = 1;
4467 }
efdc16c9 4468
7c82a4a9
SM
4469 if (NILP (val))
4470 {
4471 /* Check file-coding-system-alist. */
4472 Lisp_Object args[7], coding_systems;
4473
4474 args[0] = Qwrite_region; args[1] = start; args[2] = end;
4475 args[3] = filename; args[4] = append; args[5] = visit;
4476 args[6] = lockname;
4477 coding_systems = Ffind_operation_coding_system (7, args);
4478 if (CONSP (coding_systems) && !NILP (XCDR (coding_systems)))
4479 val = XCDR (coding_systems);
4480 }
4481
c934586d 4482 if (NILP (val))
7c82a4a9
SM
4483 {
4484 /* If we still have not decided a coding system, use the
4485 default value of buffer-file-coding-system. */
4b4deea2 4486 val = BVAR (current_buffer, buffer_file_coding_system);
7c82a4a9
SM
4487 using_default_coding = 1;
4488 }
efdc16c9 4489
db327c7e
KH
4490 if (! NILP (val) && ! force_raw_text)
4491 {
4492 Lisp_Object spec, attrs;
4493
4494 CHECK_CODING_SYSTEM_GET_SPEC (val, spec);
4495 attrs = AREF (spec, 0);
4496 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text))
4497 force_raw_text = 1;
4498 }
4499
7c82a4a9
SM
4500 if (!force_raw_text
4501 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4502 /* Confirm that VAL can surely encode the current region. */
905a4276
PJ
4503 val = call5 (Vselect_safe_coding_system_function,
4504 start, end, val, Qnil, filename);
7c82a4a9 4505
db327c7e
KH
4506 /* If the decided coding-system doesn't specify end-of-line
4507 format, we use that of
4508 `default-buffer-file-coding-system'. */
c934586d 4509 if (! using_default_coding
4b4deea2 4510 && ! NILP (BVAR (&buffer_defaults, buffer_file_coding_system)))
db327c7e 4511 val = (coding_inherit_eol_type
4b4deea2 4512 (val, BVAR (&buffer_defaults, buffer_file_coding_system)));
7c82a4a9 4513
db327c7e
KH
4514 /* If we decide not to encode text, use `raw-text' or one of its
4515 subsidiaries. */
7c82a4a9 4516 if (force_raw_text)
db327c7e 4517 val = raw_text_coding_system (val);
7c82a4a9
SM
4518 }
4519
75421805 4520 val = coding_inherit_eol_type (val, eol_parent);
c934586d 4521 setup_coding_system (val, coding);
7c82a4a9 4522
4b4deea2 4523 if (!STRINGP (start) && !NILP (BVAR (current_buffer, selective_display)))
7c82a4a9 4524 coding->mode |= CODING_MODE_SELECTIVE_DISPLAY;
c934586d 4525 return val;
7c82a4a9
SM
4526}
4527
a7ca3326 4528DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7,
8c1a1077
PJ
4529 "r\nFWrite region to file: \ni\ni\ni\np",
4530 doc: /* Write current region into specified file.
c2efea25
RS
4531When called from a program, requires three arguments:
4532START, END and FILENAME. START and END are normally buffer positions
4533specifying the part of the buffer to write.
4534If START is nil, that means to use the entire buffer contents.
4535If START is a string, then output that string to the file
4536instead of any buffer contents; END is ignored.
4537
8c1a1077
PJ
4538Optional fourth argument APPEND if non-nil means
4539 append to existing file contents (if any). If it is an integer,
4540 seek to that offset in the file before writing.
36e50520 4541Optional fifth argument VISIT, if t or a string, means
8c1a1077
PJ
4542 set the last-save-file-modtime of buffer to this file's modtime
4543 and mark buffer not modified.
4544If VISIT is a string, it is a second file name;
4545 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4546 VISIT is also the file name to lock and unlock for clash detection.
4547If VISIT is neither t nor nil nor a string,
5f4e6aa9 4548 that means do not display the \"Wrote file\" message.
8c1a1077
PJ
4549The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4550 use for locking and unlocking, overriding FILENAME and VISIT.
4551The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4552 for an existing file with the same name. If MUSTBENEW is `excl',
4553 that means to get an error if the file already exists; never overwrite.
4554 If MUSTBENEW is neither nil nor `excl', that means ask for
4555 confirmation before overwriting, but do go ahead and overwrite the file
4556 if the user confirms.
8c1a1077
PJ
4557
4558This does code conversion according to the value of
4559`coding-system-for-write', `buffer-file-coding-system', or
4560`file-coding-system-alist', and sets the variable
aacd8ba1
GM
4561`last-coding-system-used' to the coding system actually used.
4562
4563This calls `write-region-annotate-functions' at the start, and
4564`write-region-post-annotation-function' at the end. */)
5842a27b 4565 (Lisp_Object start, Lisp_Object end, Lisp_Object filename, Lisp_Object append, Lisp_Object visit, Lisp_Object lockname, Lisp_Object mustbenew)
570d7624 4566{
f75d7a91
PE
4567 int desc;
4568 bool ok;
6bbd7a29 4569 int save_errno = 0;
5976c3fe 4570 const char *fn;
570d7624 4571 struct stat st;
d6453ce4 4572 EMACS_TIME modtime;
d311d28c 4573 ptrdiff_t count = SPECPDL_INDEX ();
6fc6f94b 4574 int count1;
3eac9910 4575 Lisp_Object handler;
4ad827c5 4576 Lisp_Object visit_file;
65b7d3e7 4577 Lisp_Object annotations;
b1d1b865 4578 Lisp_Object encoded_filename;
f75d7a91
PE
4579 bool visiting = (EQ (visit, Qt) || STRINGP (visit));
4580 bool quietly = !NILP (visit);
7204a979 4581 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
6fc6f94b 4582 struct buffer *given_buffer;
6fdaa9a0 4583 struct coding_system coding;
570d7624 4584
d3a67486 4585 if (current_buffer->base_buffer && visiting)
95385625
RS
4586 error ("Cannot do file visiting in an indirect buffer");
4587
561cb8e1 4588 if (!NILP (start) && !STRINGP (start))
570d7624
JB
4589 validate_region (&start, &end);
4590
95c1c901 4591 visit_file = Qnil;
59fac292 4592 GCPRO5 (start, filename, visit, visit_file, lockname);
b56567b5 4593
570d7624 4594 filename = Fexpand_file_name (filename, Qnil);
de1d0127 4595
236a12f2 4596 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl))
b8b29dc9 4597 barf_or_query_if_file_exists (filename, "overwrite", 1, 0, 1);
de1d0127 4598
561cb8e1 4599 if (STRINGP (visit))
e5176bae 4600 visit_file = Fexpand_file_name (visit, Qnil);
4ad827c5
RS
4601 else
4602 visit_file = filename;
4603
7204a979
RS
4604 if (NILP (lockname))
4605 lockname = visit_file;
4606
65b7d3e7
RS
4607 annotations = Qnil;
4608
32f4334d
RS
4609 /* If the file name has special constructs in it,
4610 call the corresponding file handler. */
49307295 4611 handler = Ffind_file_name_handler (filename, Qwrite_region);
b56ad927 4612 /* If FILENAME has no handler, see if VISIT has one. */
93c30b5f 4613 if (NILP (handler) && STRINGP (visit))
199607e4 4614 handler = Ffind_file_name_handler (visit, Qwrite_region);
3eac9910 4615
32f4334d
RS
4616 if (!NILP (handler))
4617 {
32f4334d 4618 Lisp_Object val;
51cf6d37
RS
4619 val = call6 (handler, Qwrite_region, start, end,
4620 filename, append, visit);
32f4334d 4621
d6a3cc15 4622 if (visiting)
32f4334d 4623 {
95385625 4624 SAVE_MODIFF = MODIFF;
4b4deea2 4625 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
39eb03f1 4626 bset_filename (current_buffer, visit_file);
32f4334d 4627 }
09121adc 4628 UNGCPRO;
32f4334d
RS
4629 return val;
4630 }
4631
4a38de71
KH
4632 record_unwind_protect (save_restriction_restore, save_restriction_save ());
4633
561cb8e1
RS
4634 /* Special kludge to simplify auto-saving. */
4635 if (NILP (start))
4636 {
6b3d752c
SM
4637 /* Do it later, so write-region-annotate-function can work differently
4638 if we save "the buffer" vs "a region".
4639 This is useful in tar-mode. --Stef
2acfd7ae 4640 XSETFASTINT (start, BEG);
6b3d752c 4641 XSETFASTINT (end, Z); */
4a38de71 4642 Fwiden ();
561cb8e1
RS
4643 }
4644
67fbc0cb
CY
4645 record_unwind_protect (build_annotations_unwind,
4646 Vwrite_region_annotation_buffers);
4647 Vwrite_region_annotation_buffers = Fcons (Fcurrent_buffer (), Qnil);
aed13378 4648 count1 = SPECPDL_INDEX ();
6fc6f94b
RS
4649
4650 given_buffer = current_buffer;
bf3428a1
RS
4651
4652 if (!STRINGP (start))
236a12f2 4653 {
bf3428a1
RS
4654 annotations = build_annotations (start, end);
4655
4656 if (current_buffer != given_buffer)
4657 {
4658 XSETFASTINT (start, BEGV);
4659 XSETFASTINT (end, ZV);
4660 }
236a12f2
SM
4661 }
4662
6b3d752c
SM
4663 if (NILP (start))
4664 {
4665 XSETFASTINT (start, BEGV);
4666 XSETFASTINT (end, ZV);
4667 }
4668
236a12f2
SM
4669 UNGCPRO;
4670
4671 GCPRO5 (start, filename, annotations, visit_file, lockname);
4672
59fac292
SM
4673 /* Decide the coding-system to encode the data with.
4674 We used to make this choice before calling build_annotations, but that
4675 leads to problems when a write-annotate-function takes care of
4676 unsavable chars (as was the case with X-Symbol). */
c934586d
KH
4677 Vlast_coding_system_used
4678 = choose_write_coding_system (start, end, filename,
4679 append, visit, lockname, &coding);
d6a3cc15 4680
570d7624
JB
4681#ifdef CLASH_DETECTION
4682 if (!auto_saving)
67fbc0cb 4683 lock_file (lockname);
570d7624
JB
4684#endif /* CLASH_DETECTION */
4685
b1d1b865
RS
4686 encoded_filename = ENCODE_FILE (filename);
4687
5976c3fe 4688 fn = SSDATA (encoded_filename);
570d7624 4689 desc = -1;
265a9e55 4690 if (!NILP (append))
5e570b75 4691#ifdef DOS_NT
05c65251 4692 desc = emacs_open (fn, O_WRONLY | O_BINARY, 0);
5e570b75 4693#else /* not DOS_NT */
68c45bf0 4694 desc = emacs_open (fn, O_WRONLY, 0);
5e570b75 4695#endif /* not DOS_NT */
570d7624 4696
b1d1b865 4697 if (desc < 0 && (NILP (append) || errno == ENOENT))
5e570b75 4698#ifdef DOS_NT
68c45bf0 4699 desc = emacs_open (fn,
05c65251 4700 O_WRONLY | O_CREAT | O_BINARY
95522746 4701 | (EQ (mustbenew, Qexcl) ? O_EXCL : O_TRUNC),
68c45bf0 4702 S_IREAD | S_IWRITE);
5e570b75 4703#else /* not DOS_NT */
68c45bf0 4704 desc = emacs_open (fn, O_WRONLY | O_TRUNC | O_CREAT
7c752c80 4705 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0),
68c45bf0 4706 auto_saving ? auto_save_mode_bits : 0666);
5e570b75 4707#endif /* not DOS_NT */
570d7624
JB
4708
4709 if (desc < 0)
4710 {
4711#ifdef CLASH_DETECTION
4712 save_errno = errno;
7204a979 4713 if (!auto_saving) unlock_file (lockname);
570d7624
JB
4714 errno = save_errno;
4715#endif /* CLASH_DETECTION */
43fb7d9a 4716 UNGCPRO;
570d7624
JB
4717 report_file_error ("Opening output file", Fcons (filename, Qnil));
4718 }
4719
4720 record_unwind_protect (close_file_unwind, make_number (desc));
4721
c1c4693e 4722 if (!NILP (append) && !NILP (Ffile_regular_p (filename)))
43fb7d9a 4723 {
728f8f0a 4724 off_t ret;
efdc16c9 4725
43fb7d9a 4726 if (NUMBERP (append))
e69dafad 4727 ret = emacs_lseek (desc, XINT (append), SEEK_CUR);
43fb7d9a 4728 else
e69dafad 4729 ret = lseek (desc, 0, SEEK_END);
43fb7d9a
DL
4730 if (ret < 0)
4731 {
570d7624 4732#ifdef CLASH_DETECTION
e5e9d610 4733 save_errno = errno;
43fb7d9a 4734 if (!auto_saving) unlock_file (lockname);
e5e9d610 4735 errno = save_errno;
570d7624 4736#endif /* CLASH_DETECTION */
43fb7d9a
DL
4737 UNGCPRO;
4738 report_file_error ("Lseek error", Fcons (filename, Qnil));
4739 }
4740 }
efdc16c9 4741
43fb7d9a 4742 UNGCPRO;
570d7624 4743
570d7624
JB
4744 immediate_quit = 1;
4745
561cb8e1 4746 if (STRINGP (start))
f75d7a91 4747 ok = a_write (desc, start, 0, SCHARS (start), &annotations, &coding);
570d7624 4748 else if (XINT (start) != XINT (end))
f75d7a91
PE
4749 ok = a_write (desc, Qnil, XINT (start), XINT (end) - XINT (start),
4750 &annotations, &coding);
69f6e679
RS
4751 else
4752 {
f75d7a91 4753 /* If file was empty, still need to write the annotations. */
c8a6d68a 4754 coding.mode |= CODING_MODE_LAST_BLOCK;
f75d7a91 4755 ok = a_write (desc, Qnil, XINT (end), 0, &annotations, &coding);
6fdaa9a0 4756 }
f75d7a91 4757 save_errno = errno;
6fdaa9a0 4758
f75d7a91
PE
4759 if (ok && CODING_REQUIRE_FLUSHING (&coding)
4760 && !(coding.mode & CODING_MODE_LAST_BLOCK))
6fdaa9a0
KH
4761 {
4762 /* We have to flush out a data. */
c8a6d68a 4763 coding.mode |= CODING_MODE_LAST_BLOCK;
f75d7a91 4764 ok = e_write (desc, Qnil, 1, 1, &coding);
69f6e679 4765 save_errno = errno;
570d7624
JB
4766 }
4767
4768 immediate_quit = 0;
4769
6e23c83e 4770#ifdef HAVE_FSYNC
570d7624
JB
4771 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
4772 Disk full in NFS may be reported here. */
1daffa1c
RS
4773 /* mib says that closing the file will try to write as fast as NFS can do
4774 it, and that means the fsync here is not crucial for autosave files. */
ccf61795 4775 if (!auto_saving && !write_region_inhibit_fsync && fsync (desc) < 0)
cb33c142 4776 {
6cff77fd
AS
4777 /* If fsync fails with EINTR, don't treat that as serious. Also
4778 ignore EINVAL which happens when fsync is not supported on this
4779 file. */
4780 if (errno != EINTR && errno != EINVAL)
f75d7a91 4781 ok = 0, save_errno = errno;
cb33c142 4782 }
570d7624
JB
4783#endif
4784
d6453ce4
PE
4785 modtime = invalid_emacs_time ();
4786 if (visiting)
4787 {
4788 if (fstat (desc, &st) == 0)
4789 modtime = get_stat_mtime (&st);
4790 else
4791 ok = 0, save_errno = errno;
4792 }
4793
570d7624 4794 /* NFS can report a write failure now. */
68c45bf0 4795 if (emacs_close (desc) < 0)
f75d7a91 4796 ok = 0, save_errno = errno;
570d7624 4797
6fc6f94b
RS
4798 /* Discard the unwind protect for close_file_unwind. */
4799 specpdl_ptr = specpdl + count1;
67fbc0cb
CY
4800
4801 /* Call write-region-post-annotation-function. */
294fa707 4802 while (CONSP (Vwrite_region_annotation_buffers))
67fbc0cb
CY
4803 {
4804 Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers);
4805 if (!NILP (Fbuffer_live_p (buf)))
4806 {
4807 Fset_buffer (buf);
4808 if (FUNCTIONP (Vwrite_region_post_annotation_function))
4809 call0 (Vwrite_region_post_annotation_function);
4810 }
4811 Vwrite_region_annotation_buffers
4812 = XCDR (Vwrite_region_annotation_buffers);
4813 }
4814
4815 unbind_to (count, Qnil);
570d7624
JB
4816
4817#ifdef CLASH_DETECTION
4818 if (!auto_saving)
7204a979 4819 unlock_file (lockname);
570d7624
JB
4820#endif /* CLASH_DETECTION */
4821
4822 /* Do this before reporting IO error
4823 to avoid a "file has changed on disk" warning on
4824 next attempt to save. */
d6453ce4 4825 if (EMACS_TIME_VALID_P (modtime))
58b963f7 4826 {
d6453ce4 4827 current_buffer->modtime = modtime;
58b963f7
SM
4828 current_buffer->modtime_size = st.st_size;
4829 }
570d7624 4830
f75d7a91 4831 if (! ok)
d5db4077 4832 error ("IO error writing %s: %s", SDATA (filename),
68c45bf0 4833 emacs_strerror (save_errno));
570d7624 4834
d6a3cc15 4835 if (visiting)
570d7624 4836 {
95385625 4837 SAVE_MODIFF = MODIFF;
4b4deea2 4838 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
39eb03f1 4839 bset_filename (current_buffer, visit_file);
f4226e89 4840 update_mode_lines++;
570d7624 4841 }
d6a3cc15 4842 else if (quietly)
6b61353c
KH
4843 {
4844 if (auto_saving
4b4deea2
TT
4845 && ! NILP (Fstring_equal (BVAR (current_buffer, filename),
4846 BVAR (current_buffer, auto_save_file_name))))
6b61353c
KH
4847 SAVE_MODIFF = MODIFF;
4848
4849 return Qnil;
4850 }
570d7624
JB
4851
4852 if (!auto_saving)
6b61353c 4853 message_with_string ((INTEGERP (append)
0c328a0e
RS
4854 ? "Updated %s"
4855 : ! NILP (append)
4856 ? "Added to %s"
4857 : "Wrote %s"),
4858 visit_file, 1);
570d7624
JB
4859
4860 return Qnil;
4861}
ec7adf26 4862\f
dd4c5104 4863Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object);
d6a3cc15
RS
4864
4865DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
8c1a1077 4866 doc: /* Return t if (car A) is numerically less than (car B). */)
5842a27b 4867 (Lisp_Object a, Lisp_Object b)
d6a3cc15
RS
4868{
4869 return Flss (Fcar (a), Fcar (b));
4870}
4871
4872/* Build the complete list of annotations appropriate for writing out
4873 the text between START and END, by calling all the functions in
6fc6f94b
RS
4874 write-region-annotate-functions and merging the lists they return.
4875 If one of these functions switches to a different buffer, we assume
4876 that buffer contains altered text. Therefore, the caller must
4877 make sure to restore the current buffer in all cases,
4878 as save-excursion would do. */
d6a3cc15
RS
4879
4880static Lisp_Object
971de7fb 4881build_annotations (Lisp_Object start, Lisp_Object end)
d6a3cc15
RS
4882{
4883 Lisp_Object annotations;
4884 Lisp_Object p, res;
4885 struct gcpro gcpro1, gcpro2;
0a20b684 4886 Lisp_Object original_buffer;
f75d7a91
PE
4887 int i;
4888 bool used_global = 0;
0a20b684
RS
4889
4890 XSETBUFFER (original_buffer, current_buffer);
d6a3cc15
RS
4891
4892 annotations = Qnil;
4893 p = Vwrite_region_annotate_functions;
4894 GCPRO2 (annotations, p);
28c3eb5a 4895 while (CONSP (p))
d6a3cc15 4896 {
6fc6f94b 4897 struct buffer *given_buffer = current_buffer;
bd235610
SM
4898 if (EQ (Qt, XCAR (p)) && !used_global)
4899 { /* Use the global value of the hook. */
4900 Lisp_Object arg[2];
4901 used_global = 1;
4902 arg[0] = Fdefault_value (Qwrite_region_annotate_functions);
4903 arg[1] = XCDR (p);
4904 p = Fappend (2, arg);
4905 continue;
4906 }
6fc6f94b 4907 Vwrite_region_annotations_so_far = annotations;
28c3eb5a 4908 res = call2 (XCAR (p), start, end);
6fc6f94b
RS
4909 /* If the function makes a different buffer current,
4910 assume that means this buffer contains altered text to be output.
4911 Reset START and END from the buffer bounds
4912 and discard all previous annotations because they should have
4913 been dealt with by this function. */
4914 if (current_buffer != given_buffer)
4915 {
67fbc0cb
CY
4916 Vwrite_region_annotation_buffers
4917 = Fcons (Fcurrent_buffer (),
4918 Vwrite_region_annotation_buffers);
3cf29f61
RS
4919 XSETFASTINT (start, BEGV);
4920 XSETFASTINT (end, ZV);
6fc6f94b
RS
4921 annotations = Qnil;
4922 }
d6a3cc15
RS
4923 Flength (res); /* Check basic validity of return value */
4924 annotations = merge (annotations, res, Qcar_less_than_car);
28c3eb5a 4925 p = XCDR (p);
d6a3cc15 4926 }
0d420e88
BG
4927
4928 /* Now do the same for annotation functions implied by the file-format */
4b4deea2
TT
4929 if (auto_saving && (!EQ (BVAR (current_buffer, auto_save_file_format), Qt)))
4930 p = BVAR (current_buffer, auto_save_file_format);
0d420e88 4931 else
4b4deea2 4932 p = BVAR (current_buffer, file_format);
28c3eb5a 4933 for (i = 0; CONSP (p); p = XCDR (p), ++i)
0d420e88
BG
4934 {
4935 struct buffer *given_buffer = current_buffer;
efdc16c9 4936
0d420e88 4937 Vwrite_region_annotations_so_far = annotations;
532ed661
GM
4938
4939 /* Value is either a list of annotations or nil if the function
4940 has written annotations to a temporary buffer, which is now
4941 current. */
28c3eb5a 4942 res = call5 (Qformat_annotate_function, XCAR (p), start, end,
532ed661 4943 original_buffer, make_number (i));
0d420e88
BG
4944 if (current_buffer != given_buffer)
4945 {
3cf29f61
RS
4946 XSETFASTINT (start, BEGV);
4947 XSETFASTINT (end, ZV);
0d420e88
BG
4948 annotations = Qnil;
4949 }
efdc16c9 4950
532ed661
GM
4951 if (CONSP (res))
4952 annotations = merge (annotations, res, Qcar_less_than_car);
0d420e88 4953 }
6fdaa9a0 4954
236a12f2
SM
4955 UNGCPRO;
4956 return annotations;
4957}
4958
ec7adf26 4959\f
ce51c54c
KH
4960/* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
4961 If STRING is nil, POS is the character position in the current buffer.
d6a3cc15 4962 Intersperse with them the annotations from *ANNOT
ce51c54c 4963 which fall within the range of POS to POS + NCHARS,
d6a3cc15
RS
4964 each at its appropriate position.
4965
ec7adf26
RS
4966 We modify *ANNOT by discarding elements as we use them up.
4967
f75d7a91 4968 Return true if successful. */
d6a3cc15 4969
f75d7a91 4970static bool
d311d28c 4971a_write (int desc, Lisp_Object string, ptrdiff_t pos,
f75d7a91 4972 ptrdiff_t nchars, Lisp_Object *annot,
8a2cbd72 4973 struct coding_system *coding)
d6a3cc15
RS
4974{
4975 Lisp_Object tem;
d311d28c
PE
4976 ptrdiff_t nextpos;
4977 ptrdiff_t lastpos = pos + nchars;
d6a3cc15 4978
eb15aa18 4979 while (NILP (*annot) || CONSP (*annot))
d6a3cc15
RS
4980 {
4981 tem = Fcar_safe (Fcar (*annot));
ce51c54c 4982 nextpos = pos - 1;
ec7adf26 4983 if (INTEGERP (tem))
ce51c54c 4984 nextpos = XFASTINT (tem);
ec7adf26
RS
4985
4986 /* If there are no more annotations in this range,
4987 output the rest of the range all at once. */
ce51c54c
KH
4988 if (! (nextpos >= pos && nextpos <= lastpos))
4989 return e_write (desc, string, pos, lastpos, coding);
ec7adf26
RS
4990
4991 /* Output buffer text up to the next annotation's position. */
ce51c54c 4992 if (nextpos > pos)
d6a3cc15 4993 {
f75d7a91
PE
4994 if (!e_write (desc, string, pos, nextpos, coding))
4995 return 0;
ce51c54c 4996 pos = nextpos;
d6a3cc15 4997 }
ec7adf26 4998 /* Output the annotation. */
d6a3cc15
RS
4999 tem = Fcdr (Fcar (*annot));
5000 if (STRINGP (tem))
5001 {
f75d7a91
PE
5002 if (!e_write (desc, tem, 0, SCHARS (tem), coding))
5003 return 0;
d6a3cc15
RS
5004 }
5005 *annot = Fcdr (*annot);
5006 }
f75d7a91 5007 return 1;
d6a3cc15
RS
5008}
5009
6fdaa9a0 5010
ce51c54c
KH
5011/* Write text in the range START and END into descriptor DESC,
5012 encoding them with coding system CODING. If STRING is nil, START
5013 and END are character positions of the current buffer, else they
f75d7a91 5014 are indexes to the string STRING. Return true if successful. */
ec7adf26 5015
f75d7a91 5016static bool
d311d28c 5017e_write (int desc, Lisp_Object string, ptrdiff_t start, ptrdiff_t end,
8a2cbd72 5018 struct coding_system *coding)
570d7624 5019{
ce51c54c
KH
5020 if (STRINGP (string))
5021 {
db327c7e 5022 start = 0;
8f924df7 5023 end = SCHARS (string);
ce51c54c 5024 }
570d7624 5025
6fdaa9a0
KH
5026 /* We used to have a code for handling selective display here. But,
5027 now it is handled within encode_coding. */
01ca97a2
KH
5028
5029 while (start < end)
570d7624 5030 {
01ca97a2 5031 if (STRINGP (string))
6ad568dd 5032 {
01ca97a2
KH
5033 coding->src_multibyte = SCHARS (string) < SBYTES (string);
5034 if (CODING_REQUIRE_ENCODING (coding))
5035 {
5036 encode_coding_object (coding, string,
5037 start, string_char_to_byte (string, start),
5038 end, string_char_to_byte (string, end), Qt);
5039 }
5040 else
5041 {
5042 coding->dst_object = string;
5043 coding->consumed_char = SCHARS (string);
5044 coding->produced = SBYTES (string);
5045 }
6ad568dd 5046 }
db327c7e 5047 else
6ad568dd 5048 {
d311d28c
PE
5049 ptrdiff_t start_byte = CHAR_TO_BYTE (start);
5050 ptrdiff_t end_byte = CHAR_TO_BYTE (end);
b4132433 5051
01ca97a2
KH
5052 coding->src_multibyte = (end - start) < (end_byte - start_byte);
5053 if (CODING_REQUIRE_ENCODING (coding))
5054 {
5055 encode_coding_object (coding, Fcurrent_buffer (),
5056 start, start_byte, end, end_byte, Qt);
5057 }
5058 else
5059 {
5060 coding->dst_object = Qnil;
5061 coding->dst_pos_byte = start_byte;
5062 if (start >= GPT || end <= GPT)
5063 {
5064 coding->consumed_char = end - start;
5065 coding->produced = end_byte - start_byte;
5066 }
5067 else
5068 {
5069 coding->consumed_char = GPT - start;
5070 coding->produced = GPT_BYTE - start_byte;
5071 }
5072 }
c185d744 5073 }
01ca97a2
KH
5074
5075 if (coding->produced > 0)
c185d744 5076 {
ce2fe65a
AS
5077 coding->produced
5078 -= emacs_write (desc,
5079 STRINGP (coding->dst_object)
5080 ? SSDATA (coding->dst_object)
5081 : (char *) BYTE_POS_ADDR (coding->dst_pos_byte),
5082 coding->produced);
01ca97a2
KH
5083
5084 if (coding->produced)
f75d7a91 5085 return 0;
570d7624 5086 }
01ca97a2 5087 start += coding->consumed_char;
c185d744
KH
5088 }
5089
f75d7a91 5090 return 1;
570d7624 5091}
ec7adf26 5092\f
a7ca3326 5093DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
ec1b9b17 5094 Sverify_visited_file_modtime, 0, 1, 0,
8c1a1077 5095 doc: /* Return t if last mod time of BUF's visited file matches what BUF records.
6b61353c 5096This means that the file has not been changed since it was visited or saved.
ec1b9b17 5097If BUF is omitted or nil, it defaults to the current buffer.
6b61353c 5098See Info node `(elisp)Modification Time' for more details. */)
5842a27b 5099 (Lisp_Object buf)
570d7624
JB
5100{
5101 struct buffer *b;
5102 struct stat st;
32f4334d 5103 Lisp_Object handler;
b1d1b865 5104 Lisp_Object filename;
b95a9c0c 5105 EMACS_TIME mtime;
570d7624 5106
ec1b9b17
GM
5107 if (NILP (buf))
5108 b = current_buffer;
5109 else
5110 {
5111 CHECK_BUFFER (buf);
5112 b = XBUFFER (buf);
5113 }
570d7624 5114
4b4deea2 5115 if (!STRINGP (BVAR (b, filename))) return Qt;
d35af63c 5116 if (EMACS_NSECS (b->modtime) == UNKNOWN_MODTIME_NSECS) return Qt;
570d7624 5117
32f4334d
RS
5118 /* If the file name has special constructs in it,
5119 call the corresponding file handler. */
4b4deea2 5120 handler = Ffind_file_name_handler (BVAR (b, filename),
49307295 5121 Qverify_visited_file_modtime);
32f4334d 5122 if (!NILP (handler))
09121adc 5123 return call2 (handler, Qverify_visited_file_modtime, buf);
32f4334d 5124
4b4deea2 5125 filename = ENCODE_FILE (BVAR (b, filename));
b1d1b865 5126
dbeed9a6
PE
5127 mtime = (stat (SSDATA (filename), &st) == 0
5128 ? get_stat_mtime (&st)
f0941253 5129 : time_error_value (errno));
b95a9c0c 5130 if (EMACS_TIME_EQ (mtime, b->modtime)
58b963f7
SM
5131 && (st.st_size == b->modtime_size
5132 || b->modtime_size < 0))
570d7624
JB
5133 return Qt;
5134 return Qnil;
5135}
5136
5137DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
8c1a1077
PJ
5138 Sclear_visited_file_modtime, 0, 0, 0,
5139 doc: /* Clear out records of last mod time of visited file.
5140Next attempt to save will certainly not complain of a discrepancy. */)
5842a27b 5141 (void)
570d7624 5142{
e9a9ae03 5143 current_buffer->modtime = make_emacs_time (0, UNKNOWN_MODTIME_NSECS);
58b963f7 5144 current_buffer->modtime_size = -1;
570d7624
JB
5145 return Qnil;
5146}
5147
f5d5eccf 5148DEFUN ("visited-file-modtime", Fvisited_file_modtime,
8c1a1077
PJ
5149 Svisited_file_modtime, 0, 0, 0,
5150 doc: /* Return the current buffer's recorded visited file modification time.
d35af63c 5151The value is a list of the form (HIGH LOW USEC PSEC), like the time values that
1c4d7f3d
LMI
5152`file-attributes' returns. If the current buffer has no recorded file
5153modification time, this function returns 0. If the visited file
9d1d6e68 5154doesn't exist, HIGH will be -1.
6b61353c 5155See Info node `(elisp)Modification Time' for more details. */)
5842a27b 5156 (void)
f5d5eccf 5157{
d35af63c 5158 if (EMACS_NSECS (current_buffer->modtime) < 0)
73ff9d42 5159 return make_number (0);
d35af63c 5160 return make_lisp_time (current_buffer->modtime);
f5d5eccf
RS
5161}
5162
570d7624 5163DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
8c1a1077
PJ
5164 Sset_visited_file_modtime, 0, 1, 0,
5165 doc: /* Update buffer's recorded modification time from the visited file's time.
5166Useful if the buffer was not read from the file normally
5167or if the file itself has been changed for some known benign reason.
5168An argument specifies the modification time value to use
5169\(instead of that of the visited file), in the form of a list
d35af63c 5170\(HIGH LOW USEC PSEC) as returned by `current-time'. */)
5842a27b 5171 (Lisp_Object time_list)
570d7624 5172{
f5d5eccf 5173 if (!NILP (time_list))
58b963f7 5174 {
31571fd7 5175 current_buffer->modtime = lisp_time_argument (time_list);
58b963f7
SM
5176 current_buffer->modtime_size = -1;
5177 }
f5d5eccf
RS
5178 else
5179 {
5180 register Lisp_Object filename;
5181 struct stat st;
5182 Lisp_Object handler;
570d7624 5183
4b4deea2 5184 filename = Fexpand_file_name (BVAR (current_buffer, filename), Qnil);
32f4334d 5185
f5d5eccf
RS
5186 /* If the file name has special constructs in it,
5187 call the corresponding file handler. */
49307295 5188 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
f5d5eccf 5189 if (!NILP (handler))
caf3c431 5190 /* The handler can find the file name the same way we did. */
76c881b0 5191 return call2 (handler, Qset_visited_file_modtime, Qnil);
b1d1b865
RS
5192
5193 filename = ENCODE_FILE (filename);
5194
42a5b22f 5195 if (stat (SSDATA (filename), &st) >= 0)
58b963f7 5196 {
d35af63c 5197 current_buffer->modtime = get_stat_mtime (&st);
58b963f7
SM
5198 current_buffer->modtime_size = st.st_size;
5199 }
f5d5eccf 5200 }
570d7624
JB
5201
5202 return Qnil;
5203}
5204\f
f14b7e14 5205static Lisp_Object
f839df0c 5206auto_save_error (Lisp_Object error_val)
570d7624 5207{
d7f31e22
GM
5208 Lisp_Object args[3], msg;
5209 int i, nbytes;
5210 struct gcpro gcpro1;
dfc22242
KS
5211 char *msgbuf;
5212 USE_SAFE_ALLOCA;
efdc16c9 5213
ca730bf0
CY
5214 auto_save_error_occurred = 1;
5215
385ed61f 5216 ring_bell (XFRAME (selected_frame));
efdc16c9 5217
d7f31e22 5218 args[0] = build_string ("Auto-saving %s: %s");
4b4deea2 5219 args[1] = BVAR (current_buffer, name);
f839df0c 5220 args[2] = Ferror_message_string (error_val);
d7f31e22
GM
5221 msg = Fformat (3, args);
5222 GCPRO1 (msg);
d5db4077 5223 nbytes = SBYTES (msg);
98c6f1e3 5224 msgbuf = SAFE_ALLOCA (nbytes);
72af86bd 5225 memcpy (msgbuf, SDATA (msg), nbytes);
d7f31e22
GM
5226
5227 for (i = 0; i < 3; ++i)
5228 {
5229 if (i == 0)
dfc22242 5230 message2 (msgbuf, nbytes, STRING_MULTIBYTE (msg));
d7f31e22 5231 else
dfc22242 5232 message2_nolog (msgbuf, nbytes, STRING_MULTIBYTE (msg));
d7f31e22
GM
5233 Fsleep_for (make_number (1), Qnil);
5234 }
5235
e01f7773 5236 SAFE_FREE ();
d7f31e22 5237 UNGCPRO;
570d7624
JB
5238 return Qnil;
5239}
5240
f14b7e14 5241static Lisp_Object
971de7fb 5242auto_save_1 (void)
570d7624 5243{
570d7624 5244 struct stat st;
d4a42098
KS
5245 Lisp_Object modes;
5246
5247 auto_save_mode_bits = 0666;
570d7624
JB
5248
5249 /* Get visited file's mode to become the auto save file's mode. */
4b4deea2 5250 if (! NILP (BVAR (current_buffer, filename)))
d4a42098 5251 {
4b4deea2 5252 if (stat (SSDATA (BVAR (current_buffer, filename)), &st) >= 0)
d4a42098 5253 /* But make sure we can overwrite it later! */
18c52557 5254 auto_save_mode_bits = (st.st_mode | 0600) & 0777;
ce2fe65a
AS
5255 else if (modes = Ffile_modes (BVAR (current_buffer, filename)),
5256 INTEGERP (modes))
d4a42098 5257 /* Remote files don't cooperate with stat. */
18c52557 5258 auto_save_mode_bits = (XINT (modes) | 0600) & 0777;
d4a42098 5259 }
570d7624
JB
5260
5261 return
4b4deea2 5262 Fwrite_region (Qnil, Qnil, BVAR (current_buffer, auto_save_file_name), Qnil,
699b53bc
CY
5263 NILP (Vauto_save_visited_file_name) ? Qlambda : Qt,
5264 Qnil, Qnil);
570d7624
JB
5265}
5266
e54d3b5d 5267static Lisp_Object
971de7fb 5268do_auto_save_unwind (Lisp_Object arg) /* used as unwind-protect function */
410ed5c3 5269
e54d3b5d 5270{
fff7e982 5271 FILE *stream = (FILE *) XSAVE_VALUE (arg)->pointer;
3be3c08e 5272 auto_saving = 0;
fff7e982 5273 if (stream != NULL)
aab12958 5274 {
4d7e6e51 5275 block_input ();
aab12958 5276 fclose (stream);
4d7e6e51 5277 unblock_input ();
aab12958 5278 }
e54d3b5d
RS
5279 return Qnil;
5280}
5281
a8c828be 5282static Lisp_Object
971de7fb 5283do_auto_save_unwind_1 (Lisp_Object value) /* used as unwind-protect function */
410ed5c3 5284
a8c828be
RS
5285{
5286 minibuffer_auto_raise = XINT (value);
5287 return Qnil;
5288}
5289
5794dd61 5290static Lisp_Object
971de7fb 5291do_auto_save_make_dir (Lisp_Object dir)
5794dd61 5292{
09450bae 5293 Lisp_Object result;
26816cbf 5294
09450bae
PE
5295 auto_saving_dir_umask = 077;
5296 result = call2 (Qmake_directory, dir, Qt);
5297 auto_saving_dir_umask = 0;
5298 return result;
5794dd61
RS
5299}
5300
5301static Lisp_Object
971de7fb 5302do_auto_save_eh (Lisp_Object ignore)
5794dd61 5303{
09450bae 5304 auto_saving_dir_umask = 0;
5794dd61
RS
5305 return Qnil;
5306}
5307
a7ca3326 5308DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
8c1a1077
PJ
5309 doc: /* Auto-save all buffers that need it.
5310This is all buffers that have auto-saving enabled
5311and are changed since last auto-saved.
5312Auto-saving writes the buffer into a file
5313so that your editing is not lost if the system crashes.
5314This file is not the file you visited; that changes only when you save.
5315Normally we run the normal hook `auto-save-hook' before saving.
5316
5317A non-nil NO-MESSAGE argument means do not print any message if successful.
5318A non-nil CURRENT-ONLY argument means save only current buffer. */)
5842a27b 5319 (Lisp_Object no_message, Lisp_Object current_only)
570d7624
JB
5320{
5321 struct buffer *old = current_buffer, *b;
dee091a3 5322 Lisp_Object tail, buf, hook;
f75d7a91 5323 bool auto_saved = 0;
f14b1c68 5324 int do_handled_files;
ff4c9993 5325 Lisp_Object oquit;
fff7e982 5326 FILE *stream = NULL;
d311d28c 5327 ptrdiff_t count = SPECPDL_INDEX ();
f75d7a91 5328 bool orig_minibuffer_auto_raise = minibuffer_auto_raise;
fce31d69 5329 bool old_message_p = 0;
d57563b6 5330 struct gcpro gcpro1, gcpro2;
38da540d
RS
5331
5332 if (max_specpdl_size < specpdl_size + 40)
5333 max_specpdl_size = specpdl_size + 40;
5334
5335 if (minibuf_level)
5336 no_message = Qt;
5337
5794dd61
RS
5338 if (NILP (no_message))
5339 {
5340 old_message_p = push_message ();
5341 record_unwind_protect (pop_message_unwind, Qnil);
5342 }
efdc16c9 5343
ff4c9993
RS
5344 /* Ordinarily don't quit within this function,
5345 but don't make it impossible to quit (in case we get hung in I/O). */
5346 oquit = Vquit_flag;
5347 Vquit_flag = Qnil;
570d7624
JB
5348
5349 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5350 point to non-strings reached from Vbuffer_alist. */
5351
dee091a3
JD
5352 hook = intern ("auto-save-hook");
5353 Frun_hooks (1, &hook);
570d7624 5354
e54d3b5d
RS
5355 if (STRINGP (Vauto_save_list_file_name))
5356 {
0894672f 5357 Lisp_Object listfile;
efdc16c9 5358
258fd2cb 5359 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
0894672f
GM
5360
5361 /* Don't try to create the directory when shutting down Emacs,
5362 because creating the directory might signal an error, and
5363 that would leave Emacs in a strange state. */
5364 if (!NILP (Vrun_hooks))
5365 {
5366 Lisp_Object dir;
d57563b6
RS
5367 dir = Qnil;
5368 GCPRO2 (dir, listfile);
0894672f
GM
5369 dir = Ffile_name_directory (listfile);
5370 if (NILP (Ffile_directory_p (dir)))
5794dd61 5371 internal_condition_case_1 (do_auto_save_make_dir,
09450bae 5372 dir, Qt,
5794dd61 5373 do_auto_save_eh);
d57563b6 5374 UNGCPRO;
0894672f 5375 }
efdc16c9 5376
42a5b22f 5377 stream = fopen (SSDATA (listfile), "w");
1b335d29 5378 }
199607e4 5379
fff7e982
KS
5380 record_unwind_protect (do_auto_save_unwind,
5381 make_save_value (stream, 0));
a8c828be
RS
5382 record_unwind_protect (do_auto_save_unwind_1,
5383 make_number (minibuffer_auto_raise));
5384 minibuffer_auto_raise = 0;
3be3c08e 5385 auto_saving = 1;
ca730bf0 5386 auto_save_error_occurred = 0;
3be3c08e 5387
6b61353c
KH
5388 /* On first pass, save all files that don't have handlers.
5389 On second pass, save all files that do have handlers.
5390
5391 If Emacs is crashing, the handlers may tweak what is causing
5392 Emacs to crash in the first place, and it would be a shame if
5393 Emacs failed to autosave perfectly ordinary files because it
5394 couldn't handle some ange-ftp'd file. */
5395
f14b1c68 5396 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
8e50cc2d 5397 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
f14b1c68 5398 {
03699b14 5399 buf = XCDR (XCAR (tail));
f14b1c68 5400 b = XBUFFER (buf);
199607e4 5401
e54d3b5d 5402 /* Record all the buffers that have auto save mode
258fd2cb
RS
5403 in the special file that lists them. For each of these buffers,
5404 Record visited name (if any) and auto save name. */
4b4deea2 5405 if (STRINGP (BVAR (b, auto_save_file_name))
1b335d29 5406 && stream != NULL && do_handled_files == 0)
e54d3b5d 5407 {
4d7e6e51 5408 block_input ();
4b4deea2 5409 if (!NILP (BVAR (b, filename)))
258fd2cb 5410 {
4b4deea2
TT
5411 fwrite (SDATA (BVAR (b, filename)), 1,
5412 SBYTES (BVAR (b, filename)), stream);
258fd2cb 5413 }
1b335d29 5414 putc ('\n', stream);
4b4deea2
TT
5415 fwrite (SDATA (BVAR (b, auto_save_file_name)), 1,
5416 SBYTES (BVAR (b, auto_save_file_name)), stream);
1b335d29 5417 putc ('\n', stream);
4d7e6e51 5418 unblock_input ();
e54d3b5d 5419 }
17857782 5420
f14b1c68
JB
5421 if (!NILP (current_only)
5422 && b != current_buffer)
5423 continue;
e54d3b5d 5424
95385625
RS
5425 /* Don't auto-save indirect buffers.
5426 The base buffer takes care of it. */
5427 if (b->base_buffer)
5428 continue;
5429
f14b1c68
JB
5430 /* Check for auto save enabled
5431 and file changed since last auto save
5432 and file changed since last real save. */
4b4deea2 5433 if (STRINGP (BVAR (b, auto_save_file_name))
95385625 5434 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
0b5397c2 5435 && BUF_AUTOSAVE_MODIFF (b) < BUF_MODIFF (b)
82c2d839 5436 /* -1 means we've turned off autosaving for a while--see below. */
4b4deea2 5437 && XINT (BVAR (b, save_length)) >= 0
f14b1c68 5438 && (do_handled_files
4b4deea2 5439 || NILP (Ffind_file_name_handler (BVAR (b, auto_save_file_name),
49307295 5440 Qwrite_region))))
f14b1c68 5441 {
e9a9ae03
PE
5442 EMACS_TIME before_time = current_emacs_time ();
5443 EMACS_TIME after_time;
b60247d9
RS
5444
5445 /* If we had a failure, don't try again for 20 minutes. */
d311d28c 5446 if (b->auto_save_failure_time > 0
b60247d9
RS
5447 && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200)
5448 continue;
5449
090101cf
CY
5450 set_buffer_internal (b);
5451 if (NILP (Vauto_save_include_big_deletions)
4b4deea2 5452 && (XFASTINT (BVAR (b, save_length)) * 10
4be941e3 5453 > (BUF_Z (b) - BUF_BEG (b)) * 13)
f14b1c68
JB
5454 /* A short file is likely to change a large fraction;
5455 spare the user annoying messages. */
4b4deea2 5456 && XFASTINT (BVAR (b, save_length)) > 5000
f14b1c68 5457 /* These messages are frequent and annoying for `*mail*'. */
4b4deea2 5458 && !EQ (BVAR (b, filename), Qnil)
f14b1c68
JB
5459 && NILP (no_message))
5460 {
5461 /* It has shrunk too much; turn off auto-saving here. */
a8c828be 5462 minibuffer_auto_raise = orig_minibuffer_auto_raise;
fd91d0d4 5463 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
4b4deea2 5464 BVAR (b, name), 1);
a8c828be 5465 minibuffer_auto_raise = 0;
82c2d839
RS
5466 /* Turn off auto-saving until there's a real save,
5467 and prevent any more warnings. */
4b4deea2 5468 XSETINT (BVAR (b, save_length), -1);
f14b1c68
JB
5469 Fsleep_for (make_number (1), Qnil);
5470 continue;
5471 }
f14b1c68
JB
5472 if (!auto_saved && NILP (no_message))
5473 message1 ("Auto-saving...");
5474 internal_condition_case (auto_save_1, Qt, auto_save_error);
f75d7a91 5475 auto_saved = 1;
0b5397c2 5476 BUF_AUTOSAVE_MODIFF (b) = BUF_MODIFF (b);
4b4deea2 5477 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
f14b1c68 5478 set_buffer_internal (old);
b60247d9 5479
e9a9ae03 5480 after_time = current_emacs_time ();
b60247d9
RS
5481
5482 /* If auto-save took more than 60 seconds,
5483 assume it was an NFS failure that got a timeout. */
5484 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
5485 b->auto_save_failure_time = EMACS_SECS (after_time);
f14b1c68
JB
5486 }
5487 }
570d7624 5488
b67f2ca5
RS
5489 /* Prevent another auto save till enough input events come in. */
5490 record_auto_save ();
570d7624 5491
17857782 5492 if (auto_saved && NILP (no_message))
f05b275b 5493 {
5794dd61 5494 if (old_message_p)
31f3d831 5495 {
5794dd61
RS
5496 /* If we are going to restore an old message,
5497 give time to read ours. */
83f8d903 5498 sit_for (make_number (1), 0, 0);
c71106e5 5499 restore_message ();
31f3d831 5500 }
ca730bf0 5501 else if (!auto_save_error_occurred)
31e31a15
CY
5502 /* Don't overwrite the error message if an error occurred.
5503 If we displayed a message and then restored a state
5794dd61 5504 with no message, leave a "done" message on the screen. */
f05b275b
KH
5505 message1 ("Auto-saving...done");
5506 }
570d7624 5507
ff4c9993
RS
5508 Vquit_flag = oquit;
5509
5794dd61 5510 /* This restores the message-stack status. */
e54d3b5d 5511 unbind_to (count, Qnil);
570d7624
JB
5512 return Qnil;
5513}
5514
5515DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
8c1a1077
PJ
5516 Sset_buffer_auto_saved, 0, 0, 0,
5517 doc: /* Mark current buffer as auto-saved with its current text.
5518No auto-save file will be written until the buffer changes again. */)
5842a27b 5519 (void)
570d7624 5520{
0b5397c2
SM
5521 /* FIXME: This should not be called in indirect buffers, since
5522 they're not autosaved. */
5523 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
4b4deea2 5524 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
d311d28c 5525 current_buffer->auto_save_failure_time = 0;
b60247d9
RS
5526 return Qnil;
5527}
5528
5529DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
8c1a1077
PJ
5530 Sclear_buffer_auto_save_failure, 0, 0, 0,
5531 doc: /* Clear any record of a recent auto-save failure in the current buffer. */)
5842a27b 5532 (void)
b60247d9 5533{
d311d28c 5534 current_buffer->auto_save_failure_time = 0;
570d7624
JB
5535 return Qnil;
5536}
5537
5538DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
8c1a1077 5539 0, 0, 0,
68780e2a
RS
5540 doc: /* Return t if current buffer has been auto-saved recently.
5541More precisely, if it has been auto-saved since last read from or saved
5542in the visited file. If the buffer has no visited file,
5543then any auto-save counts as "recent". */)
5842a27b 5544 (void)
570d7624 5545{
0b5397c2
SM
5546 /* FIXME: maybe we should return nil for indirect buffers since
5547 they're never autosaved. */
5548 return (SAVE_MODIFF < BUF_AUTOSAVE_MODIFF (current_buffer) ? Qt : Qnil);
570d7624
JB
5549}
5550\f
5551/* Reading and completing file names */
6e710ae5 5552
88208bb8
JD
5553DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p,
5554 Snext_read_file_uses_dialog_p, 0, 0, 0,
5555 doc: /* Return t if a call to `read-file-name' will use a dialog.
5556The return value is only relevant for a call to `read-file-name' that happens
1a0de25c 5557before any other event (mouse or keypress) is handled. */)
5842a27b 5558 (void)
88208bb8 5559{
d7e642cc
JD
5560#if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK) \
5561 || defined (HAVE_NS)
88208bb8
JD
5562 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
5563 && use_dialog_box
5564 && use_file_dialog
5565 && have_menus_p ())
5566 return Qt;
5567#endif
5568 return Qnil;
5569}
d4a42098 5570
dbd50d4b 5571Lisp_Object
971de7fb 5572Fread_file_name (Lisp_Object prompt, Lisp_Object dir, Lisp_Object default_filename, Lisp_Object mustmatch, Lisp_Object initial, Lisp_Object predicate)
570d7624 5573{
fd4ead52 5574 struct gcpro gcpro1;
dbd50d4b 5575 Lisp_Object args[7];
a79485af 5576
71e1f69d 5577 GCPRO1 (default_filename);
dbd50d4b
SM
5578 args[0] = intern ("read-file-name");
5579 args[1] = prompt;
5580 args[2] = dir;
5581 args[3] = default_filename;
5582 args[4] = mustmatch;
5583 args[5] = initial;
5584 args[6] = predicate;
5585 RETURN_UNGCPRO (Ffuncall (7, args));
570d7624 5586}
9c856db9 5587
570d7624 5588\f
dfcf069d 5589void
971de7fb 5590syms_of_fileio (void)
570d7624 5591{
cd3520a4
JB
5592 DEFSYM (Qoperations, "operations");
5593 DEFSYM (Qexpand_file_name, "expand-file-name");
5594 DEFSYM (Qsubstitute_in_file_name, "substitute-in-file-name");
5595 DEFSYM (Qdirectory_file_name, "directory-file-name");
5596 DEFSYM (Qfile_name_directory, "file-name-directory");
5597 DEFSYM (Qfile_name_nondirectory, "file-name-nondirectory");
5598 DEFSYM (Qunhandled_file_name_directory, "unhandled-file-name-directory");
5599 DEFSYM (Qfile_name_as_directory, "file-name-as-directory");
5600 DEFSYM (Qcopy_file, "copy-file");
5601 DEFSYM (Qmake_directory_internal, "make-directory-internal");
5602 DEFSYM (Qmake_directory, "make-directory");
5603 DEFSYM (Qdelete_directory_internal, "delete-directory-internal");
5604 DEFSYM (Qdelete_file, "delete-file");
5605 DEFSYM (Qrename_file, "rename-file");
5606 DEFSYM (Qadd_name_to_file, "add-name-to-file");
5607 DEFSYM (Qmake_symbolic_link, "make-symbolic-link");
5608 DEFSYM (Qfile_exists_p, "file-exists-p");
5609 DEFSYM (Qfile_executable_p, "file-executable-p");
5610 DEFSYM (Qfile_readable_p, "file-readable-p");
5611 DEFSYM (Qfile_writable_p, "file-writable-p");
5612 DEFSYM (Qfile_symlink_p, "file-symlink-p");
5613 DEFSYM (Qaccess_file, "access-file");
5614 DEFSYM (Qfile_directory_p, "file-directory-p");
5615 DEFSYM (Qfile_regular_p, "file-regular-p");
5616 DEFSYM (Qfile_accessible_directory_p, "file-accessible-directory-p");
5617 DEFSYM (Qfile_modes, "file-modes");
5618 DEFSYM (Qset_file_modes, "set-file-modes");
5619 DEFSYM (Qset_file_times, "set-file-times");
5620 DEFSYM (Qfile_selinux_context, "file-selinux-context");
5621 DEFSYM (Qset_file_selinux_context, "set-file-selinux-context");
5622 DEFSYM (Qfile_newer_than_file_p, "file-newer-than-file-p");
5623 DEFSYM (Qinsert_file_contents, "insert-file-contents");
5624 DEFSYM (Qwrite_region, "write-region");
5625 DEFSYM (Qverify_visited_file_modtime, "verify-visited-file-modtime");
5626 DEFSYM (Qset_visited_file_modtime, "set-visited-file-modtime");
5627 DEFSYM (Qauto_save_coding, "auto-save-coding");
5628
5629 DEFSYM (Qfile_name_history, "file-name-history");
642ef245 5630 Fset (Qfile_name_history, Qnil);
15c65264 5631
cd3520a4
JB
5632 DEFSYM (Qfile_error, "file-error");
5633 DEFSYM (Qfile_already_exists, "file-already-exists");
5634 DEFSYM (Qfile_date_error, "file-date-error");
5635 DEFSYM (Qexcl, "excl");
570d7624 5636
29208e82 5637 DEFVAR_LISP ("file-name-coding-system", Vfile_name_coding_system,
fb7ada5f 5638 doc: /* Coding system for encoding file names.
346ebf53 5639If it is nil, `default-file-name-coding-system' (which see) is used. */);
b1d1b865
RS
5640 Vfile_name_coding_system = Qnil;
5641
cd913586 5642 DEFVAR_LISP ("default-file-name-coding-system",
29208e82 5643 Vdefault_file_name_coding_system,
8c1a1077 5644 doc: /* Default coding system for encoding file names.
346ebf53 5645This variable is used only when `file-name-coding-system' is nil.
8c1a1077 5646
346ebf53 5647This variable is set/changed by the command `set-language-environment'.
8c1a1077 5648User should not set this variable manually,
346ebf53 5649instead use `file-name-coding-system' to get a constant encoding
8c1a1077 5650of file names regardless of the current language environment. */);
cd913586
KH
5651 Vdefault_file_name_coding_system = Qnil;
5652
cd3520a4
JB
5653 DEFSYM (Qformat_decode, "format-decode");
5654 DEFSYM (Qformat_annotate_function, "format-annotate-function");
5655 DEFSYM (Qafter_insert_file_set_coding, "after-insert-file-set-coding");
5656 DEFSYM (Qcar_less_than_car, "car-less-than-car");
d6a3cc15 5657
570d7624 5658 Fput (Qfile_error, Qerror_conditions,
d67b4f80 5659 Fpurecopy (list2 (Qfile_error, Qerror)));
570d7624 5660 Fput (Qfile_error, Qerror_message,
2a0213a6 5661 build_pure_c_string ("File error"));
570d7624
JB
5662
5663 Fput (Qfile_already_exists, Qerror_conditions,
d67b4f80 5664 Fpurecopy (list3 (Qfile_already_exists, Qfile_error, Qerror)));
570d7624 5665 Fput (Qfile_already_exists, Qerror_message,
2a0213a6 5666 build_pure_c_string ("File already exists"));
570d7624 5667
c0b7b21c 5668 Fput (Qfile_date_error, Qerror_conditions,
d67b4f80 5669 Fpurecopy (list3 (Qfile_date_error, Qfile_error, Qerror)));
c0b7b21c 5670 Fput (Qfile_date_error, Qerror_message,
2a0213a6 5671 build_pure_c_string ("Cannot set file date"));
c0b7b21c 5672
29208e82 5673 DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist,
a59225b1
CY
5674 doc: /* Alist of elements (REGEXP . HANDLER) for file names handled specially.
5675If a file name matches REGEXP, all I/O on that file is done by calling
5676HANDLER. If a file name matches more than one handler, the handler
5677whose match starts last in the file name gets precedence. The
5678function `find-file-name-handler' checks this list for a handler for
5679its argument.
5680
5681HANDLER should be a function. The first argument given to it is the
5682name of the I/O primitive to be handled; the remaining arguments are
5683the arguments that were passed to that primitive. For example, if you
5684do (file-exists-p FILENAME) and FILENAME is handled by HANDLER, then
5685HANDLER is called like this:
5686
5687 (funcall HANDLER 'file-exists-p FILENAME)
5688
5689Note that HANDLER must be able to handle all I/O primitives; if it has
5690nothing special to do for a primitive, it should reinvoke the
5691primitive to handle the operation \"the usual way\".
5692See Info node `(elisp)Magic File Names' for more details. */);
09121adc
RS
5693 Vfile_name_handler_alist = Qnil;
5694
0414b394 5695 DEFVAR_LISP ("set-auto-coding-function",
29208e82 5696 Vset_auto_coding_function,
8c1a1077
PJ
5697 doc: /* If non-nil, a function to call to decide a coding system of file.
5698Two arguments are passed to this function: the file name
5699and the length of a file contents following the point.
5700This function should return a coding system to decode the file contents.
5701It should check the file name against `auto-coding-alist'.
5702If no coding system is decided, it should check a coding system
5703specified in the heading lines with the format:
5704 -*- ... coding: CODING-SYSTEM; ... -*-
5705or local variable spec of the tailing lines with `coding:' tag. */);
0414b394 5706 Vset_auto_coding_function = Qnil;
c9e82392 5707
29208e82 5708 DEFVAR_LISP ("after-insert-file-functions", Vafter_insert_file_functions,
8c1a1077 5709 doc: /* A list of functions to be called at the end of `insert-file-contents'.
0cf9f5b5
RS
5710Each is passed one argument, the number of characters inserted,
5711with point at the start of the inserted text. Each function
5712should leave point the same, and return the new character count.
cf6d2357
RS
5713If `insert-file-contents' is intercepted by a handler from
5714`file-name-handler-alist', that handler is responsible for calling the
5715functions in `after-insert-file-functions' if appropriate. */);
d6a3cc15
RS
5716 Vafter_insert_file_functions = Qnil;
5717
29208e82 5718 DEFVAR_LISP ("write-region-annotate-functions", Vwrite_region_annotate_functions,
8c1a1077
PJ
5719 doc: /* A list of functions to be called at the start of `write-region'.
5720Each is passed two arguments, START and END as for `write-region'.
5721These are usually two numbers but not always; see the documentation
5722for `write-region'. The function should return a list of pairs
5723of the form (POSITION . STRING), consisting of strings to be effectively
5724inserted at the specified positions of the file being written (1 means to
5725insert before the first byte written). The POSITIONs must be sorted into
67fbc0cb
CY
5726increasing order.
5727
5728If there are several annotation functions, the lists returned by these
5729functions are merged destructively. As each annotation function runs,
5730the variable `write-region-annotations-so-far' contains a list of all
5731annotations returned by previous annotation functions.
5732
5733An annotation function can return with a different buffer current.
5734Doing so removes the annotations returned by previous functions, and
5735resets START and END to `point-min' and `point-max' of the new buffer.
5736
5737After `write-region' completes, Emacs calls the function stored in
5738`write-region-post-annotation-function', once for each buffer that was
5739current when building the annotations (i.e., at least once), with that
5740buffer current. */);
d6a3cc15 5741 Vwrite_region_annotate_functions = Qnil;
cd3520a4 5742 DEFSYM (Qwrite_region_annotate_functions, "write-region-annotate-functions");
d6a3cc15 5743
67fbc0cb 5744 DEFVAR_LISP ("write-region-post-annotation-function",
29208e82 5745 Vwrite_region_post_annotation_function,
67fbc0cb
CY
5746 doc: /* Function to call after `write-region' completes.
5747The function is called with no arguments. If one or more of the
5748annotation functions in `write-region-annotate-functions' changed the
5749current buffer, the function stored in this variable is called for
5750each of those additional buffers as well, in addition to the original
5751buffer. The relevant buffer is current during each function call. */);
5752 Vwrite_region_post_annotation_function = Qnil;
5753 staticpro (&Vwrite_region_annotation_buffers);
5754
6fc6f94b 5755 DEFVAR_LISP ("write-region-annotations-so-far",
29208e82 5756 Vwrite_region_annotations_so_far,
8c1a1077
PJ
5757 doc: /* When an annotation function is called, this holds the previous annotations.
5758These are the annotations made by other annotation functions
5759that were already called. See also `write-region-annotate-functions'. */);
6fc6f94b
RS
5760 Vwrite_region_annotations_so_far = Qnil;
5761
29208e82 5762 DEFVAR_LISP ("inhibit-file-name-handlers", Vinhibit_file_name_handlers,
8c1a1077
PJ
5763 doc: /* A list of file name handlers that temporarily should not be used.
5764This applies only to the operation `inhibit-file-name-operation'. */);
82c2d839
RS
5765 Vinhibit_file_name_handlers = Qnil;
5766
29208e82 5767 DEFVAR_LISP ("inhibit-file-name-operation", Vinhibit_file_name_operation,
8c1a1077 5768 doc: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
a65970a0
RS
5769 Vinhibit_file_name_operation = Qnil;
5770
29208e82 5771 DEFVAR_LISP ("auto-save-list-file-name", Vauto_save_list_file_name,
8c1a1077
PJ
5772 doc: /* File name in which we write a list of all auto save file names.
5773This variable is initialized automatically from `auto-save-list-file-prefix'
5774shortly after Emacs reads your `.emacs' file, if you have not yet given it
5775a non-nil value. */);
e54d3b5d
RS
5776 Vauto_save_list_file_name = Qnil;
5777
29208e82 5778 DEFVAR_LISP ("auto-save-visited-file-name", Vauto_save_visited_file_name,
699b53bc
CY
5779 doc: /* Non-nil says auto-save a buffer in the file it is visiting, when practical.
5780Normally auto-save files are written under other names. */);
5781 Vauto_save_visited_file_name = Qnil;
5782
29208e82 5783 DEFVAR_LISP ("auto-save-include-big-deletions", Vauto_save_include_big_deletions,
090101cf
CY
5784 doc: /* If non-nil, auto-save even if a large part of the text is deleted.
5785If nil, deleting a substantial portion of the text disables auto-save
5786in the buffer; this is the default behavior, because the auto-save
5787file is usually more useful if it contains the deleted text. */);
5788 Vauto_save_include_big_deletions = Qnil;
5789
ccf61795 5790#ifdef HAVE_FSYNC
29208e82 5791 DEFVAR_BOOL ("write-region-inhibit-fsync", write_region_inhibit_fsync,
fb7ada5f 5792 doc: /* Non-nil means don't call fsync in `write-region'.
e3f509dd
RF
5793This variable affects calls to `write-region' as well as save commands.
5794A non-nil value may result in data loss! */);
ccf61795
RF
5795 write_region_inhibit_fsync = 0;
5796#endif
5797
29208e82 5798 DEFVAR_BOOL ("delete-by-moving-to-trash", delete_by_moving_to_trash,
6cf29fe8 5799 doc: /* Specifies whether to use the system's trash can.
f1a5d776
CY
5800When non-nil, certain file deletion commands use the function
5801`move-file-to-trash' instead of deleting files outright.
5802This includes interactive calls to `delete-file' and
5803`delete-directory' and the Dired deletion commands. */);
6cf29fe8 5804 delete_by_moving_to_trash = 0;
d67b4f80 5805 Qdelete_by_moving_to_trash = intern_c_string ("delete-by-moving-to-trash");
cd3520a4
JB
5806
5807 DEFSYM (Qmove_file_to_trash, "move-file-to-trash");
5808 DEFSYM (Qcopy_directory, "copy-directory");
5809 DEFSYM (Qdelete_directory, "delete-directory");
6cf29fe8 5810
642ef245 5811 defsubr (&Sfind_file_name_handler);
570d7624
JB
5812 defsubr (&Sfile_name_directory);
5813 defsubr (&Sfile_name_nondirectory);
642ef245 5814 defsubr (&Sunhandled_file_name_directory);
570d7624
JB
5815 defsubr (&Sfile_name_as_directory);
5816 defsubr (&Sdirectory_file_name);
5817 defsubr (&Smake_temp_name);
5818 defsubr (&Sexpand_file_name);
5819 defsubr (&Ssubstitute_in_file_name);
5820 defsubr (&Scopy_file);
9bbe01fb 5821 defsubr (&Smake_directory_internal);
9d8f3bd9 5822 defsubr (&Sdelete_directory_internal);
570d7624
JB
5823 defsubr (&Sdelete_file);
5824 defsubr (&Srename_file);
5825 defsubr (&Sadd_name_to_file);
570d7624 5826 defsubr (&Smake_symbolic_link);
570d7624
JB
5827 defsubr (&Sfile_name_absolute_p);
5828 defsubr (&Sfile_exists_p);
5829 defsubr (&Sfile_executable_p);
5830 defsubr (&Sfile_readable_p);
5831 defsubr (&Sfile_writable_p);
1f8653eb 5832 defsubr (&Saccess_file);
570d7624
JB
5833 defsubr (&Sfile_symlink_p);
5834 defsubr (&Sfile_directory_p);
b72dea2a 5835 defsubr (&Sfile_accessible_directory_p);
f793dc6c 5836 defsubr (&Sfile_regular_p);
570d7624
JB
5837 defsubr (&Sfile_modes);
5838 defsubr (&Sset_file_modes);
819da85b 5839 defsubr (&Sset_file_times);
574c05e2
KK
5840 defsubr (&Sfile_selinux_context);
5841 defsubr (&Sset_file_selinux_context);
c24e9a53
RS
5842 defsubr (&Sset_default_file_modes);
5843 defsubr (&Sdefault_file_modes);
570d7624
JB
5844 defsubr (&Sfile_newer_than_file_p);
5845 defsubr (&Sinsert_file_contents);
5846 defsubr (&Swrite_region);
d6a3cc15 5847 defsubr (&Scar_less_than_car);
570d7624
JB
5848 defsubr (&Sverify_visited_file_modtime);
5849 defsubr (&Sclear_visited_file_modtime);
f5d5eccf 5850 defsubr (&Svisited_file_modtime);
570d7624
JB
5851 defsubr (&Sset_visited_file_modtime);
5852 defsubr (&Sdo_auto_save);
5853 defsubr (&Sset_buffer_auto_saved);
b60247d9 5854 defsubr (&Sclear_buffer_auto_save_failure);
570d7624
JB
5855 defsubr (&Srecent_auto_save_p);
5856
88208bb8 5857 defsubr (&Snext_read_file_uses_dialog_p);
85ffea93 5858
697c17a2 5859#ifdef HAVE_SYNC
85ffea93 5860 defsubr (&Sunix_sync);
483a2e10 5861#endif
570d7624 5862}