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