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