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