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