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