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