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