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