(speedbar-update-current-file): Added call to
[emacs.git] / src / fileio.c
blobd9ad61cdcdca6b655e75b84fe852ef2188c2d5fc
1 /* File IO for GNU Emacs.
2 Copyright (C) 1985,86,87,88,93,94,95,96,97,1998 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include <config.h>
23 #if defined (USG5) || defined (BSD_SYSTEM) || defined (LINUX)
24 #include <fcntl.h>
25 #endif
27 #include <stdio.h>
28 #include <sys/types.h>
29 #include <sys/stat.h>
31 #ifdef HAVE_UNISTD_H
32 #include <unistd.h>
33 #endif
35 #if !defined (S_ISLNK) && defined (S_IFLNK)
36 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
37 #endif
39 #if !defined (S_ISFIFO) && defined (S_IFIFO)
40 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
41 #endif
43 #if !defined (S_ISREG) && defined (S_IFREG)
44 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
45 #endif
47 #ifdef VMS
48 #include "vms-pwd.h"
49 #else
50 #include <pwd.h>
51 #endif
53 #include <ctype.h>
55 #ifdef VMS
56 #include "vmsdir.h"
57 #include <perror.h>
58 #include <stddef.h>
59 #include <string.h>
60 #endif
62 #include <errno.h>
64 #ifndef vax11c
65 extern int errno;
66 #endif
68 extern char *strerror ();
70 #ifdef APOLLO
71 #include <sys/time.h>
72 #endif
74 #ifndef USG
75 #ifndef VMS
76 #ifndef BSD4_1
77 #ifndef WINDOWSNT
78 #define HAVE_FSYNC
79 #endif
80 #endif
81 #endif
82 #endif
84 #include "lisp.h"
85 #include "intervals.h"
86 #include "buffer.h"
87 #include "charset.h"
88 #include "coding.h"
89 #include "window.h"
91 #ifdef WINDOWSNT
92 #define NOMINMAX 1
93 #include <windows.h>
94 #include <stdlib.h>
95 #include <fcntl.h>
96 #endif /* not WINDOWSNT */
98 #ifdef MSDOS
99 #include "msdos.h"
100 #include <sys/param.h>
101 #if __DJGPP__ >= 2
102 #include <fcntl.h>
103 #include <string.h>
104 #endif
105 #endif
107 #ifdef DOS_NT
108 #define CORRECT_DIR_SEPS(s) \
109 do { if ('/' == DIRECTORY_SEP) dostounix_filename (s); \
110 else unixtodos_filename (s); \
111 } while (0)
112 /* On Windows, drive letters must be alphabetic - on DOS, the Netware
113 redirector allows the six letters between 'Z' and 'a' as well. */
114 #ifdef MSDOS
115 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
116 #endif
117 #ifdef WINDOWSNT
118 #define IS_DRIVE(x) isalpha (x)
119 #endif
120 /* Need to lower-case the drive letter, or else expanded
121 filenames will sometimes compare inequal, because
122 `expand-file-name' doesn't always down-case the drive letter. */
123 #define DRIVE_LETTER(x) (tolower (x))
124 #endif
126 #ifdef VMS
127 #include <file.h>
128 #include <rmsdef.h>
129 #include <fab.h>
130 #include <nam.h>
131 #endif
133 #include "systime.h"
135 #ifdef HPUX
136 #include <netio.h>
137 #ifndef HPUX8
138 #ifndef HPUX9
139 #include <errnet.h>
140 #endif
141 #endif
142 #endif
144 #ifndef O_WRONLY
145 #define O_WRONLY 1
146 #endif
148 #ifndef O_RDONLY
149 #define O_RDONLY 0
150 #endif
152 #define min(a, b) ((a) < (b) ? (a) : (b))
153 #define max(a, b) ((a) > (b) ? (a) : (b))
155 /* Nonzero during writing of auto-save files */
156 int auto_saving;
158 /* Set by auto_save_1 to mode of original file so Fwrite_region will create
159 a new file with the same mode as the original */
160 int auto_save_mode_bits;
162 /* Coding system for file names, or nil if none. */
163 Lisp_Object Vfile_name_coding_system;
165 /* Coding system for file names used only when
166 Vfile_name_coding_system is nil. */
167 Lisp_Object Vdefault_file_name_coding_system;
169 /* Alist of elements (REGEXP . HANDLER) for file names
170 whose I/O is done with a special handler. */
171 Lisp_Object Vfile_name_handler_alist;
173 /* Format for auto-save files */
174 Lisp_Object Vauto_save_file_format;
176 /* Lisp functions for translating file formats */
177 Lisp_Object Qformat_decode, Qformat_annotate_function;
179 /* Function to be called to decide a coding system of a reading file. */
180 Lisp_Object Vset_auto_coding_function;
182 /* Functions to be called to process text properties in inserted file. */
183 Lisp_Object Vafter_insert_file_functions;
185 /* Functions to be called to create text property annotations for file. */
186 Lisp_Object Vwrite_region_annotate_functions;
188 /* During build_annotations, each time an annotation function is called,
189 this holds the annotations made by the previous functions. */
190 Lisp_Object Vwrite_region_annotations_so_far;
192 /* File name in which we write a list of all our auto save files. */
193 Lisp_Object Vauto_save_list_file_name;
195 /* Nonzero means, when reading a filename in the minibuffer,
196 start out by inserting the default directory into the minibuffer. */
197 int insert_default_directory;
199 /* On VMS, nonzero means write new files with record format stmlf.
200 Zero means use var format. */
201 int vms_stmlf_recfm;
203 /* On NT, specifies the directory separator character, used (eg.) when
204 expanding file names. This can be bound to / or \. */
205 Lisp_Object Vdirectory_sep_char;
207 extern Lisp_Object Vuser_login_name;
209 #ifdef WINDOWSNT
210 extern Lisp_Object Vw32_get_true_file_attributes;
211 #endif
213 extern int minibuf_level;
215 extern int minibuffer_auto_raise;
217 /* These variables describe handlers that have "already" had a chance
218 to handle the current operation.
220 Vinhibit_file_name_handlers is a list of file name handlers.
221 Vinhibit_file_name_operation is the operation being handled.
222 If we try to handle that operation, we ignore those handlers. */
224 static Lisp_Object Vinhibit_file_name_handlers;
225 static Lisp_Object Vinhibit_file_name_operation;
227 Lisp_Object Qfile_error, Qfile_already_exists, Qfile_date_error;
229 Lisp_Object Qfile_name_history;
231 Lisp_Object Qcar_less_than_car;
233 static int a_write P_ ((int, char *, int, int,
234 Lisp_Object *, struct coding_system *));
235 static int e_write P_ ((int, char *, int, struct coding_system *));
237 void
238 report_file_error (string, data)
239 char *string;
240 Lisp_Object data;
242 Lisp_Object errstring;
244 errstring = build_string (strerror (errno));
246 /* System error messages are capitalized. Downcase the initial
247 unless it is followed by a slash. */
248 if (XSTRING (errstring)->data[1] != '/')
249 XSTRING (errstring)->data[0] = DOWNCASE (XSTRING (errstring)->data[0]);
251 while (1)
252 Fsignal (Qfile_error,
253 Fcons (build_string (string), Fcons (errstring, data)));
256 Lisp_Object
257 close_file_unwind (fd)
258 Lisp_Object fd;
260 close (XFASTINT (fd));
261 return Qnil;
264 /* Restore point, having saved it as a marker. */
266 static Lisp_Object
267 restore_point_unwind (location)
268 Lisp_Object location;
270 Fgoto_char (location);
271 Fset_marker (location, Qnil, Qnil);
272 return Qnil;
275 Lisp_Object Qexpand_file_name;
276 Lisp_Object Qsubstitute_in_file_name;
277 Lisp_Object Qdirectory_file_name;
278 Lisp_Object Qfile_name_directory;
279 Lisp_Object Qfile_name_nondirectory;
280 Lisp_Object Qunhandled_file_name_directory;
281 Lisp_Object Qfile_name_as_directory;
282 Lisp_Object Qcopy_file;
283 Lisp_Object Qmake_directory_internal;
284 Lisp_Object Qdelete_directory;
285 Lisp_Object Qdelete_file;
286 Lisp_Object Qrename_file;
287 Lisp_Object Qadd_name_to_file;
288 Lisp_Object Qmake_symbolic_link;
289 Lisp_Object Qfile_exists_p;
290 Lisp_Object Qfile_executable_p;
291 Lisp_Object Qfile_readable_p;
292 Lisp_Object Qfile_writable_p;
293 Lisp_Object Qfile_symlink_p;
294 Lisp_Object Qaccess_file;
295 Lisp_Object Qfile_directory_p;
296 Lisp_Object Qfile_regular_p;
297 Lisp_Object Qfile_accessible_directory_p;
298 Lisp_Object Qfile_modes;
299 Lisp_Object Qset_file_modes;
300 Lisp_Object Qfile_newer_than_file_p;
301 Lisp_Object Qinsert_file_contents;
302 Lisp_Object Qwrite_region;
303 Lisp_Object Qverify_visited_file_modtime;
304 Lisp_Object Qset_visited_file_modtime;
306 DEFUN ("find-file-name-handler", Ffind_file_name_handler, Sfind_file_name_handler, 2, 2, 0,
307 "Return FILENAME's handler function for OPERATION, if it has one.\n\
308 Otherwise, return nil.\n\
309 A file name is handled if one of the regular expressions in\n\
310 `file-name-handler-alist' matches it.\n\n\
311 If OPERATION equals `inhibit-file-name-operation', then we ignore\n\
312 any handlers that are members of `inhibit-file-name-handlers',\n\
313 but we still do run any other handlers. This lets handlers\n\
314 use the standard functions without calling themselves recursively.")
315 (filename, operation)
316 Lisp_Object filename, operation;
318 /* This function must not munge the match data. */
319 Lisp_Object chain, inhibited_handlers;
321 CHECK_STRING (filename, 0);
323 if (EQ (operation, Vinhibit_file_name_operation))
324 inhibited_handlers = Vinhibit_file_name_handlers;
325 else
326 inhibited_handlers = Qnil;
328 for (chain = Vfile_name_handler_alist; CONSP (chain);
329 chain = XCONS (chain)->cdr)
331 Lisp_Object elt;
332 elt = XCONS (chain)->car;
333 if (CONSP (elt))
335 Lisp_Object string;
336 string = XCONS (elt)->car;
337 if (STRINGP (string) && fast_string_match (string, filename) >= 0)
339 Lisp_Object handler, tem;
341 handler = XCONS (elt)->cdr;
342 tem = Fmemq (handler, inhibited_handlers);
343 if (NILP (tem))
344 return handler;
348 QUIT;
350 return Qnil;
353 DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory,
354 1, 1, 0,
355 "Return the directory component in file name FILENAME.\n\
356 Return nil if FILENAME does not include a directory.\n\
357 Otherwise return a directory spec.\n\
358 Given a Unix syntax file name, returns a string ending in slash;\n\
359 on VMS, perhaps instead a string ending in `:', `]' or `>'.")
360 (filename)
361 Lisp_Object filename;
363 register unsigned char *beg;
364 register unsigned char *p;
365 Lisp_Object handler;
367 CHECK_STRING (filename, 0);
369 /* If the file name has special constructs in it,
370 call the corresponding file handler. */
371 handler = Ffind_file_name_handler (filename, Qfile_name_directory);
372 if (!NILP (handler))
373 return call2 (handler, Qfile_name_directory, filename);
375 #ifdef FILE_SYSTEM_CASE
376 filename = FILE_SYSTEM_CASE (filename);
377 #endif
378 beg = XSTRING (filename)->data;
379 #ifdef DOS_NT
380 beg = strcpy (alloca (strlen (beg) + 1), beg);
381 #endif
382 p = beg + STRING_BYTES (XSTRING (filename));
384 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
385 #ifdef VMS
386 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>'
387 #endif /* VMS */
388 #ifdef DOS_NT
389 /* only recognise drive specifier at the beginning */
390 && !(p[-1] == ':'
391 /* handle the "/:d:foo" and "/:foo" cases correctly */
392 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg))
393 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
394 #endif
395 ) p--;
397 if (p == beg)
398 return Qnil;
399 #ifdef DOS_NT
400 /* Expansion of "c:" to drive and default directory. */
401 if (p[-1] == ':')
403 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
404 unsigned char *res = alloca (MAXPATHLEN + 1);
405 unsigned char *r = res;
407 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':')
409 strncpy (res, beg, 2);
410 beg += 2;
411 r += 2;
414 if (getdefdir (toupper (*beg) - 'A' + 1, r))
416 if (!IS_DIRECTORY_SEP (res[strlen (res) - 1]))
417 strcat (res, "/");
418 beg = res;
419 p = beg + strlen (beg);
422 CORRECT_DIR_SEPS (beg);
423 #endif /* DOS_NT */
425 if (STRING_MULTIBYTE (filename))
426 return make_string (beg, p - beg);
427 return make_unibyte_string (beg, p - beg);
430 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory,
431 Sfile_name_nondirectory, 1, 1, 0,
432 "Return file name FILENAME sans its directory.\n\
433 For example, in a Unix-syntax file name,\n\
434 this is everything after the last slash,\n\
435 or the entire name if it contains no slash.")
436 (filename)
437 Lisp_Object filename;
439 register unsigned char *beg, *p, *end;
440 Lisp_Object handler;
442 CHECK_STRING (filename, 0);
444 /* If the file name has special constructs in it,
445 call the corresponding file handler. */
446 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory);
447 if (!NILP (handler))
448 return call2 (handler, Qfile_name_nondirectory, filename);
450 beg = XSTRING (filename)->data;
451 end = p = beg + STRING_BYTES (XSTRING (filename));
453 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
454 #ifdef VMS
455 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>'
456 #endif /* VMS */
457 #ifdef DOS_NT
458 /* only recognise drive specifier at beginning */
459 && !(p[-1] == ':'
460 /* handle the "/:d:foo" case correctly */
461 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
462 #endif
464 p--;
466 if (STRING_MULTIBYTE (filename))
467 return make_string (p, end - p);
468 return make_unibyte_string (p, end - p);
471 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory,
472 Sunhandled_file_name_directory, 1, 1, 0,
473 "Return a directly usable directory name somehow associated with FILENAME.\n\
474 A `directly usable' directory name is one that may be used without the\n\
475 intervention of any file handler.\n\
476 If FILENAME is a directly usable file itself, return\n\
477 \(file-name-directory FILENAME).\n\
478 The `call-process' and `start-process' functions use this function to\n\
479 get a current directory to run processes in.")
480 (filename)
481 Lisp_Object filename;
483 Lisp_Object handler;
485 /* If the file name has special constructs in it,
486 call the corresponding file handler. */
487 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
488 if (!NILP (handler))
489 return call2 (handler, Qunhandled_file_name_directory, filename);
491 return Ffile_name_directory (filename);
495 char *
496 file_name_as_directory (out, in)
497 char *out, *in;
499 int size = strlen (in) - 1;
501 strcpy (out, in);
503 if (size < 0)
505 out[0] = '.';
506 out[1] = '/';
507 out[2] = 0;
508 return out;
511 #ifdef VMS
512 /* Is it already a directory string? */
513 if (in[size] == ':' || in[size] == ']' || in[size] == '>')
514 return out;
515 /* Is it a VMS directory file name? If so, hack VMS syntax. */
516 else if (! index (in, '/')
517 && ((size > 3 && ! strcmp (&in[size - 3], ".DIR"))
518 || (size > 3 && ! strcmp (&in[size - 3], ".dir"))
519 || (size > 5 && (! strncmp (&in[size - 5], ".DIR", 4)
520 || ! strncmp (&in[size - 5], ".dir", 4))
521 && (in[size - 1] == '.' || in[size - 1] == ';')
522 && in[size] == '1')))
524 register char *p, *dot;
525 char brack;
527 /* x.dir -> [.x]
528 dir:x.dir --> dir:[x]
529 dir:[x]y.dir --> dir:[x.y] */
530 p = in + size;
531 while (p != in && *p != ':' && *p != '>' && *p != ']') p--;
532 if (p != in)
534 strncpy (out, in, p - in);
535 out[p - in] = '\0';
536 if (*p == ':')
538 brack = ']';
539 strcat (out, ":[");
541 else
543 brack = *p;
544 strcat (out, ".");
546 p++;
548 else
550 brack = ']';
551 strcpy (out, "[.");
553 dot = index (p, '.');
554 if (dot)
556 /* blindly remove any extension */
557 size = strlen (out) + (dot - p);
558 strncat (out, p, dot - p);
560 else
562 strcat (out, p);
563 size = strlen (out);
565 out[size++] = brack;
566 out[size] = '\0';
568 #else /* not VMS */
569 /* For Unix syntax, Append a slash if necessary */
570 if (!IS_DIRECTORY_SEP (out[size]))
572 out[size + 1] = DIRECTORY_SEP;
573 out[size + 2] = '\0';
575 #ifdef DOS_NT
576 CORRECT_DIR_SEPS (out);
577 #endif
578 #endif /* not VMS */
579 return out;
582 DEFUN ("file-name-as-directory", Ffile_name_as_directory,
583 Sfile_name_as_directory, 1, 1, 0,
584 "Return a string representing file FILENAME interpreted as a directory.\n\
585 This operation exists because a directory is also a file, but its name as\n\
586 a directory is different from its name as a file.\n\
587 The result can be used as the value of `default-directory'\n\
588 or passed as second argument to `expand-file-name'.\n\
589 For a Unix-syntax file name, just appends a slash.\n\
590 On VMS, converts \"[X]FOO.DIR\" to \"[X.FOO]\", etc.")
591 (file)
592 Lisp_Object file;
594 char *buf;
595 Lisp_Object handler;
597 CHECK_STRING (file, 0);
598 if (NILP (file))
599 return Qnil;
601 /* If the file name has special constructs in it,
602 call the corresponding file handler. */
603 handler = Ffind_file_name_handler (file, Qfile_name_as_directory);
604 if (!NILP (handler))
605 return call2 (handler, Qfile_name_as_directory, file);
607 buf = (char *) alloca (STRING_BYTES (XSTRING (file)) + 10);
608 return build_string (file_name_as_directory (buf, XSTRING (file)->data));
612 * Convert from directory name to filename.
613 * On VMS:
614 * xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1
615 * xyzzy:[mukesh] => xyzzy:[000000]mukesh.dir.1
616 * On UNIX, it's simple: just make sure there isn't a terminating /
618 * Value is nonzero if the string output is different from the input.
622 directory_file_name (src, dst)
623 char *src, *dst;
625 long slen;
626 #ifdef VMS
627 long rlen;
628 char * ptr, * rptr;
629 char bracket;
630 struct FAB fab = cc$rms_fab;
631 struct NAM nam = cc$rms_nam;
632 char esa[NAM$C_MAXRSS];
633 #endif /* VMS */
635 slen = strlen (src);
636 #ifdef VMS
637 if (! index (src, '/')
638 && (src[slen - 1] == ']'
639 || src[slen - 1] == ':'
640 || src[slen - 1] == '>'))
642 /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */
643 fab.fab$l_fna = src;
644 fab.fab$b_fns = slen;
645 fab.fab$l_nam = &nam;
646 fab.fab$l_fop = FAB$M_NAM;
648 nam.nam$l_esa = esa;
649 nam.nam$b_ess = sizeof esa;
650 nam.nam$b_nop |= NAM$M_SYNCHK;
652 /* We call SYS$PARSE to handle such things as [--] for us. */
653 if (SYS$PARSE (&fab, 0, 0) == RMS$_NORMAL)
655 slen = nam.nam$b_esl;
656 if (esa[slen - 1] == ';' && esa[slen - 2] == '.')
657 slen -= 2;
658 esa[slen] = '\0';
659 src = esa;
661 if (src[slen - 1] != ']' && src[slen - 1] != '>')
663 /* what about when we have logical_name:???? */
664 if (src[slen - 1] == ':')
665 { /* Xlate logical name and see what we get */
666 ptr = strcpy (dst, src); /* upper case for getenv */
667 while (*ptr)
669 if ('a' <= *ptr && *ptr <= 'z')
670 *ptr -= 040;
671 ptr++;
673 dst[slen - 1] = 0; /* remove colon */
674 if (!(src = egetenv (dst)))
675 return 0;
676 /* should we jump to the beginning of this procedure?
677 Good points: allows us to use logical names that xlate
678 to Unix names,
679 Bad points: can be a problem if we just translated to a device
680 name...
681 For now, I'll punt and always expect VMS names, and hope for
682 the best! */
683 slen = strlen (src);
684 if (src[slen - 1] != ']' && src[slen - 1] != '>')
685 { /* no recursion here! */
686 strcpy (dst, src);
687 return 0;
690 else
691 { /* not a directory spec */
692 strcpy (dst, src);
693 return 0;
696 bracket = src[slen - 1];
698 /* If bracket is ']' or '>', bracket - 2 is the corresponding
699 opening bracket. */
700 ptr = index (src, bracket - 2);
701 if (ptr == 0)
702 { /* no opening bracket */
703 strcpy (dst, src);
704 return 0;
706 if (!(rptr = rindex (src, '.')))
707 rptr = ptr;
708 slen = rptr - src;
709 strncpy (dst, src, slen);
710 dst[slen] = '\0';
711 if (*rptr == '.')
713 dst[slen++] = bracket;
714 dst[slen] = '\0';
716 else
718 /* If we have the top-level of a rooted directory (i.e. xx:[000000]),
719 then translate the device and recurse. */
720 if (dst[slen - 1] == ':'
721 && dst[slen - 2] != ':' /* skip decnet nodes */
722 && strcmp (src + slen, "[000000]") == 0)
724 dst[slen - 1] = '\0';
725 if ((ptr = egetenv (dst))
726 && (rlen = strlen (ptr) - 1) > 0
727 && (ptr[rlen] == ']' || ptr[rlen] == '>')
728 && ptr[rlen - 1] == '.')
730 char * buf = (char *) alloca (strlen (ptr) + 1);
731 strcpy (buf, ptr);
732 buf[rlen - 1] = ']';
733 buf[rlen] = '\0';
734 return directory_file_name (buf, dst);
736 else
737 dst[slen - 1] = ':';
739 strcat (dst, "[000000]");
740 slen += 8;
742 rptr++;
743 rlen = strlen (rptr) - 1;
744 strncat (dst, rptr, rlen);
745 dst[slen + rlen] = '\0';
746 strcat (dst, ".DIR.1");
747 return 1;
749 #endif /* VMS */
750 /* Process as Unix format: just remove any final slash.
751 But leave "/" unchanged; do not change it to "". */
752 strcpy (dst, src);
753 #ifdef APOLLO
754 /* Handle // as root for apollo's. */
755 if ((slen > 2 && dst[slen - 1] == '/')
756 || (slen > 1 && dst[0] != '/' && dst[slen - 1] == '/'))
757 dst[slen - 1] = 0;
758 #else
759 if (slen > 1
760 && IS_DIRECTORY_SEP (dst[slen - 1])
761 #ifdef DOS_NT
762 && !IS_ANY_SEP (dst[slen - 2])
763 #endif
765 dst[slen - 1] = 0;
766 #endif
767 #ifdef DOS_NT
768 CORRECT_DIR_SEPS (dst);
769 #endif
770 return 1;
773 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
774 1, 1, 0,
775 "Returns the file name of the directory named DIRECTORY.\n\
776 This is the name of the file that holds the data for the directory DIRECTORY.\n\
777 This operation exists because a directory is also a file, but its name as\n\
778 a directory is different from its name as a file.\n\
779 In Unix-syntax, this function just removes the final slash.\n\
780 On VMS, given a VMS-syntax directory name such as \"[X.Y]\",\n\
781 it returns a file name such as \"[X]Y.DIR.1\".")
782 (directory)
783 Lisp_Object directory;
785 char *buf;
786 Lisp_Object handler;
788 CHECK_STRING (directory, 0);
790 if (NILP (directory))
791 return Qnil;
793 /* If the file name has special constructs in it,
794 call the corresponding file handler. */
795 handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
796 if (!NILP (handler))
797 return call2 (handler, Qdirectory_file_name, directory);
799 #ifdef VMS
800 /* 20 extra chars is insufficient for VMS, since we might perform a
801 logical name translation. an equivalence string can be up to 255
802 chars long, so grab that much extra space... - sss */
803 buf = (char *) alloca (STRING_BYTES (XSTRING (directory)) + 20 + 255);
804 #else
805 buf = (char *) alloca (STRING_BYTES (XSTRING (directory)) + 20);
806 #endif
807 directory_file_name (XSTRING (directory)->data, buf);
808 return build_string (buf);
811 static char make_temp_name_tbl[64] =
813 'A','B','C','D','E','F','G','H',
814 'I','J','K','L','M','N','O','P',
815 'Q','R','S','T','U','V','W','X',
816 'Y','Z','a','b','c','d','e','f',
817 'g','h','i','j','k','l','m','n',
818 'o','p','q','r','s','t','u','v',
819 'w','x','y','z','0','1','2','3',
820 '4','5','6','7','8','9','-','_'
822 static unsigned make_temp_name_count, make_temp_name_count_initialized_p;
824 DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
825 "Generate temporary file name (string) starting with PREFIX (a string).\n\
826 The Emacs process number forms part of the result,\n\
827 so there is no danger of generating a name being used by another process.\n\
829 In addition, this function makes an attempt to choose a name\n\
830 which has no existing file. To make this work,\n\
831 PREFIX should be an absolute file name.")
832 (prefix)
833 Lisp_Object prefix;
835 Lisp_Object val;
836 int len;
837 int pid;
838 unsigned char *p, *data;
839 char pidbuf[20];
840 int pidlen;
842 CHECK_STRING (prefix, 0);
844 /* VAL is created by adding 6 characters to PREFIX. The first
845 three are the PID of this process, in base 64, and the second
846 three are incremented if the file already exists. This ensures
847 262144 unique file names per PID per PREFIX. */
849 pid = (int) getpid ();
851 #ifdef HAVE_LONG_FILE_NAMES
852 sprintf (pidbuf, "%d", pid);
853 pidlen = strlen (pidbuf);
854 #else
855 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
856 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
857 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
858 pidlen = 3;
859 #endif
861 len = XSTRING (prefix)->size;
862 val = make_uninit_string (len + 3 + pidlen);
863 data = XSTRING (val)->data;
864 bcopy(XSTRING (prefix)->data, data, len);
865 p = data + len;
867 bcopy (pidbuf, p, pidlen);
868 p += pidlen;
870 /* Here we try to minimize useless stat'ing when this function is
871 invoked many times successively with the same PREFIX. We achieve
872 this by initializing count to a random value, and incrementing it
873 afterwards.
875 We don't want make-temp-name to be called while dumping,
876 because then make_temp_name_count_initialized_p would get set
877 and then make_temp_name_count would not be set when Emacs starts. */
879 if (!make_temp_name_count_initialized_p)
881 make_temp_name_count = (unsigned) time (NULL);
882 make_temp_name_count_initialized_p = 1;
885 while (1)
887 struct stat ignored;
888 unsigned num = make_temp_name_count;
890 p[0] = make_temp_name_tbl[num & 63], num >>= 6;
891 p[1] = make_temp_name_tbl[num & 63], num >>= 6;
892 p[2] = make_temp_name_tbl[num & 63], num >>= 6;
894 /* Poor man's congruential RN generator. Replace with
895 ++make_temp_name_count for debugging. */
896 make_temp_name_count += 25229;
897 make_temp_name_count %= 225307;
899 if (stat (data, &ignored) < 0)
901 /* We want to return only if errno is ENOENT. */
902 if (errno == ENOENT)
903 return val;
904 else
905 /* The error here is dubious, but there is little else we
906 can do. The alternatives are to return nil, which is
907 as bad as (and in many cases worse than) throwing the
908 error, or to ignore the error, which will likely result
909 in looping through 225307 stat's, which is not only
910 dog-slow, but also useless since it will fallback to
911 the errow below, anyway. */
912 report_file_error ("Cannot create temporary name for prefix `%s'",
913 Fcons (prefix, Qnil));
914 /* not reached */
918 error ("Cannot create temporary name for prefix `%s'",
919 XSTRING (prefix)->data);
920 return Qnil;
924 DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
925 "Convert filename NAME to absolute, and canonicalize it.\n\
926 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative\n\
927 (does not start with slash); if DEFAULT-DIRECTORY is nil or missing,\n\
928 the current buffer's value of default-directory is used.\n\
929 File name components that are `.' are removed, and \n\
930 so are file name components followed by `..', along with the `..' itself;\n\
931 note that these simplifications are done without checking the resulting\n\
932 file names in the file system.\n\
933 An initial `~/' expands to your home directory.\n\
934 An initial `~USER/' expands to USER's home directory.\n\
935 See also the function `substitute-in-file-name'.")
936 (name, default_directory)
937 Lisp_Object name, default_directory;
939 unsigned char *nm;
941 register unsigned char *newdir, *p, *o;
942 int tlen;
943 unsigned char *target;
944 struct passwd *pw;
945 #ifdef VMS
946 unsigned char * colon = 0;
947 unsigned char * close = 0;
948 unsigned char * slash = 0;
949 unsigned char * brack = 0;
950 int lbrack = 0, rbrack = 0;
951 int dots = 0;
952 #endif /* VMS */
953 #ifdef DOS_NT
954 int drive = 0;
955 int collapse_newdir = 1;
956 int is_escaped = 0;
957 #endif /* DOS_NT */
958 int length;
959 Lisp_Object handler;
961 CHECK_STRING (name, 0);
963 /* If the file name has special constructs in it,
964 call the corresponding file handler. */
965 handler = Ffind_file_name_handler (name, Qexpand_file_name);
966 if (!NILP (handler))
967 return call3 (handler, Qexpand_file_name, name, default_directory);
969 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
970 if (NILP (default_directory))
971 default_directory = current_buffer->directory;
972 if (! STRINGP (default_directory))
973 default_directory = build_string ("/");
975 if (!NILP (default_directory))
977 handler = Ffind_file_name_handler (default_directory, Qexpand_file_name);
978 if (!NILP (handler))
979 return call3 (handler, Qexpand_file_name, name, default_directory);
982 o = XSTRING (default_directory)->data;
984 /* Make sure DEFAULT_DIRECTORY is properly expanded.
985 It would be better to do this down below where we actually use
986 default_directory. Unfortunately, calling Fexpand_file_name recursively
987 could invoke GC, and the strings might be relocated. This would
988 be annoying because we have pointers into strings lying around
989 that would need adjusting, and people would add new pointers to
990 the code and forget to adjust them, resulting in intermittent bugs.
991 Putting this call here avoids all that crud.
993 The EQ test avoids infinite recursion. */
994 if (! NILP (default_directory) && !EQ (default_directory, name)
995 /* Save time in some common cases - as long as default_directory
996 is not relative, it can be canonicalized with name below (if it
997 is needed at all) without requiring it to be expanded now. */
998 #ifdef DOS_NT
999 /* Detect MSDOS file names with drive specifiers. */
1000 && ! (IS_DRIVE (o[0]) && IS_DEVICE_SEP (o[1]) && IS_DIRECTORY_SEP (o[2]))
1001 #ifdef WINDOWSNT
1002 /* Detect Windows file names in UNC format. */
1003 && ! (IS_DIRECTORY_SEP (o[0]) && IS_DIRECTORY_SEP (o[1]))
1004 #endif
1005 #else /* not DOS_NT */
1006 /* Detect Unix absolute file names (/... alone is not absolute on
1007 DOS or Windows). */
1008 && ! (IS_DIRECTORY_SEP (o[0]))
1009 #endif /* not DOS_NT */
1012 struct gcpro gcpro1;
1014 GCPRO1 (name);
1015 default_directory = Fexpand_file_name (default_directory, Qnil);
1016 UNGCPRO;
1019 #ifdef VMS
1020 /* Filenames on VMS are always upper case. */
1021 name = Fupcase (name);
1022 #endif
1023 #ifdef FILE_SYSTEM_CASE
1024 name = FILE_SYSTEM_CASE (name);
1025 #endif
1027 nm = XSTRING (name)->data;
1029 #ifdef DOS_NT
1030 /* We will force directory separators to be either all \ or /, so make
1031 a local copy to modify, even if there ends up being no change. */
1032 nm = strcpy (alloca (strlen (nm) + 1), nm);
1034 /* Note if special escape prefix is present, but remove for now. */
1035 if (nm[0] == '/' && nm[1] == ':')
1037 is_escaped = 1;
1038 nm += 2;
1041 /* Find and remove drive specifier if present; this makes nm absolute
1042 even if the rest of the name appears to be relative. Only look for
1043 drive specifier at the beginning. */
1044 if (IS_DRIVE (nm[0]) && IS_DEVICE_SEP (nm[1]))
1046 drive = nm[0];
1047 nm += 2;
1050 #ifdef WINDOWSNT
1051 /* If we see "c://somedir", we want to strip the first slash after the
1052 colon when stripping the drive letter. Otherwise, this expands to
1053 "//somedir". */
1054 if (drive && IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
1055 nm++;
1056 #endif /* WINDOWSNT */
1057 #endif /* DOS_NT */
1059 #ifdef WINDOWSNT
1060 /* Discard any previous drive specifier if nm is now in UNC format. */
1061 if (IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
1063 drive = 0;
1065 #endif
1067 /* If nm is absolute, look for /./ or /../ sequences; if none are
1068 found, we can probably return right away. We will avoid allocating
1069 a new string if name is already fully expanded. */
1070 if (
1071 IS_DIRECTORY_SEP (nm[0])
1072 #ifdef MSDOS
1073 && drive && !is_escaped
1074 #endif
1075 #ifdef WINDOWSNT
1076 && (drive || IS_DIRECTORY_SEP (nm[1])) && !is_escaped
1077 #endif
1078 #ifdef VMS
1079 || index (nm, ':')
1080 #endif /* VMS */
1083 /* If it turns out that the filename we want to return is just a
1084 suffix of FILENAME, we don't need to go through and edit
1085 things; we just need to construct a new string using data
1086 starting at the middle of FILENAME. If we set lose to a
1087 non-zero value, that means we've discovered that we can't do
1088 that cool trick. */
1089 int lose = 0;
1091 p = nm;
1092 while (*p)
1094 /* Since we know the name is absolute, we can assume that each
1095 element starts with a "/". */
1097 /* "." and ".." are hairy. */
1098 if (IS_DIRECTORY_SEP (p[0])
1099 && p[1] == '.'
1100 && (IS_DIRECTORY_SEP (p[2])
1101 || p[2] == 0
1102 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3])
1103 || p[3] == 0))))
1104 lose = 1;
1105 #ifdef VMS
1106 if (p[0] == '\\')
1107 lose = 1;
1108 if (p[0] == '/') {
1109 /* if dev:[dir]/, move nm to / */
1110 if (!slash && p > nm && (brack || colon)) {
1111 nm = (brack ? brack + 1 : colon + 1);
1112 lbrack = rbrack = 0;
1113 brack = 0;
1114 colon = 0;
1116 slash = p;
1118 if (p[0] == '-')
1119 #ifndef VMS4_4
1120 /* VMS pre V4.4,convert '-'s in filenames. */
1121 if (lbrack == rbrack)
1123 if (dots < 2) /* this is to allow negative version numbers */
1124 p[0] = '_';
1126 else
1127 #endif /* VMS4_4 */
1128 if (lbrack > rbrack &&
1129 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') &&
1130 (p[1] == '.' || p[1] == ']' || p[1] == '>')))
1131 lose = 1;
1132 #ifndef VMS4_4
1133 else
1134 p[0] = '_';
1135 #endif /* VMS4_4 */
1136 /* count open brackets, reset close bracket pointer */
1137 if (p[0] == '[' || p[0] == '<')
1138 lbrack++, brack = 0;
1139 /* count close brackets, set close bracket pointer */
1140 if (p[0] == ']' || p[0] == '>')
1141 rbrack++, brack = p;
1142 /* detect ][ or >< */
1143 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<'))
1144 lose = 1;
1145 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~')
1146 nm = p + 1, lose = 1;
1147 if (p[0] == ':' && (colon || slash))
1148 /* if dev1:[dir]dev2:, move nm to dev2: */
1149 if (brack)
1151 nm = brack + 1;
1152 brack = 0;
1154 /* if /name/dev:, move nm to dev: */
1155 else if (slash)
1156 nm = slash + 1;
1157 /* if node::dev:, move colon following dev */
1158 else if (colon && colon[-1] == ':')
1159 colon = p;
1160 /* if dev1:dev2:, move nm to dev2: */
1161 else if (colon && colon[-1] != ':')
1163 nm = colon + 1;
1164 colon = 0;
1166 if (p[0] == ':' && !colon)
1168 if (p[1] == ':')
1169 p++;
1170 colon = p;
1172 if (lbrack == rbrack)
1173 if (p[0] == ';')
1174 dots = 2;
1175 else if (p[0] == '.')
1176 dots++;
1177 #endif /* VMS */
1178 p++;
1180 if (!lose)
1182 #ifdef VMS
1183 if (index (nm, '/'))
1184 return build_string (sys_translate_unix (nm));
1185 #endif /* VMS */
1186 #ifdef DOS_NT
1187 /* Make sure directories are all separated with / or \ as
1188 desired, but avoid allocation of a new string when not
1189 required. */
1190 CORRECT_DIR_SEPS (nm);
1191 #ifdef WINDOWSNT
1192 if (IS_DIRECTORY_SEP (nm[1]))
1194 if (strcmp (nm, XSTRING (name)->data) != 0)
1195 name = build_string (nm);
1197 else
1198 #endif
1199 /* drive must be set, so this is okay */
1200 if (strcmp (nm - 2, XSTRING (name)->data) != 0)
1202 name = make_string (nm - 2, p - nm + 2);
1203 XSTRING (name)->data[0] = DRIVE_LETTER (drive);
1204 XSTRING (name)->data[1] = ':';
1206 return name;
1207 #else /* not DOS_NT */
1208 if (nm == XSTRING (name)->data)
1209 return name;
1210 return build_string (nm);
1211 #endif /* not DOS_NT */
1215 /* At this point, nm might or might not be an absolute file name. We
1216 need to expand ~ or ~user if present, otherwise prefix nm with
1217 default_directory if nm is not absolute, and finally collapse /./
1218 and /foo/../ sequences.
1220 We set newdir to be the appropriate prefix if one is needed:
1221 - the relevant user directory if nm starts with ~ or ~user
1222 - the specified drive's working dir (DOS/NT only) if nm does not
1223 start with /
1224 - the value of default_directory.
1226 Note that these prefixes are not guaranteed to be absolute (except
1227 for the working dir of a drive). Therefore, to ensure we always
1228 return an absolute name, if the final prefix is not absolute we
1229 append it to the current working directory. */
1231 newdir = 0;
1233 if (nm[0] == '~') /* prefix ~ */
1235 if (IS_DIRECTORY_SEP (nm[1])
1236 #ifdef VMS
1237 || nm[1] == ':'
1238 #endif /* VMS */
1239 || nm[1] == 0) /* ~ by itself */
1241 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1242 newdir = (unsigned char *) "";
1243 nm++;
1244 #ifdef DOS_NT
1245 collapse_newdir = 0;
1246 #endif
1247 #ifdef VMS
1248 nm++; /* Don't leave the slash in nm. */
1249 #endif /* VMS */
1251 else /* ~user/filename */
1253 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p)
1254 #ifdef VMS
1255 && *p != ':'
1256 #endif /* VMS */
1257 ); p++);
1258 o = (unsigned char *) alloca (p - nm + 1);
1259 bcopy ((char *) nm, o, p - nm);
1260 o [p - nm] = 0;
1262 pw = (struct passwd *) getpwnam (o + 1);
1263 if (pw)
1265 newdir = (unsigned char *) pw -> pw_dir;
1266 #ifdef VMS
1267 nm = p + 1; /* skip the terminator */
1268 #else
1269 nm = p;
1270 #ifdef DOS_NT
1271 collapse_newdir = 0;
1272 #endif
1273 #endif /* VMS */
1276 /* If we don't find a user of that name, leave the name
1277 unchanged; don't move nm forward to p. */
1281 #ifdef DOS_NT
1282 /* On DOS and Windows, nm is absolute if a drive name was specified;
1283 use the drive's current directory as the prefix if needed. */
1284 if (!newdir && drive)
1286 /* Get default directory if needed to make nm absolute. */
1287 if (!IS_DIRECTORY_SEP (nm[0]))
1289 newdir = alloca (MAXPATHLEN + 1);
1290 if (!getdefdir (toupper (drive) - 'A' + 1, newdir))
1291 newdir = NULL;
1293 if (!newdir)
1295 /* Either nm starts with /, or drive isn't mounted. */
1296 newdir = alloca (4);
1297 newdir[0] = DRIVE_LETTER (drive);
1298 newdir[1] = ':';
1299 newdir[2] = '/';
1300 newdir[3] = 0;
1303 #endif /* DOS_NT */
1305 /* Finally, if no prefix has been specified and nm is not absolute,
1306 then it must be expanded relative to default_directory. */
1308 if (1
1309 #ifndef DOS_NT
1310 /* /... alone is not absolute on DOS and Windows. */
1311 && !IS_DIRECTORY_SEP (nm[0])
1312 #endif
1313 #ifdef WINDOWSNT
1314 && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
1315 #endif
1316 #ifdef VMS
1317 && !index (nm, ':')
1318 #endif
1319 && !newdir)
1321 newdir = XSTRING (default_directory)->data;
1322 #ifdef DOS_NT
1323 /* Note if special escape prefix is present, but remove for now. */
1324 if (newdir[0] == '/' && newdir[1] == ':')
1326 is_escaped = 1;
1327 newdir += 2;
1329 #endif
1332 #ifdef DOS_NT
1333 if (newdir)
1335 /* First ensure newdir is an absolute name. */
1336 if (
1337 /* Detect MSDOS file names with drive specifiers. */
1338 ! (IS_DRIVE (newdir[0])
1339 && IS_DEVICE_SEP (newdir[1]) && IS_DIRECTORY_SEP (newdir[2]))
1340 #ifdef WINDOWSNT
1341 /* Detect Windows file names in UNC format. */
1342 && ! (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1343 #endif
1346 /* Effectively, let newdir be (expand-file-name newdir cwd).
1347 Because of the admonition against calling expand-file-name
1348 when we have pointers into lisp strings, we accomplish this
1349 indirectly by prepending newdir to nm if necessary, and using
1350 cwd (or the wd of newdir's drive) as the new newdir. */
1352 if (IS_DRIVE (newdir[0]) && newdir[1] == ':')
1354 drive = newdir[0];
1355 newdir += 2;
1357 if (!IS_DIRECTORY_SEP (nm[0]))
1359 char * tmp = alloca (strlen (newdir) + strlen (nm) + 2);
1360 file_name_as_directory (tmp, newdir);
1361 strcat (tmp, nm);
1362 nm = tmp;
1364 newdir = alloca (MAXPATHLEN + 1);
1365 if (drive)
1367 if (!getdefdir (toupper (drive) - 'A' + 1, newdir))
1368 newdir = "/";
1370 else
1371 getwd (newdir);
1374 /* Strip off drive name from prefix, if present. */
1375 if (IS_DRIVE (newdir[0]) && newdir[1] == ':')
1377 drive = newdir[0];
1378 newdir += 2;
1381 /* Keep only a prefix from newdir if nm starts with slash
1382 (//server/share for UNC, nothing otherwise). */
1383 if (IS_DIRECTORY_SEP (nm[0]) && collapse_newdir)
1385 #ifdef WINDOWSNT
1386 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1388 newdir = strcpy (alloca (strlen (newdir) + 1), newdir);
1389 p = newdir + 2;
1390 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1391 p++;
1392 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1393 *p = 0;
1395 else
1396 #endif
1397 newdir = "";
1400 #endif /* DOS_NT */
1402 if (newdir)
1404 /* Get rid of any slash at the end of newdir, unless newdir is
1405 just / or // (an incomplete UNC name). */
1406 length = strlen (newdir);
1407 if (length > 1 && IS_DIRECTORY_SEP (newdir[length - 1])
1408 #ifdef WINDOWSNT
1409 && !(length == 2 && IS_DIRECTORY_SEP (newdir[0]))
1410 #endif
1413 unsigned char *temp = (unsigned char *) alloca (length);
1414 bcopy (newdir, temp, length - 1);
1415 temp[length - 1] = 0;
1416 newdir = temp;
1418 tlen = length + 1;
1420 else
1421 tlen = 0;
1423 /* Now concatenate the directory and name to new space in the stack frame */
1424 tlen += strlen (nm) + 1;
1425 #ifdef DOS_NT
1426 /* Reserve space for drive specifier and escape prefix, since either
1427 or both may need to be inserted. (The Microsoft x86 compiler
1428 produces incorrect code if the following two lines are combined.) */
1429 target = (unsigned char *) alloca (tlen + 4);
1430 target += 4;
1431 #else /* not DOS_NT */
1432 target = (unsigned char *) alloca (tlen);
1433 #endif /* not DOS_NT */
1434 *target = 0;
1436 if (newdir)
1438 #ifndef VMS
1439 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0]))
1441 #ifdef DOS_NT
1442 /* If newdir is effectively "C:/", then the drive letter will have
1443 been stripped and newdir will be "/". Concatenating with an
1444 absolute directory in nm produces "//", which will then be
1445 incorrectly treated as a network share. Ignore newdir in
1446 this case (keeping the drive letter). */
1447 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0])
1448 && newdir[1] == '\0'))
1449 #endif
1450 strcpy (target, newdir);
1452 else
1453 #endif
1454 file_name_as_directory (target, newdir);
1457 strcat (target, nm);
1458 #ifdef VMS
1459 if (index (target, '/'))
1460 strcpy (target, sys_translate_unix (target));
1461 #endif /* VMS */
1463 /* ASSERT (IS_DIRECTORY_SEP (target[0])) if not VMS */
1465 /* Now canonicalize by removing /. and /foo/.. if they appear. */
1467 p = target;
1468 o = target;
1470 while (*p)
1472 #ifdef VMS
1473 if (*p != ']' && *p != '>' && *p != '-')
1475 if (*p == '\\')
1476 p++;
1477 *o++ = *p++;
1479 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2)
1480 /* brackets are offset from each other by 2 */
1482 p += 2;
1483 if (*p != '.' && *p != '-' && o[-1] != '.')
1484 /* convert [foo][bar] to [bar] */
1485 while (o[-1] != '[' && o[-1] != '<')
1486 o--;
1487 else if (*p == '-' && *o != '.')
1488 *--p = '.';
1490 else if (p[0] == '-' && o[-1] == '.' &&
1491 (p[1] == '.' || p[1] == ']' || p[1] == '>'))
1492 /* flush .foo.- ; leave - if stopped by '[' or '<' */
1495 o--;
1496 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<');
1497 if (p[1] == '.') /* foo.-.bar ==> bar. */
1498 p += 2;
1499 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */
1500 p++, o--;
1501 /* else [foo.-] ==> [-] */
1503 else
1505 #ifndef VMS4_4
1506 if (*p == '-' &&
1507 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' &&
1508 p[1] != ']' && p[1] != '>' && p[1] != '.')
1509 *p = '_';
1510 #endif /* VMS4_4 */
1511 *o++ = *p++;
1513 #else /* not VMS */
1514 if (!IS_DIRECTORY_SEP (*p))
1516 *o++ = *p++;
1518 else if (IS_DIRECTORY_SEP (p[0])
1519 && p[1] == '.'
1520 && (IS_DIRECTORY_SEP (p[2])
1521 || p[2] == 0))
1523 /* If "/." is the entire filename, keep the "/". Otherwise,
1524 just delete the whole "/.". */
1525 if (o == target && p[2] == '\0')
1526 *o++ = *p;
1527 p += 2;
1529 else if (IS_DIRECTORY_SEP (p[0]) && p[1] == '.' && p[2] == '.'
1530 /* `/../' is the "superroot" on certain file systems. */
1531 && o != target
1532 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0))
1534 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o))
1536 /* Keep initial / only if this is the whole name. */
1537 if (o == target && IS_ANY_SEP (*o) && p[3] == 0)
1538 ++o;
1539 p += 3;
1541 else
1543 *o++ = *p++;
1545 #endif /* not VMS */
1548 #ifdef DOS_NT
1549 /* At last, set drive name. */
1550 #ifdef WINDOWSNT
1551 /* Except for network file name. */
1552 if (!(IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1])))
1553 #endif /* WINDOWSNT */
1555 if (!drive) abort ();
1556 target -= 2;
1557 target[0] = DRIVE_LETTER (drive);
1558 target[1] = ':';
1560 /* Reinsert the escape prefix if required. */
1561 if (is_escaped)
1563 target -= 2;
1564 target[0] = '/';
1565 target[1] = ':';
1567 CORRECT_DIR_SEPS (target);
1568 #endif /* DOS_NT */
1570 return make_string (target, o - target);
1573 #if 0
1574 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1575 DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
1576 "Convert FILENAME to absolute, and canonicalize it.\n\
1577 Second arg DEFAULT is directory to start with if FILENAME is relative\n\
1578 (does not start with slash); if DEFAULT is nil or missing,\n\
1579 the current buffer's value of default-directory is used.\n\
1580 Filenames containing `.' or `..' as components are simplified;\n\
1581 initial `~/' expands to your home directory.\n\
1582 See also the function `substitute-in-file-name'.")
1583 (name, defalt)
1584 Lisp_Object name, defalt;
1586 unsigned char *nm;
1588 register unsigned char *newdir, *p, *o;
1589 int tlen;
1590 unsigned char *target;
1591 struct passwd *pw;
1592 int lose;
1593 #ifdef VMS
1594 unsigned char * colon = 0;
1595 unsigned char * close = 0;
1596 unsigned char * slash = 0;
1597 unsigned char * brack = 0;
1598 int lbrack = 0, rbrack = 0;
1599 int dots = 0;
1600 #endif /* VMS */
1602 CHECK_STRING (name, 0);
1604 #ifdef VMS
1605 /* Filenames on VMS are always upper case. */
1606 name = Fupcase (name);
1607 #endif
1609 nm = XSTRING (name)->data;
1611 /* If nm is absolute, flush ...// and detect /./ and /../.
1612 If no /./ or /../ we can return right away. */
1613 if (
1614 nm[0] == '/'
1615 #ifdef VMS
1616 || index (nm, ':')
1617 #endif /* VMS */
1620 p = nm;
1621 lose = 0;
1622 while (*p)
1624 if (p[0] == '/' && p[1] == '/'
1625 #ifdef APOLLO
1626 /* // at start of filename is meaningful on Apollo system. */
1627 && nm != p
1628 #endif /* APOLLO */
1630 nm = p + 1;
1631 if (p[0] == '/' && p[1] == '~')
1632 nm = p + 1, lose = 1;
1633 if (p[0] == '/' && p[1] == '.'
1634 && (p[2] == '/' || p[2] == 0
1635 || (p[2] == '.' && (p[3] == '/' || p[3] == 0))))
1636 lose = 1;
1637 #ifdef VMS
1638 if (p[0] == '\\')
1639 lose = 1;
1640 if (p[0] == '/') {
1641 /* if dev:[dir]/, move nm to / */
1642 if (!slash && p > nm && (brack || colon)) {
1643 nm = (brack ? brack + 1 : colon + 1);
1644 lbrack = rbrack = 0;
1645 brack = 0;
1646 colon = 0;
1648 slash = p;
1650 if (p[0] == '-')
1651 #ifndef VMS4_4
1652 /* VMS pre V4.4,convert '-'s in filenames. */
1653 if (lbrack == rbrack)
1655 if (dots < 2) /* this is to allow negative version numbers */
1656 p[0] = '_';
1658 else
1659 #endif /* VMS4_4 */
1660 if (lbrack > rbrack &&
1661 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') &&
1662 (p[1] == '.' || p[1] == ']' || p[1] == '>')))
1663 lose = 1;
1664 #ifndef VMS4_4
1665 else
1666 p[0] = '_';
1667 #endif /* VMS4_4 */
1668 /* count open brackets, reset close bracket pointer */
1669 if (p[0] == '[' || p[0] == '<')
1670 lbrack++, brack = 0;
1671 /* count close brackets, set close bracket pointer */
1672 if (p[0] == ']' || p[0] == '>')
1673 rbrack++, brack = p;
1674 /* detect ][ or >< */
1675 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<'))
1676 lose = 1;
1677 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~')
1678 nm = p + 1, lose = 1;
1679 if (p[0] == ':' && (colon || slash))
1680 /* if dev1:[dir]dev2:, move nm to dev2: */
1681 if (brack)
1683 nm = brack + 1;
1684 brack = 0;
1686 /* If /name/dev:, move nm to dev: */
1687 else if (slash)
1688 nm = slash + 1;
1689 /* If node::dev:, move colon following dev */
1690 else if (colon && colon[-1] == ':')
1691 colon = p;
1692 /* If dev1:dev2:, move nm to dev2: */
1693 else if (colon && colon[-1] != ':')
1695 nm = colon + 1;
1696 colon = 0;
1698 if (p[0] == ':' && !colon)
1700 if (p[1] == ':')
1701 p++;
1702 colon = p;
1704 if (lbrack == rbrack)
1705 if (p[0] == ';')
1706 dots = 2;
1707 else if (p[0] == '.')
1708 dots++;
1709 #endif /* VMS */
1710 p++;
1712 if (!lose)
1714 #ifdef VMS
1715 if (index (nm, '/'))
1716 return build_string (sys_translate_unix (nm));
1717 #endif /* VMS */
1718 if (nm == XSTRING (name)->data)
1719 return name;
1720 return build_string (nm);
1724 /* Now determine directory to start with and put it in NEWDIR */
1726 newdir = 0;
1728 if (nm[0] == '~') /* prefix ~ */
1729 if (nm[1] == '/'
1730 #ifdef VMS
1731 || nm[1] == ':'
1732 #endif /* VMS */
1733 || nm[1] == 0)/* ~/filename */
1735 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1736 newdir = (unsigned char *) "";
1737 nm++;
1738 #ifdef VMS
1739 nm++; /* Don't leave the slash in nm. */
1740 #endif /* VMS */
1742 else /* ~user/filename */
1744 /* Get past ~ to user */
1745 unsigned char *user = nm + 1;
1746 /* Find end of name. */
1747 unsigned char *ptr = (unsigned char *) index (user, '/');
1748 int len = ptr ? ptr - user : strlen (user);
1749 #ifdef VMS
1750 unsigned char *ptr1 = index (user, ':');
1751 if (ptr1 != 0 && ptr1 - user < len)
1752 len = ptr1 - user;
1753 #endif /* VMS */
1754 /* Copy the user name into temp storage. */
1755 o = (unsigned char *) alloca (len + 1);
1756 bcopy ((char *) user, o, len);
1757 o[len] = 0;
1759 /* Look up the user name. */
1760 pw = (struct passwd *) getpwnam (o + 1);
1761 if (!pw)
1762 error ("\"%s\" isn't a registered user", o + 1);
1764 newdir = (unsigned char *) pw->pw_dir;
1766 /* Discard the user name from NM. */
1767 nm += len;
1770 if (nm[0] != '/'
1771 #ifdef VMS
1772 && !index (nm, ':')
1773 #endif /* not VMS */
1774 && !newdir)
1776 if (NILP (defalt))
1777 defalt = current_buffer->directory;
1778 CHECK_STRING (defalt, 1);
1779 newdir = XSTRING (defalt)->data;
1782 /* Now concatenate the directory and name to new space in the stack frame */
1784 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1;
1785 target = (unsigned char *) alloca (tlen);
1786 *target = 0;
1788 if (newdir)
1790 #ifndef VMS
1791 if (nm[0] == 0 || nm[0] == '/')
1792 strcpy (target, newdir);
1793 else
1794 #endif
1795 file_name_as_directory (target, newdir);
1798 strcat (target, nm);
1799 #ifdef VMS
1800 if (index (target, '/'))
1801 strcpy (target, sys_translate_unix (target));
1802 #endif /* VMS */
1804 /* Now canonicalize by removing /. and /foo/.. if they appear */
1806 p = target;
1807 o = target;
1809 while (*p)
1811 #ifdef VMS
1812 if (*p != ']' && *p != '>' && *p != '-')
1814 if (*p == '\\')
1815 p++;
1816 *o++ = *p++;
1818 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2)
1819 /* brackets are offset from each other by 2 */
1821 p += 2;
1822 if (*p != '.' && *p != '-' && o[-1] != '.')
1823 /* convert [foo][bar] to [bar] */
1824 while (o[-1] != '[' && o[-1] != '<')
1825 o--;
1826 else if (*p == '-' && *o != '.')
1827 *--p = '.';
1829 else if (p[0] == '-' && o[-1] == '.' &&
1830 (p[1] == '.' || p[1] == ']' || p[1] == '>'))
1831 /* flush .foo.- ; leave - if stopped by '[' or '<' */
1834 o--;
1835 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<');
1836 if (p[1] == '.') /* foo.-.bar ==> bar. */
1837 p += 2;
1838 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */
1839 p++, o--;
1840 /* else [foo.-] ==> [-] */
1842 else
1844 #ifndef VMS4_4
1845 if (*p == '-' &&
1846 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' &&
1847 p[1] != ']' && p[1] != '>' && p[1] != '.')
1848 *p = '_';
1849 #endif /* VMS4_4 */
1850 *o++ = *p++;
1852 #else /* not VMS */
1853 if (*p != '/')
1855 *o++ = *p++;
1857 else if (!strncmp (p, "//", 2)
1858 #ifdef APOLLO
1859 /* // at start of filename is meaningful in Apollo system. */
1860 && o != target
1861 #endif /* APOLLO */
1864 o = target;
1865 p++;
1867 else if (p[0] == '/' && p[1] == '.' &&
1868 (p[2] == '/' || p[2] == 0))
1869 p += 2;
1870 else if (!strncmp (p, "/..", 3)
1871 /* `/../' is the "superroot" on certain file systems. */
1872 && o != target
1873 && (p[3] == '/' || p[3] == 0))
1875 while (o != target && *--o != '/')
1877 #ifdef APOLLO
1878 if (o == target + 1 && o[-1] == '/' && o[0] == '/')
1879 ++o;
1880 else
1881 #endif /* APOLLO */
1882 if (o == target && *o == '/')
1883 ++o;
1884 p += 3;
1886 else
1888 *o++ = *p++;
1890 #endif /* not VMS */
1893 return make_string (target, o - target);
1895 #endif
1897 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
1898 Ssubstitute_in_file_name, 1, 1, 0,
1899 "Substitute environment variables referred to in FILENAME.\n\
1900 `$FOO' where FOO is an environment variable name means to substitute\n\
1901 the value of that variable. The variable name should be terminated\n\
1902 with a character not a letter, digit or underscore; otherwise, enclose\n\
1903 the entire variable name in braces.\n\
1904 If `/~' appears, all of FILENAME through that `/' is discarded.\n\n\
1905 On VMS, `$' substitution is not done; this function does little and only\n\
1906 duplicates what `expand-file-name' does.")
1907 (filename)
1908 Lisp_Object filename;
1910 unsigned char *nm;
1912 register unsigned char *s, *p, *o, *x, *endp;
1913 unsigned char *target;
1914 int total = 0;
1915 int substituted = 0;
1916 unsigned char *xnm;
1917 Lisp_Object handler;
1919 CHECK_STRING (filename, 0);
1921 /* If the file name has special constructs in it,
1922 call the corresponding file handler. */
1923 handler = Ffind_file_name_handler (filename, Qsubstitute_in_file_name);
1924 if (!NILP (handler))
1925 return call2 (handler, Qsubstitute_in_file_name, filename);
1927 nm = XSTRING (filename)->data;
1928 #ifdef DOS_NT
1929 nm = strcpy (alloca (strlen (nm) + 1), nm);
1930 CORRECT_DIR_SEPS (nm);
1931 substituted = (strcmp (nm, XSTRING (filename)->data) != 0);
1932 #endif
1933 endp = nm + STRING_BYTES (XSTRING (filename));
1935 /* If /~ or // appears, discard everything through first slash. */
1937 for (p = nm; p != endp; p++)
1939 if ((p[0] == '~'
1940 #if defined (APOLLO) || defined (WINDOWSNT)
1941 /* // at start of file name is meaningful in Apollo and
1942 WindowsNT systems. */
1943 || (IS_DIRECTORY_SEP (p[0]) && p - 1 != nm)
1944 #else /* not (APOLLO || WINDOWSNT) */
1945 || IS_DIRECTORY_SEP (p[0])
1946 #endif /* not (APOLLO || WINDOWSNT) */
1948 && p != nm
1949 && (0
1950 #ifdef VMS
1951 || p[-1] == ':' || p[-1] == ']' || p[-1] == '>'
1952 #endif /* VMS */
1953 || IS_DIRECTORY_SEP (p[-1])))
1955 nm = p;
1956 substituted = 1;
1958 #ifdef DOS_NT
1959 /* see comment in expand-file-name about drive specifiers */
1960 else if (IS_DRIVE (p[0]) && p[1] == ':'
1961 && p > nm && IS_DIRECTORY_SEP (p[-1]))
1963 nm = p;
1964 substituted = 1;
1966 #endif /* DOS_NT */
1969 #ifdef VMS
1970 return build_string (nm);
1971 #else
1973 /* See if any variables are substituted into the string
1974 and find the total length of their values in `total' */
1976 for (p = nm; p != endp;)
1977 if (*p != '$')
1978 p++;
1979 else
1981 p++;
1982 if (p == endp)
1983 goto badsubst;
1984 else if (*p == '$')
1986 /* "$$" means a single "$" */
1987 p++;
1988 total -= 1;
1989 substituted = 1;
1990 continue;
1992 else if (*p == '{')
1994 o = ++p;
1995 while (p != endp && *p != '}') p++;
1996 if (*p != '}') goto missingclose;
1997 s = p;
1999 else
2001 o = p;
2002 while (p != endp && (isalnum (*p) || *p == '_')) p++;
2003 s = p;
2006 /* Copy out the variable name */
2007 target = (unsigned char *) alloca (s - o + 1);
2008 strncpy (target, o, s - o);
2009 target[s - o] = 0;
2010 #ifdef DOS_NT
2011 strupr (target); /* $home == $HOME etc. */
2012 #endif /* DOS_NT */
2014 /* Get variable value */
2015 o = (unsigned char *) egetenv (target);
2016 if (!o) goto badvar;
2017 total += strlen (o);
2018 substituted = 1;
2021 if (!substituted)
2022 return filename;
2024 /* If substitution required, recopy the string and do it */
2025 /* Make space in stack frame for the new copy */
2026 xnm = (unsigned char *) alloca (STRING_BYTES (XSTRING (filename)) + total + 1);
2027 x = xnm;
2029 /* Copy the rest of the name through, replacing $ constructs with values */
2030 for (p = nm; *p;)
2031 if (*p != '$')
2032 *x++ = *p++;
2033 else
2035 p++;
2036 if (p == endp)
2037 goto badsubst;
2038 else if (*p == '$')
2040 *x++ = *p++;
2041 continue;
2043 else if (*p == '{')
2045 o = ++p;
2046 while (p != endp && *p != '}') p++;
2047 if (*p != '}') goto missingclose;
2048 s = p++;
2050 else
2052 o = p;
2053 while (p != endp && (isalnum (*p) || *p == '_')) p++;
2054 s = p;
2057 /* Copy out the variable name */
2058 target = (unsigned char *) alloca (s - o + 1);
2059 strncpy (target, o, s - o);
2060 target[s - o] = 0;
2061 #ifdef DOS_NT
2062 strupr (target); /* $home == $HOME etc. */
2063 #endif /* DOS_NT */
2065 /* Get variable value */
2066 o = (unsigned char *) egetenv (target);
2067 if (!o)
2068 goto badvar;
2070 if (STRING_MULTIBYTE (filename))
2072 /* If the original string is multibyte,
2073 convert what we substitute into multibyte. */
2074 unsigned char workbuf[4], *str;
2075 int len;
2077 while (*o)
2079 int c = *o++;
2080 c = unibyte_char_to_multibyte (c);
2081 if (! SINGLE_BYTE_CHAR_P (c))
2083 len = CHAR_STRING (c, workbuf, str);
2084 bcopy (str, x, len);
2085 x += len;
2087 else
2088 *x++ = c;
2091 else
2093 strcpy (x, o);
2094 x += strlen (o);
2098 *x = 0;
2100 /* If /~ or // appears, discard everything through first slash. */
2102 for (p = xnm; p != x; p++)
2103 if ((p[0] == '~'
2104 #if defined (APOLLO) || defined (WINDOWSNT)
2105 || (IS_DIRECTORY_SEP (p[0]) && p - 1 != xnm)
2106 #else /* not (APOLLO || WINDOWSNT) */
2107 || IS_DIRECTORY_SEP (p[0])
2108 #endif /* not (APOLLO || WINDOWSNT) */
2110 && p != xnm && IS_DIRECTORY_SEP (p[-1]))
2111 xnm = p;
2112 #ifdef DOS_NT
2113 else if (IS_DRIVE (p[0]) && p[1] == ':'
2114 && p > nm && IS_DIRECTORY_SEP (p[-1]))
2115 xnm = p;
2116 #endif
2118 if (STRING_MULTIBYTE (filename))
2119 return make_string (xnm, x - xnm);
2120 return make_unibyte_string (xnm, x - xnm);
2122 badsubst:
2123 error ("Bad format environment-variable substitution");
2124 missingclose:
2125 error ("Missing \"}\" in environment-variable substitution");
2126 badvar:
2127 error ("Substituting nonexistent environment variable \"%s\"", target);
2129 /* NOTREACHED */
2130 #endif /* not VMS */
2133 /* A slightly faster and more convenient way to get
2134 (directory-file-name (expand-file-name FOO)). */
2136 Lisp_Object
2137 expand_and_dir_to_file (filename, defdir)
2138 Lisp_Object filename, defdir;
2140 register Lisp_Object absname;
2142 absname = Fexpand_file_name (filename, defdir);
2143 #ifdef VMS
2145 register int c = XSTRING (absname)->data[STRING_BYTES (XSTRING (absname)) - 1];
2146 if (c == ':' || c == ']' || c == '>')
2147 absname = Fdirectory_file_name (absname);
2149 #else
2150 /* Remove final slash, if any (unless this is the root dir).
2151 stat behaves differently depending! */
2152 if (XSTRING (absname)->size > 1
2153 && IS_DIRECTORY_SEP (XSTRING (absname)->data[STRING_BYTES (XSTRING (absname)) - 1])
2154 && !IS_DEVICE_SEP (XSTRING (absname)->data[STRING_BYTES (XSTRING (absname))-2]))
2155 /* We cannot take shortcuts; they might be wrong for magic file names. */
2156 absname = Fdirectory_file_name (absname);
2157 #endif
2158 return absname;
2161 /* Signal an error if the file ABSNAME already exists.
2162 If INTERACTIVE is nonzero, ask the user whether to proceed,
2163 and bypass the error if the user says to go ahead.
2164 QUERYSTRING is a name for the action that is being considered
2165 to alter the file.
2167 *STATPTR is used to store the stat information if the file exists.
2168 If the file does not exist, STATPTR->st_mode is set to 0.
2169 If STATPTR is null, we don't store into it.
2171 If QUICK is nonzero, we ask for y or n, not yes or no. */
2173 void
2174 barf_or_query_if_file_exists (absname, querystring, interactive, statptr, quick)
2175 Lisp_Object absname;
2176 unsigned char *querystring;
2177 int interactive;
2178 struct stat *statptr;
2179 int quick;
2181 register Lisp_Object tem, encoded_filename;
2182 struct stat statbuf;
2183 struct gcpro gcpro1;
2185 encoded_filename = ENCODE_FILE (absname);
2187 /* stat is a good way to tell whether the file exists,
2188 regardless of what access permissions it has. */
2189 if (stat (XSTRING (encoded_filename)->data, &statbuf) >= 0)
2191 if (! interactive)
2192 Fsignal (Qfile_already_exists,
2193 Fcons (build_string ("File already exists"),
2194 Fcons (absname, Qnil)));
2195 GCPRO1 (absname);
2196 tem = format1 ("File %s already exists; %s anyway? ",
2197 XSTRING (absname)->data, querystring);
2198 if (quick)
2199 tem = Fy_or_n_p (tem);
2200 else
2201 tem = do_yes_or_no_p (tem);
2202 UNGCPRO;
2203 if (NILP (tem))
2204 Fsignal (Qfile_already_exists,
2205 Fcons (build_string ("File already exists"),
2206 Fcons (absname, Qnil)));
2207 if (statptr)
2208 *statptr = statbuf;
2210 else
2212 if (statptr)
2213 statptr->st_mode = 0;
2215 return;
2218 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 4,
2219 "fCopy file: \nFCopy %s to file: \np\nP",
2220 "Copy FILE to NEWNAME. Both args must be strings.\n\
2221 Signals a `file-already-exists' error if file NEWNAME already exists,\n\
2222 unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.\n\
2223 A number as third arg means request confirmation if NEWNAME already exists.\n\
2224 This is what happens in interactive use with M-x.\n\
2225 Fourth arg KEEP-TIME non-nil means give the new file the same\n\
2226 last-modified time as the old one. (This works on only some systems.)\n\
2227 A prefix arg makes KEEP-TIME non-nil.")
2228 (file, newname, ok_if_already_exists, keep_date)
2229 Lisp_Object file, newname, ok_if_already_exists, keep_date;
2231 int ifd, ofd, n;
2232 char buf[16 * 1024];
2233 struct stat st, out_st;
2234 Lisp_Object handler;
2235 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2236 int count = specpdl_ptr - specpdl;
2237 int input_file_statable_p;
2238 Lisp_Object encoded_file, encoded_newname;
2240 encoded_file = encoded_newname = Qnil;
2241 GCPRO4 (file, newname, encoded_file, encoded_newname);
2242 CHECK_STRING (file, 0);
2243 CHECK_STRING (newname, 1);
2245 file = Fexpand_file_name (file, Qnil);
2246 newname = Fexpand_file_name (newname, Qnil);
2248 /* If the input file name has special constructs in it,
2249 call the corresponding file handler. */
2250 handler = Ffind_file_name_handler (file, Qcopy_file);
2251 /* Likewise for output file name. */
2252 if (NILP (handler))
2253 handler = Ffind_file_name_handler (newname, Qcopy_file);
2254 if (!NILP (handler))
2255 RETURN_UNGCPRO (call5 (handler, Qcopy_file, file, newname,
2256 ok_if_already_exists, keep_date));
2258 encoded_file = ENCODE_FILE (file);
2259 encoded_newname = ENCODE_FILE (newname);
2261 if (NILP (ok_if_already_exists)
2262 || INTEGERP (ok_if_already_exists))
2263 barf_or_query_if_file_exists (encoded_newname, "copy to it",
2264 INTEGERP (ok_if_already_exists), &out_st, 0);
2265 else if (stat (XSTRING (encoded_newname)->data, &out_st) < 0)
2266 out_st.st_mode = 0;
2268 ifd = open (XSTRING (encoded_file)->data, O_RDONLY);
2269 if (ifd < 0)
2270 report_file_error ("Opening input file", Fcons (file, Qnil));
2272 record_unwind_protect (close_file_unwind, make_number (ifd));
2274 /* We can only copy regular files and symbolic links. Other files are not
2275 copyable by us. */
2276 input_file_statable_p = (fstat (ifd, &st) >= 0);
2278 #if !defined (DOS_NT) || __DJGPP__ > 1
2279 if (out_st.st_mode != 0
2280 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
2282 errno = 0;
2283 report_file_error ("Input and output files are the same",
2284 Fcons (file, Fcons (newname, Qnil)));
2286 #endif
2288 #if defined (S_ISREG) && defined (S_ISLNK)
2289 if (input_file_statable_p)
2291 if (!(S_ISREG (st.st_mode)) && !(S_ISLNK (st.st_mode)))
2293 #if defined (EISDIR)
2294 /* Get a better looking error message. */
2295 errno = EISDIR;
2296 #endif /* EISDIR */
2297 report_file_error ("Non-regular file", Fcons (file, Qnil));
2300 #endif /* S_ISREG && S_ISLNK */
2302 #ifdef VMS
2303 /* Create the copy file with the same record format as the input file */
2304 ofd = sys_creat (XSTRING (encoded_newname)->data, 0666, ifd);
2305 #else
2306 #ifdef MSDOS
2307 /* System's default file type was set to binary by _fmode in emacs.c. */
2308 ofd = creat (XSTRING (encoded_newname)->data, S_IREAD | S_IWRITE);
2309 #else /* not MSDOS */
2310 ofd = creat (XSTRING (encoded_newname)->data, 0666);
2311 #endif /* not MSDOS */
2312 #endif /* VMS */
2313 if (ofd < 0)
2314 report_file_error ("Opening output file", Fcons (newname, Qnil));
2316 record_unwind_protect (close_file_unwind, make_number (ofd));
2318 immediate_quit = 1;
2319 QUIT;
2320 while ((n = read (ifd, buf, sizeof buf)) > 0)
2321 if (write (ofd, buf, n) != n)
2322 report_file_error ("I/O error", Fcons (newname, Qnil));
2323 immediate_quit = 0;
2325 /* Closing the output clobbers the file times on some systems. */
2326 if (close (ofd) < 0)
2327 report_file_error ("I/O error", Fcons (newname, Qnil));
2329 if (input_file_statable_p)
2331 if (!NILP (keep_date))
2333 EMACS_TIME atime, mtime;
2334 EMACS_SET_SECS_USECS (atime, st.st_atime, 0);
2335 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0);
2336 if (set_file_times (XSTRING (encoded_newname)->data,
2337 atime, mtime))
2338 Fsignal (Qfile_date_error,
2339 Fcons (build_string ("Cannot set file date"),
2340 Fcons (newname, Qnil)));
2342 #ifndef MSDOS
2343 chmod (XSTRING (encoded_newname)->data, st.st_mode & 07777);
2344 #else /* MSDOS */
2345 #if defined (__DJGPP__) && __DJGPP__ > 1
2346 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2347 and if it can't, it tells so. Otherwise, under MSDOS we usually
2348 get only the READ bit, which will make the copied file read-only,
2349 so it's better not to chmod at all. */
2350 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0)
2351 chmod (XSTRING (encoded_newname)->data, st.st_mode & 07777);
2352 #endif /* DJGPP version 2 or newer */
2353 #endif /* MSDOS */
2356 close (ifd);
2358 /* Discard the unwind protects. */
2359 specpdl_ptr = specpdl + count;
2361 UNGCPRO;
2362 return Qnil;
2365 DEFUN ("make-directory-internal", Fmake_directory_internal,
2366 Smake_directory_internal, 1, 1, 0,
2367 "Create a new directory named DIRECTORY.")
2368 (directory)
2369 Lisp_Object directory;
2371 unsigned char *dir;
2372 Lisp_Object handler;
2373 Lisp_Object encoded_dir;
2375 CHECK_STRING (directory, 0);
2376 directory = Fexpand_file_name (directory, Qnil);
2378 handler = Ffind_file_name_handler (directory, Qmake_directory_internal);
2379 if (!NILP (handler))
2380 return call2 (handler, Qmake_directory_internal, directory);
2382 encoded_dir = ENCODE_FILE (directory);
2384 dir = XSTRING (encoded_dir)->data;
2386 #ifdef WINDOWSNT
2387 if (mkdir (dir) != 0)
2388 #else
2389 if (mkdir (dir, 0777) != 0)
2390 #endif
2391 report_file_error ("Creating directory", Flist (1, &directory));
2393 return Qnil;
2396 DEFUN ("delete-directory", Fdelete_directory, Sdelete_directory, 1, 1, "FDelete directory: ",
2397 "Delete the directory named DIRECTORY.")
2398 (directory)
2399 Lisp_Object directory;
2401 unsigned char *dir;
2402 Lisp_Object handler;
2403 Lisp_Object encoded_dir;
2405 CHECK_STRING (directory, 0);
2406 directory = Fdirectory_file_name (Fexpand_file_name (directory, Qnil));
2408 handler = Ffind_file_name_handler (directory, Qdelete_directory);
2409 if (!NILP (handler))
2410 return call2 (handler, Qdelete_directory, directory);
2412 encoded_dir = ENCODE_FILE (directory);
2414 dir = XSTRING (encoded_dir)->data;
2416 if (rmdir (dir) != 0)
2417 report_file_error ("Removing directory", Flist (1, &directory));
2419 return Qnil;
2422 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 1, "fDelete file: ",
2423 "Delete file named FILENAME.\n\
2424 If file has multiple names, it continues to exist with the other names.")
2425 (filename)
2426 Lisp_Object filename;
2428 Lisp_Object handler;
2429 Lisp_Object encoded_file;
2431 CHECK_STRING (filename, 0);
2432 filename = Fexpand_file_name (filename, Qnil);
2434 handler = Ffind_file_name_handler (filename, Qdelete_file);
2435 if (!NILP (handler))
2436 return call2 (handler, Qdelete_file, filename);
2438 encoded_file = ENCODE_FILE (filename);
2440 if (0 > unlink (XSTRING (encoded_file)->data))
2441 report_file_error ("Removing old name", Flist (1, &filename));
2442 return Qnil;
2445 static Lisp_Object
2446 internal_delete_file_1 (ignore)
2447 Lisp_Object ignore;
2449 return Qt;
2452 /* Delete file FILENAME, returning 1 if successful and 0 if failed. */
2455 internal_delete_file (filename)
2456 Lisp_Object filename;
2458 return NILP (internal_condition_case_1 (Fdelete_file, filename,
2459 Qt, internal_delete_file_1));
2462 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
2463 "fRename file: \nFRename %s to file: \np",
2464 "Rename FILE as NEWNAME. Both args strings.\n\
2465 If file has names other than FILE, it continues to have those names.\n\
2466 Signals a `file-already-exists' error if a file NEWNAME already exists\n\
2467 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
2468 A number as third arg means request confirmation if NEWNAME already exists.\n\
2469 This is what happens in interactive use with M-x.")
2470 (file, newname, ok_if_already_exists)
2471 Lisp_Object file, newname, ok_if_already_exists;
2473 #ifdef NO_ARG_ARRAY
2474 Lisp_Object args[2];
2475 #endif
2476 Lisp_Object handler;
2477 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2478 Lisp_Object encoded_file, encoded_newname;
2480 encoded_file = encoded_newname = Qnil;
2481 GCPRO4 (file, newname, encoded_file, encoded_newname);
2482 CHECK_STRING (file, 0);
2483 CHECK_STRING (newname, 1);
2484 file = Fexpand_file_name (file, Qnil);
2485 newname = Fexpand_file_name (newname, Qnil);
2487 /* If the file name has special constructs in it,
2488 call the corresponding file handler. */
2489 handler = Ffind_file_name_handler (file, Qrename_file);
2490 if (NILP (handler))
2491 handler = Ffind_file_name_handler (newname, Qrename_file);
2492 if (!NILP (handler))
2493 RETURN_UNGCPRO (call4 (handler, Qrename_file,
2494 file, newname, ok_if_already_exists));
2496 encoded_file = ENCODE_FILE (file);
2497 encoded_newname = ENCODE_FILE (newname);
2499 if (NILP (ok_if_already_exists)
2500 || INTEGERP (ok_if_already_exists))
2501 barf_or_query_if_file_exists (encoded_newname, "rename to it",
2502 INTEGERP (ok_if_already_exists), 0, 0);
2503 #ifndef BSD4_1
2504 if (0 > rename (XSTRING (encoded_file)->data, XSTRING (encoded_newname)->data))
2505 #else
2506 if (0 > link (XSTRING (encoded_file)->data, XSTRING (encoded_newname)->data)
2507 || 0 > unlink (XSTRING (encoded_file)->data))
2508 #endif
2510 if (errno == EXDEV)
2512 Fcopy_file (file, newname,
2513 /* We have already prompted if it was an integer,
2514 so don't have copy-file prompt again. */
2515 NILP (ok_if_already_exists) ? Qnil : Qt, Qt);
2516 Fdelete_file (file);
2518 else
2519 #ifdef NO_ARG_ARRAY
2521 args[0] = file;
2522 args[1] = newname;
2523 report_file_error ("Renaming", Flist (2, args));
2525 #else
2526 report_file_error ("Renaming", Flist (2, &file));
2527 #endif
2529 UNGCPRO;
2530 return Qnil;
2533 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
2534 "fAdd name to file: \nFName to add to %s: \np",
2535 "Give FILE additional name NEWNAME. Both args strings.\n\
2536 Signals a `file-already-exists' error if a file NEWNAME already exists\n\
2537 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
2538 A number as third arg means request confirmation if NEWNAME already exists.\n\
2539 This is what happens in interactive use with M-x.")
2540 (file, newname, ok_if_already_exists)
2541 Lisp_Object file, newname, ok_if_already_exists;
2543 #ifdef NO_ARG_ARRAY
2544 Lisp_Object args[2];
2545 #endif
2546 Lisp_Object handler;
2547 Lisp_Object encoded_file, encoded_newname;
2548 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2550 GCPRO4 (file, newname, encoded_file, encoded_newname);
2551 encoded_file = encoded_newname = Qnil;
2552 CHECK_STRING (file, 0);
2553 CHECK_STRING (newname, 1);
2554 file = Fexpand_file_name (file, Qnil);
2555 newname = Fexpand_file_name (newname, Qnil);
2557 /* If the file name has special constructs in it,
2558 call the corresponding file handler. */
2559 handler = Ffind_file_name_handler (file, Qadd_name_to_file);
2560 if (!NILP (handler))
2561 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2562 newname, ok_if_already_exists));
2564 /* If the new name has special constructs in it,
2565 call the corresponding file handler. */
2566 handler = Ffind_file_name_handler (newname, Qadd_name_to_file);
2567 if (!NILP (handler))
2568 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2569 newname, ok_if_already_exists));
2571 encoded_file = ENCODE_FILE (file);
2572 encoded_newname = ENCODE_FILE (newname);
2574 if (NILP (ok_if_already_exists)
2575 || INTEGERP (ok_if_already_exists))
2576 barf_or_query_if_file_exists (encoded_newname, "make it a new name",
2577 INTEGERP (ok_if_already_exists), 0, 0);
2579 unlink (XSTRING (newname)->data);
2580 if (0 > link (XSTRING (encoded_file)->data, XSTRING (encoded_newname)->data))
2582 #ifdef NO_ARG_ARRAY
2583 args[0] = file;
2584 args[1] = newname;
2585 report_file_error ("Adding new name", Flist (2, args));
2586 #else
2587 report_file_error ("Adding new name", Flist (2, &file));
2588 #endif
2591 UNGCPRO;
2592 return Qnil;
2595 #ifdef S_IFLNK
2596 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
2597 "FMake symbolic link to file: \nFMake symbolic link to file %s: \np",
2598 "Make a symbolic link to FILENAME, named LINKNAME. Both args strings.\n\
2599 Signals a `file-already-exists' error if a file LINKNAME already exists\n\
2600 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
2601 A number as third arg means request confirmation if LINKNAME already exists.\n\
2602 This happens for interactive use with M-x.")
2603 (filename, linkname, ok_if_already_exists)
2604 Lisp_Object filename, linkname, ok_if_already_exists;
2606 #ifdef NO_ARG_ARRAY
2607 Lisp_Object args[2];
2608 #endif
2609 Lisp_Object handler;
2610 Lisp_Object encoded_filename, encoded_linkname;
2611 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2613 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname);
2614 encoded_filename = encoded_linkname = Qnil;
2615 CHECK_STRING (filename, 0);
2616 CHECK_STRING (linkname, 1);
2617 /* If the link target has a ~, we must expand it to get
2618 a truly valid file name. Otherwise, do not expand;
2619 we want to permit links to relative file names. */
2620 if (XSTRING (filename)->data[0] == '~')
2621 filename = Fexpand_file_name (filename, Qnil);
2622 linkname = Fexpand_file_name (linkname, Qnil);
2624 /* If the file name has special constructs in it,
2625 call the corresponding file handler. */
2626 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
2627 if (!NILP (handler))
2628 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2629 linkname, ok_if_already_exists));
2631 /* If the new link name has special constructs in it,
2632 call the corresponding file handler. */
2633 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link);
2634 if (!NILP (handler))
2635 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2636 linkname, ok_if_already_exists));
2638 encoded_filename = ENCODE_FILE (filename);
2639 encoded_linkname = ENCODE_FILE (linkname);
2641 if (NILP (ok_if_already_exists)
2642 || INTEGERP (ok_if_already_exists))
2643 barf_or_query_if_file_exists (encoded_linkname, "make it a link",
2644 INTEGERP (ok_if_already_exists), 0, 0);
2645 if (0 > symlink (XSTRING (encoded_filename)->data,
2646 XSTRING (encoded_linkname)->data))
2648 /* If we didn't complain already, silently delete existing file. */
2649 if (errno == EEXIST)
2651 unlink (XSTRING (encoded_linkname)->data);
2652 if (0 <= symlink (XSTRING (encoded_filename)->data,
2653 XSTRING (encoded_linkname)->data))
2655 UNGCPRO;
2656 return Qnil;
2660 #ifdef NO_ARG_ARRAY
2661 args[0] = filename;
2662 args[1] = linkname;
2663 report_file_error ("Making symbolic link", Flist (2, args));
2664 #else
2665 report_file_error ("Making symbolic link", Flist (2, &filename));
2666 #endif
2668 UNGCPRO;
2669 return Qnil;
2671 #endif /* S_IFLNK */
2673 #ifdef VMS
2675 DEFUN ("define-logical-name", Fdefine_logical_name, Sdefine_logical_name,
2676 2, 2, "sDefine logical name: \nsDefine logical name %s as: ",
2677 "Define the job-wide logical name NAME to have the value STRING.\n\
2678 If STRING is nil or a null string, the logical name NAME is deleted.")
2679 (name, string)
2680 Lisp_Object name;
2681 Lisp_Object string;
2683 CHECK_STRING (name, 0);
2684 if (NILP (string))
2685 delete_logical_name (XSTRING (name)->data);
2686 else
2688 CHECK_STRING (string, 1);
2690 if (XSTRING (string)->size == 0)
2691 delete_logical_name (XSTRING (name)->data);
2692 else
2693 define_logical_name (XSTRING (name)->data, XSTRING (string)->data);
2696 return string;
2698 #endif /* VMS */
2700 #ifdef HPUX_NET
2702 DEFUN ("sysnetunam", Fsysnetunam, Ssysnetunam, 2, 2, 0,
2703 "Open a network connection to PATH using LOGIN as the login string.")
2704 (path, login)
2705 Lisp_Object path, login;
2707 int netresult;
2709 CHECK_STRING (path, 0);
2710 CHECK_STRING (login, 0);
2712 netresult = netunam (XSTRING (path)->data, XSTRING (login)->data);
2714 if (netresult == -1)
2715 return Qnil;
2716 else
2717 return Qt;
2719 #endif /* HPUX_NET */
2721 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
2722 1, 1, 0,
2723 "Return t if file FILENAME specifies an absolute file name.\n\
2724 On Unix, this is a name starting with a `/' or a `~'.")
2725 (filename)
2726 Lisp_Object filename;
2728 unsigned char *ptr;
2730 CHECK_STRING (filename, 0);
2731 ptr = XSTRING (filename)->data;
2732 if (IS_DIRECTORY_SEP (*ptr) || *ptr == '~'
2733 #ifdef VMS
2734 /* ??? This criterion is probably wrong for '<'. */
2735 || index (ptr, ':') || index (ptr, '<')
2736 || (*ptr == '[' && (ptr[1] != '-' || (ptr[2] != '.' && ptr[2] != ']'))
2737 && ptr[1] != '.')
2738 #endif /* VMS */
2739 #ifdef DOS_NT
2740 || (IS_DRIVE (*ptr) && ptr[1] == ':' && IS_DIRECTORY_SEP (ptr[2]))
2741 #endif
2743 return Qt;
2744 else
2745 return Qnil;
2748 /* Return nonzero if file FILENAME exists and can be executed. */
2750 static int
2751 check_executable (filename)
2752 char *filename;
2754 #ifdef DOS_NT
2755 int len = strlen (filename);
2756 char *suffix;
2757 struct stat st;
2758 if (stat (filename, &st) < 0)
2759 return 0;
2760 #if defined (WINDOWSNT) || (defined (MSDOS) && __DJGPP__ > 1)
2761 return ((st.st_mode & S_IEXEC) != 0);
2762 #else
2763 return (S_ISREG (st.st_mode)
2764 && len >= 5
2765 && (stricmp ((suffix = filename + len-4), ".com") == 0
2766 || stricmp (suffix, ".exe") == 0
2767 || stricmp (suffix, ".bat") == 0)
2768 || (st.st_mode & S_IFMT) == S_IFDIR);
2769 #endif /* not WINDOWSNT */
2770 #else /* not DOS_NT */
2771 #ifdef HAVE_EUIDACCESS
2772 return (euidaccess (filename, 1) >= 0);
2773 #else
2774 /* Access isn't quite right because it uses the real uid
2775 and we really want to test with the effective uid.
2776 But Unix doesn't give us a right way to do it. */
2777 return (access (filename, 1) >= 0);
2778 #endif
2779 #endif /* not DOS_NT */
2782 /* Return nonzero if file FILENAME exists and can be written. */
2784 static int
2785 check_writable (filename)
2786 char *filename;
2788 #ifdef MSDOS
2789 struct stat st;
2790 if (stat (filename, &st) < 0)
2791 return 0;
2792 return (st.st_mode & S_IWRITE || (st.st_mode & S_IFMT) == S_IFDIR);
2793 #else /* not MSDOS */
2794 #ifdef HAVE_EUIDACCESS
2795 return (euidaccess (filename, 2) >= 0);
2796 #else
2797 /* Access isn't quite right because it uses the real uid
2798 and we really want to test with the effective uid.
2799 But Unix doesn't give us a right way to do it.
2800 Opening with O_WRONLY could work for an ordinary file,
2801 but would lose for directories. */
2802 return (access (filename, 2) >= 0);
2803 #endif
2804 #endif /* not MSDOS */
2807 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
2808 "Return t if file FILENAME exists. (This does not mean you can read it.)\n\
2809 See also `file-readable-p' and `file-attributes'.")
2810 (filename)
2811 Lisp_Object filename;
2813 Lisp_Object absname;
2814 Lisp_Object handler;
2815 struct stat statbuf;
2817 CHECK_STRING (filename, 0);
2818 absname = Fexpand_file_name (filename, Qnil);
2820 /* If the file name has special constructs in it,
2821 call the corresponding file handler. */
2822 handler = Ffind_file_name_handler (absname, Qfile_exists_p);
2823 if (!NILP (handler))
2824 return call2 (handler, Qfile_exists_p, absname);
2826 absname = ENCODE_FILE (absname);
2828 return (stat (XSTRING (absname)->data, &statbuf) >= 0) ? Qt : Qnil;
2831 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
2832 "Return t if FILENAME can be executed by you.\n\
2833 For a directory, this means you can access files in that directory.")
2834 (filename)
2835 Lisp_Object filename;
2838 Lisp_Object absname;
2839 Lisp_Object handler;
2841 CHECK_STRING (filename, 0);
2842 absname = Fexpand_file_name (filename, Qnil);
2844 /* If the file name has special constructs in it,
2845 call the corresponding file handler. */
2846 handler = Ffind_file_name_handler (absname, Qfile_executable_p);
2847 if (!NILP (handler))
2848 return call2 (handler, Qfile_executable_p, absname);
2850 absname = ENCODE_FILE (absname);
2852 return (check_executable (XSTRING (absname)->data) ? Qt : Qnil);
2855 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
2856 "Return t if file FILENAME exists and you can read it.\n\
2857 See also `file-exists-p' and `file-attributes'.")
2858 (filename)
2859 Lisp_Object filename;
2861 Lisp_Object absname;
2862 Lisp_Object handler;
2863 int desc;
2864 int flags;
2865 struct stat statbuf;
2867 CHECK_STRING (filename, 0);
2868 absname = Fexpand_file_name (filename, Qnil);
2870 /* If the file name has special constructs in it,
2871 call the corresponding file handler. */
2872 handler = Ffind_file_name_handler (absname, Qfile_readable_p);
2873 if (!NILP (handler))
2874 return call2 (handler, Qfile_readable_p, absname);
2876 absname = ENCODE_FILE (absname);
2878 #ifdef DOS_NT
2879 /* Under MS-DOS and Windows, open does not work for directories. */
2880 if (access (XSTRING (absname)->data, 0) == 0)
2881 return Qt;
2882 return Qnil;
2883 #else /* not DOS_NT */
2884 flags = O_RDONLY;
2885 #if defined (S_ISFIFO) && defined (O_NONBLOCK)
2886 /* Opening a fifo without O_NONBLOCK can wait.
2887 We don't want to wait. But we don't want to mess wth O_NONBLOCK
2888 except in the case of a fifo, on a system which handles it. */
2889 desc = stat (XSTRING (absname)->data, &statbuf);
2890 if (desc < 0)
2891 return Qnil;
2892 if (S_ISFIFO (statbuf.st_mode))
2893 flags |= O_NONBLOCK;
2894 #endif
2895 desc = open (XSTRING (absname)->data, flags);
2896 if (desc < 0)
2897 return Qnil;
2898 close (desc);
2899 return Qt;
2900 #endif /* not DOS_NT */
2903 /* Having this before file-symlink-p mysteriously caused it to be forgotten
2904 on the RT/PC. */
2905 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
2906 "Return t if file FILENAME can be written or created by you.")
2907 (filename)
2908 Lisp_Object filename;
2910 Lisp_Object absname, dir, encoded;
2911 Lisp_Object handler;
2912 struct stat statbuf;
2914 CHECK_STRING (filename, 0);
2915 absname = Fexpand_file_name (filename, Qnil);
2917 /* If the file name has special constructs in it,
2918 call the corresponding file handler. */
2919 handler = Ffind_file_name_handler (absname, Qfile_writable_p);
2920 if (!NILP (handler))
2921 return call2 (handler, Qfile_writable_p, absname);
2923 encoded = ENCODE_FILE (absname);
2924 if (stat (XSTRING (encoded)->data, &statbuf) >= 0)
2925 return (check_writable (XSTRING (encoded)->data)
2926 ? Qt : Qnil);
2928 dir = Ffile_name_directory (absname);
2929 #ifdef VMS
2930 if (!NILP (dir))
2931 dir = Fdirectory_file_name (dir);
2932 #endif /* VMS */
2933 #ifdef MSDOS
2934 if (!NILP (dir))
2935 dir = Fdirectory_file_name (dir);
2936 #endif /* MSDOS */
2938 dir = ENCODE_FILE (dir);
2939 return (check_writable (!NILP (dir) ? (char *) XSTRING (dir)->data : "")
2940 ? Qt : Qnil);
2943 DEFUN ("access-file", Faccess_file, Saccess_file, 2, 2, 0,
2944 "Access file FILENAME, and get an error if that does not work.\n\
2945 The second argument STRING is used in the error message.\n\
2946 If there is no error, we return nil.")
2947 (filename, string)
2948 Lisp_Object filename, string;
2950 Lisp_Object handler, encoded_filename;
2951 int fd;
2953 CHECK_STRING (filename, 0);
2954 CHECK_STRING (string, 1);
2956 /* If the file name has special constructs in it,
2957 call the corresponding file handler. */
2958 handler = Ffind_file_name_handler (filename, Qaccess_file);
2959 if (!NILP (handler))
2960 return call3 (handler, Qaccess_file, filename, string);
2962 encoded_filename = ENCODE_FILE (filename);
2964 fd = open (XSTRING (encoded_filename)->data, O_RDONLY);
2965 if (fd < 0)
2966 report_file_error (XSTRING (string)->data, Fcons (filename, Qnil));
2967 close (fd);
2969 return Qnil;
2972 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
2973 "Return non-nil if file FILENAME is the name of a symbolic link.\n\
2974 The value is the name of the file to which it is linked.\n\
2975 Otherwise returns nil.")
2976 (filename)
2977 Lisp_Object filename;
2979 #ifdef S_IFLNK
2980 char *buf;
2981 int bufsize;
2982 int valsize;
2983 Lisp_Object val;
2984 Lisp_Object handler;
2986 CHECK_STRING (filename, 0);
2987 filename = Fexpand_file_name (filename, Qnil);
2989 /* If the file name has special constructs in it,
2990 call the corresponding file handler. */
2991 handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
2992 if (!NILP (handler))
2993 return call2 (handler, Qfile_symlink_p, filename);
2995 filename = ENCODE_FILE (filename);
2997 bufsize = 100;
2998 while (1)
3000 buf = (char *) xmalloc (bufsize);
3001 bzero (buf, bufsize);
3002 valsize = readlink (XSTRING (filename)->data, buf, bufsize);
3003 if (valsize < bufsize) break;
3004 /* Buffer was not long enough */
3005 xfree (buf);
3006 bufsize *= 2;
3008 if (valsize == -1)
3010 xfree (buf);
3011 return Qnil;
3013 val = make_string (buf, valsize);
3014 xfree (buf);
3015 val = DECODE_FILE (val);
3016 return val;
3017 #else /* not S_IFLNK */
3018 return Qnil;
3019 #endif /* not S_IFLNK */
3022 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
3023 "Return t if FILENAME names an existing directory.")
3024 (filename)
3025 Lisp_Object filename;
3027 register Lisp_Object absname;
3028 struct stat st;
3029 Lisp_Object handler;
3031 absname = expand_and_dir_to_file (filename, current_buffer->directory);
3033 /* If the file name has special constructs in it,
3034 call the corresponding file handler. */
3035 handler = Ffind_file_name_handler (absname, Qfile_directory_p);
3036 if (!NILP (handler))
3037 return call2 (handler, Qfile_directory_p, absname);
3039 absname = ENCODE_FILE (absname);
3041 if (stat (XSTRING (absname)->data, &st) < 0)
3042 return Qnil;
3043 return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil;
3046 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p, Sfile_accessible_directory_p, 1, 1, 0,
3047 "Return t if file FILENAME is the name of a directory as a file,\n\
3048 and files in that directory can be opened by you. In order to use a\n\
3049 directory as a buffer's current directory, this predicate must return true.\n\
3050 A directory name spec may be given instead; then the value is t\n\
3051 if the directory so specified exists and really is a readable and\n\
3052 searchable directory.")
3053 (filename)
3054 Lisp_Object filename;
3056 Lisp_Object handler;
3057 int tem;
3058 struct gcpro gcpro1;
3060 /* If the file name has special constructs in it,
3061 call the corresponding file handler. */
3062 handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p);
3063 if (!NILP (handler))
3064 return call2 (handler, Qfile_accessible_directory_p, filename);
3066 /* It's an unlikely combination, but yes we really do need to gcpro:
3067 Suppose that file-accessible-directory-p has no handler, but
3068 file-directory-p does have a handler; this handler causes a GC which
3069 relocates the string in `filename'; and finally file-directory-p
3070 returns non-nil. Then we would end up passing a garbaged string
3071 to file-executable-p. */
3072 GCPRO1 (filename);
3073 tem = (NILP (Ffile_directory_p (filename))
3074 || NILP (Ffile_executable_p (filename)));
3075 UNGCPRO;
3076 return tem ? Qnil : Qt;
3079 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
3080 "Return t if file FILENAME is the name of a regular file.\n\
3081 This is the sort of file that holds an ordinary stream of data bytes.")
3082 (filename)
3083 Lisp_Object filename;
3085 register Lisp_Object absname;
3086 struct stat st;
3087 Lisp_Object handler;
3089 absname = expand_and_dir_to_file (filename, current_buffer->directory);
3091 /* If the file name has special constructs in it,
3092 call the corresponding file handler. */
3093 handler = Ffind_file_name_handler (absname, Qfile_regular_p);
3094 if (!NILP (handler))
3095 return call2 (handler, Qfile_regular_p, absname);
3097 absname = ENCODE_FILE (absname);
3099 #ifdef WINDOWSNT
3101 int result;
3102 Lisp_Object tem = Vw32_get_true_file_attributes;
3104 /* Tell stat to use expensive method to get accurate info. */
3105 Vw32_get_true_file_attributes = Qt;
3106 result = stat (XSTRING (absname)->data, &st);
3107 Vw32_get_true_file_attributes = tem;
3109 if (result < 0)
3110 return Qnil;
3111 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
3113 #else
3114 if (stat (XSTRING (absname)->data, &st) < 0)
3115 return Qnil;
3116 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
3117 #endif
3120 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
3121 "Return mode bits of file named FILENAME, as an integer.")
3122 (filename)
3123 Lisp_Object filename;
3125 Lisp_Object absname;
3126 struct stat st;
3127 Lisp_Object handler;
3129 absname = expand_and_dir_to_file (filename, current_buffer->directory);
3131 /* If the file name has special constructs in it,
3132 call the corresponding file handler. */
3133 handler = Ffind_file_name_handler (absname, Qfile_modes);
3134 if (!NILP (handler))
3135 return call2 (handler, Qfile_modes, absname);
3137 absname = ENCODE_FILE (absname);
3139 if (stat (XSTRING (absname)->data, &st) < 0)
3140 return Qnil;
3141 #if defined (MSDOS) && __DJGPP__ < 2
3142 if (check_executable (XSTRING (absname)->data))
3143 st.st_mode |= S_IEXEC;
3144 #endif /* MSDOS && __DJGPP__ < 2 */
3146 return make_number (st.st_mode & 07777);
3149 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2, 0,
3150 "Set mode bits of file named FILENAME to MODE (an integer).\n\
3151 Only the 12 low bits of MODE are used.")
3152 (filename, mode)
3153 Lisp_Object filename, mode;
3155 Lisp_Object absname, encoded_absname;
3156 Lisp_Object handler;
3158 absname = Fexpand_file_name (filename, current_buffer->directory);
3159 CHECK_NUMBER (mode, 1);
3161 /* If the file name has special constructs in it,
3162 call the corresponding file handler. */
3163 handler = Ffind_file_name_handler (absname, Qset_file_modes);
3164 if (!NILP (handler))
3165 return call3 (handler, Qset_file_modes, absname, mode);
3167 encoded_absname = ENCODE_FILE (absname);
3169 if (chmod (XSTRING (encoded_absname)->data, XINT (mode)) < 0)
3170 report_file_error ("Doing chmod", Fcons (absname, Qnil));
3172 return Qnil;
3175 DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0,
3176 "Set the file permission bits for newly created files.\n\
3177 The argument MODE should be an integer; only the low 9 bits are used.\n\
3178 This setting is inherited by subprocesses.")
3179 (mode)
3180 Lisp_Object mode;
3182 CHECK_NUMBER (mode, 0);
3184 umask ((~ XINT (mode)) & 0777);
3186 return Qnil;
3189 DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0,
3190 "Return the default file protection for created files.\n\
3191 The value is an integer.")
3194 int realmask;
3195 Lisp_Object value;
3197 realmask = umask (0);
3198 umask (realmask);
3200 XSETINT (value, (~ realmask) & 0777);
3201 return value;
3204 #ifdef unix
3206 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
3207 "Tell Unix to finish all pending disk updates.")
3210 sync ();
3211 return Qnil;
3214 #endif /* unix */
3216 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
3217 "Return t if file FILE1 is newer than file FILE2.\n\
3218 If FILE1 does not exist, the answer is nil;\n\
3219 otherwise, if FILE2 does not exist, the answer is t.")
3220 (file1, file2)
3221 Lisp_Object file1, file2;
3223 Lisp_Object absname1, absname2;
3224 struct stat st;
3225 int mtime1;
3226 Lisp_Object handler;
3227 struct gcpro gcpro1, gcpro2;
3229 CHECK_STRING (file1, 0);
3230 CHECK_STRING (file2, 0);
3232 absname1 = Qnil;
3233 GCPRO2 (absname1, file2);
3234 absname1 = expand_and_dir_to_file (file1, current_buffer->directory);
3235 absname2 = expand_and_dir_to_file (file2, current_buffer->directory);
3236 UNGCPRO;
3238 /* If the file name has special constructs in it,
3239 call the corresponding file handler. */
3240 handler = Ffind_file_name_handler (absname1, Qfile_newer_than_file_p);
3241 if (NILP (handler))
3242 handler = Ffind_file_name_handler (absname2, Qfile_newer_than_file_p);
3243 if (!NILP (handler))
3244 return call3 (handler, Qfile_newer_than_file_p, absname1, absname2);
3246 GCPRO2 (absname1, absname2);
3247 absname1 = ENCODE_FILE (absname1);
3248 absname2 = ENCODE_FILE (absname2);
3249 UNGCPRO;
3251 if (stat (XSTRING (absname1)->data, &st) < 0)
3252 return Qnil;
3254 mtime1 = st.st_mtime;
3256 if (stat (XSTRING (absname2)->data, &st) < 0)
3257 return Qt;
3259 return (mtime1 > st.st_mtime) ? Qt : Qnil;
3262 #ifdef DOS_NT
3263 Lisp_Object Qfind_buffer_file_type;
3264 #endif /* DOS_NT */
3266 #ifndef READ_BUF_SIZE
3267 #define READ_BUF_SIZE (64 << 10)
3268 #endif
3270 /* This function is called when a function bound to
3271 Vset_auto_coding_function causes some error. At that time, a text
3272 of a file has already been inserted in the current buffer, but,
3273 markers has not yet been adjusted. Thus we must adjust markers
3274 here. We are sure that the buffer was empty before the text of the
3275 file was inserted. */
3277 static Lisp_Object
3278 set_auto_coding_unwind (multibyte)
3279 Lisp_Object multibyte;
3281 int inserted = Z_BYTE - BEG_BYTE;
3283 if (!NILP (multibyte))
3284 inserted = multibyte_chars_in_text (GPT_ADDR - inserted, inserted);
3285 adjust_after_insert (PT, PT_BYTE, Z, Z_BYTE, inserted);
3287 return Qnil;
3290 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
3291 1, 5, 0,
3292 "Insert contents of file FILENAME after point.\n\
3293 Returns list of absolute file name and number of bytes inserted.\n\
3294 If second argument VISIT is non-nil, the buffer's visited filename\n\
3295 and last save file modtime are set, and it is marked unmodified.\n\
3296 If visiting and the file does not exist, visiting is completed\n\
3297 before the error is signaled.\n\
3298 The optional third and fourth arguments BEG and END\n\
3299 specify what portion of the file to insert.\n\
3300 These arguments count bytes in the file, not characters in the buffer.\n\
3301 If VISIT is non-nil, BEG and END must be nil.\n\
3303 If optional fifth argument REPLACE is non-nil,\n\
3304 it means replace the current buffer contents (in the accessible portion)\n\
3305 with the file contents. This is better than simply deleting and inserting\n\
3306 the whole thing because (1) it preserves some marker positions\n\
3307 and (2) it puts less data in the undo list.\n\
3308 When REPLACE is non-nil, the value is the number of characters actually read,\n\
3309 which is often less than the number of characters to be read.\n\
3311 This does code conversion according to the value of\n\
3312 `coding-system-for-read' or `file-coding-system-alist',\n\
3313 and sets the variable `last-coding-system-used' to the coding system\n\
3314 actually used.")
3315 (filename, visit, beg, end, replace)
3316 Lisp_Object filename, visit, beg, end, replace;
3318 struct stat st;
3319 register int fd;
3320 int inserted = 0;
3321 register int how_much;
3322 register int unprocessed;
3323 int count = specpdl_ptr - specpdl;
3324 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
3325 Lisp_Object handler, val, insval, orig_filename;
3326 Lisp_Object p;
3327 int total;
3328 int not_regular = 0;
3329 unsigned char read_buf[READ_BUF_SIZE];
3330 struct coding_system coding;
3331 unsigned char buffer[1 << 14];
3332 int replace_handled = 0;
3333 int set_coding_system = 0;
3334 int coding_system_decided = 0;
3336 if (current_buffer->base_buffer && ! NILP (visit))
3337 error ("Cannot do file visiting in an indirect buffer");
3339 if (!NILP (current_buffer->read_only))
3340 Fbarf_if_buffer_read_only ();
3342 val = Qnil;
3343 p = Qnil;
3344 orig_filename = Qnil;
3346 GCPRO4 (filename, val, p, orig_filename);
3348 CHECK_STRING (filename, 0);
3349 filename = Fexpand_file_name (filename, Qnil);
3351 /* If the file name has special constructs in it,
3352 call the corresponding file handler. */
3353 handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
3354 if (!NILP (handler))
3356 val = call6 (handler, Qinsert_file_contents, filename,
3357 visit, beg, end, replace);
3358 if (CONSP (val) && CONSP (XCONS (val)->cdr))
3359 inserted = XINT (XCONS (XCONS (val)->cdr)->car);
3360 goto handled;
3363 orig_filename = filename;
3364 filename = ENCODE_FILE (filename);
3366 fd = -1;
3368 #ifdef WINDOWSNT
3370 Lisp_Object tem = Vw32_get_true_file_attributes;
3372 /* Tell stat to use expensive method to get accurate info. */
3373 Vw32_get_true_file_attributes = Qt;
3374 total = stat (XSTRING (filename)->data, &st);
3375 Vw32_get_true_file_attributes = tem;
3377 if (total < 0)
3378 #else
3379 #ifndef APOLLO
3380 if (stat (XSTRING (filename)->data, &st) < 0)
3381 #else
3382 if ((fd = open (XSTRING (filename)->data, O_RDONLY)) < 0
3383 || fstat (fd, &st) < 0)
3384 #endif /* not APOLLO */
3385 #endif /* WINDOWSNT */
3387 if (fd >= 0) close (fd);
3388 badopen:
3389 if (NILP (visit))
3390 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
3391 st.st_mtime = -1;
3392 how_much = 0;
3393 if (!NILP (Vcoding_system_for_read))
3394 current_buffer->buffer_file_coding_system = Vcoding_system_for_read;
3395 goto notfound;
3398 #ifdef S_IFREG
3399 /* This code will need to be changed in order to work on named
3400 pipes, and it's probably just not worth it. So we should at
3401 least signal an error. */
3402 if (!S_ISREG (st.st_mode))
3404 not_regular = 1;
3406 if (! NILP (visit))
3407 goto notfound;
3409 if (! NILP (replace) || ! NILP (beg) || ! NILP (end))
3410 Fsignal (Qfile_error,
3411 Fcons (build_string ("not a regular file"),
3412 Fcons (orig_filename, Qnil)));
3414 #endif
3416 if (fd < 0)
3417 if ((fd = open (XSTRING (filename)->data, O_RDONLY)) < 0)
3418 goto badopen;
3420 /* Replacement should preserve point as it preserves markers. */
3421 if (!NILP (replace))
3422 record_unwind_protect (restore_point_unwind, Fpoint_marker ());
3424 record_unwind_protect (close_file_unwind, make_number (fd));
3426 /* Supposedly happens on VMS. */
3427 if (! not_regular && st.st_size < 0)
3428 error ("File size is negative");
3430 if (!NILP (beg) || !NILP (end))
3431 if (!NILP (visit))
3432 error ("Attempt to visit less than an entire file");
3434 if (!NILP (beg))
3435 CHECK_NUMBER (beg, 0);
3436 else
3437 XSETFASTINT (beg, 0);
3439 if (!NILP (end))
3440 CHECK_NUMBER (end, 0);
3441 else
3443 if (! not_regular)
3445 XSETINT (end, st.st_size);
3446 if (XINT (end) != st.st_size)
3447 error ("Maximum buffer size exceeded");
3451 if (BEG < Z)
3453 /* Decide the coding system to use for reading the file now
3454 because we can't use an optimized method for handling
3455 `coding:' tag if the current buffer is not empty. */
3456 Lisp_Object val;
3457 val = Qnil;
3459 if (!NILP (Vcoding_system_for_read))
3460 val = Vcoding_system_for_read;
3461 else if (! NILP (replace))
3462 /* In REPLACE mode, we can use the same coding system
3463 that was used to visit the file. */
3464 val = current_buffer->buffer_file_coding_system;
3465 else
3467 /* Don't try looking inside a file for a coding system
3468 specification if it is not seekable. */
3469 if (! not_regular && ! NILP (Vset_auto_coding_function))
3471 /* Find a coding system specified in the heading two
3472 lines or in the tailing several lines of the file.
3473 We assume that the 1K-byte and 3K-byte for heading
3474 and tailing respectively are sufficient fot this
3475 purpose. */
3476 int how_many, nread;
3478 if (st.st_size <= (1024 * 4))
3479 nread = read (fd, read_buf, 1024 * 4);
3480 else
3482 nread = read (fd, read_buf, 1024);
3483 if (nread >= 0)
3485 if (lseek (fd, st.st_size - (1024 * 3), 0) < 0)
3486 report_file_error ("Setting file position",
3487 Fcons (orig_filename, Qnil));
3488 nread += read (fd, read_buf + nread, 1024 * 3);
3492 if (nread < 0)
3493 error ("IO error reading %s: %s",
3494 XSTRING (orig_filename)->data, strerror (errno));
3495 else if (nread > 0)
3497 int count = specpdl_ptr - specpdl;
3498 struct buffer *prev = current_buffer;
3500 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
3501 temp_output_buffer_setup (" *code-converting-work*");
3502 set_buffer_internal (XBUFFER (Vstandard_output));
3503 current_buffer->enable_multibyte_characters = Qnil;
3504 insert_1_both (read_buf, nread, nread, 0, 0, 0);
3505 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3506 val = call2 (Vset_auto_coding_function,
3507 filename, make_number (nread));
3508 set_buffer_internal (prev);
3509 /* Discard the unwind protect for recovering the
3510 current buffer. */
3511 specpdl_ptr--;
3513 /* Rewind the file for the actual read done later. */
3514 if (lseek (fd, 0, 0) < 0)
3515 report_file_error ("Setting file position",
3516 Fcons (orig_filename, Qnil));
3520 if (NILP (val))
3522 /* If we have not yet decided a coding system, check
3523 file-coding-system-alist. */
3524 Lisp_Object args[6], coding_systems;
3526 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3527 args[2] = visit, args[3] = beg, args[4] = end, args[5] = replace;
3528 coding_systems = Ffind_operation_coding_system (6, args);
3529 if (CONSP (coding_systems))
3530 val = XCONS (coding_systems)->car;
3534 setup_coding_system (Fcheck_coding_system (val), &coding);
3536 if (NILP (Vcoding_system_for_read)
3537 && NILP (current_buffer->enable_multibyte_characters))
3538 /* We must suppress all text conversion except for end-of-line
3539 conversion. */
3540 setup_raw_text_coding_system (&coding);
3542 coding_system_decided = 1;
3545 /* Ensure we always set Vlast_coding_system_used. */
3546 set_coding_system = 1;
3548 /* If requested, replace the accessible part of the buffer
3549 with the file contents. Avoid replacing text at the
3550 beginning or end of the buffer that matches the file contents;
3551 that preserves markers pointing to the unchanged parts.
3553 Here we implement this feature in an optimized way
3554 for the case where code conversion is NOT needed.
3555 The following if-statement handles the case of conversion
3556 in a less optimal way.
3558 If the code conversion is "automatic" then we try using this
3559 method and hope for the best.
3560 But if we discover the need for conversion, we give up on this method
3561 and let the following if-statement handle the replace job. */
3562 if (!NILP (replace)
3563 && BEGV < ZV
3564 && ! CODING_REQUIRE_DECODING (&coding)
3565 && (coding.eol_type == CODING_EOL_UNDECIDED
3566 || coding.eol_type == CODING_EOL_LF))
3568 /* same_at_start and same_at_end count bytes,
3569 because file access counts bytes
3570 and BEG and END count bytes. */
3571 int same_at_start = BEGV_BYTE;
3572 int same_at_end = ZV_BYTE;
3573 int overlap;
3574 /* There is still a possibility we will find the need to do code
3575 conversion. If that happens, we set this variable to 1 to
3576 give up on handling REPLACE in the optimized way. */
3577 int giveup_match_end = 0;
3579 if (XINT (beg) != 0)
3581 if (lseek (fd, XINT (beg), 0) < 0)
3582 report_file_error ("Setting file position",
3583 Fcons (orig_filename, Qnil));
3586 immediate_quit = 1;
3587 QUIT;
3588 /* Count how many chars at the start of the file
3589 match the text at the beginning of the buffer. */
3590 while (1)
3592 int nread, bufpos;
3594 nread = read (fd, buffer, sizeof buffer);
3595 if (nread < 0)
3596 error ("IO error reading %s: %s",
3597 XSTRING (orig_filename)->data, strerror (errno));
3598 else if (nread == 0)
3599 break;
3601 if (coding.type == coding_type_undecided)
3602 detect_coding (&coding, buffer, nread);
3603 if (CODING_REQUIRE_DECODING (&coding))
3604 /* We found that the file should be decoded somehow.
3605 Let's give up here. */
3607 giveup_match_end = 1;
3608 break;
3611 if (coding.eol_type == CODING_EOL_UNDECIDED)
3612 detect_eol (&coding, buffer, nread);
3613 if (coding.eol_type != CODING_EOL_UNDECIDED
3614 && coding.eol_type != CODING_EOL_LF)
3615 /* We found that the format of eol should be decoded.
3616 Let's give up here. */
3618 giveup_match_end = 1;
3619 break;
3622 bufpos = 0;
3623 while (bufpos < nread && same_at_start < ZV_BYTE
3624 && FETCH_BYTE (same_at_start) == buffer[bufpos])
3625 same_at_start++, bufpos++;
3626 /* If we found a discrepancy, stop the scan.
3627 Otherwise loop around and scan the next bufferful. */
3628 if (bufpos != nread)
3629 break;
3631 immediate_quit = 0;
3632 /* If the file matches the buffer completely,
3633 there's no need to replace anything. */
3634 if (same_at_start - BEGV_BYTE == XINT (end))
3636 close (fd);
3637 specpdl_ptr--;
3638 /* Truncate the buffer to the size of the file. */
3639 del_range_1 (same_at_start, same_at_end, 0);
3640 goto handled;
3642 immediate_quit = 1;
3643 QUIT;
3644 /* Count how many chars at the end of the file
3645 match the text at the end of the buffer. But, if we have
3646 already found that decoding is necessary, don't waste time. */
3647 while (!giveup_match_end)
3649 int total_read, nread, bufpos, curpos, trial;
3651 /* At what file position are we now scanning? */
3652 curpos = XINT (end) - (ZV_BYTE - same_at_end);
3653 /* If the entire file matches the buffer tail, stop the scan. */
3654 if (curpos == 0)
3655 break;
3656 /* How much can we scan in the next step? */
3657 trial = min (curpos, sizeof buffer);
3658 if (lseek (fd, curpos - trial, 0) < 0)
3659 report_file_error ("Setting file position",
3660 Fcons (orig_filename, Qnil));
3662 total_read = 0;
3663 while (total_read < trial)
3665 nread = read (fd, buffer + total_read, trial - total_read);
3666 if (nread <= 0)
3667 error ("IO error reading %s: %s",
3668 XSTRING (orig_filename)->data, strerror (errno));
3669 total_read += nread;
3671 /* Scan this bufferful from the end, comparing with
3672 the Emacs buffer. */
3673 bufpos = total_read;
3674 /* Compare with same_at_start to avoid counting some buffer text
3675 as matching both at the file's beginning and at the end. */
3676 while (bufpos > 0 && same_at_end > same_at_start
3677 && FETCH_BYTE (same_at_end - 1) == buffer[bufpos - 1])
3678 same_at_end--, bufpos--;
3680 /* If we found a discrepancy, stop the scan.
3681 Otherwise loop around and scan the preceding bufferful. */
3682 if (bufpos != 0)
3684 /* If this discrepancy is because of code conversion,
3685 we cannot use this method; giveup and try the other. */
3686 if (same_at_end > same_at_start
3687 && FETCH_BYTE (same_at_end - 1) >= 0200
3688 && ! NILP (current_buffer->enable_multibyte_characters)
3689 && (CODING_MAY_REQUIRE_DECODING (&coding)))
3690 giveup_match_end = 1;
3691 break;
3694 immediate_quit = 0;
3696 if (! giveup_match_end)
3698 int temp;
3700 /* We win! We can handle REPLACE the optimized way. */
3702 /* Extend the start of non-matching text area to multibyte
3703 character boundary. */
3704 if (! NILP (current_buffer->enable_multibyte_characters))
3705 while (same_at_start > BEGV_BYTE
3706 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3707 same_at_start--;
3709 /* Extend the end of non-matching text area to multibyte
3710 character boundary. */
3711 if (! NILP (current_buffer->enable_multibyte_characters))
3712 while (same_at_end < ZV_BYTE
3713 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3714 same_at_end++;
3716 /* Don't try to reuse the same piece of text twice. */
3717 overlap = (same_at_start - BEGV_BYTE
3718 - (same_at_end + st.st_size - ZV));
3719 if (overlap > 0)
3720 same_at_end += overlap;
3722 /* Arrange to read only the nonmatching middle part of the file. */
3723 XSETFASTINT (beg, XINT (beg) + (same_at_start - BEGV_BYTE));
3724 XSETFASTINT (end, XINT (end) - (ZV_BYTE - same_at_end));
3726 del_range_byte (same_at_start, same_at_end, 0);
3727 /* Insert from the file at the proper position. */
3728 temp = BYTE_TO_CHAR (same_at_start);
3729 SET_PT_BOTH (temp, same_at_start);
3731 /* If display currently starts at beginning of line,
3732 keep it that way. */
3733 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3734 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
3736 replace_handled = 1;
3740 /* If requested, replace the accessible part of the buffer
3741 with the file contents. Avoid replacing text at the
3742 beginning or end of the buffer that matches the file contents;
3743 that preserves markers pointing to the unchanged parts.
3745 Here we implement this feature for the case where code conversion
3746 is needed, in a simple way that needs a lot of memory.
3747 The preceding if-statement handles the case of no conversion
3748 in a more optimized way. */
3749 if (!NILP (replace) && ! replace_handled && BEGV < ZV)
3751 int same_at_start = BEGV_BYTE;
3752 int same_at_end = ZV_BYTE;
3753 int overlap;
3754 int bufpos;
3755 /* Make sure that the gap is large enough. */
3756 int bufsize = 2 * st.st_size;
3757 unsigned char *conversion_buffer = (unsigned char *) xmalloc (bufsize);
3758 int temp;
3760 /* First read the whole file, performing code conversion into
3761 CONVERSION_BUFFER. */
3763 if (lseek (fd, XINT (beg), 0) < 0)
3765 free (conversion_buffer);
3766 report_file_error ("Setting file position",
3767 Fcons (orig_filename, Qnil));
3770 total = st.st_size; /* Total bytes in the file. */
3771 how_much = 0; /* Bytes read from file so far. */
3772 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */
3773 unprocessed = 0; /* Bytes not processed in previous loop. */
3775 while (how_much < total)
3777 /* try is reserved in some compilers (Microsoft C) */
3778 int trytry = min (total - how_much, READ_BUF_SIZE - unprocessed);
3779 unsigned char *destination = read_buf + unprocessed;
3780 int this;
3782 /* Allow quitting out of the actual I/O. */
3783 immediate_quit = 1;
3784 QUIT;
3785 this = read (fd, destination, trytry);
3786 immediate_quit = 0;
3788 if (this < 0 || this + unprocessed == 0)
3790 how_much = this;
3791 break;
3794 how_much += this;
3796 if (CODING_MAY_REQUIRE_DECODING (&coding))
3798 int require, result;
3800 this += unprocessed;
3802 /* If we are using more space than estimated,
3803 make CONVERSION_BUFFER bigger. */
3804 require = decoding_buffer_size (&coding, this);
3805 if (inserted + require + 2 * (total - how_much) > bufsize)
3807 bufsize = inserted + require + 2 * (total - how_much);
3808 conversion_buffer = (unsigned char *) xrealloc (conversion_buffer, bufsize);
3811 /* Convert this batch with results in CONVERSION_BUFFER. */
3812 if (how_much >= total) /* This is the last block. */
3813 coding.mode |= CODING_MODE_LAST_BLOCK;
3814 result = decode_coding (&coding, read_buf,
3815 conversion_buffer + inserted,
3816 this, bufsize - inserted);
3818 /* Save for next iteration whatever we didn't convert. */
3819 unprocessed = this - coding.consumed;
3820 bcopy (read_buf + coding.consumed, read_buf, unprocessed);
3821 this = coding.produced;
3824 inserted += this;
3827 /* At this point, INSERTED is how many characters (i.e. bytes)
3828 are present in CONVERSION_BUFFER.
3829 HOW_MUCH should equal TOTAL,
3830 or should be <= 0 if we couldn't read the file. */
3832 if (how_much < 0)
3834 free (conversion_buffer);
3836 if (how_much == -1)
3837 error ("IO error reading %s: %s",
3838 XSTRING (orig_filename)->data, strerror (errno));
3839 else if (how_much == -2)
3840 error ("maximum buffer size exceeded");
3843 /* Compare the beginning of the converted file
3844 with the buffer text. */
3846 bufpos = 0;
3847 while (bufpos < inserted && same_at_start < same_at_end
3848 && FETCH_BYTE (same_at_start) == conversion_buffer[bufpos])
3849 same_at_start++, bufpos++;
3851 /* If the file matches the buffer completely,
3852 there's no need to replace anything. */
3854 if (bufpos == inserted)
3856 free (conversion_buffer);
3857 close (fd);
3858 specpdl_ptr--;
3859 /* Truncate the buffer to the size of the file. */
3860 del_range_1 (same_at_start, same_at_end, 0);
3861 goto handled;
3864 /* Extend the start of non-matching text area to multibyte
3865 character boundary. */
3866 if (! NILP (current_buffer->enable_multibyte_characters))
3867 while (same_at_start > BEGV_BYTE
3868 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3869 same_at_start--;
3871 /* Scan this bufferful from the end, comparing with
3872 the Emacs buffer. */
3873 bufpos = inserted;
3875 /* Compare with same_at_start to avoid counting some buffer text
3876 as matching both at the file's beginning and at the end. */
3877 while (bufpos > 0 && same_at_end > same_at_start
3878 && FETCH_BYTE (same_at_end - 1) == conversion_buffer[bufpos - 1])
3879 same_at_end--, bufpos--;
3881 /* Extend the end of non-matching text area to multibyte
3882 character boundary. */
3883 if (! NILP (current_buffer->enable_multibyte_characters))
3884 while (same_at_end < ZV_BYTE
3885 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3886 same_at_end++;
3888 /* Don't try to reuse the same piece of text twice. */
3889 overlap = same_at_start - BEGV_BYTE - (same_at_end + inserted - ZV_BYTE);
3890 if (overlap > 0)
3891 same_at_end += overlap;
3893 /* If display currently starts at beginning of line,
3894 keep it that way. */
3895 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3896 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
3898 /* Replace the chars that we need to replace,
3899 and update INSERTED to equal the number of bytes
3900 we are taking from the file. */
3901 inserted -= (Z_BYTE - same_at_end) + (same_at_start - BEG_BYTE);
3902 del_range_byte (same_at_start, same_at_end, 0);
3903 if (same_at_end != same_at_start)
3904 SET_PT_BOTH (GPT, GPT_BYTE);
3905 else
3907 /* Insert from the file at the proper position. */
3908 temp = BYTE_TO_CHAR (same_at_start);
3909 SET_PT_BOTH (temp, same_at_start);
3912 insert_1 (conversion_buffer + same_at_start - BEG_BYTE, inserted,
3913 0, 0, 0);
3915 free (conversion_buffer);
3916 close (fd);
3917 specpdl_ptr--;
3919 goto handled;
3922 if (! not_regular)
3924 register Lisp_Object temp;
3926 total = XINT (end) - XINT (beg);
3928 /* Make sure point-max won't overflow after this insertion. */
3929 XSETINT (temp, total);
3930 if (total != XINT (temp))
3931 error ("Maximum buffer size exceeded");
3933 else
3934 /* For a special file, all we can do is guess. */
3935 total = READ_BUF_SIZE;
3937 if (NILP (visit) && total > 0)
3938 prepare_to_modify_buffer (PT, PT, NULL);
3940 move_gap (PT);
3941 if (GAP_SIZE < total)
3942 make_gap (total - GAP_SIZE);
3944 if (XINT (beg) != 0 || !NILP (replace))
3946 if (lseek (fd, XINT (beg), 0) < 0)
3947 report_file_error ("Setting file position",
3948 Fcons (orig_filename, Qnil));
3951 /* In the following loop, HOW_MUCH contains the total bytes read so
3952 far for a regular file, and not changed for a special file. But,
3953 before exiting the loop, it is set to a negative value if I/O
3954 error occurs. */
3955 how_much = 0;
3956 /* Total bytes inserted. */
3957 inserted = 0;
3958 /* Here, we don't do code conversion in the loop. It is done by
3959 code_convert_region after all data are read into the buffer. */
3960 while (how_much < total)
3962 /* try is reserved in some compilers (Microsoft C) */
3963 int trytry = min (total - how_much, READ_BUF_SIZE);
3964 int this;
3966 /* For a special file, GAP_SIZE should be checked every time. */
3967 if (not_regular && GAP_SIZE < trytry)
3968 make_gap (total - GAP_SIZE);
3970 /* Allow quitting out of the actual I/O. */
3971 immediate_quit = 1;
3972 QUIT;
3973 this = read (fd, BYTE_POS_ADDR (PT_BYTE + inserted - 1) + 1, trytry);
3974 immediate_quit = 0;
3976 if (this <= 0)
3978 how_much = this;
3979 break;
3982 GAP_SIZE -= this;
3983 GPT_BYTE += this;
3984 ZV_BYTE += this;
3985 Z_BYTE += this;
3986 GPT += this;
3987 ZV += this;
3988 Z += this;
3990 /* For a regular file, where TOTAL is the real size,
3991 count HOW_MUCH to compare with it.
3992 For a special file, where TOTAL is just a buffer size,
3993 so don't bother counting in HOW_MUCH.
3994 (INSERTED is where we count the number of characters inserted.) */
3995 if (! not_regular)
3996 how_much += this;
3997 inserted += this;
4000 if (GAP_SIZE > 0)
4001 /* Put an anchor to ensure multi-byte form ends at gap. */
4002 *GPT_ADDR = 0;
4004 close (fd);
4006 /* Discard the unwind protect for closing the file. */
4007 specpdl_ptr--;
4009 if (how_much < 0)
4010 error ("IO error reading %s: %s",
4011 XSTRING (orig_filename)->data, strerror (errno));
4013 if (! coding_system_decided)
4015 /* The coding system is not yet decided. Decide it by an
4016 optimized method for handling `coding:' tag. */
4017 Lisp_Object val;
4018 val = Qnil;
4020 if (!NILP (Vcoding_system_for_read))
4021 val = Vcoding_system_for_read;
4022 else
4024 if (inserted > 0 && ! NILP (Vset_auto_coding_function))
4026 /* Since we are sure that the current buffer was
4027 empty before the insertion, we can toggle
4028 enable-multibyte-characters directly here without
4029 taking care of marker adjustment and byte
4030 combining problem. */
4031 Lisp_Object prev_multibyte;
4032 int count = specpdl_ptr - specpdl;
4034 prev_multibyte = current_buffer->enable_multibyte_characters;
4035 current_buffer->enable_multibyte_characters = Qnil;
4036 record_unwind_protect (set_auto_coding_unwind,
4037 prev_multibyte);
4038 val = call2 (Vset_auto_coding_function,
4039 filename, make_number (inserted));
4040 /* Discard the unwind protect for recovering the
4041 error of Vset_auto_coding_function. */
4042 specpdl_ptr--;
4043 current_buffer->enable_multibyte_characters = prev_multibyte;
4044 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
4047 if (NILP (val))
4049 /* If the coding system is not yet decided, check
4050 file-coding-system-alist. */
4051 Lisp_Object args[6], coding_systems;
4053 args[0] = Qinsert_file_contents, args[1] = orig_filename;
4054 args[2] = visit, args[3] = beg, args[4] = end, args[5] = Qnil;
4055 coding_systems = Ffind_operation_coding_system (6, args);
4056 if (CONSP (coding_systems))
4057 val = XCONS (coding_systems)->car;
4061 /* The following kludgy code is to avoid some compiler bug.
4062 We can't simply do
4063 setup_coding_system (val, &coding);
4064 on some system. */
4066 struct coding_system temp_coding;
4067 setup_coding_system (val, &temp_coding);
4068 bcopy (&temp_coding, &coding, sizeof coding);
4071 if (NILP (Vcoding_system_for_read)
4072 && NILP (current_buffer->enable_multibyte_characters))
4073 /* We must suppress all text conversion except for
4074 end-of-line conversion. */
4075 setup_raw_text_coding_system (&coding);
4078 if (inserted > 0)
4080 if (CODING_MAY_REQUIRE_DECODING (&coding))
4082 /* Here, we don't have to consider byte combining (see the
4083 comment below) because code_convert_region takes care of
4084 it. */
4085 code_convert_region (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4086 &coding, 0, 0);
4087 inserted = (NILP (current_buffer->enable_multibyte_characters)
4088 ? coding.produced : coding.produced_char);
4090 else if (!NILP (current_buffer->enable_multibyte_characters))
4092 int inserted_byte = inserted;
4094 /* There's a possibility that we must combine bytes at the
4095 head (resp. the tail) of the just inserted text with the
4096 bytes before (resp. after) the gap to form a single
4097 character. */
4098 inserted = multibyte_chars_in_text (GPT_ADDR - inserted, inserted);
4099 adjust_after_insert (PT, PT_BYTE,
4100 PT + inserted_byte, PT_BYTE + inserted_byte,
4101 inserted);
4103 else
4104 adjust_after_insert (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4105 inserted);
4108 #ifdef DOS_NT
4109 /* Use the conversion type to determine buffer-file-type
4110 (find-buffer-file-type is now used to help determine the
4111 conversion). */
4112 if ((coding.eol_type == CODING_EOL_UNDECIDED
4113 || coding.eol_type == CODING_EOL_LF)
4114 && ! CODING_REQUIRE_DECODING (&coding))
4115 current_buffer->buffer_file_type = Qt;
4116 else
4117 current_buffer->buffer_file_type = Qnil;
4118 #endif
4120 notfound:
4121 handled:
4123 if (!NILP (visit))
4125 if (!EQ (current_buffer->undo_list, Qt))
4126 current_buffer->undo_list = Qnil;
4127 #ifdef APOLLO
4128 stat (XSTRING (filename)->data, &st);
4129 #endif
4131 if (NILP (handler))
4133 current_buffer->modtime = st.st_mtime;
4134 current_buffer->filename = orig_filename;
4137 SAVE_MODIFF = MODIFF;
4138 current_buffer->auto_save_modified = MODIFF;
4139 XSETFASTINT (current_buffer->save_length, Z - BEG);
4140 #ifdef CLASH_DETECTION
4141 if (NILP (handler))
4143 if (!NILP (current_buffer->file_truename))
4144 unlock_file (current_buffer->file_truename);
4145 unlock_file (filename);
4147 #endif /* CLASH_DETECTION */
4148 if (not_regular)
4149 Fsignal (Qfile_error,
4150 Fcons (build_string ("not a regular file"),
4151 Fcons (orig_filename, Qnil)));
4153 /* If visiting nonexistent file, return nil. */
4154 if (current_buffer->modtime == -1)
4155 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
4158 /* Decode file format */
4159 if (inserted > 0)
4161 insval = call3 (Qformat_decode,
4162 Qnil, make_number (inserted), visit);
4163 CHECK_NUMBER (insval, 0);
4164 inserted = XFASTINT (insval);
4167 /* Call after-change hooks for the inserted text, aside from the case
4168 of normal visiting (not with REPLACE), which is done in a new buffer
4169 "before" the buffer is changed. */
4170 if (inserted > 0 && total > 0
4171 && (NILP (visit) || !NILP (replace)))
4172 signal_after_change (PT, 0, inserted);
4174 if (set_coding_system)
4175 Vlast_coding_system_used = coding.symbol;
4177 if (inserted > 0)
4179 p = Vafter_insert_file_functions;
4180 while (!NILP (p))
4182 insval = call1 (Fcar (p), make_number (inserted));
4183 if (!NILP (insval))
4185 CHECK_NUMBER (insval, 0);
4186 inserted = XFASTINT (insval);
4188 QUIT;
4189 p = Fcdr (p);
4193 /* ??? Retval needs to be dealt with in all cases consistently. */
4194 if (NILP (val))
4195 val = Fcons (orig_filename,
4196 Fcons (make_number (inserted),
4197 Qnil));
4199 RETURN_UNGCPRO (unbind_to (count, val));
4202 static Lisp_Object build_annotations P_ ((Lisp_Object, Lisp_Object,
4203 Lisp_Object));
4205 /* If build_annotations switched buffers, switch back to BUF.
4206 Kill the temporary buffer that was selected in the meantime.
4208 Since this kill only the last temporary buffer, some buffers remain
4209 not killed if build_annotations switched buffers more than once.
4210 -- K.Handa */
4212 static Lisp_Object
4213 build_annotations_unwind (buf)
4214 Lisp_Object buf;
4216 Lisp_Object tembuf;
4218 if (XBUFFER (buf) == current_buffer)
4219 return Qnil;
4220 tembuf = Fcurrent_buffer ();
4221 Fset_buffer (buf);
4222 Fkill_buffer (tembuf);
4223 return Qnil;
4226 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7,
4227 "r\nFWrite region to file: \ni\ni\ni\np",
4228 "Write current region into specified file.\n\
4229 When called from a program, takes three arguments:\n\
4230 START, END and FILENAME. START and END are buffer positions.\n\
4231 Optional fourth argument APPEND if non-nil means\n\
4232 append to existing file contents (if any).\n\
4233 Optional fifth argument VISIT if t means\n\
4234 set the last-save-file-modtime of buffer to this file's modtime\n\
4235 and mark buffer not modified.\n\
4236 If VISIT is a string, it is a second file name;\n\
4237 the output goes to FILENAME, but the buffer is marked as visiting VISIT.\n\
4238 VISIT is also the file name to lock and unlock for clash detection.\n\
4239 If VISIT is neither t nor nil nor a string,\n\
4240 that means do not print the \"Wrote file\" message.\n\
4241 The optional sixth arg LOCKNAME, if non-nil, specifies the name to\n\
4242 use for locking and unlocking, overriding FILENAME and VISIT.\n\
4243 The optional seventh arg CONFIRM, if non-nil, says ask for confirmation\n\
4244 before overwriting an existing file.\n\
4245 Kludgy feature: if START is a string, then that string is written\n\
4246 to the file, instead of any buffer contents, and END is ignored.\n\
4248 This does code conversion according to the value of\n\
4249 `coding-system-for-write', `buffer-file-coding-system', or\n\
4250 `file-coding-system-alist', and sets the variable\n\
4251 `last-coding-system-used' to the coding system actually used.")
4253 (start, end, filename, append, visit, lockname, confirm)
4254 Lisp_Object start, end, filename, append, visit, lockname, confirm;
4256 register int desc;
4257 int failure;
4258 int save_errno;
4259 unsigned char *fn;
4260 struct stat st;
4261 int tem;
4262 int count = specpdl_ptr - specpdl;
4263 int count1;
4264 #ifdef VMS
4265 unsigned char *fname = 0; /* If non-0, original filename (must rename) */
4266 #endif /* VMS */
4267 Lisp_Object handler;
4268 Lisp_Object visit_file;
4269 Lisp_Object annotations;
4270 Lisp_Object encoded_filename;
4271 int visiting, quietly;
4272 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4273 struct buffer *given_buffer;
4274 #ifdef DOS_NT
4275 int buffer_file_type = O_BINARY;
4276 #endif /* DOS_NT */
4277 struct coding_system coding;
4279 if (current_buffer->base_buffer && ! NILP (visit))
4280 error ("Cannot do file visiting in an indirect buffer");
4282 if (!NILP (start) && !STRINGP (start))
4283 validate_region (&start, &end);
4285 GCPRO4 (start, filename, visit, lockname);
4287 /* Decide the coding-system to encode the data with. */
4289 Lisp_Object val;
4291 if (auto_saving)
4292 val = Qnil;
4293 else if (!NILP (Vcoding_system_for_write))
4294 val = Vcoding_system_for_write;
4295 else
4297 /* If the variable `buffer-file-coding-system' is set locally,
4298 it means that the file was read with some kind of code
4299 conversion or the varialbe is explicitely set by users. We
4300 had better write it out with the same coding system even if
4301 `enable-multibyte-characters' is nil.
4303 If it is not set locally, we anyway have to convert EOL
4304 format if the default value of `buffer-file-coding-system'
4305 tells that it is not Unix-like (LF only) format. */
4306 val = current_buffer->buffer_file_coding_system;
4307 if (NILP (val)
4308 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil)))
4310 if (NILP (current_buffer->enable_multibyte_characters))
4312 setup_coding_system (Fcheck_coding_system (val), &coding);
4313 setup_raw_text_coding_system (&coding);
4314 goto done_setup_coding;
4316 val = Qnil;
4319 if (NILP (val))
4321 /* Check file-coding-system-alist. */
4322 Lisp_Object args[7], coding_systems;
4324 args[0] = Qwrite_region; args[1] = start; args[2] = end;
4325 args[3] = filename; args[4] = append; args[5] = visit;
4326 args[6] = lockname;
4327 coding_systems = Ffind_operation_coding_system (7, args);
4328 if (CONSP (coding_systems) && !NILP (XCONS (coding_systems)->cdr))
4329 val = XCONS (coding_systems)->cdr;
4332 if (NILP (val))
4333 /* If we still have not decided a coding system, use the
4334 default value of buffer-file-coding-system. */
4335 val = current_buffer->buffer_file_coding_system;
4337 if (! NILP (val)
4338 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4339 /* Confirm that VAL can surely encode the current region. */
4340 val = call3 (Vselect_safe_coding_system_function, start, end, val);
4342 setup_coding_system (Fcheck_coding_system (val), &coding);
4344 done_setup_coding:
4345 if (!STRINGP (start) && !NILP (current_buffer->selective_display))
4346 coding.mode |= CODING_MODE_SELECTIVE_DISPLAY;
4349 Vlast_coding_system_used = coding.symbol;
4351 filename = Fexpand_file_name (filename, Qnil);
4353 if (! NILP (confirm))
4354 barf_or_query_if_file_exists (filename, "overwrite", 1, 0, 1);
4356 if (STRINGP (visit))
4357 visit_file = Fexpand_file_name (visit, Qnil);
4358 else
4359 visit_file = filename;
4360 UNGCPRO;
4362 visiting = (EQ (visit, Qt) || STRINGP (visit));
4363 quietly = !NILP (visit);
4365 annotations = Qnil;
4367 if (NILP (lockname))
4368 lockname = visit_file;
4370 GCPRO5 (start, filename, annotations, visit_file, lockname);
4372 /* If the file name has special constructs in it,
4373 call the corresponding file handler. */
4374 handler = Ffind_file_name_handler (filename, Qwrite_region);
4375 /* If FILENAME has no handler, see if VISIT has one. */
4376 if (NILP (handler) && STRINGP (visit))
4377 handler = Ffind_file_name_handler (visit, Qwrite_region);
4379 if (!NILP (handler))
4381 Lisp_Object val;
4382 val = call6 (handler, Qwrite_region, start, end,
4383 filename, append, visit);
4385 if (visiting)
4387 SAVE_MODIFF = MODIFF;
4388 XSETFASTINT (current_buffer->save_length, Z - BEG);
4389 current_buffer->filename = visit_file;
4391 UNGCPRO;
4392 return val;
4395 /* Special kludge to simplify auto-saving. */
4396 if (NILP (start))
4398 XSETFASTINT (start, BEG);
4399 XSETFASTINT (end, Z);
4402 record_unwind_protect (build_annotations_unwind, Fcurrent_buffer ());
4403 count1 = specpdl_ptr - specpdl;
4405 given_buffer = current_buffer;
4406 annotations = build_annotations (start, end, coding.pre_write_conversion);
4407 if (current_buffer != given_buffer)
4409 XSETFASTINT (start, BEGV);
4410 XSETFASTINT (end, ZV);
4413 #ifdef CLASH_DETECTION
4414 if (!auto_saving)
4416 #if 0 /* This causes trouble for GNUS. */
4417 /* If we've locked this file for some other buffer,
4418 query before proceeding. */
4419 if (!visiting && EQ (Ffile_locked_p (lockname), Qt))
4420 call2 (intern ("ask-user-about-lock"), filename, Vuser_login_name);
4421 #endif
4423 lock_file (lockname);
4425 #endif /* CLASH_DETECTION */
4427 encoded_filename = ENCODE_FILE (filename);
4429 fn = XSTRING (encoded_filename)->data;
4430 desc = -1;
4431 if (!NILP (append))
4432 #ifdef DOS_NT
4433 desc = open (fn, O_WRONLY | buffer_file_type);
4434 #else /* not DOS_NT */
4435 desc = open (fn, O_WRONLY);
4436 #endif /* not DOS_NT */
4438 if (desc < 0 && (NILP (append) || errno == ENOENT))
4439 #ifdef VMS
4440 if (auto_saving) /* Overwrite any previous version of autosave file */
4442 vms_truncate (fn); /* if fn exists, truncate to zero length */
4443 desc = open (fn, O_RDWR);
4444 if (desc < 0)
4445 desc = creat_copy_attrs (STRINGP (current_buffer->filename)
4446 ? XSTRING (current_buffer->filename)->data : 0,
4447 fn);
4449 else /* Write to temporary name and rename if no errors */
4451 Lisp_Object temp_name;
4452 temp_name = Ffile_name_directory (filename);
4454 if (!NILP (temp_name))
4456 temp_name = Fmake_temp_name (concat2 (temp_name,
4457 build_string ("$$SAVE$$")));
4458 fname = XSTRING (filename)->data;
4459 fn = XSTRING (temp_name)->data;
4460 desc = creat_copy_attrs (fname, fn);
4461 if (desc < 0)
4463 /* If we can't open the temporary file, try creating a new
4464 version of the original file. VMS "creat" creates a
4465 new version rather than truncating an existing file. */
4466 fn = fname;
4467 fname = 0;
4468 desc = creat (fn, 0666);
4469 #if 0 /* This can clobber an existing file and fail to replace it,
4470 if the user runs out of space. */
4471 if (desc < 0)
4473 /* We can't make a new version;
4474 try to truncate and rewrite existing version if any. */
4475 vms_truncate (fn);
4476 desc = open (fn, O_RDWR);
4478 #endif
4481 else
4482 desc = creat (fn, 0666);
4484 #else /* not VMS */
4485 #ifdef DOS_NT
4486 desc = open (fn,
4487 O_WRONLY | O_TRUNC | O_CREAT | buffer_file_type,
4488 S_IREAD | S_IWRITE);
4489 #else /* not DOS_NT */
4490 desc = creat (fn, auto_saving ? auto_save_mode_bits : 0666);
4491 #endif /* not DOS_NT */
4492 #endif /* not VMS */
4494 UNGCPRO;
4496 if (desc < 0)
4498 #ifdef CLASH_DETECTION
4499 save_errno = errno;
4500 if (!auto_saving) unlock_file (lockname);
4501 errno = save_errno;
4502 #endif /* CLASH_DETECTION */
4503 report_file_error ("Opening output file", Fcons (filename, Qnil));
4506 record_unwind_protect (close_file_unwind, make_number (desc));
4508 if (!NILP (append) && !NILP (Ffile_regular_p (filename)))
4509 if (lseek (desc, 0, 2) < 0)
4511 #ifdef CLASH_DETECTION
4512 if (!auto_saving) unlock_file (lockname);
4513 #endif /* CLASH_DETECTION */
4514 report_file_error ("Lseek error", Fcons (filename, Qnil));
4517 #ifdef VMS
4519 * Kludge Warning: The VMS C RTL likes to insert carriage returns
4520 * if we do writes that don't end with a carriage return. Furthermore
4521 * it cannot handle writes of more then 16K. The modified
4522 * version of "sys_write" in SYSDEP.C (see comment there) copes with
4523 * this EXCEPT for the last record (iff it doesn't end with a carriage
4524 * return). This implies that if your buffer doesn't end with a carriage
4525 * return, you get one free... tough. However it also means that if
4526 * we make two calls to sys_write (a la the following code) you can
4527 * get one at the gap as well. The easiest way to fix this (honest)
4528 * is to move the gap to the next newline (or the end of the buffer).
4529 * Thus this change.
4531 * Yech!
4533 if (GPT > BEG && GPT_ADDR[-1] != '\n')
4534 move_gap (find_next_newline (GPT, 1));
4535 #else
4536 /* Whether VMS or not, we must move the gap to the next of newline
4537 when we must put designation sequences at beginning of line. */
4538 if (INTEGERP (start)
4539 && coding.type == coding_type_iso2022
4540 && coding.flags & CODING_FLAG_ISO_DESIGNATE_AT_BOL
4541 && GPT > BEG && GPT_ADDR[-1] != '\n')
4543 int opoint = PT, opoint_byte = PT_BYTE;
4544 scan_newline (PT, PT_BYTE, ZV, ZV_BYTE, 1, 0);
4545 move_gap_both (PT, PT_BYTE);
4546 SET_PT_BOTH (opoint, opoint_byte);
4548 #endif
4550 failure = 0;
4551 immediate_quit = 1;
4553 if (STRINGP (start))
4555 failure = 0 > a_write (desc, XSTRING (start)->data,
4556 STRING_BYTES (XSTRING (start)), 0, &annotations,
4557 &coding);
4558 save_errno = errno;
4560 else if (XINT (start) != XINT (end))
4562 register int end1 = CHAR_TO_BYTE (XINT (end));
4564 tem = CHAR_TO_BYTE (XINT (start));
4566 if (XINT (start) < GPT)
4568 failure = 0 > a_write (desc, BYTE_POS_ADDR (tem),
4569 min (GPT_BYTE, end1) - tem, tem, &annotations,
4570 &coding);
4571 save_errno = errno;
4574 if (XINT (end) > GPT && !failure)
4576 tem = max (tem, GPT_BYTE);
4577 failure = 0 > a_write (desc, BYTE_POS_ADDR (tem), end1 - tem,
4578 tem, &annotations, &coding);
4579 save_errno = errno;
4582 else
4584 /* If file was empty, still need to write the annotations */
4585 coding.mode |= CODING_MODE_LAST_BLOCK;
4586 failure = 0 > a_write (desc, "", 0, XINT (start), &annotations, &coding);
4587 save_errno = errno;
4590 if (CODING_REQUIRE_FLUSHING (&coding)
4591 && !(coding.mode & CODING_MODE_LAST_BLOCK)
4592 && ! failure)
4594 /* We have to flush out a data. */
4595 coding.mode |= CODING_MODE_LAST_BLOCK;
4596 failure = 0 > e_write (desc, "", 0, &coding);
4597 save_errno = errno;
4600 immediate_quit = 0;
4602 #ifdef HAVE_FSYNC
4603 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
4604 Disk full in NFS may be reported here. */
4605 /* mib says that closing the file will try to write as fast as NFS can do
4606 it, and that means the fsync here is not crucial for autosave files. */
4607 if (!auto_saving && fsync (desc) < 0)
4609 /* If fsync fails with EINTR, don't treat that as serious. */
4610 if (errno != EINTR)
4611 failure = 1, save_errno = errno;
4613 #endif
4615 /* Spurious "file has changed on disk" warnings have been
4616 observed on Suns as well.
4617 It seems that `close' can change the modtime, under nfs.
4619 (This has supposedly been fixed in Sunos 4,
4620 but who knows about all the other machines with NFS?) */
4621 #if 0
4623 /* On VMS and APOLLO, must do the stat after the close
4624 since closing changes the modtime. */
4625 #ifndef VMS
4626 #ifndef APOLLO
4627 /* Recall that #if defined does not work on VMS. */
4628 #define FOO
4629 fstat (desc, &st);
4630 #endif
4631 #endif
4632 #endif
4634 /* NFS can report a write failure now. */
4635 if (close (desc) < 0)
4636 failure = 1, save_errno = errno;
4638 #ifdef VMS
4639 /* If we wrote to a temporary name and had no errors, rename to real name. */
4640 if (fname)
4642 if (!failure)
4643 failure = (rename (fn, fname) != 0), save_errno = errno;
4644 fn = fname;
4646 #endif /* VMS */
4648 #ifndef FOO
4649 stat (fn, &st);
4650 #endif
4651 /* Discard the unwind protect for close_file_unwind. */
4652 specpdl_ptr = specpdl + count1;
4653 /* Restore the original current buffer. */
4654 visit_file = unbind_to (count, visit_file);
4656 #ifdef CLASH_DETECTION
4657 if (!auto_saving)
4658 unlock_file (lockname);
4659 #endif /* CLASH_DETECTION */
4661 /* Do this before reporting IO error
4662 to avoid a "file has changed on disk" warning on
4663 next attempt to save. */
4664 if (visiting)
4665 current_buffer->modtime = st.st_mtime;
4667 if (failure)
4668 error ("IO error writing %s: %s", XSTRING (filename)->data,
4669 strerror (save_errno));
4671 if (visiting)
4673 SAVE_MODIFF = MODIFF;
4674 XSETFASTINT (current_buffer->save_length, Z - BEG);
4675 current_buffer->filename = visit_file;
4676 update_mode_lines++;
4678 else if (quietly)
4679 return Qnil;
4681 if (!auto_saving)
4682 message_with_string ("Wrote %s", visit_file, 1);
4684 return Qnil;
4687 Lisp_Object merge ();
4689 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
4690 "Return t if (car A) is numerically less than (car B).")
4691 (a, b)
4692 Lisp_Object a, b;
4694 return Flss (Fcar (a), Fcar (b));
4697 /* Build the complete list of annotations appropriate for writing out
4698 the text between START and END, by calling all the functions in
4699 write-region-annotate-functions and merging the lists they return.
4700 If one of these functions switches to a different buffer, we assume
4701 that buffer contains altered text. Therefore, the caller must
4702 make sure to restore the current buffer in all cases,
4703 as save-excursion would do. */
4705 static Lisp_Object
4706 build_annotations (start, end, pre_write_conversion)
4707 Lisp_Object start, end, pre_write_conversion;
4709 Lisp_Object annotations;
4710 Lisp_Object p, res;
4711 struct gcpro gcpro1, gcpro2;
4712 Lisp_Object original_buffer;
4714 XSETBUFFER (original_buffer, current_buffer);
4716 annotations = Qnil;
4717 p = Vwrite_region_annotate_functions;
4718 GCPRO2 (annotations, p);
4719 while (!NILP (p))
4721 struct buffer *given_buffer = current_buffer;
4722 Vwrite_region_annotations_so_far = annotations;
4723 res = call2 (Fcar (p), start, end);
4724 /* If the function makes a different buffer current,
4725 assume that means this buffer contains altered text to be output.
4726 Reset START and END from the buffer bounds
4727 and discard all previous annotations because they should have
4728 been dealt with by this function. */
4729 if (current_buffer != given_buffer)
4731 XSETFASTINT (start, BEGV);
4732 XSETFASTINT (end, ZV);
4733 annotations = Qnil;
4735 Flength (res); /* Check basic validity of return value */
4736 annotations = merge (annotations, res, Qcar_less_than_car);
4737 p = Fcdr (p);
4740 /* Now do the same for annotation functions implied by the file-format */
4741 if (auto_saving && (!EQ (Vauto_save_file_format, Qt)))
4742 p = Vauto_save_file_format;
4743 else
4744 p = current_buffer->file_format;
4745 while (!NILP (p))
4747 struct buffer *given_buffer = current_buffer;
4748 Vwrite_region_annotations_so_far = annotations;
4749 res = call4 (Qformat_annotate_function, Fcar (p), start, end,
4750 original_buffer);
4751 if (current_buffer != given_buffer)
4753 XSETFASTINT (start, BEGV);
4754 XSETFASTINT (end, ZV);
4755 annotations = Qnil;
4757 Flength (res);
4758 annotations = merge (annotations, res, Qcar_less_than_car);
4759 p = Fcdr (p);
4762 /* At last, do the same for the function PRE_WRITE_CONVERSION
4763 implied by the current coding-system. */
4764 if (!NILP (pre_write_conversion))
4766 struct buffer *given_buffer = current_buffer;
4767 Vwrite_region_annotations_so_far = annotations;
4768 res = call2 (pre_write_conversion, start, end);
4769 Flength (res);
4770 annotations = (current_buffer != given_buffer
4771 ? res
4772 : merge (annotations, res, Qcar_less_than_car));
4775 UNGCPRO;
4776 return annotations;
4779 /* Write to descriptor DESC the NBYTES bytes starting at ADDR,
4780 assuming they start at byte position BYTEPOS in the buffer.
4781 Intersperse with them the annotations from *ANNOT
4782 which fall within the range of byte positions BYTEPOS to BYTEPOS + NBYTES,
4783 each at its appropriate position.
4785 We modify *ANNOT by discarding elements as we use them up.
4787 The return value is negative in case of system call failure. */
4789 static int
4790 a_write (desc, addr, nbytes, bytepos, annot, coding)
4791 int desc;
4792 register char *addr;
4793 register int nbytes;
4794 int bytepos;
4795 Lisp_Object *annot;
4796 struct coding_system *coding;
4798 Lisp_Object tem;
4799 int nextpos;
4800 int lastpos = bytepos + nbytes;
4802 while (NILP (*annot) || CONSP (*annot))
4804 tem = Fcar_safe (Fcar (*annot));
4805 nextpos = bytepos - 1;
4806 if (INTEGERP (tem))
4807 nextpos = CHAR_TO_BYTE (XFASTINT (tem));
4809 /* If there are no more annotations in this range,
4810 output the rest of the range all at once. */
4811 if (! (nextpos >= bytepos && nextpos <= lastpos))
4812 return e_write (desc, addr, lastpos - bytepos, coding);
4814 /* Output buffer text up to the next annotation's position. */
4815 if (nextpos > bytepos)
4817 if (0 > e_write (desc, addr, nextpos - bytepos, coding))
4818 return -1;
4819 addr += nextpos - bytepos;
4820 bytepos = nextpos;
4822 /* Output the annotation. */
4823 tem = Fcdr (Fcar (*annot));
4824 if (STRINGP (tem))
4826 if (0 > e_write (desc, XSTRING (tem)->data, STRING_BYTES (XSTRING (tem)),
4827 coding))
4828 return -1;
4830 *annot = Fcdr (*annot);
4832 return 0;
4835 #ifndef WRITE_BUF_SIZE
4836 #define WRITE_BUF_SIZE (16 * 1024)
4837 #endif
4839 /* Write NBYTES bytes starting at ADDR into descriptor DESC,
4840 encoding them with coding system CODING. */
4842 static int
4843 e_write (desc, addr, nbytes, coding)
4844 int desc;
4845 register char *addr;
4846 register int nbytes;
4847 struct coding_system *coding;
4849 char buf[WRITE_BUF_SIZE];
4851 /* We used to have a code for handling selective display here. But,
4852 now it is handled within encode_coding. */
4853 while (1)
4855 int result;
4857 result = encode_coding (coding, addr, buf, nbytes, WRITE_BUF_SIZE);
4858 nbytes -= coding->consumed, addr += coding->consumed;
4859 if (coding->produced > 0)
4861 coding->produced -= write (desc, buf, coding->produced);
4862 if (coding->produced) return -1;
4864 if (result == CODING_FINISH_INSUFFICIENT_SRC)
4866 /* The source text ends by an incomplete multibyte form.
4867 There's no way other than write it out as is. */
4868 nbytes -= write (desc, addr, nbytes);
4869 if (nbytes) return -1;
4871 if (nbytes <= 0)
4872 break;
4874 return 0;
4877 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
4878 Sverify_visited_file_modtime, 1, 1, 0,
4879 "Return t if last mod time of BUF's visited file matches what BUF records.\n\
4880 This means that the file has not been changed since it was visited or saved.")
4881 (buf)
4882 Lisp_Object buf;
4884 struct buffer *b;
4885 struct stat st;
4886 Lisp_Object handler;
4887 Lisp_Object filename;
4889 CHECK_BUFFER (buf, 0);
4890 b = XBUFFER (buf);
4892 if (!STRINGP (b->filename)) return Qt;
4893 if (b->modtime == 0) return Qt;
4895 /* If the file name has special constructs in it,
4896 call the corresponding file handler. */
4897 handler = Ffind_file_name_handler (b->filename,
4898 Qverify_visited_file_modtime);
4899 if (!NILP (handler))
4900 return call2 (handler, Qverify_visited_file_modtime, buf);
4902 filename = ENCODE_FILE (b->filename);
4904 if (stat (XSTRING (filename)->data, &st) < 0)
4906 /* If the file doesn't exist now and didn't exist before,
4907 we say that it isn't modified, provided the error is a tame one. */
4908 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
4909 st.st_mtime = -1;
4910 else
4911 st.st_mtime = 0;
4913 if (st.st_mtime == b->modtime
4914 /* If both are positive, accept them if they are off by one second. */
4915 || (st.st_mtime > 0 && b->modtime > 0
4916 && (st.st_mtime == b->modtime + 1
4917 || st.st_mtime == b->modtime - 1)))
4918 return Qt;
4919 return Qnil;
4922 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
4923 Sclear_visited_file_modtime, 0, 0, 0,
4924 "Clear out records of last mod time of visited file.\n\
4925 Next attempt to save will certainly not complain of a discrepancy.")
4928 current_buffer->modtime = 0;
4929 return Qnil;
4932 DEFUN ("visited-file-modtime", Fvisited_file_modtime,
4933 Svisited_file_modtime, 0, 0, 0,
4934 "Return the current buffer's recorded visited file modification time.\n\
4935 The value is a list of the form (HIGH . LOW), like the time values\n\
4936 that `file-attributes' returns.")
4939 return long_to_cons ((unsigned long) current_buffer->modtime);
4942 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
4943 Sset_visited_file_modtime, 0, 1, 0,
4944 "Update buffer's recorded modification time from the visited file's time.\n\
4945 Useful if the buffer was not read from the file normally\n\
4946 or if the file itself has been changed for some known benign reason.\n\
4947 An argument specifies the modification time value to use\n\
4948 \(instead of that of the visited file), in the form of a list\n\
4949 \(HIGH . LOW) or (HIGH LOW).")
4950 (time_list)
4951 Lisp_Object time_list;
4953 if (!NILP (time_list))
4954 current_buffer->modtime = cons_to_long (time_list);
4955 else
4957 register Lisp_Object filename;
4958 struct stat st;
4959 Lisp_Object handler;
4961 filename = Fexpand_file_name (current_buffer->filename, Qnil);
4963 /* If the file name has special constructs in it,
4964 call the corresponding file handler. */
4965 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
4966 if (!NILP (handler))
4967 /* The handler can find the file name the same way we did. */
4968 return call2 (handler, Qset_visited_file_modtime, Qnil);
4970 filename = ENCODE_FILE (filename);
4972 if (stat (XSTRING (filename)->data, &st) >= 0)
4973 current_buffer->modtime = st.st_mtime;
4976 return Qnil;
4979 Lisp_Object
4980 auto_save_error ()
4982 ring_bell ();
4983 message_with_string ("Autosaving...error for %s", current_buffer->name, 1);
4984 Fsleep_for (make_number (1), Qnil);
4985 message_with_string ("Autosaving...error for %s", current_buffer->name, 0);
4986 Fsleep_for (make_number (1), Qnil);
4987 message_with_string ("Autosaving...error for %s", current_buffer->name, 0);
4988 Fsleep_for (make_number (1), Qnil);
4989 return Qnil;
4992 Lisp_Object
4993 auto_save_1 ()
4995 unsigned char *fn;
4996 struct stat st;
4998 /* Get visited file's mode to become the auto save file's mode. */
4999 if (stat (XSTRING (current_buffer->filename)->data, &st) >= 0)
5000 /* But make sure we can overwrite it later! */
5001 auto_save_mode_bits = st.st_mode | 0600;
5002 else
5003 auto_save_mode_bits = 0666;
5005 return
5006 Fwrite_region (Qnil, Qnil,
5007 current_buffer->auto_save_file_name,
5008 Qnil, Qlambda, Qnil, Qnil);
5011 static Lisp_Object
5012 do_auto_save_unwind (stream) /* used as unwind-protect function */
5013 Lisp_Object stream;
5015 auto_saving = 0;
5016 if (!NILP (stream))
5017 fclose ((FILE *) (XFASTINT (XCONS (stream)->car) << 16
5018 | XFASTINT (XCONS (stream)->cdr)));
5019 return Qnil;
5022 static Lisp_Object
5023 do_auto_save_unwind_1 (value) /* used as unwind-protect function */
5024 Lisp_Object value;
5026 minibuffer_auto_raise = XINT (value);
5027 return Qnil;
5030 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
5031 "Auto-save all buffers that need it.\n\
5032 This is all buffers that have auto-saving enabled\n\
5033 and are changed since last auto-saved.\n\
5034 Auto-saving writes the buffer into a file\n\
5035 so that your editing is not lost if the system crashes.\n\
5036 This file is not the file you visited; that changes only when you save.\n\
5037 Normally we run the normal hook `auto-save-hook' before saving.\n\n\
5038 A non-nil NO-MESSAGE argument means do not print any message if successful.\n\
5039 A non-nil CURRENT-ONLY argument means save only current buffer.")
5040 (no_message, current_only)
5041 Lisp_Object no_message, current_only;
5043 struct buffer *old = current_buffer, *b;
5044 Lisp_Object tail, buf;
5045 int auto_saved = 0;
5046 char *omessage = echo_area_glyphs;
5047 int omessage_length = echo_area_glyphs_length;
5048 int oldmultibyte = message_enable_multibyte;
5049 int do_handled_files;
5050 Lisp_Object oquit;
5051 FILE *stream;
5052 Lisp_Object lispstream;
5053 int count = specpdl_ptr - specpdl;
5054 int *ptr;
5055 int orig_minibuffer_auto_raise = minibuffer_auto_raise;
5057 /* Ordinarily don't quit within this function,
5058 but don't make it impossible to quit (in case we get hung in I/O). */
5059 oquit = Vquit_flag;
5060 Vquit_flag = Qnil;
5062 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5063 point to non-strings reached from Vbuffer_alist. */
5065 if (minibuf_level)
5066 no_message = Qt;
5068 if (!NILP (Vrun_hooks))
5069 call1 (Vrun_hooks, intern ("auto-save-hook"));
5071 if (STRINGP (Vauto_save_list_file_name))
5073 Lisp_Object listfile;
5074 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
5075 stream = fopen (XSTRING (listfile)->data, "w");
5076 if (stream != NULL)
5078 /* Arrange to close that file whether or not we get an error.
5079 Also reset auto_saving to 0. */
5080 lispstream = Fcons (Qnil, Qnil);
5081 XSETFASTINT (XCONS (lispstream)->car, (EMACS_UINT)stream >> 16);
5082 XSETFASTINT (XCONS (lispstream)->cdr, (EMACS_UINT)stream & 0xffff);
5084 else
5085 lispstream = Qnil;
5087 else
5089 stream = NULL;
5090 lispstream = Qnil;
5093 record_unwind_protect (do_auto_save_unwind, lispstream);
5094 record_unwind_protect (do_auto_save_unwind_1,
5095 make_number (minibuffer_auto_raise));
5096 minibuffer_auto_raise = 0;
5097 auto_saving = 1;
5099 /* First, save all files which don't have handlers. If Emacs is
5100 crashing, the handlers may tweak what is causing Emacs to crash
5101 in the first place, and it would be a shame if Emacs failed to
5102 autosave perfectly ordinary files because it couldn't handle some
5103 ange-ftp'd file. */
5104 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
5105 for (tail = Vbuffer_alist; GC_CONSP (tail); tail = XCONS (tail)->cdr)
5107 buf = XCONS (XCONS (tail)->car)->cdr;
5108 b = XBUFFER (buf);
5110 /* Record all the buffers that have auto save mode
5111 in the special file that lists them. For each of these buffers,
5112 Record visited name (if any) and auto save name. */
5113 if (STRINGP (b->auto_save_file_name)
5114 && stream != NULL && do_handled_files == 0)
5116 if (!NILP (b->filename))
5118 fwrite (XSTRING (b->filename)->data, 1,
5119 STRING_BYTES (XSTRING (b->filename)), stream);
5121 putc ('\n', stream);
5122 fwrite (XSTRING (b->auto_save_file_name)->data, 1,
5123 STRING_BYTES (XSTRING (b->auto_save_file_name)), stream);
5124 putc ('\n', stream);
5127 if (!NILP (current_only)
5128 && b != current_buffer)
5129 continue;
5131 /* Don't auto-save indirect buffers.
5132 The base buffer takes care of it. */
5133 if (b->base_buffer)
5134 continue;
5136 /* Check for auto save enabled
5137 and file changed since last auto save
5138 and file changed since last real save. */
5139 if (STRINGP (b->auto_save_file_name)
5140 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
5141 && b->auto_save_modified < BUF_MODIFF (b)
5142 /* -1 means we've turned off autosaving for a while--see below. */
5143 && XINT (b->save_length) >= 0
5144 && (do_handled_files
5145 || NILP (Ffind_file_name_handler (b->auto_save_file_name,
5146 Qwrite_region))))
5148 EMACS_TIME before_time, after_time;
5150 EMACS_GET_TIME (before_time);
5152 /* If we had a failure, don't try again for 20 minutes. */
5153 if (b->auto_save_failure_time >= 0
5154 && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200)
5155 continue;
5157 if ((XFASTINT (b->save_length) * 10
5158 > (BUF_Z (b) - BUF_BEG (b)) * 13)
5159 /* A short file is likely to change a large fraction;
5160 spare the user annoying messages. */
5161 && XFASTINT (b->save_length) > 5000
5162 /* These messages are frequent and annoying for `*mail*'. */
5163 && !EQ (b->filename, Qnil)
5164 && NILP (no_message))
5166 /* It has shrunk too much; turn off auto-saving here. */
5167 minibuffer_auto_raise = orig_minibuffer_auto_raise;
5168 message_with_string ("Buffer %s has shrunk a lot; auto save turned off there",
5169 b->name, 1);
5170 minibuffer_auto_raise = 0;
5171 /* Turn off auto-saving until there's a real save,
5172 and prevent any more warnings. */
5173 XSETINT (b->save_length, -1);
5174 Fsleep_for (make_number (1), Qnil);
5175 continue;
5177 set_buffer_internal (b);
5178 if (!auto_saved && NILP (no_message))
5179 message1 ("Auto-saving...");
5180 internal_condition_case (auto_save_1, Qt, auto_save_error);
5181 auto_saved++;
5182 b->auto_save_modified = BUF_MODIFF (b);
5183 XSETFASTINT (current_buffer->save_length, Z - BEG);
5184 set_buffer_internal (old);
5186 EMACS_GET_TIME (after_time);
5188 /* If auto-save took more than 60 seconds,
5189 assume it was an NFS failure that got a timeout. */
5190 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
5191 b->auto_save_failure_time = EMACS_SECS (after_time);
5195 /* Prevent another auto save till enough input events come in. */
5196 record_auto_save ();
5198 if (auto_saved && NILP (no_message))
5200 if (omessage)
5202 sit_for (1, 0, 0, 0, 0);
5203 message2 (omessage, omessage_length, oldmultibyte);
5205 else
5206 message1 ("Auto-saving...done");
5209 Vquit_flag = oquit;
5211 unbind_to (count, Qnil);
5212 return Qnil;
5215 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
5216 Sset_buffer_auto_saved, 0, 0, 0,
5217 "Mark current buffer as auto-saved with its current text.\n\
5218 No auto-save file will be written until the buffer changes again.")
5221 current_buffer->auto_save_modified = MODIFF;
5222 XSETFASTINT (current_buffer->save_length, Z - BEG);
5223 current_buffer->auto_save_failure_time = -1;
5224 return Qnil;
5227 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
5228 Sclear_buffer_auto_save_failure, 0, 0, 0,
5229 "Clear any record of a recent auto-save failure in the current buffer.")
5232 current_buffer->auto_save_failure_time = -1;
5233 return Qnil;
5236 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
5237 0, 0, 0,
5238 "Return t if buffer has been auto-saved since last read in or saved.")
5241 return (SAVE_MODIFF < current_buffer->auto_save_modified) ? Qt : Qnil;
5244 /* Reading and completing file names */
5245 extern Lisp_Object Ffile_name_completion (), Ffile_name_all_completions ();
5247 /* In the string VAL, change each $ to $$ and return the result. */
5249 static Lisp_Object
5250 double_dollars (val)
5251 Lisp_Object val;
5253 register unsigned char *old, *new;
5254 register int n;
5255 int osize, count;
5257 osize = STRING_BYTES (XSTRING (val));
5259 /* Count the number of $ characters. */
5260 for (n = osize, count = 0, old = XSTRING (val)->data; n > 0; n--)
5261 if (*old++ == '$') count++;
5262 if (count > 0)
5264 old = XSTRING (val)->data;
5265 val = make_uninit_multibyte_string (XSTRING (val)->size + count,
5266 osize + count);
5267 new = XSTRING (val)->data;
5268 for (n = osize; n > 0; n--)
5269 if (*old != '$')
5270 *new++ = *old++;
5271 else
5273 *new++ = '$';
5274 *new++ = '$';
5275 old++;
5278 return val;
5281 DEFUN ("read-file-name-internal", Fread_file_name_internal, Sread_file_name_internal,
5282 3, 3, 0,
5283 "Internal subroutine for read-file-name. Do not call this.")
5284 (string, dir, action)
5285 Lisp_Object string, dir, action;
5286 /* action is nil for complete, t for return list of completions,
5287 lambda for verify final value */
5289 Lisp_Object name, specdir, realdir, val, orig_string;
5290 int changed;
5291 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
5293 CHECK_STRING (string, 0);
5295 realdir = dir;
5296 name = string;
5297 orig_string = Qnil;
5298 specdir = Qnil;
5299 changed = 0;
5300 /* No need to protect ACTION--we only compare it with t and nil. */
5301 GCPRO5 (string, realdir, name, specdir, orig_string);
5303 if (XSTRING (string)->size == 0)
5305 if (EQ (action, Qlambda))
5307 UNGCPRO;
5308 return Qnil;
5311 else
5313 orig_string = string;
5314 string = Fsubstitute_in_file_name (string);
5315 changed = NILP (Fstring_equal (string, orig_string));
5316 name = Ffile_name_nondirectory (string);
5317 val = Ffile_name_directory (string);
5318 if (! NILP (val))
5319 realdir = Fexpand_file_name (val, realdir);
5322 if (NILP (action))
5324 specdir = Ffile_name_directory (string);
5325 val = Ffile_name_completion (name, realdir);
5326 UNGCPRO;
5327 if (!STRINGP (val))
5329 if (changed)
5330 return double_dollars (string);
5331 return val;
5334 if (!NILP (specdir))
5335 val = concat2 (specdir, val);
5336 #ifndef VMS
5337 return double_dollars (val);
5338 #else /* not VMS */
5339 return val;
5340 #endif /* not VMS */
5342 UNGCPRO;
5344 if (EQ (action, Qt))
5345 return Ffile_name_all_completions (name, realdir);
5346 /* Only other case actually used is ACTION = lambda */
5347 #ifdef VMS
5348 /* Supposedly this helps commands such as `cd' that read directory names,
5349 but can someone explain how it helps them? -- RMS */
5350 if (XSTRING (name)->size == 0)
5351 return Qt;
5352 #endif /* VMS */
5353 return Ffile_exists_p (string);
5356 DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 5, 0,
5357 "Read file name, prompting with PROMPT and completing in directory DIR.\n\
5358 Value is not expanded---you must call `expand-file-name' yourself.\n\
5359 Default name to DEFAULT-FILENAME if user enters a null string.\n\
5360 (If DEFAULT-FILENAME is omitted, the visited file name is used,\n\
5361 except that if INITIAL is specified, that combined with DIR is used.)\n\
5362 Fourth arg MUSTMATCH non-nil means require existing file's name.\n\
5363 Non-nil and non-t means also require confirmation after completion.\n\
5364 Fifth arg INITIAL specifies text to start with.\n\
5365 DIR defaults to current buffer's directory default.")
5366 (prompt, dir, default_filename, mustmatch, initial)
5367 Lisp_Object prompt, dir, default_filename, mustmatch, initial;
5369 Lisp_Object val, insdef, insdef1, tem;
5370 struct gcpro gcpro1, gcpro2;
5371 register char *homedir;
5372 int replace_in_history = 0;
5373 int add_to_history = 0;
5374 int count;
5376 if (NILP (dir))
5377 dir = current_buffer->directory;
5378 if (NILP (default_filename))
5380 if (! NILP (initial))
5381 default_filename = Fexpand_file_name (initial, dir);
5382 else
5383 default_filename = current_buffer->filename;
5386 /* If dir starts with user's homedir, change that to ~. */
5387 homedir = (char *) egetenv ("HOME");
5388 #ifdef DOS_NT
5389 homedir = strcpy (alloca (strlen (homedir) + 1), homedir);
5390 CORRECT_DIR_SEPS (homedir);
5391 #endif
5392 if (homedir != 0
5393 && STRINGP (dir)
5394 && !strncmp (homedir, XSTRING (dir)->data, strlen (homedir))
5395 && IS_DIRECTORY_SEP (XSTRING (dir)->data[strlen (homedir)]))
5397 dir = make_string (XSTRING (dir)->data + strlen (homedir) - 1,
5398 STRING_BYTES (XSTRING (dir)) - strlen (homedir) + 1);
5399 XSTRING (dir)->data[0] = '~';
5402 if (insert_default_directory && STRINGP (dir))
5404 insdef = dir;
5405 if (!NILP (initial))
5407 Lisp_Object args[2], pos;
5409 args[0] = insdef;
5410 args[1] = initial;
5411 insdef = Fconcat (2, args);
5412 pos = make_number (XSTRING (double_dollars (dir))->size);
5413 insdef1 = Fcons (double_dollars (insdef), pos);
5415 else
5416 insdef1 = double_dollars (insdef);
5418 else if (STRINGP (initial))
5420 insdef = initial;
5421 insdef1 = Fcons (double_dollars (insdef), make_number (0));
5423 else
5424 insdef = Qnil, insdef1 = Qnil;
5426 count = specpdl_ptr - specpdl;
5427 #ifdef VMS
5428 specbind (intern ("completion-ignore-case"), Qt);
5429 #endif
5431 specbind (intern ("minibuffer-completing-file-name"), Qt);
5433 GCPRO2 (insdef, default_filename);
5434 val = Fcompleting_read (prompt, intern ("read-file-name-internal"),
5435 dir, mustmatch, insdef1,
5436 Qfile_name_history, default_filename, Qnil);
5438 tem = Fsymbol_value (Qfile_name_history);
5439 if (CONSP (tem) && EQ (XCONS (tem)->car, val))
5440 replace_in_history = 1;
5442 /* If Fcompleting_read returned the inserted default string itself
5443 (rather than a new string with the same contents),
5444 it has to mean that the user typed RET with the minibuffer empty.
5445 In that case, we really want to return ""
5446 so that commands such as set-visited-file-name can distinguish. */
5447 if (EQ (val, default_filename))
5449 /* In this case, Fcompleting_read has not added an element
5450 to the history. Maybe we should. */
5451 if (! replace_in_history)
5452 add_to_history = 1;
5454 val = build_string ("");
5457 unbind_to (count, Qnil);
5458 UNGCPRO;
5459 if (NILP (val))
5460 error ("No file name specified");
5462 tem = Fstring_equal (val, insdef);
5464 if (!NILP (tem) && !NILP (default_filename))
5465 val = default_filename;
5466 else if (XSTRING (val)->size == 0 && NILP (insdef))
5468 if (!NILP (default_filename))
5469 val = default_filename;
5470 else
5471 error ("No default file name");
5473 val = Fsubstitute_in_file_name (val);
5475 if (replace_in_history)
5476 /* Replace what Fcompleting_read added to the history
5477 with what we will actually return. */
5478 XCONS (Fsymbol_value (Qfile_name_history))->car = val;
5479 else if (add_to_history)
5481 /* Add the value to the history--but not if it matches
5482 the last value already there. */
5483 tem = Fsymbol_value (Qfile_name_history);
5484 if (! CONSP (tem) || NILP (Fequal (XCONS (tem)->car, val)))
5485 Fset (Qfile_name_history,
5486 Fcons (val, tem));
5488 return val;
5491 void
5492 syms_of_fileio ()
5494 Qexpand_file_name = intern ("expand-file-name");
5495 Qsubstitute_in_file_name = intern ("substitute-in-file-name");
5496 Qdirectory_file_name = intern ("directory-file-name");
5497 Qfile_name_directory = intern ("file-name-directory");
5498 Qfile_name_nondirectory = intern ("file-name-nondirectory");
5499 Qunhandled_file_name_directory = intern ("unhandled-file-name-directory");
5500 Qfile_name_as_directory = intern ("file-name-as-directory");
5501 Qcopy_file = intern ("copy-file");
5502 Qmake_directory_internal = intern ("make-directory-internal");
5503 Qdelete_directory = intern ("delete-directory");
5504 Qdelete_file = intern ("delete-file");
5505 Qrename_file = intern ("rename-file");
5506 Qadd_name_to_file = intern ("add-name-to-file");
5507 Qmake_symbolic_link = intern ("make-symbolic-link");
5508 Qfile_exists_p = intern ("file-exists-p");
5509 Qfile_executable_p = intern ("file-executable-p");
5510 Qfile_readable_p = intern ("file-readable-p");
5511 Qfile_writable_p = intern ("file-writable-p");
5512 Qfile_symlink_p = intern ("file-symlink-p");
5513 Qaccess_file = intern ("access-file");
5514 Qfile_directory_p = intern ("file-directory-p");
5515 Qfile_regular_p = intern ("file-regular-p");
5516 Qfile_accessible_directory_p = intern ("file-accessible-directory-p");
5517 Qfile_modes = intern ("file-modes");
5518 Qset_file_modes = intern ("set-file-modes");
5519 Qfile_newer_than_file_p = intern ("file-newer-than-file-p");
5520 Qinsert_file_contents = intern ("insert-file-contents");
5521 Qwrite_region = intern ("write-region");
5522 Qverify_visited_file_modtime = intern ("verify-visited-file-modtime");
5523 Qset_visited_file_modtime = intern ("set-visited-file-modtime");
5525 staticpro (&Qexpand_file_name);
5526 staticpro (&Qsubstitute_in_file_name);
5527 staticpro (&Qdirectory_file_name);
5528 staticpro (&Qfile_name_directory);
5529 staticpro (&Qfile_name_nondirectory);
5530 staticpro (&Qunhandled_file_name_directory);
5531 staticpro (&Qfile_name_as_directory);
5532 staticpro (&Qcopy_file);
5533 staticpro (&Qmake_directory_internal);
5534 staticpro (&Qdelete_directory);
5535 staticpro (&Qdelete_file);
5536 staticpro (&Qrename_file);
5537 staticpro (&Qadd_name_to_file);
5538 staticpro (&Qmake_symbolic_link);
5539 staticpro (&Qfile_exists_p);
5540 staticpro (&Qfile_executable_p);
5541 staticpro (&Qfile_readable_p);
5542 staticpro (&Qfile_writable_p);
5543 staticpro (&Qaccess_file);
5544 staticpro (&Qfile_symlink_p);
5545 staticpro (&Qfile_directory_p);
5546 staticpro (&Qfile_regular_p);
5547 staticpro (&Qfile_accessible_directory_p);
5548 staticpro (&Qfile_modes);
5549 staticpro (&Qset_file_modes);
5550 staticpro (&Qfile_newer_than_file_p);
5551 staticpro (&Qinsert_file_contents);
5552 staticpro (&Qwrite_region);
5553 staticpro (&Qverify_visited_file_modtime);
5554 staticpro (&Qset_visited_file_modtime);
5556 Qfile_name_history = intern ("file-name-history");
5557 Fset (Qfile_name_history, Qnil);
5558 staticpro (&Qfile_name_history);
5560 Qfile_error = intern ("file-error");
5561 staticpro (&Qfile_error);
5562 Qfile_already_exists = intern ("file-already-exists");
5563 staticpro (&Qfile_already_exists);
5564 Qfile_date_error = intern ("file-date-error");
5565 staticpro (&Qfile_date_error);
5567 #ifdef DOS_NT
5568 Qfind_buffer_file_type = intern ("find-buffer-file-type");
5569 staticpro (&Qfind_buffer_file_type);
5570 #endif /* DOS_NT */
5572 DEFVAR_LISP ("file-name-coding-system", &Vfile_name_coding_system,
5573 "*Coding system for encoding file names.\n\
5574 If it is nil, default-file-name-coding-system (which see) is used.");
5575 Vfile_name_coding_system = Qnil;
5577 DEFVAR_LISP ("default-file-name-coding-system",
5578 &Vdefault_file_name_coding_system,
5579 "Default coding system for encoding file names.\n\
5580 This variable is used only when file-name-coding-system is nil.\n\
5582 This variable is set/changed by the command set-language-environment.\n\
5583 User should not set this variable manually,\n\
5584 instead use file-name-coding-system to get a constant encoding\n\
5585 of file names regardless of the current language environment.");
5586 Vdefault_file_name_coding_system = Qnil;
5588 DEFVAR_LISP ("auto-save-file-format", &Vauto_save_file_format,
5589 "*Format in which to write auto-save files.\n\
5590 Should be a list of symbols naming formats that are defined in `format-alist'.\n\
5591 If it is t, which is the default, auto-save files are written in the\n\
5592 same format as a regular save would use.");
5593 Vauto_save_file_format = Qt;
5595 Qformat_decode = intern ("format-decode");
5596 staticpro (&Qformat_decode);
5597 Qformat_annotate_function = intern ("format-annotate-function");
5598 staticpro (&Qformat_annotate_function);
5600 Qcar_less_than_car = intern ("car-less-than-car");
5601 staticpro (&Qcar_less_than_car);
5603 Fput (Qfile_error, Qerror_conditions,
5604 Fcons (Qfile_error, Fcons (Qerror, Qnil)));
5605 Fput (Qfile_error, Qerror_message,
5606 build_string ("File error"));
5608 Fput (Qfile_already_exists, Qerror_conditions,
5609 Fcons (Qfile_already_exists,
5610 Fcons (Qfile_error, Fcons (Qerror, Qnil))));
5611 Fput (Qfile_already_exists, Qerror_message,
5612 build_string ("File already exists"));
5614 Fput (Qfile_date_error, Qerror_conditions,
5615 Fcons (Qfile_date_error,
5616 Fcons (Qfile_error, Fcons (Qerror, Qnil))));
5617 Fput (Qfile_date_error, Qerror_message,
5618 build_string ("Cannot set file date"));
5620 DEFVAR_BOOL ("insert-default-directory", &insert_default_directory,
5621 "*Non-nil means when reading a filename start with default dir in minibuffer.");
5622 insert_default_directory = 1;
5624 DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm,
5625 "*Non-nil means write new files with record format `stmlf'.\n\
5626 nil means use format `var'. This variable is meaningful only on VMS.");
5627 vms_stmlf_recfm = 0;
5629 DEFVAR_LISP ("directory-sep-char", &Vdirectory_sep_char,
5630 "Directory separator character for built-in functions that return file names.\n\
5631 The value should be either ?/ or ?\\ (any other value is treated as ?\\).\n\
5632 This variable affects the built-in functions only on Windows,\n\
5633 on other platforms, it is initialized so that Lisp code can find out\n\
5634 what the normal separator is.");
5635 XSETFASTINT (Vdirectory_sep_char, '/');
5637 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist,
5638 "*Alist of elements (REGEXP . HANDLER) for file names handled specially.\n\
5639 If a file name matches REGEXP, then all I/O on that file is done by calling\n\
5640 HANDLER.\n\
5642 The first argument given to HANDLER is the name of the I/O primitive\n\
5643 to be handled; the remaining arguments are the arguments that were\n\
5644 passed to that primitive. For example, if you do\n\
5645 (file-exists-p FILENAME)\n\
5646 and FILENAME is handled by HANDLER, then HANDLER is called like this:\n\
5647 (funcall HANDLER 'file-exists-p FILENAME)\n\
5648 The function `find-file-name-handler' checks this list for a handler\n\
5649 for its argument.");
5650 Vfile_name_handler_alist = Qnil;
5652 DEFVAR_LISP ("set-auto-coding-function",
5653 &Vset_auto_coding_function,
5654 "If non-nil, a function to call to decide a coding system of file.\n\
5655 Two arguments are passed to this function: the file name\n\
5656 and the length of a file contents following the point.\n\
5657 This function should return a coding system to decode the file contents.\n\
5658 It should check the file name against `auto-coding-alist'.\n\
5659 If no coding system is decided, it should check a coding system\n\
5660 specified in the heading lines with the format:\n\
5661 -*- ... coding: CODING-SYSTEM; ... -*-\n\
5662 or local variable spec of the tailing lines with `coding:' tag.");
5663 Vset_auto_coding_function = Qnil;
5665 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions,
5666 "A list of functions to be called at the end of `insert-file-contents'.\n\
5667 Each is passed one argument, the number of bytes inserted. It should return\n\
5668 the new byte count, and leave point the same. If `insert-file-contents' is\n\
5669 intercepted by a handler from `file-name-handler-alist', that handler is\n\
5670 responsible for calling the after-insert-file-functions if appropriate.");
5671 Vafter_insert_file_functions = Qnil;
5673 DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions,
5674 "A list of functions to be called at the start of `write-region'.\n\
5675 Each is passed two arguments, START and END as for `write-region'.\n\
5676 These are usually two numbers but not always; see the documentation\n\
5677 for `write-region'. The function should return a list of pairs\n\
5678 of the form (POSITION . STRING), consisting of strings to be effectively\n\
5679 inserted at the specified positions of the file being written (1 means to\n\
5680 insert before the first byte written). The POSITIONs must be sorted into\n\
5681 increasing order. If there are several functions in the list, the several\n\
5682 lists are merged destructively.");
5683 Vwrite_region_annotate_functions = Qnil;
5685 DEFVAR_LISP ("write-region-annotations-so-far",
5686 &Vwrite_region_annotations_so_far,
5687 "When an annotation function is called, this holds the previous annotations.\n\
5688 These are the annotations made by other annotation functions\n\
5689 that were already called. See also `write-region-annotate-functions'.");
5690 Vwrite_region_annotations_so_far = Qnil;
5692 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers,
5693 "A list of file name handlers that temporarily should not be used.\n\
5694 This applies only to the operation `inhibit-file-name-operation'.");
5695 Vinhibit_file_name_handlers = Qnil;
5697 DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation,
5698 "The operation for which `inhibit-file-name-handlers' is applicable.");
5699 Vinhibit_file_name_operation = Qnil;
5701 DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name,
5702 "File name in which we write a list of all auto save file names.\n\
5703 This variable is initialized automatically from `auto-save-list-file-prefix'\n\
5704 shortly after Emacs reads your `.emacs' file, if you have not yet given it\n\
5705 a non-nil value.");
5706 Vauto_save_list_file_name = Qnil;
5708 defsubr (&Sfind_file_name_handler);
5709 defsubr (&Sfile_name_directory);
5710 defsubr (&Sfile_name_nondirectory);
5711 defsubr (&Sunhandled_file_name_directory);
5712 defsubr (&Sfile_name_as_directory);
5713 defsubr (&Sdirectory_file_name);
5714 defsubr (&Smake_temp_name);
5715 defsubr (&Sexpand_file_name);
5716 defsubr (&Ssubstitute_in_file_name);
5717 defsubr (&Scopy_file);
5718 defsubr (&Smake_directory_internal);
5719 defsubr (&Sdelete_directory);
5720 defsubr (&Sdelete_file);
5721 defsubr (&Srename_file);
5722 defsubr (&Sadd_name_to_file);
5723 #ifdef S_IFLNK
5724 defsubr (&Smake_symbolic_link);
5725 #endif /* S_IFLNK */
5726 #ifdef VMS
5727 defsubr (&Sdefine_logical_name);
5728 #endif /* VMS */
5729 #ifdef HPUX_NET
5730 defsubr (&Ssysnetunam);
5731 #endif /* HPUX_NET */
5732 defsubr (&Sfile_name_absolute_p);
5733 defsubr (&Sfile_exists_p);
5734 defsubr (&Sfile_executable_p);
5735 defsubr (&Sfile_readable_p);
5736 defsubr (&Sfile_writable_p);
5737 defsubr (&Saccess_file);
5738 defsubr (&Sfile_symlink_p);
5739 defsubr (&Sfile_directory_p);
5740 defsubr (&Sfile_accessible_directory_p);
5741 defsubr (&Sfile_regular_p);
5742 defsubr (&Sfile_modes);
5743 defsubr (&Sset_file_modes);
5744 defsubr (&Sset_default_file_modes);
5745 defsubr (&Sdefault_file_modes);
5746 defsubr (&Sfile_newer_than_file_p);
5747 defsubr (&Sinsert_file_contents);
5748 defsubr (&Swrite_region);
5749 defsubr (&Scar_less_than_car);
5750 defsubr (&Sverify_visited_file_modtime);
5751 defsubr (&Sclear_visited_file_modtime);
5752 defsubr (&Svisited_file_modtime);
5753 defsubr (&Sset_visited_file_modtime);
5754 defsubr (&Sdo_auto_save);
5755 defsubr (&Sset_buffer_auto_saved);
5756 defsubr (&Sclear_buffer_auto_save_failure);
5757 defsubr (&Srecent_auto_save_p);
5759 defsubr (&Sread_file_name_internal);
5760 defsubr (&Sread_file_name);
5762 #ifdef unix
5763 defsubr (&Sunix_sync);
5764 #endif