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