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