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