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