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