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