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