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