Merge from trunk.
[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 printmax_t pid;
591 char *p, *data;
592 char pidbuf[INT_BUFSIZE_BOUND (printmax_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, "%"pMd, 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 (S_ISDIR (statbuf.st_mode))
1759 xsignal2 (Qfile_error,
1760 build_string ("File is a directory"), absname);
1761
1762 if (! interactive)
1763 xsignal2 (Qfile_already_exists,
1764 build_string ("File already exists"), absname);
1765 GCPRO1 (absname);
1766 tem = format2 ("File %s already exists; %s anyway? ",
1767 absname, build_string (querystring));
1768 if (quick)
1769 tem = call1 (intern ("y-or-n-p"), tem);
1770 else
1771 tem = do_yes_or_no_p (tem);
1772 UNGCPRO;
1773 if (NILP (tem))
1774 xsignal2 (Qfile_already_exists,
1775 build_string ("File already exists"), absname);
1776 if (statptr)
1777 *statptr = statbuf;
1778 }
1779 else
1780 {
1781 if (statptr)
1782 statptr->st_mode = 0;
1783 }
1784 return;
1785 }
1786
1787 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 6,
1788 "fCopy file: \nGCopy %s to file: \np\nP",
1789 doc: /* Copy FILE to NEWNAME. Both args must be strings.
1790 If NEWNAME names a directory, copy FILE there.
1791
1792 This function always sets the file modes of the output file to match
1793 the input file.
1794
1795 The optional third argument OK-IF-ALREADY-EXISTS specifies what to do
1796 if file NEWNAME already exists. If OK-IF-ALREADY-EXISTS is nil, we
1797 signal a `file-already-exists' error without overwriting. If
1798 OK-IF-ALREADY-EXISTS is a number, we request confirmation from the user
1799 about overwriting; this is what happens in interactive use with M-x.
1800 Any other value for OK-IF-ALREADY-EXISTS means to overwrite the
1801 existing file.
1802
1803 Fourth arg KEEP-TIME non-nil means give the output file the same
1804 last-modified time as the old one. (This works on only some systems.)
1805
1806 A prefix arg makes KEEP-TIME non-nil.
1807
1808 If PRESERVE-UID-GID is non-nil, we try to transfer the
1809 uid and gid of FILE to NEWNAME.
1810
1811 If PRESERVE-SELINUX-CONTEXT is non-nil and SELinux is enabled
1812 on the system, we copy the SELinux context of FILE to NEWNAME. */)
1813 (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)
1814 {
1815 int ifd, ofd;
1816 EMACS_INT n;
1817 char buf[16 * 1024];
1818 struct stat st, out_st;
1819 Lisp_Object handler;
1820 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1821 int count = SPECPDL_INDEX ();
1822 int input_file_statable_p;
1823 Lisp_Object encoded_file, encoded_newname;
1824 #if HAVE_LIBSELINUX
1825 security_context_t con;
1826 int fail, conlength = 0;
1827 #endif
1828
1829 encoded_file = encoded_newname = Qnil;
1830 GCPRO4 (file, newname, encoded_file, encoded_newname);
1831 CHECK_STRING (file);
1832 CHECK_STRING (newname);
1833
1834 if (!NILP (Ffile_directory_p (newname)))
1835 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
1836 else
1837 newname = Fexpand_file_name (newname, Qnil);
1838
1839 file = Fexpand_file_name (file, Qnil);
1840
1841 /* If the input file name has special constructs in it,
1842 call the corresponding file handler. */
1843 handler = Ffind_file_name_handler (file, Qcopy_file);
1844 /* Likewise for output file name. */
1845 if (NILP (handler))
1846 handler = Ffind_file_name_handler (newname, Qcopy_file);
1847 if (!NILP (handler))
1848 RETURN_UNGCPRO (call7 (handler, Qcopy_file, file, newname,
1849 ok_if_already_exists, keep_time, preserve_uid_gid,
1850 preserve_selinux_context));
1851
1852 encoded_file = ENCODE_FILE (file);
1853 encoded_newname = ENCODE_FILE (newname);
1854
1855 if (NILP (ok_if_already_exists)
1856 || INTEGERP (ok_if_already_exists))
1857 barf_or_query_if_file_exists (newname, "copy to it",
1858 INTEGERP (ok_if_already_exists), &out_st, 0);
1859 else if (stat (SSDATA (encoded_newname), &out_st) < 0)
1860 out_st.st_mode = 0;
1861
1862 #ifdef WINDOWSNT
1863 if (!CopyFile (SDATA (encoded_file),
1864 SDATA (encoded_newname),
1865 FALSE))
1866 report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil)));
1867 /* CopyFile retains the timestamp by default. */
1868 else if (NILP (keep_time))
1869 {
1870 EMACS_TIME now;
1871 DWORD attributes;
1872 char * filename;
1873
1874 EMACS_GET_TIME (now);
1875 filename = SDATA (encoded_newname);
1876
1877 /* Ensure file is writable while its modified time is set. */
1878 attributes = GetFileAttributes (filename);
1879 SetFileAttributes (filename, attributes & ~FILE_ATTRIBUTE_READONLY);
1880 if (set_file_times (filename, now, now))
1881 {
1882 /* Restore original attributes. */
1883 SetFileAttributes (filename, attributes);
1884 xsignal2 (Qfile_date_error,
1885 build_string ("Cannot set file date"), newname);
1886 }
1887 /* Restore original attributes. */
1888 SetFileAttributes (filename, attributes);
1889 }
1890 #else /* not WINDOWSNT */
1891 immediate_quit = 1;
1892 ifd = emacs_open (SSDATA (encoded_file), O_RDONLY, 0);
1893 immediate_quit = 0;
1894
1895 if (ifd < 0)
1896 report_file_error ("Opening input file", Fcons (file, Qnil));
1897
1898 record_unwind_protect (close_file_unwind, make_number (ifd));
1899
1900 /* We can only copy regular files and symbolic links. Other files are not
1901 copyable by us. */
1902 input_file_statable_p = (fstat (ifd, &st) >= 0);
1903
1904 #if HAVE_LIBSELINUX
1905 if (!NILP (preserve_selinux_context) && is_selinux_enabled ())
1906 {
1907 conlength = fgetfilecon (ifd, &con);
1908 if (conlength == -1)
1909 report_file_error ("Doing fgetfilecon", Fcons (file, Qnil));
1910 }
1911 #endif
1912
1913 if (out_st.st_mode != 0
1914 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
1915 {
1916 errno = 0;
1917 report_file_error ("Input and output files are the same",
1918 Fcons (file, Fcons (newname, Qnil)));
1919 }
1920
1921 if (input_file_statable_p)
1922 {
1923 if (!(S_ISREG (st.st_mode)) && !(S_ISLNK (st.st_mode)))
1924 {
1925 #if defined (EISDIR)
1926 /* Get a better looking error message. */
1927 errno = EISDIR;
1928 #endif /* EISDIR */
1929 report_file_error ("Non-regular file", Fcons (file, Qnil));
1930 }
1931 }
1932
1933 #ifdef MSDOS
1934 /* System's default file type was set to binary by _fmode in emacs.c. */
1935 ofd = emacs_open (SDATA (encoded_newname),
1936 O_WRONLY | O_TRUNC | O_CREAT
1937 | (NILP (ok_if_already_exists) ? O_EXCL : 0),
1938 S_IREAD | S_IWRITE);
1939 #else /* not MSDOS */
1940 ofd = emacs_open (SSDATA (encoded_newname),
1941 O_WRONLY | O_TRUNC | O_CREAT
1942 | (NILP (ok_if_already_exists) ? O_EXCL : 0),
1943 0666);
1944 #endif /* not MSDOS */
1945 if (ofd < 0)
1946 report_file_error ("Opening output file", Fcons (newname, Qnil));
1947
1948 record_unwind_protect (close_file_unwind, make_number (ofd));
1949
1950 immediate_quit = 1;
1951 QUIT;
1952 while ((n = emacs_read (ifd, buf, sizeof buf)) > 0)
1953 if (emacs_write (ofd, buf, n) != n)
1954 report_file_error ("I/O error", Fcons (newname, Qnil));
1955 immediate_quit = 0;
1956
1957 #ifndef MSDOS
1958 /* Preserve the original file modes, and if requested, also its
1959 owner and group. */
1960 if (input_file_statable_p)
1961 {
1962 if (!NILP (preserve_uid_gid))
1963 fchown (ofd, st.st_uid, st.st_gid);
1964 if (fchmod (ofd, st.st_mode & 07777) != 0)
1965 report_file_error ("Doing chmod", Fcons (newname, Qnil));
1966 }
1967 #endif /* not MSDOS */
1968
1969 #if HAVE_LIBSELINUX
1970 if (conlength > 0)
1971 {
1972 /* Set the modified context back to the file. */
1973 fail = fsetfilecon (ofd, con);
1974 if (fail)
1975 report_file_error ("Doing fsetfilecon", Fcons (newname, Qnil));
1976
1977 freecon (con);
1978 }
1979 #endif
1980
1981 /* Closing the output clobbers the file times on some systems. */
1982 if (emacs_close (ofd) < 0)
1983 report_file_error ("I/O error", Fcons (newname, Qnil));
1984
1985 if (input_file_statable_p)
1986 {
1987 if (!NILP (keep_time))
1988 {
1989 EMACS_TIME atime, mtime;
1990 EMACS_SET_SECS_USECS (atime, st.st_atime, 0);
1991 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0);
1992 if (set_file_times (SSDATA (encoded_newname),
1993 atime, mtime))
1994 xsignal2 (Qfile_date_error,
1995 build_string ("Cannot set file date"), newname);
1996 }
1997 }
1998
1999 emacs_close (ifd);
2000
2001 #ifdef MSDOS
2002 if (input_file_statable_p)
2003 {
2004 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2005 and if it can't, it tells so. Otherwise, under MSDOS we usually
2006 get only the READ bit, which will make the copied file read-only,
2007 so it's better not to chmod at all. */
2008 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0)
2009 chmod (SDATA (encoded_newname), st.st_mode & 07777);
2010 }
2011 #endif /* MSDOS */
2012 #endif /* not WINDOWSNT */
2013
2014 /* Discard the unwind protects. */
2015 specpdl_ptr = specpdl + count;
2016
2017 UNGCPRO;
2018 return Qnil;
2019 }
2020 \f
2021 DEFUN ("make-directory-internal", Fmake_directory_internal,
2022 Smake_directory_internal, 1, 1, 0,
2023 doc: /* Create a new directory named DIRECTORY. */)
2024 (Lisp_Object directory)
2025 {
2026 const char *dir;
2027 Lisp_Object handler;
2028 Lisp_Object encoded_dir;
2029
2030 CHECK_STRING (directory);
2031 directory = Fexpand_file_name (directory, Qnil);
2032
2033 handler = Ffind_file_name_handler (directory, Qmake_directory_internal);
2034 if (!NILP (handler))
2035 return call2 (handler, Qmake_directory_internal, directory);
2036
2037 encoded_dir = ENCODE_FILE (directory);
2038
2039 dir = SSDATA (encoded_dir);
2040
2041 #ifdef WINDOWSNT
2042 if (mkdir (dir) != 0)
2043 #else
2044 if (mkdir (dir, 0777) != 0)
2045 #endif
2046 report_file_error ("Creating directory", list1 (directory));
2047
2048 return Qnil;
2049 }
2050
2051 DEFUN ("delete-directory-internal", Fdelete_directory_internal,
2052 Sdelete_directory_internal, 1, 1, 0,
2053 doc: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
2054 (Lisp_Object directory)
2055 {
2056 const char *dir;
2057 Lisp_Object encoded_dir;
2058
2059 CHECK_STRING (directory);
2060 directory = Fdirectory_file_name (Fexpand_file_name (directory, Qnil));
2061 encoded_dir = ENCODE_FILE (directory);
2062 dir = SSDATA (encoded_dir);
2063
2064 if (rmdir (dir) != 0)
2065 report_file_error ("Removing directory", list1 (directory));
2066
2067 return Qnil;
2068 }
2069
2070 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 2,
2071 "(list (read-file-name \
2072 (if (and delete-by-moving-to-trash (null current-prefix-arg)) \
2073 \"Move file to trash: \" \"Delete file: \") \
2074 nil default-directory (confirm-nonexistent-file-or-buffer)) \
2075 (null current-prefix-arg))",
2076 doc: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
2077 If file has multiple names, it continues to exist with the other names.
2078 TRASH non-nil means to trash the file instead of deleting, provided
2079 `delete-by-moving-to-trash' is non-nil.
2080
2081 When called interactively, TRASH is t if no prefix argument is given.
2082 With a prefix argument, TRASH is nil. */)
2083 (Lisp_Object filename, Lisp_Object trash)
2084 {
2085 Lisp_Object handler;
2086 Lisp_Object encoded_file;
2087 struct gcpro gcpro1;
2088
2089 GCPRO1 (filename);
2090 if (!NILP (Ffile_directory_p (filename))
2091 && NILP (Ffile_symlink_p (filename)))
2092 xsignal2 (Qfile_error,
2093 build_string ("Removing old name: is a directory"),
2094 filename);
2095 UNGCPRO;
2096 filename = Fexpand_file_name (filename, Qnil);
2097
2098 handler = Ffind_file_name_handler (filename, Qdelete_file);
2099 if (!NILP (handler))
2100 return call3 (handler, Qdelete_file, filename, trash);
2101
2102 if (delete_by_moving_to_trash && !NILP (trash))
2103 return call1 (Qmove_file_to_trash, filename);
2104
2105 encoded_file = ENCODE_FILE (filename);
2106
2107 if (0 > unlink (SSDATA (encoded_file)))
2108 report_file_error ("Removing old name", list1 (filename));
2109 return Qnil;
2110 }
2111
2112 static Lisp_Object
2113 internal_delete_file_1 (Lisp_Object ignore)
2114 {
2115 return Qt;
2116 }
2117
2118 /* Delete file FILENAME, returning 1 if successful and 0 if failed.
2119 This ignores `delete-by-moving-to-trash'. */
2120
2121 int
2122 internal_delete_file (Lisp_Object filename)
2123 {
2124 Lisp_Object tem;
2125
2126 tem = internal_condition_case_2 (Fdelete_file, filename, Qnil,
2127 Qt, internal_delete_file_1);
2128 return NILP (tem);
2129 }
2130 \f
2131 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
2132 "fRename file: \nGRename %s to file: \np",
2133 doc: /* Rename FILE as NEWNAME. Both args must be strings.
2134 If file has names other than FILE, it continues to have those names.
2135 Signals a `file-already-exists' error if a file NEWNAME already exists
2136 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2137 A number as third arg means request confirmation if NEWNAME already exists.
2138 This is what happens in interactive use with M-x. */)
2139 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
2140 {
2141 Lisp_Object handler;
2142 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2143 Lisp_Object encoded_file, encoded_newname, symlink_target;
2144
2145 symlink_target = encoded_file = encoded_newname = Qnil;
2146 GCPRO5 (file, newname, encoded_file, encoded_newname, symlink_target);
2147 CHECK_STRING (file);
2148 CHECK_STRING (newname);
2149 file = Fexpand_file_name (file, Qnil);
2150
2151 if ((!NILP (Ffile_directory_p (newname)))
2152 #ifdef DOS_NT
2153 /* If the file names are identical but for the case,
2154 don't attempt to move directory to itself. */
2155 && (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2156 #endif
2157 )
2158 {
2159 Lisp_Object fname = NILP (Ffile_directory_p (file))
2160 ? file : Fdirectory_file_name (file);
2161 newname = Fexpand_file_name (Ffile_name_nondirectory (fname), newname);
2162 }
2163 else
2164 newname = Fexpand_file_name (newname, Qnil);
2165
2166 /* If the file name has special constructs in it,
2167 call the corresponding file handler. */
2168 handler = Ffind_file_name_handler (file, Qrename_file);
2169 if (NILP (handler))
2170 handler = Ffind_file_name_handler (newname, Qrename_file);
2171 if (!NILP (handler))
2172 RETURN_UNGCPRO (call4 (handler, Qrename_file,
2173 file, newname, ok_if_already_exists));
2174
2175 encoded_file = ENCODE_FILE (file);
2176 encoded_newname = ENCODE_FILE (newname);
2177
2178 #ifdef DOS_NT
2179 /* If the file names are identical but for the case, don't ask for
2180 confirmation: they simply want to change the letter-case of the
2181 file name. */
2182 if (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2183 #endif
2184 if (NILP (ok_if_already_exists)
2185 || INTEGERP (ok_if_already_exists))
2186 barf_or_query_if_file_exists (newname, "rename to it",
2187 INTEGERP (ok_if_already_exists), 0, 0);
2188 if (0 > rename (SSDATA (encoded_file), SSDATA (encoded_newname)))
2189 {
2190 if (errno == EXDEV)
2191 {
2192 int count;
2193 symlink_target = Ffile_symlink_p (file);
2194 if (! NILP (symlink_target))
2195 Fmake_symbolic_link (symlink_target, newname,
2196 NILP (ok_if_already_exists) ? Qnil : Qt);
2197 else if (!NILP (Ffile_directory_p (file)))
2198 call4 (Qcopy_directory, file, newname, Qt, Qnil);
2199 else
2200 /* We have already prompted if it was an integer, so don't
2201 have copy-file prompt again. */
2202 Fcopy_file (file, newname,
2203 NILP (ok_if_already_exists) ? Qnil : Qt,
2204 Qt, Qt, Qt);
2205
2206 count = SPECPDL_INDEX ();
2207 specbind (Qdelete_by_moving_to_trash, Qnil);
2208
2209 if (!NILP (Ffile_directory_p (file)) && NILP (symlink_target))
2210 call2 (Qdelete_directory, file, Qt);
2211 else
2212 Fdelete_file (file, Qnil);
2213 unbind_to (count, Qnil);
2214 }
2215 else
2216 report_file_error ("Renaming", list2 (file, newname));
2217 }
2218 UNGCPRO;
2219 return Qnil;
2220 }
2221
2222 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
2223 "fAdd name to file: \nGName to add to %s: \np",
2224 doc: /* Give FILE additional name NEWNAME. Both args must be strings.
2225 Signals a `file-already-exists' error if a file NEWNAME already exists
2226 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2227 A number as third arg means request confirmation if NEWNAME already exists.
2228 This is what happens in interactive use with M-x. */)
2229 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
2230 {
2231 Lisp_Object handler;
2232 Lisp_Object encoded_file, encoded_newname;
2233 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2234
2235 GCPRO4 (file, newname, encoded_file, encoded_newname);
2236 encoded_file = encoded_newname = Qnil;
2237 CHECK_STRING (file);
2238 CHECK_STRING (newname);
2239 file = Fexpand_file_name (file, Qnil);
2240
2241 if (!NILP (Ffile_directory_p (newname)))
2242 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
2243 else
2244 newname = Fexpand_file_name (newname, Qnil);
2245
2246 /* If the file name has special constructs in it,
2247 call the corresponding file handler. */
2248 handler = Ffind_file_name_handler (file, Qadd_name_to_file);
2249 if (!NILP (handler))
2250 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2251 newname, ok_if_already_exists));
2252
2253 /* If the new name has special constructs in it,
2254 call the corresponding file handler. */
2255 handler = Ffind_file_name_handler (newname, Qadd_name_to_file);
2256 if (!NILP (handler))
2257 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2258 newname, ok_if_already_exists));
2259
2260 encoded_file = ENCODE_FILE (file);
2261 encoded_newname = ENCODE_FILE (newname);
2262
2263 if (NILP (ok_if_already_exists)
2264 || INTEGERP (ok_if_already_exists))
2265 barf_or_query_if_file_exists (newname, "make it a new name",
2266 INTEGERP (ok_if_already_exists), 0, 0);
2267
2268 unlink (SSDATA (newname));
2269 if (0 > link (SSDATA (encoded_file), SSDATA (encoded_newname)))
2270 report_file_error ("Adding new name", list2 (file, newname));
2271
2272 UNGCPRO;
2273 return Qnil;
2274 }
2275
2276 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
2277 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np",
2278 doc: /* Make a symbolic link to FILENAME, named LINKNAME.
2279 Both args must be strings.
2280 Signals a `file-already-exists' error if a file LINKNAME already exists
2281 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2282 A number as third arg means request confirmation if LINKNAME already exists.
2283 This happens for interactive use with M-x. */)
2284 (Lisp_Object filename, Lisp_Object linkname, Lisp_Object ok_if_already_exists)
2285 {
2286 Lisp_Object handler;
2287 Lisp_Object encoded_filename, encoded_linkname;
2288 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2289
2290 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname);
2291 encoded_filename = encoded_linkname = Qnil;
2292 CHECK_STRING (filename);
2293 CHECK_STRING (linkname);
2294 /* If the link target has a ~, we must expand it to get
2295 a truly valid file name. Otherwise, do not expand;
2296 we want to permit links to relative file names. */
2297 if (SREF (filename, 0) == '~')
2298 filename = Fexpand_file_name (filename, Qnil);
2299
2300 if (!NILP (Ffile_directory_p (linkname)))
2301 linkname = Fexpand_file_name (Ffile_name_nondirectory (filename), linkname);
2302 else
2303 linkname = Fexpand_file_name (linkname, Qnil);
2304
2305 /* If the file name has special constructs in it,
2306 call the corresponding file handler. */
2307 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
2308 if (!NILP (handler))
2309 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2310 linkname, ok_if_already_exists));
2311
2312 /* If the new link name has special constructs in it,
2313 call the corresponding file handler. */
2314 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link);
2315 if (!NILP (handler))
2316 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2317 linkname, ok_if_already_exists));
2318
2319 encoded_filename = ENCODE_FILE (filename);
2320 encoded_linkname = ENCODE_FILE (linkname);
2321
2322 if (NILP (ok_if_already_exists)
2323 || INTEGERP (ok_if_already_exists))
2324 barf_or_query_if_file_exists (linkname, "make it a link",
2325 INTEGERP (ok_if_already_exists), 0, 0);
2326 if (0 > symlink (SSDATA (encoded_filename),
2327 SSDATA (encoded_linkname)))
2328 {
2329 /* If we didn't complain already, silently delete existing file. */
2330 if (errno == EEXIST)
2331 {
2332 unlink (SSDATA (encoded_linkname));
2333 if (0 <= symlink (SSDATA (encoded_filename),
2334 SSDATA (encoded_linkname)))
2335 {
2336 UNGCPRO;
2337 return Qnil;
2338 }
2339 }
2340 if (errno == ENOSYS)
2341 {
2342 UNGCPRO;
2343 xsignal1 (Qfile_error,
2344 build_string ("Symbolic links are not supported"));
2345 }
2346
2347 report_file_error ("Making symbolic link", list2 (filename, linkname));
2348 }
2349 UNGCPRO;
2350 return Qnil;
2351 }
2352
2353 \f
2354 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
2355 1, 1, 0,
2356 doc: /* Return t if file FILENAME specifies an absolute file name.
2357 On Unix, this is a name starting with a `/' or a `~'. */)
2358 (Lisp_Object filename)
2359 {
2360 CHECK_STRING (filename);
2361 return file_name_absolute_p (SSDATA (filename)) ? Qt : Qnil;
2362 }
2363 \f
2364 /* Return nonzero if file FILENAME exists and can be executed. */
2365
2366 static int
2367 check_executable (char *filename)
2368 {
2369 #ifdef DOS_NT
2370 struct stat st;
2371 if (stat (filename, &st) < 0)
2372 return 0;
2373 return ((st.st_mode & S_IEXEC) != 0);
2374 #else /* not DOS_NT */
2375 #ifdef HAVE_EUIDACCESS
2376 return (euidaccess (filename, 1) >= 0);
2377 #else
2378 /* Access isn't quite right because it uses the real uid
2379 and we really want to test with the effective uid.
2380 But Unix doesn't give us a right way to do it. */
2381 return (access (filename, 1) >= 0);
2382 #endif
2383 #endif /* not DOS_NT */
2384 }
2385
2386 /* Return nonzero if file FILENAME exists and can be written. */
2387
2388 static int
2389 check_writable (const char *filename)
2390 {
2391 #ifdef MSDOS
2392 struct stat st;
2393 if (stat (filename, &st) < 0)
2394 return 0;
2395 return (st.st_mode & S_IWRITE || S_ISDIR (st.st_mode));
2396 #else /* not MSDOS */
2397 #ifdef HAVE_EUIDACCESS
2398 return (euidaccess (filename, 2) >= 0);
2399 #else
2400 /* Access isn't quite right because it uses the real uid
2401 and we really want to test with the effective uid.
2402 But Unix doesn't give us a right way to do it.
2403 Opening with O_WRONLY could work for an ordinary file,
2404 but would lose for directories. */
2405 return (access (filename, 2) >= 0);
2406 #endif
2407 #endif /* not MSDOS */
2408 }
2409
2410 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
2411 doc: /* Return t if file FILENAME exists (whether or not you can read it.)
2412 See also `file-readable-p' and `file-attributes'.
2413 This returns nil for a symlink to a nonexistent file.
2414 Use `file-symlink-p' to test for such links. */)
2415 (Lisp_Object filename)
2416 {
2417 Lisp_Object absname;
2418 Lisp_Object handler;
2419 struct stat statbuf;
2420
2421 CHECK_STRING (filename);
2422 absname = Fexpand_file_name (filename, Qnil);
2423
2424 /* If the file name has special constructs in it,
2425 call the corresponding file handler. */
2426 handler = Ffind_file_name_handler (absname, Qfile_exists_p);
2427 if (!NILP (handler))
2428 return call2 (handler, Qfile_exists_p, absname);
2429
2430 absname = ENCODE_FILE (absname);
2431
2432 return (stat (SSDATA (absname), &statbuf) >= 0) ? Qt : Qnil;
2433 }
2434
2435 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
2436 doc: /* Return t if FILENAME can be executed by you.
2437 For a directory, this means you can access files in that directory. */)
2438 (Lisp_Object filename)
2439 {
2440 Lisp_Object absname;
2441 Lisp_Object handler;
2442
2443 CHECK_STRING (filename);
2444 absname = Fexpand_file_name (filename, Qnil);
2445
2446 /* If the file name has special constructs in it,
2447 call the corresponding file handler. */
2448 handler = Ffind_file_name_handler (absname, Qfile_executable_p);
2449 if (!NILP (handler))
2450 return call2 (handler, Qfile_executable_p, absname);
2451
2452 absname = ENCODE_FILE (absname);
2453
2454 return (check_executable (SSDATA (absname)) ? Qt : Qnil);
2455 }
2456
2457 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
2458 doc: /* Return t if file FILENAME exists and you can read it.
2459 See also `file-exists-p' and `file-attributes'. */)
2460 (Lisp_Object filename)
2461 {
2462 Lisp_Object absname;
2463 Lisp_Object handler;
2464 int desc;
2465 int flags;
2466 struct stat statbuf;
2467
2468 CHECK_STRING (filename);
2469 absname = Fexpand_file_name (filename, Qnil);
2470
2471 /* If the file name has special constructs in it,
2472 call the corresponding file handler. */
2473 handler = Ffind_file_name_handler (absname, Qfile_readable_p);
2474 if (!NILP (handler))
2475 return call2 (handler, Qfile_readable_p, absname);
2476
2477 absname = ENCODE_FILE (absname);
2478
2479 #if defined(DOS_NT) || defined(macintosh)
2480 /* Under MS-DOS, Windows, and Macintosh, open does not work for
2481 directories. */
2482 if (access (SDATA (absname), 0) == 0)
2483 return Qt;
2484 return Qnil;
2485 #else /* not DOS_NT and not macintosh */
2486 flags = O_RDONLY;
2487 #ifdef O_NONBLOCK
2488 /* Opening a fifo without O_NONBLOCK can wait.
2489 We don't want to wait. But we don't want to mess wth O_NONBLOCK
2490 except in the case of a fifo, on a system which handles it. */
2491 desc = stat (SSDATA (absname), &statbuf);
2492 if (desc < 0)
2493 return Qnil;
2494 if (S_ISFIFO (statbuf.st_mode))
2495 flags |= O_NONBLOCK;
2496 #endif
2497 desc = emacs_open (SSDATA (absname), flags, 0);
2498 if (desc < 0)
2499 return Qnil;
2500 emacs_close (desc);
2501 return Qt;
2502 #endif /* not DOS_NT and not macintosh */
2503 }
2504
2505 /* Having this before file-symlink-p mysteriously caused it to be forgotten
2506 on the RT/PC. */
2507 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
2508 doc: /* Return t if file FILENAME can be written or created by you. */)
2509 (Lisp_Object filename)
2510 {
2511 Lisp_Object absname, dir, encoded;
2512 Lisp_Object handler;
2513 struct stat statbuf;
2514
2515 CHECK_STRING (filename);
2516 absname = Fexpand_file_name (filename, Qnil);
2517
2518 /* If the file name has special constructs in it,
2519 call the corresponding file handler. */
2520 handler = Ffind_file_name_handler (absname, Qfile_writable_p);
2521 if (!NILP (handler))
2522 return call2 (handler, Qfile_writable_p, absname);
2523
2524 encoded = ENCODE_FILE (absname);
2525 if (stat (SSDATA (encoded), &statbuf) >= 0)
2526 return (check_writable (SSDATA (encoded))
2527 ? Qt : Qnil);
2528
2529 dir = Ffile_name_directory (absname);
2530 #ifdef MSDOS
2531 if (!NILP (dir))
2532 dir = Fdirectory_file_name (dir);
2533 #endif /* MSDOS */
2534
2535 dir = ENCODE_FILE (dir);
2536 #ifdef WINDOWSNT
2537 /* The read-only attribute of the parent directory doesn't affect
2538 whether a file or directory can be created within it. Some day we
2539 should check ACLs though, which do affect this. */
2540 if (stat (SDATA (dir), &statbuf) < 0)
2541 return Qnil;
2542 return S_ISDIR (statbuf.st_mode) ? Qt : Qnil;
2543 #else
2544 return (check_writable (!NILP (dir) ? SSDATA (dir) : "")
2545 ? Qt : Qnil);
2546 #endif
2547 }
2548 \f
2549 DEFUN ("access-file", Faccess_file, Saccess_file, 2, 2, 0,
2550 doc: /* Access file FILENAME, and get an error if that does not work.
2551 The second argument STRING is used in the error message.
2552 If there is no error, returns nil. */)
2553 (Lisp_Object filename, Lisp_Object string)
2554 {
2555 Lisp_Object handler, encoded_filename, absname;
2556 int fd;
2557
2558 CHECK_STRING (filename);
2559 absname = Fexpand_file_name (filename, Qnil);
2560
2561 CHECK_STRING (string);
2562
2563 /* If the file name has special constructs in it,
2564 call the corresponding file handler. */
2565 handler = Ffind_file_name_handler (absname, Qaccess_file);
2566 if (!NILP (handler))
2567 return call3 (handler, Qaccess_file, absname, string);
2568
2569 encoded_filename = ENCODE_FILE (absname);
2570
2571 fd = emacs_open (SSDATA (encoded_filename), O_RDONLY, 0);
2572 if (fd < 0)
2573 report_file_error (SSDATA (string), Fcons (filename, Qnil));
2574 emacs_close (fd);
2575
2576 return Qnil;
2577 }
2578 \f
2579 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
2580 doc: /* Return non-nil if file FILENAME is the name of a symbolic link.
2581 The value is the link target, as a string.
2582 Otherwise it returns nil.
2583
2584 This function returns t when given the name of a symlink that
2585 points to a nonexistent file. */)
2586 (Lisp_Object filename)
2587 {
2588 Lisp_Object handler;
2589 char *buf;
2590 Lisp_Object val;
2591 char readlink_buf[READLINK_BUFSIZE];
2592
2593 CHECK_STRING (filename);
2594 filename = Fexpand_file_name (filename, Qnil);
2595
2596 /* If the file name has special constructs in it,
2597 call the corresponding file handler. */
2598 handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
2599 if (!NILP (handler))
2600 return call2 (handler, Qfile_symlink_p, filename);
2601
2602 filename = ENCODE_FILE (filename);
2603
2604 buf = emacs_readlink (SSDATA (filename), readlink_buf);
2605 if (! buf)
2606 return Qnil;
2607
2608 val = build_string (buf);
2609 if (buf[0] == '/' && strchr (buf, ':'))
2610 val = concat2 (build_string ("/:"), val);
2611 if (buf != readlink_buf)
2612 xfree (buf);
2613 val = DECODE_FILE (val);
2614 return val;
2615 }
2616
2617 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
2618 doc: /* Return t if FILENAME names an existing directory.
2619 Symbolic links to directories count as directories.
2620 See `file-symlink-p' to distinguish symlinks. */)
2621 (Lisp_Object filename)
2622 {
2623 register Lisp_Object absname;
2624 struct stat st;
2625 Lisp_Object handler;
2626
2627 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2628
2629 /* If the file name has special constructs in it,
2630 call the corresponding file handler. */
2631 handler = Ffind_file_name_handler (absname, Qfile_directory_p);
2632 if (!NILP (handler))
2633 return call2 (handler, Qfile_directory_p, absname);
2634
2635 absname = ENCODE_FILE (absname);
2636
2637 if (stat (SSDATA (absname), &st) < 0)
2638 return Qnil;
2639 return S_ISDIR (st.st_mode) ? Qt : Qnil;
2640 }
2641
2642 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p,
2643 Sfile_accessible_directory_p, 1, 1, 0,
2644 doc: /* Return t if file FILENAME names a directory you can open.
2645 For the value to be t, FILENAME must specify the name of a directory as a file,
2646 and the directory must allow you to open files in it. In order to use a
2647 directory as a buffer's current directory, this predicate must return true.
2648 A directory name spec may be given instead; then the value is t
2649 if the directory so specified exists and really is a readable and
2650 searchable directory. */)
2651 (Lisp_Object filename)
2652 {
2653 Lisp_Object handler;
2654 int tem;
2655 struct gcpro gcpro1;
2656
2657 /* If the file name has special constructs in it,
2658 call the corresponding file handler. */
2659 handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p);
2660 if (!NILP (handler))
2661 return call2 (handler, Qfile_accessible_directory_p, filename);
2662
2663 GCPRO1 (filename);
2664 tem = (NILP (Ffile_directory_p (filename))
2665 || NILP (Ffile_executable_p (filename)));
2666 UNGCPRO;
2667 return tem ? Qnil : Qt;
2668 }
2669
2670 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
2671 doc: /* Return t if FILENAME names a regular file.
2672 This is the sort of file that holds an ordinary stream of data bytes.
2673 Symbolic links to regular files count as regular files.
2674 See `file-symlink-p' to distinguish symlinks. */)
2675 (Lisp_Object filename)
2676 {
2677 register Lisp_Object absname;
2678 struct stat st;
2679 Lisp_Object handler;
2680
2681 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2682
2683 /* If the file name has special constructs in it,
2684 call the corresponding file handler. */
2685 handler = Ffind_file_name_handler (absname, Qfile_regular_p);
2686 if (!NILP (handler))
2687 return call2 (handler, Qfile_regular_p, absname);
2688
2689 absname = ENCODE_FILE (absname);
2690
2691 #ifdef WINDOWSNT
2692 {
2693 int result;
2694 Lisp_Object tem = Vw32_get_true_file_attributes;
2695
2696 /* Tell stat to use expensive method to get accurate info. */
2697 Vw32_get_true_file_attributes = Qt;
2698 result = stat (SDATA (absname), &st);
2699 Vw32_get_true_file_attributes = tem;
2700
2701 if (result < 0)
2702 return Qnil;
2703 return S_ISREG (st.st_mode) ? Qt : Qnil;
2704 }
2705 #else
2706 if (stat (SSDATA (absname), &st) < 0)
2707 return Qnil;
2708 return S_ISREG (st.st_mode) ? Qt : Qnil;
2709 #endif
2710 }
2711 \f
2712 DEFUN ("file-selinux-context", Ffile_selinux_context,
2713 Sfile_selinux_context, 1, 1, 0,
2714 doc: /* Return SELinux context of file named FILENAME,
2715 as a list ("user", "role", "type", "range"). Return (nil, nil, nil, nil)
2716 if file does not exist, is not accessible, or SELinux is disabled */)
2717 (Lisp_Object filename)
2718 {
2719 Lisp_Object absname;
2720 Lisp_Object values[4];
2721 Lisp_Object handler;
2722 #if HAVE_LIBSELINUX
2723 security_context_t con;
2724 int conlength;
2725 context_t context;
2726 #endif
2727
2728 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2729
2730 /* If the file name has special constructs in it,
2731 call the corresponding file handler. */
2732 handler = Ffind_file_name_handler (absname, Qfile_selinux_context);
2733 if (!NILP (handler))
2734 return call2 (handler, Qfile_selinux_context, absname);
2735
2736 absname = ENCODE_FILE (absname);
2737
2738 values[0] = Qnil;
2739 values[1] = Qnil;
2740 values[2] = Qnil;
2741 values[3] = Qnil;
2742 #if HAVE_LIBSELINUX
2743 if (is_selinux_enabled ())
2744 {
2745 conlength = lgetfilecon (SSDATA (absname), &con);
2746 if (conlength > 0)
2747 {
2748 context = context_new (con);
2749 if (context_user_get (context))
2750 values[0] = build_string (context_user_get (context));
2751 if (context_role_get (context))
2752 values[1] = build_string (context_role_get (context));
2753 if (context_type_get (context))
2754 values[2] = build_string (context_type_get (context));
2755 if (context_range_get (context))
2756 values[3] = build_string (context_range_get (context));
2757 context_free (context);
2758 }
2759 if (con)
2760 freecon (con);
2761 }
2762 #endif
2763
2764 return Flist (sizeof(values) / sizeof(values[0]), values);
2765 }
2766 \f
2767 DEFUN ("set-file-selinux-context", Fset_file_selinux_context,
2768 Sset_file_selinux_context, 2, 2, 0,
2769 doc: /* Set SELinux context of file named FILENAME to CONTEXT
2770 as a list ("user", "role", "type", "range"). Has no effect if SELinux
2771 is disabled. */)
2772 (Lisp_Object filename, Lisp_Object context)
2773 {
2774 Lisp_Object absname;
2775 Lisp_Object handler;
2776 #if HAVE_LIBSELINUX
2777 Lisp_Object encoded_absname;
2778 Lisp_Object user = CAR_SAFE (context);
2779 Lisp_Object role = CAR_SAFE (CDR_SAFE (context));
2780 Lisp_Object type = CAR_SAFE (CDR_SAFE (CDR_SAFE (context)));
2781 Lisp_Object range = CAR_SAFE (CDR_SAFE (CDR_SAFE (CDR_SAFE (context))));
2782 security_context_t con;
2783 int fail, conlength;
2784 context_t parsed_con;
2785 #endif
2786
2787 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
2788
2789 /* If the file name has special constructs in it,
2790 call the corresponding file handler. */
2791 handler = Ffind_file_name_handler (absname, Qset_file_selinux_context);
2792 if (!NILP (handler))
2793 return call3 (handler, Qset_file_selinux_context, absname, context);
2794
2795 #if HAVE_LIBSELINUX
2796 if (is_selinux_enabled ())
2797 {
2798 /* Get current file context. */
2799 encoded_absname = ENCODE_FILE (absname);
2800 conlength = lgetfilecon (SSDATA (encoded_absname), &con);
2801 if (conlength > 0)
2802 {
2803 parsed_con = context_new (con);
2804 /* Change the parts defined in the parameter.*/
2805 if (STRINGP (user))
2806 {
2807 if (context_user_set (parsed_con, SSDATA (user)))
2808 error ("Doing context_user_set");
2809 }
2810 if (STRINGP (role))
2811 {
2812 if (context_role_set (parsed_con, SSDATA (role)))
2813 error ("Doing context_role_set");
2814 }
2815 if (STRINGP (type))
2816 {
2817 if (context_type_set (parsed_con, SSDATA (type)))
2818 error ("Doing context_type_set");
2819 }
2820 if (STRINGP (range))
2821 {
2822 if (context_range_set (parsed_con, SSDATA (range)))
2823 error ("Doing context_range_set");
2824 }
2825
2826 /* Set the modified context back to the file. */
2827 fail = lsetfilecon (SSDATA (encoded_absname),
2828 context_str (parsed_con));
2829 if (fail)
2830 report_file_error ("Doing lsetfilecon", Fcons (absname, Qnil));
2831
2832 context_free (parsed_con);
2833 }
2834 else
2835 report_file_error("Doing lgetfilecon", Fcons (absname, Qnil));
2836
2837 if (con)
2838 freecon (con);
2839 }
2840 #endif
2841
2842 return Qnil;
2843 }
2844 \f
2845 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
2846 doc: /* Return mode bits of file named FILENAME, as an integer.
2847 Return nil, if file does not exist or is not accessible. */)
2848 (Lisp_Object filename)
2849 {
2850 Lisp_Object absname;
2851 struct stat st;
2852 Lisp_Object handler;
2853
2854 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2855
2856 /* If the file name has special constructs in it,
2857 call the corresponding file handler. */
2858 handler = Ffind_file_name_handler (absname, Qfile_modes);
2859 if (!NILP (handler))
2860 return call2 (handler, Qfile_modes, absname);
2861
2862 absname = ENCODE_FILE (absname);
2863
2864 if (stat (SSDATA (absname), &st) < 0)
2865 return Qnil;
2866
2867 return make_number (st.st_mode & 07777);
2868 }
2869
2870 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2,
2871 "(let ((file (read-file-name \"File: \"))) \
2872 (list file (read-file-modes nil file)))",
2873 doc: /* Set mode bits of file named FILENAME to MODE (an integer).
2874 Only the 12 low bits of MODE are used.
2875
2876 Interactively, mode bits are read by `read-file-modes', which accepts
2877 symbolic notation, like the `chmod' command from GNU Coreutils. */)
2878 (Lisp_Object filename, Lisp_Object mode)
2879 {
2880 Lisp_Object absname, encoded_absname;
2881 Lisp_Object handler;
2882
2883 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
2884 CHECK_NUMBER (mode);
2885
2886 /* If the file name has special constructs in it,
2887 call the corresponding file handler. */
2888 handler = Ffind_file_name_handler (absname, Qset_file_modes);
2889 if (!NILP (handler))
2890 return call3 (handler, Qset_file_modes, absname, mode);
2891
2892 encoded_absname = ENCODE_FILE (absname);
2893
2894 if (chmod (SSDATA (encoded_absname), XINT (mode)) < 0)
2895 report_file_error ("Doing chmod", Fcons (absname, Qnil));
2896
2897 return Qnil;
2898 }
2899
2900 DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0,
2901 doc: /* Set the file permission bits for newly created files.
2902 The argument MODE should be an integer; only the low 9 bits are used.
2903 This setting is inherited by subprocesses. */)
2904 (Lisp_Object mode)
2905 {
2906 CHECK_NUMBER (mode);
2907
2908 umask ((~ XINT (mode)) & 0777);
2909
2910 return Qnil;
2911 }
2912
2913 DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0,
2914 doc: /* Return the default file protection for created files.
2915 The value is an integer. */)
2916 (void)
2917 {
2918 int realmask;
2919 Lisp_Object value;
2920
2921 realmask = umask (0);
2922 umask (realmask);
2923
2924 XSETINT (value, (~ realmask) & 0777);
2925 return value;
2926 }
2927 \f
2928
2929 DEFUN ("set-file-times", Fset_file_times, Sset_file_times, 1, 2, 0,
2930 doc: /* Set times of file FILENAME to TIMESTAMP.
2931 Set both access and modification times.
2932 Return t on success, else nil.
2933 Use the current time if TIMESTAMP is nil. TIMESTAMP is in the format of
2934 `current-time'. */)
2935 (Lisp_Object filename, Lisp_Object timestamp)
2936 {
2937 Lisp_Object absname, encoded_absname;
2938 Lisp_Object handler;
2939 time_t sec;
2940 int usec;
2941
2942 if (! lisp_time_argument (timestamp, &sec, &usec))
2943 error ("Invalid time specification");
2944
2945 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
2946
2947 /* If the file name has special constructs in it,
2948 call the corresponding file handler. */
2949 handler = Ffind_file_name_handler (absname, Qset_file_times);
2950 if (!NILP (handler))
2951 return call3 (handler, Qset_file_times, absname, timestamp);
2952
2953 encoded_absname = ENCODE_FILE (absname);
2954
2955 {
2956 EMACS_TIME t;
2957
2958 EMACS_SET_SECS (t, sec);
2959 EMACS_SET_USECS (t, usec);
2960
2961 if (set_file_times (SSDATA (encoded_absname), t, t))
2962 {
2963 #ifdef DOS_NT
2964 struct stat st;
2965
2966 /* Setting times on a directory always fails. */
2967 if (stat (SSDATA (encoded_absname), &st) == 0 && S_ISDIR (st.st_mode))
2968 return Qnil;
2969 #endif
2970 report_file_error ("Setting file times", Fcons (absname, Qnil));
2971 return Qnil;
2972 }
2973 }
2974
2975 return Qt;
2976 }
2977 \f
2978 #ifdef HAVE_SYNC
2979 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
2980 doc: /* Tell Unix to finish all pending disk updates. */)
2981 (void)
2982 {
2983 sync ();
2984 return Qnil;
2985 }
2986
2987 #endif /* HAVE_SYNC */
2988
2989 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
2990 doc: /* Return t if file FILE1 is newer than file FILE2.
2991 If FILE1 does not exist, the answer is nil;
2992 otherwise, if FILE2 does not exist, the answer is t. */)
2993 (Lisp_Object file1, Lisp_Object file2)
2994 {
2995 Lisp_Object absname1, absname2;
2996 struct stat st;
2997 int mtime1;
2998 Lisp_Object handler;
2999 struct gcpro gcpro1, gcpro2;
3000
3001 CHECK_STRING (file1);
3002 CHECK_STRING (file2);
3003
3004 absname1 = Qnil;
3005 GCPRO2 (absname1, file2);
3006 absname1 = expand_and_dir_to_file (file1, BVAR (current_buffer, directory));
3007 absname2 = expand_and_dir_to_file (file2, BVAR (current_buffer, directory));
3008 UNGCPRO;
3009
3010 /* If the file name has special constructs in it,
3011 call the corresponding file handler. */
3012 handler = Ffind_file_name_handler (absname1, Qfile_newer_than_file_p);
3013 if (NILP (handler))
3014 handler = Ffind_file_name_handler (absname2, Qfile_newer_than_file_p);
3015 if (!NILP (handler))
3016 return call3 (handler, Qfile_newer_than_file_p, absname1, absname2);
3017
3018 GCPRO2 (absname1, absname2);
3019 absname1 = ENCODE_FILE (absname1);
3020 absname2 = ENCODE_FILE (absname2);
3021 UNGCPRO;
3022
3023 if (stat (SSDATA (absname1), &st) < 0)
3024 return Qnil;
3025
3026 mtime1 = st.st_mtime;
3027
3028 if (stat (SSDATA (absname2), &st) < 0)
3029 return Qt;
3030
3031 return (mtime1 > st.st_mtime) ? Qt : Qnil;
3032 }
3033 \f
3034 #ifndef READ_BUF_SIZE
3035 #define READ_BUF_SIZE (64 << 10)
3036 #endif
3037
3038 /* This function is called after Lisp functions to decide a coding
3039 system are called, or when they cause an error. Before they are
3040 called, the current buffer is set unibyte and it contains only a
3041 newly inserted text (thus the buffer was empty before the
3042 insertion).
3043
3044 The functions may set markers, overlays, text properties, or even
3045 alter the buffer contents, change the current buffer.
3046
3047 Here, we reset all those changes by:
3048 o set back the current buffer.
3049 o move all markers and overlays to BEG.
3050 o remove all text properties.
3051 o set back the buffer multibyteness. */
3052
3053 static Lisp_Object
3054 decide_coding_unwind (Lisp_Object unwind_data)
3055 {
3056 Lisp_Object multibyte, undo_list, buffer;
3057
3058 multibyte = XCAR (unwind_data);
3059 unwind_data = XCDR (unwind_data);
3060 undo_list = XCAR (unwind_data);
3061 buffer = XCDR (unwind_data);
3062
3063 if (current_buffer != XBUFFER (buffer))
3064 set_buffer_internal (XBUFFER (buffer));
3065 adjust_markers_for_delete (BEG, BEG_BYTE, Z, Z_BYTE);
3066 adjust_overlays_for_delete (BEG, Z - BEG);
3067 BUF_INTERVALS (current_buffer) = 0;
3068 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3069
3070 /* Now we are safe to change the buffer's multibyteness directly. */
3071 BVAR (current_buffer, enable_multibyte_characters) = multibyte;
3072 BVAR (current_buffer, undo_list) = undo_list;
3073
3074 return Qnil;
3075 }
3076
3077
3078 /* Used to pass values from insert-file-contents to read_non_regular. */
3079
3080 static int non_regular_fd;
3081 static EMACS_INT non_regular_inserted;
3082 static EMACS_INT non_regular_nbytes;
3083
3084
3085 /* Read from a non-regular file.
3086 Read non_regular_nbytes bytes max from non_regular_fd.
3087 Non_regular_inserted specifies where to put the read bytes.
3088 Value is the number of bytes read. */
3089
3090 static Lisp_Object
3091 read_non_regular (Lisp_Object ignore)
3092 {
3093 EMACS_INT nbytes;
3094
3095 immediate_quit = 1;
3096 QUIT;
3097 nbytes = emacs_read (non_regular_fd,
3098 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
3099 + non_regular_inserted),
3100 non_regular_nbytes);
3101 immediate_quit = 0;
3102 return make_number (nbytes);
3103 }
3104
3105
3106 /* Condition-case handler used when reading from non-regular files
3107 in insert-file-contents. */
3108
3109 static Lisp_Object
3110 read_non_regular_quit (Lisp_Object ignore)
3111 {
3112 return Qnil;
3113 }
3114
3115 /* Reposition FD to OFFSET, based on WHENCE. This acts like lseek
3116 except that it also tests for OFFSET being out of lseek's range. */
3117 static off_t
3118 emacs_lseek (int fd, EMACS_INT offset, int whence)
3119 {
3120 /* Use "&" rather than "&&" to suppress a bogus GCC warning; see
3121 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43772>. */
3122 if (! ((TYPE_MINIMUM (off_t) <= offset) & (offset <= TYPE_MAXIMUM (off_t))))
3123 {
3124 errno = EINVAL;
3125 return -1;
3126 }
3127 return lseek (fd, offset, whence);
3128 }
3129
3130
3131 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
3132 1, 5, 0,
3133 doc: /* Insert contents of file FILENAME after point.
3134 Returns list of absolute file name and number of characters inserted.
3135 If second argument VISIT is non-nil, the buffer's visited filename and
3136 last save file modtime are set, and it is marked unmodified. If
3137 visiting and the file does not exist, visiting is completed before the
3138 error is signaled.
3139
3140 The optional third and fourth arguments BEG and END specify what portion
3141 of the file to insert. These arguments count bytes in the file, not
3142 characters in the buffer. If VISIT is non-nil, BEG and END must be nil.
3143
3144 If optional fifth argument REPLACE is non-nil, replace the current
3145 buffer contents (in the accessible portion) with the file contents.
3146 This is better than simply deleting and inserting the whole thing
3147 because (1) it preserves some marker positions and (2) it puts less data
3148 in the undo list. When REPLACE is non-nil, the second return value is
3149 the number of characters that replace previous buffer contents.
3150
3151 This function does code conversion according to the value of
3152 `coding-system-for-read' or `file-coding-system-alist', and sets the
3153 variable `last-coding-system-used' to the coding system actually used. */)
3154 (Lisp_Object filename, Lisp_Object visit, Lisp_Object beg, Lisp_Object end, Lisp_Object replace)
3155 {
3156 struct stat st;
3157 register int fd;
3158 EMACS_INT inserted = 0;
3159 int nochange = 0;
3160 register EMACS_INT how_much;
3161 register EMACS_INT unprocessed;
3162 int count = SPECPDL_INDEX ();
3163 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3164 Lisp_Object handler, val, insval, orig_filename, old_undo;
3165 Lisp_Object p;
3166 EMACS_INT total = 0;
3167 int not_regular = 0;
3168 char read_buf[READ_BUF_SIZE];
3169 struct coding_system coding;
3170 char buffer[1 << 14];
3171 int replace_handled = 0;
3172 int set_coding_system = 0;
3173 Lisp_Object coding_system;
3174 int read_quit = 0;
3175 Lisp_Object old_Vdeactivate_mark = Vdeactivate_mark;
3176 int we_locked_file = 0;
3177 int deferred_remove_unwind_protect = 0;
3178
3179 if (current_buffer->base_buffer && ! NILP (visit))
3180 error ("Cannot do file visiting in an indirect buffer");
3181
3182 if (!NILP (BVAR (current_buffer, read_only)))
3183 Fbarf_if_buffer_read_only ();
3184
3185 val = Qnil;
3186 p = Qnil;
3187 orig_filename = Qnil;
3188 old_undo = Qnil;
3189
3190 GCPRO5 (filename, val, p, orig_filename, old_undo);
3191
3192 CHECK_STRING (filename);
3193 filename = Fexpand_file_name (filename, Qnil);
3194
3195 /* The value Qnil means that the coding system is not yet
3196 decided. */
3197 coding_system = Qnil;
3198
3199 /* If the file name has special constructs in it,
3200 call the corresponding file handler. */
3201 handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
3202 if (!NILP (handler))
3203 {
3204 val = call6 (handler, Qinsert_file_contents, filename,
3205 visit, beg, end, replace);
3206 if (CONSP (val) && CONSP (XCDR (val)))
3207 inserted = XINT (XCAR (XCDR (val)));
3208 goto handled;
3209 }
3210
3211 orig_filename = filename;
3212 filename = ENCODE_FILE (filename);
3213
3214 fd = -1;
3215
3216 #ifdef WINDOWSNT
3217 {
3218 Lisp_Object tem = Vw32_get_true_file_attributes;
3219
3220 /* Tell stat to use expensive method to get accurate info. */
3221 Vw32_get_true_file_attributes = Qt;
3222 total = stat (SSDATA (filename), &st);
3223 Vw32_get_true_file_attributes = tem;
3224 }
3225 if (total < 0)
3226 #else
3227 if (stat (SSDATA (filename), &st) < 0)
3228 #endif /* WINDOWSNT */
3229 {
3230 badopen:
3231 if (NILP (visit))
3232 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
3233 st.st_mtime = -1;
3234 how_much = 0;
3235 if (!NILP (Vcoding_system_for_read))
3236 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read);
3237 goto notfound;
3238 }
3239
3240 /* This code will need to be changed in order to work on named
3241 pipes, and it's probably just not worth it. So we should at
3242 least signal an error. */
3243 if (!S_ISREG (st.st_mode))
3244 {
3245 not_regular = 1;
3246
3247 if (! NILP (visit))
3248 goto notfound;
3249
3250 if (! NILP (replace) || ! NILP (beg) || ! NILP (end))
3251 xsignal2 (Qfile_error,
3252 build_string ("not a regular file"), orig_filename);
3253 }
3254
3255 if (fd < 0)
3256 if ((fd = emacs_open (SSDATA (filename), O_RDONLY, 0)) < 0)
3257 goto badopen;
3258
3259 /* Replacement should preserve point as it preserves markers. */
3260 if (!NILP (replace))
3261 record_unwind_protect (restore_point_unwind, Fpoint_marker ());
3262
3263 record_unwind_protect (close_file_unwind, make_number (fd));
3264
3265
3266 /* Check whether the size is too large or negative, which can happen on a
3267 platform that allows file sizes greater than the maximum off_t value. */
3268 if (! not_regular
3269 && ! (0 <= st.st_size && st.st_size <= BUF_BYTES_MAX))
3270 buffer_overflow ();
3271
3272 /* Prevent redisplay optimizations. */
3273 current_buffer->clip_changed = 1;
3274
3275 if (!NILP (visit))
3276 {
3277 if (!NILP (beg) || !NILP (end))
3278 error ("Attempt to visit less than an entire file");
3279 if (BEG < Z && NILP (replace))
3280 error ("Cannot do file visiting in a non-empty buffer");
3281 }
3282
3283 if (!NILP (beg))
3284 CHECK_NUMBER (beg);
3285 else
3286 XSETFASTINT (beg, 0);
3287
3288 if (!NILP (end))
3289 CHECK_NUMBER (end);
3290 else
3291 {
3292 if (! not_regular)
3293 {
3294 XSETINT (end, st.st_size);
3295
3296 /* The file size returned from stat may be zero, but data
3297 may be readable nonetheless, for example when this is a
3298 file in the /proc filesystem. */
3299 if (st.st_size == 0)
3300 XSETINT (end, READ_BUF_SIZE);
3301 }
3302 }
3303
3304 if (EQ (Vcoding_system_for_read, Qauto_save_coding))
3305 {
3306 coding_system = coding_inherit_eol_type (Qutf_8_emacs, Qunix);
3307 setup_coding_system (coding_system, &coding);
3308 /* Ensure we set Vlast_coding_system_used. */
3309 set_coding_system = 1;
3310 }
3311 else if (BEG < Z)
3312 {
3313 /* Decide the coding system to use for reading the file now
3314 because we can't use an optimized method for handling
3315 `coding:' tag if the current buffer is not empty. */
3316 if (!NILP (Vcoding_system_for_read))
3317 coding_system = Vcoding_system_for_read;
3318 else
3319 {
3320 /* Don't try looking inside a file for a coding system
3321 specification if it is not seekable. */
3322 if (! not_regular && ! NILP (Vset_auto_coding_function))
3323 {
3324 /* Find a coding system specified in the heading two
3325 lines or in the tailing several lines of the file.
3326 We assume that the 1K-byte and 3K-byte for heading
3327 and tailing respectively are sufficient for this
3328 purpose. */
3329 EMACS_INT nread;
3330
3331 if (st.st_size <= (1024 * 4))
3332 nread = emacs_read (fd, read_buf, 1024 * 4);
3333 else
3334 {
3335 nread = emacs_read (fd, read_buf, 1024);
3336 if (nread >= 0)
3337 {
3338 if (lseek (fd, st.st_size - (1024 * 3), SEEK_SET) < 0)
3339 report_file_error ("Setting file position",
3340 Fcons (orig_filename, Qnil));
3341 nread += emacs_read (fd, read_buf + nread, 1024 * 3);
3342 }
3343 }
3344
3345 if (nread < 0)
3346 error ("IO error reading %s: %s",
3347 SDATA (orig_filename), emacs_strerror (errno));
3348 else if (nread > 0)
3349 {
3350 struct buffer *prev = current_buffer;
3351 Lisp_Object workbuf;
3352 struct buffer *buf;
3353
3354 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
3355
3356 workbuf = Fget_buffer_create (build_string (" *code-converting-work*"));
3357 buf = XBUFFER (workbuf);
3358
3359 delete_all_overlays (buf);
3360 BVAR (buf, directory) = BVAR (current_buffer, directory);
3361 BVAR (buf, read_only) = Qnil;
3362 BVAR (buf, filename) = Qnil;
3363 BVAR (buf, undo_list) = Qt;
3364 eassert (buf->overlays_before == NULL);
3365 eassert (buf->overlays_after == NULL);
3366
3367 set_buffer_internal (buf);
3368 Ferase_buffer ();
3369 BVAR (buf, enable_multibyte_characters) = Qnil;
3370
3371 insert_1_both ((char *) read_buf, nread, nread, 0, 0, 0);
3372 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3373 coding_system = call2 (Vset_auto_coding_function,
3374 filename, make_number (nread));
3375 set_buffer_internal (prev);
3376
3377 /* Discard the unwind protect for recovering the
3378 current buffer. */
3379 specpdl_ptr--;
3380
3381 /* Rewind the file for the actual read done later. */
3382 if (lseek (fd, 0, SEEK_SET) < 0)
3383 report_file_error ("Setting file position",
3384 Fcons (orig_filename, Qnil));
3385 }
3386 }
3387
3388 if (NILP (coding_system))
3389 {
3390 /* If we have not yet decided a coding system, check
3391 file-coding-system-alist. */
3392 Lisp_Object args[6];
3393
3394 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3395 args[2] = visit, args[3] = beg, args[4] = end, args[5] = replace;
3396 coding_system = Ffind_operation_coding_system (6, args);
3397 if (CONSP (coding_system))
3398 coding_system = XCAR (coding_system);
3399 }
3400 }
3401
3402 if (NILP (coding_system))
3403 coding_system = Qundecided;
3404 else
3405 CHECK_CODING_SYSTEM (coding_system);
3406
3407 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3408 /* We must suppress all character code conversion except for
3409 end-of-line conversion. */
3410 coding_system = raw_text_coding_system (coding_system);
3411
3412 setup_coding_system (coding_system, &coding);
3413 /* Ensure we set Vlast_coding_system_used. */
3414 set_coding_system = 1;
3415 }
3416
3417 /* If requested, replace the accessible part of the buffer
3418 with the file contents. Avoid replacing text at the
3419 beginning or end of the buffer that matches the file contents;
3420 that preserves markers pointing to the unchanged parts.
3421
3422 Here we implement this feature in an optimized way
3423 for the case where code conversion is NOT needed.
3424 The following if-statement handles the case of conversion
3425 in a less optimal way.
3426
3427 If the code conversion is "automatic" then we try using this
3428 method and hope for the best.
3429 But if we discover the need for conversion, we give up on this method
3430 and let the following if-statement handle the replace job. */
3431 if (!NILP (replace)
3432 && BEGV < ZV
3433 && (NILP (coding_system)
3434 || ! CODING_REQUIRE_DECODING (&coding)))
3435 {
3436 /* same_at_start and same_at_end count bytes,
3437 because file access counts bytes
3438 and BEG and END count bytes. */
3439 EMACS_INT same_at_start = BEGV_BYTE;
3440 EMACS_INT same_at_end = ZV_BYTE;
3441 EMACS_INT overlap;
3442 /* There is still a possibility we will find the need to do code
3443 conversion. If that happens, we set this variable to 1 to
3444 give up on handling REPLACE in the optimized way. */
3445 int giveup_match_end = 0;
3446
3447 if (XINT (beg) != 0)
3448 {
3449 if (emacs_lseek (fd, XINT (beg), SEEK_SET) < 0)
3450 report_file_error ("Setting file position",
3451 Fcons (orig_filename, Qnil));
3452 }
3453
3454 immediate_quit = 1;
3455 QUIT;
3456 /* Count how many chars at the start of the file
3457 match the text at the beginning of the buffer. */
3458 while (1)
3459 {
3460 EMACS_INT nread, bufpos;
3461
3462 nread = emacs_read (fd, buffer, sizeof buffer);
3463 if (nread < 0)
3464 error ("IO error reading %s: %s",
3465 SSDATA (orig_filename), emacs_strerror (errno));
3466 else if (nread == 0)
3467 break;
3468
3469 if (CODING_REQUIRE_DETECTION (&coding))
3470 {
3471 coding_system = detect_coding_system ((unsigned char *) buffer,
3472 nread, nread, 1, 0,
3473 coding_system);
3474 setup_coding_system (coding_system, &coding);
3475 }
3476
3477 if (CODING_REQUIRE_DECODING (&coding))
3478 /* We found that the file should be decoded somehow.
3479 Let's give up here. */
3480 {
3481 giveup_match_end = 1;
3482 break;
3483 }
3484
3485 bufpos = 0;
3486 while (bufpos < nread && same_at_start < ZV_BYTE
3487 && FETCH_BYTE (same_at_start) == buffer[bufpos])
3488 same_at_start++, bufpos++;
3489 /* If we found a discrepancy, stop the scan.
3490 Otherwise loop around and scan the next bufferful. */
3491 if (bufpos != nread)
3492 break;
3493 }
3494 immediate_quit = 0;
3495 /* If the file matches the buffer completely,
3496 there's no need to replace anything. */
3497 if (same_at_start - BEGV_BYTE == XINT (end))
3498 {
3499 emacs_close (fd);
3500 specpdl_ptr--;
3501 /* Truncate the buffer to the size of the file. */
3502 del_range_1 (same_at_start, same_at_end, 0, 0);
3503 goto handled;
3504 }
3505 immediate_quit = 1;
3506 QUIT;
3507 /* Count how many chars at the end of the file
3508 match the text at the end of the buffer. But, if we have
3509 already found that decoding is necessary, don't waste time. */
3510 while (!giveup_match_end)
3511 {
3512 EMACS_INT total_read, nread, bufpos, curpos, trial;
3513
3514 /* At what file position are we now scanning? */
3515 curpos = XINT (end) - (ZV_BYTE - same_at_end);
3516 /* If the entire file matches the buffer tail, stop the scan. */
3517 if (curpos == 0)
3518 break;
3519 /* How much can we scan in the next step? */
3520 trial = min (curpos, sizeof buffer);
3521 if (emacs_lseek (fd, curpos - trial, SEEK_SET) < 0)
3522 report_file_error ("Setting file position",
3523 Fcons (orig_filename, Qnil));
3524
3525 total_read = nread = 0;
3526 while (total_read < trial)
3527 {
3528 nread = emacs_read (fd, buffer + total_read, trial - total_read);
3529 if (nread < 0)
3530 error ("IO error reading %s: %s",
3531 SDATA (orig_filename), emacs_strerror (errno));
3532 else if (nread == 0)
3533 break;
3534 total_read += nread;
3535 }
3536
3537 /* Scan this bufferful from the end, comparing with
3538 the Emacs buffer. */
3539 bufpos = total_read;
3540
3541 /* Compare with same_at_start to avoid counting some buffer text
3542 as matching both at the file's beginning and at the end. */
3543 while (bufpos > 0 && same_at_end > same_at_start
3544 && FETCH_BYTE (same_at_end - 1) == buffer[bufpos - 1])
3545 same_at_end--, bufpos--;
3546
3547 /* If we found a discrepancy, stop the scan.
3548 Otherwise loop around and scan the preceding bufferful. */
3549 if (bufpos != 0)
3550 {
3551 /* If this discrepancy is because of code conversion,
3552 we cannot use this method; giveup and try the other. */
3553 if (same_at_end > same_at_start
3554 && FETCH_BYTE (same_at_end - 1) >= 0200
3555 && ! NILP (BVAR (current_buffer, enable_multibyte_characters))
3556 && (CODING_MAY_REQUIRE_DECODING (&coding)))
3557 giveup_match_end = 1;
3558 break;
3559 }
3560
3561 if (nread == 0)
3562 break;
3563 }
3564 immediate_quit = 0;
3565
3566 if (! giveup_match_end)
3567 {
3568 EMACS_INT temp;
3569
3570 /* We win! We can handle REPLACE the optimized way. */
3571
3572 /* Extend the start of non-matching text area to multibyte
3573 character boundary. */
3574 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3575 while (same_at_start > BEGV_BYTE
3576 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3577 same_at_start--;
3578
3579 /* Extend the end of non-matching text area to multibyte
3580 character boundary. */
3581 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3582 while (same_at_end < ZV_BYTE
3583 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3584 same_at_end++;
3585
3586 /* Don't try to reuse the same piece of text twice. */
3587 overlap = (same_at_start - BEGV_BYTE
3588 - (same_at_end + st.st_size - ZV));
3589 if (overlap > 0)
3590 same_at_end += overlap;
3591
3592 /* Arrange to read only the nonmatching middle part of the file. */
3593 XSETFASTINT (beg, XINT (beg) + (same_at_start - BEGV_BYTE));
3594 XSETFASTINT (end, XINT (end) - (ZV_BYTE - same_at_end));
3595
3596 del_range_byte (same_at_start, same_at_end, 0);
3597 /* Insert from the file at the proper position. */
3598 temp = BYTE_TO_CHAR (same_at_start);
3599 SET_PT_BOTH (temp, same_at_start);
3600
3601 /* If display currently starts at beginning of line,
3602 keep it that way. */
3603 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3604 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
3605
3606 replace_handled = 1;
3607 }
3608 }
3609
3610 /* If requested, replace the accessible part of the buffer
3611 with the file contents. Avoid replacing text at the
3612 beginning or end of the buffer that matches the file contents;
3613 that preserves markers pointing to the unchanged parts.
3614
3615 Here we implement this feature for the case where code conversion
3616 is needed, in a simple way that needs a lot of memory.
3617 The preceding if-statement handles the case of no conversion
3618 in a more optimized way. */
3619 if (!NILP (replace) && ! replace_handled && BEGV < ZV)
3620 {
3621 EMACS_INT same_at_start = BEGV_BYTE;
3622 EMACS_INT same_at_end = ZV_BYTE;
3623 EMACS_INT same_at_start_charpos;
3624 EMACS_INT inserted_chars;
3625 EMACS_INT overlap;
3626 EMACS_INT bufpos;
3627 unsigned char *decoded;
3628 EMACS_INT temp;
3629 EMACS_INT this = 0;
3630 int this_count = SPECPDL_INDEX ();
3631 int multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
3632 Lisp_Object conversion_buffer;
3633
3634 conversion_buffer = code_conversion_save (1, multibyte);
3635
3636 /* First read the whole file, performing code conversion into
3637 CONVERSION_BUFFER. */
3638
3639 if (emacs_lseek (fd, XINT (beg), SEEK_SET) < 0)
3640 report_file_error ("Setting file position",
3641 Fcons (orig_filename, Qnil));
3642
3643 total = st.st_size; /* Total bytes in the file. */
3644 how_much = 0; /* Bytes read from file so far. */
3645 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */
3646 unprocessed = 0; /* Bytes not processed in previous loop. */
3647
3648 GCPRO1 (conversion_buffer);
3649 while (how_much < total)
3650 {
3651 /* We read one bunch by one (READ_BUF_SIZE bytes) to allow
3652 quitting while reading a huge while. */
3653 /* try is reserved in some compilers (Microsoft C) */
3654 EMACS_INT trytry = min (total - how_much,
3655 READ_BUF_SIZE - unprocessed);
3656
3657 /* Allow quitting out of the actual I/O. */
3658 immediate_quit = 1;
3659 QUIT;
3660 this = emacs_read (fd, read_buf + unprocessed, trytry);
3661 immediate_quit = 0;
3662
3663 if (this <= 0)
3664 break;
3665
3666 how_much += this;
3667
3668 BUF_TEMP_SET_PT (XBUFFER (conversion_buffer),
3669 BUF_Z (XBUFFER (conversion_buffer)));
3670 decode_coding_c_string (&coding, (unsigned char *) read_buf,
3671 unprocessed + this, conversion_buffer);
3672 unprocessed = coding.carryover_bytes;
3673 if (coding.carryover_bytes > 0)
3674 memcpy (read_buf, coding.carryover, unprocessed);
3675 }
3676 UNGCPRO;
3677 emacs_close (fd);
3678
3679 /* We should remove the unwind_protect calling
3680 close_file_unwind, but other stuff has been added the stack,
3681 so defer the removal till we reach the `handled' label. */
3682 deferred_remove_unwind_protect = 1;
3683
3684 /* At this point, HOW_MUCH should equal TOTAL, or should be <= 0
3685 if we couldn't read the file. */
3686
3687 if (this < 0)
3688 error ("IO error reading %s: %s",
3689 SDATA (orig_filename), emacs_strerror (errno));
3690
3691 if (unprocessed > 0)
3692 {
3693 coding.mode |= CODING_MODE_LAST_BLOCK;
3694 decode_coding_c_string (&coding, (unsigned char *) read_buf,
3695 unprocessed, conversion_buffer);
3696 coding.mode &= ~CODING_MODE_LAST_BLOCK;
3697 }
3698
3699 coding_system = CODING_ID_NAME (coding.id);
3700 set_coding_system = 1;
3701 decoded = BUF_BEG_ADDR (XBUFFER (conversion_buffer));
3702 inserted = (BUF_Z_BYTE (XBUFFER (conversion_buffer))
3703 - BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
3704
3705 /* Compare the beginning of the converted string with the buffer
3706 text. */
3707
3708 bufpos = 0;
3709 while (bufpos < inserted && same_at_start < same_at_end
3710 && FETCH_BYTE (same_at_start) == decoded[bufpos])
3711 same_at_start++, bufpos++;
3712
3713 /* If the file matches the head of buffer completely,
3714 there's no need to replace anything. */
3715
3716 if (bufpos == inserted)
3717 {
3718 /* Truncate the buffer to the size of the file. */
3719 if (same_at_start == same_at_end)
3720 nochange = 1;
3721 else
3722 del_range_byte (same_at_start, same_at_end, 0);
3723 inserted = 0;
3724
3725 unbind_to (this_count, Qnil);
3726 goto handled;
3727 }
3728
3729 /* Extend the start of non-matching text area to the previous
3730 multibyte character boundary. */
3731 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3732 while (same_at_start > BEGV_BYTE
3733 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3734 same_at_start--;
3735
3736 /* Scan this bufferful from the end, comparing with
3737 the Emacs buffer. */
3738 bufpos = inserted;
3739
3740 /* Compare with same_at_start to avoid counting some buffer text
3741 as matching both at the file's beginning and at the end. */
3742 while (bufpos > 0 && same_at_end > same_at_start
3743 && FETCH_BYTE (same_at_end - 1) == decoded[bufpos - 1])
3744 same_at_end--, bufpos--;
3745
3746 /* Extend the end of non-matching text area to the next
3747 multibyte character boundary. */
3748 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3749 while (same_at_end < ZV_BYTE
3750 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3751 same_at_end++;
3752
3753 /* Don't try to reuse the same piece of text twice. */
3754 overlap = same_at_start - BEGV_BYTE - (same_at_end + inserted - ZV_BYTE);
3755 if (overlap > 0)
3756 same_at_end += overlap;
3757
3758 /* If display currently starts at beginning of line,
3759 keep it that way. */
3760 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3761 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
3762
3763 /* Replace the chars that we need to replace,
3764 and update INSERTED to equal the number of bytes
3765 we are taking from the decoded string. */
3766 inserted -= (ZV_BYTE - same_at_end) + (same_at_start - BEGV_BYTE);
3767
3768 if (same_at_end != same_at_start)
3769 {
3770 del_range_byte (same_at_start, same_at_end, 0);
3771 temp = GPT;
3772 same_at_start = GPT_BYTE;
3773 }
3774 else
3775 {
3776 temp = BYTE_TO_CHAR (same_at_start);
3777 }
3778 /* Insert from the file at the proper position. */
3779 SET_PT_BOTH (temp, same_at_start);
3780 same_at_start_charpos
3781 = buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
3782 same_at_start - BEGV_BYTE
3783 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
3784 inserted_chars
3785 = (buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
3786 same_at_start + inserted - BEGV_BYTE
3787 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)))
3788 - same_at_start_charpos);
3789 /* This binding is to avoid ask-user-about-supersession-threat
3790 being called in insert_from_buffer (via in
3791 prepare_to_modify_buffer). */
3792 specbind (intern ("buffer-file-name"), Qnil);
3793 insert_from_buffer (XBUFFER (conversion_buffer),
3794 same_at_start_charpos, inserted_chars, 0);
3795 /* Set `inserted' to the number of inserted characters. */
3796 inserted = PT - temp;
3797 /* Set point before the inserted characters. */
3798 SET_PT_BOTH (temp, same_at_start);
3799
3800 unbind_to (this_count, Qnil);
3801
3802 goto handled;
3803 }
3804
3805 if (! not_regular)
3806 total = XINT (end) - XINT (beg);
3807 else
3808 /* For a special file, all we can do is guess. */
3809 total = READ_BUF_SIZE;
3810
3811 if (NILP (visit) && total > 0)
3812 {
3813 #ifdef CLASH_DETECTION
3814 if (!NILP (BVAR (current_buffer, file_truename))
3815 /* Make binding buffer-file-name to nil effective. */
3816 && !NILP (BVAR (current_buffer, filename))
3817 && SAVE_MODIFF >= MODIFF)
3818 we_locked_file = 1;
3819 #endif /* CLASH_DETECTION */
3820 prepare_to_modify_buffer (GPT, GPT, NULL);
3821 }
3822
3823 move_gap (PT);
3824 if (GAP_SIZE < total)
3825 make_gap (total - GAP_SIZE);
3826
3827 if (XINT (beg) != 0 || !NILP (replace))
3828 {
3829 if (emacs_lseek (fd, XINT (beg), SEEK_SET) < 0)
3830 report_file_error ("Setting file position",
3831 Fcons (orig_filename, Qnil));
3832 }
3833
3834 /* In the following loop, HOW_MUCH contains the total bytes read so
3835 far for a regular file, and not changed for a special file. But,
3836 before exiting the loop, it is set to a negative value if I/O
3837 error occurs. */
3838 how_much = 0;
3839
3840 /* Total bytes inserted. */
3841 inserted = 0;
3842
3843 /* Here, we don't do code conversion in the loop. It is done by
3844 decode_coding_gap after all data are read into the buffer. */
3845 {
3846 EMACS_INT gap_size = GAP_SIZE;
3847
3848 while (how_much < total)
3849 {
3850 /* try is reserved in some compilers (Microsoft C) */
3851 EMACS_INT trytry = min (total - how_much, READ_BUF_SIZE);
3852 EMACS_INT this;
3853
3854 if (not_regular)
3855 {
3856 Lisp_Object nbytes;
3857
3858 /* Maybe make more room. */
3859 if (gap_size < trytry)
3860 {
3861 make_gap (total - gap_size);
3862 gap_size = GAP_SIZE;
3863 }
3864
3865 /* Read from the file, capturing `quit'. When an
3866 error occurs, end the loop, and arrange for a quit
3867 to be signaled after decoding the text we read. */
3868 non_regular_fd = fd;
3869 non_regular_inserted = inserted;
3870 non_regular_nbytes = trytry;
3871 nbytes = internal_condition_case_1 (read_non_regular,
3872 Qnil, Qerror,
3873 read_non_regular_quit);
3874 if (NILP (nbytes))
3875 {
3876 read_quit = 1;
3877 break;
3878 }
3879
3880 this = XINT (nbytes);
3881 }
3882 else
3883 {
3884 /* Allow quitting out of the actual I/O. We don't make text
3885 part of the buffer until all the reading is done, so a C-g
3886 here doesn't do any harm. */
3887 immediate_quit = 1;
3888 QUIT;
3889 this = emacs_read (fd,
3890 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
3891 + inserted),
3892 trytry);
3893 immediate_quit = 0;
3894 }
3895
3896 if (this <= 0)
3897 {
3898 how_much = this;
3899 break;
3900 }
3901
3902 gap_size -= this;
3903
3904 /* For a regular file, where TOTAL is the real size,
3905 count HOW_MUCH to compare with it.
3906 For a special file, where TOTAL is just a buffer size,
3907 so don't bother counting in HOW_MUCH.
3908 (INSERTED is where we count the number of characters inserted.) */
3909 if (! not_regular)
3910 how_much += this;
3911 inserted += this;
3912 }
3913 }
3914
3915 /* Now we have read all the file data into the gap.
3916 If it was empty, undo marking the buffer modified. */
3917
3918 if (inserted == 0)
3919 {
3920 #ifdef CLASH_DETECTION
3921 if (we_locked_file)
3922 unlock_file (BVAR (current_buffer, file_truename));
3923 #endif
3924 Vdeactivate_mark = old_Vdeactivate_mark;
3925 }
3926 else
3927 Vdeactivate_mark = Qt;
3928
3929 /* Make the text read part of the buffer. */
3930 GAP_SIZE -= inserted;
3931 GPT += inserted;
3932 GPT_BYTE += inserted;
3933 ZV += inserted;
3934 ZV_BYTE += inserted;
3935 Z += inserted;
3936 Z_BYTE += inserted;
3937
3938 if (GAP_SIZE > 0)
3939 /* Put an anchor to ensure multi-byte form ends at gap. */
3940 *GPT_ADDR = 0;
3941
3942 emacs_close (fd);
3943
3944 /* Discard the unwind protect for closing the file. */
3945 specpdl_ptr--;
3946
3947 if (how_much < 0)
3948 error ("IO error reading %s: %s",
3949 SDATA (orig_filename), emacs_strerror (errno));
3950
3951 notfound:
3952
3953 if (NILP (coding_system))
3954 {
3955 /* The coding system is not yet decided. Decide it by an
3956 optimized method for handling `coding:' tag.
3957
3958 Note that we can get here only if the buffer was empty
3959 before the insertion. */
3960
3961 if (!NILP (Vcoding_system_for_read))
3962 coding_system = Vcoding_system_for_read;
3963 else
3964 {
3965 /* Since we are sure that the current buffer was empty
3966 before the insertion, we can toggle
3967 enable-multibyte-characters directly here without taking
3968 care of marker adjustment. By this way, we can run Lisp
3969 program safely before decoding the inserted text. */
3970 Lisp_Object unwind_data;
3971 int count1 = SPECPDL_INDEX ();
3972
3973 unwind_data = Fcons (BVAR (current_buffer, enable_multibyte_characters),
3974 Fcons (BVAR (current_buffer, undo_list),
3975 Fcurrent_buffer ()));
3976 BVAR (current_buffer, enable_multibyte_characters) = Qnil;
3977 BVAR (current_buffer, undo_list) = Qt;
3978 record_unwind_protect (decide_coding_unwind, unwind_data);
3979
3980 if (inserted > 0 && ! NILP (Vset_auto_coding_function))
3981 {
3982 coding_system = call2 (Vset_auto_coding_function,
3983 filename, make_number (inserted));
3984 }
3985
3986 if (NILP (coding_system))
3987 {
3988 /* If the coding system is not yet decided, check
3989 file-coding-system-alist. */
3990 Lisp_Object args[6];
3991
3992 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3993 args[2] = visit, args[3] = beg, args[4] = end, args[5] = Qnil;
3994 coding_system = Ffind_operation_coding_system (6, args);
3995 if (CONSP (coding_system))
3996 coding_system = XCAR (coding_system);
3997 }
3998 unbind_to (count1, Qnil);
3999 inserted = Z_BYTE - BEG_BYTE;
4000 }
4001
4002 if (NILP (coding_system))
4003 coding_system = Qundecided;
4004 else
4005 CHECK_CODING_SYSTEM (coding_system);
4006
4007 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
4008 /* We must suppress all character code conversion except for
4009 end-of-line conversion. */
4010 coding_system = raw_text_coding_system (coding_system);
4011 setup_coding_system (coding_system, &coding);
4012 /* Ensure we set Vlast_coding_system_used. */
4013 set_coding_system = 1;
4014 }
4015
4016 if (!NILP (visit))
4017 {
4018 /* When we visit a file by raw-text, we change the buffer to
4019 unibyte. */
4020 if (CODING_FOR_UNIBYTE (&coding)
4021 /* Can't do this if part of the buffer might be preserved. */
4022 && NILP (replace))
4023 /* Visiting a file with these coding system makes the buffer
4024 unibyte. */
4025 BVAR (current_buffer, enable_multibyte_characters) = Qnil;
4026 }
4027
4028 coding.dst_multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
4029 if (CODING_MAY_REQUIRE_DECODING (&coding)
4030 && (inserted > 0 || CODING_REQUIRE_FLUSHING (&coding)))
4031 {
4032 move_gap_both (PT, PT_BYTE);
4033 GAP_SIZE += inserted;
4034 ZV_BYTE -= inserted;
4035 Z_BYTE -= inserted;
4036 ZV -= inserted;
4037 Z -= inserted;
4038 decode_coding_gap (&coding, inserted, inserted);
4039 inserted = coding.produced_char;
4040 coding_system = CODING_ID_NAME (coding.id);
4041 }
4042 else if (inserted > 0)
4043 adjust_after_insert (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4044 inserted);
4045
4046 /* Now INSERTED is measured in characters. */
4047
4048 handled:
4049
4050 if (deferred_remove_unwind_protect)
4051 /* If requested above, discard the unwind protect for closing the
4052 file. */
4053 specpdl_ptr--;
4054
4055 if (!NILP (visit))
4056 {
4057 if (!EQ (BVAR (current_buffer, undo_list), Qt) && !nochange)
4058 BVAR (current_buffer, undo_list) = Qnil;
4059
4060 if (NILP (handler))
4061 {
4062 current_buffer->modtime = st.st_mtime;
4063 current_buffer->modtime_size = st.st_size;
4064 BVAR (current_buffer, filename) = orig_filename;
4065 }
4066
4067 SAVE_MODIFF = MODIFF;
4068 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
4069 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4070 #ifdef CLASH_DETECTION
4071 if (NILP (handler))
4072 {
4073 if (!NILP (BVAR (current_buffer, file_truename)))
4074 unlock_file (BVAR (current_buffer, file_truename));
4075 unlock_file (filename);
4076 }
4077 #endif /* CLASH_DETECTION */
4078 if (not_regular)
4079 xsignal2 (Qfile_error,
4080 build_string ("not a regular file"), orig_filename);
4081 }
4082
4083 if (set_coding_system)
4084 Vlast_coding_system_used = coding_system;
4085
4086 if (! NILP (Ffboundp (Qafter_insert_file_set_coding)))
4087 {
4088 insval = call2 (Qafter_insert_file_set_coding, make_number (inserted),
4089 visit);
4090 if (! NILP (insval))
4091 {
4092 CHECK_NUMBER (insval);
4093 inserted = XFASTINT (insval);
4094 }
4095 }
4096
4097 /* Decode file format. */
4098 if (inserted > 0)
4099 {
4100 /* Don't run point motion or modification hooks when decoding. */
4101 int count1 = SPECPDL_INDEX ();
4102 EMACS_INT old_inserted = inserted;
4103 specbind (Qinhibit_point_motion_hooks, Qt);
4104 specbind (Qinhibit_modification_hooks, Qt);
4105
4106 /* Save old undo list and don't record undo for decoding. */
4107 old_undo = BVAR (current_buffer, undo_list);
4108 BVAR (current_buffer, undo_list) = Qt;
4109
4110 if (NILP (replace))
4111 {
4112 insval = call3 (Qformat_decode,
4113 Qnil, make_number (inserted), visit);
4114 CHECK_NUMBER (insval);
4115 inserted = XFASTINT (insval);
4116 }
4117 else
4118 {
4119 /* If REPLACE is non-nil and we succeeded in not replacing the
4120 beginning or end of the buffer text with the file's contents,
4121 call format-decode with `point' positioned at the beginning
4122 of the buffer and `inserted' equalling the number of
4123 characters in the buffer. Otherwise, format-decode might
4124 fail to correctly analyze the beginning or end of the buffer.
4125 Hence we temporarily save `point' and `inserted' here and
4126 restore `point' iff format-decode did not insert or delete
4127 any text. Otherwise we leave `point' at point-min. */
4128 EMACS_INT opoint = PT;
4129 EMACS_INT opoint_byte = PT_BYTE;
4130 EMACS_INT oinserted = ZV - BEGV;
4131 int ochars_modiff = CHARS_MODIFF;
4132
4133 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4134 insval = call3 (Qformat_decode,
4135 Qnil, make_number (oinserted), visit);
4136 CHECK_NUMBER (insval);
4137 if (ochars_modiff == CHARS_MODIFF)
4138 /* format_decode didn't modify buffer's characters => move
4139 point back to position before inserted text and leave
4140 value of inserted alone. */
4141 SET_PT_BOTH (opoint, opoint_byte);
4142 else
4143 /* format_decode modified buffer's characters => consider
4144 entire buffer changed and leave point at point-min. */
4145 inserted = XFASTINT (insval);
4146 }
4147
4148 /* For consistency with format-decode call these now iff inserted > 0
4149 (martin 2007-06-28). */
4150 p = Vafter_insert_file_functions;
4151 while (CONSP (p))
4152 {
4153 if (NILP (replace))
4154 {
4155 insval = call1 (XCAR (p), make_number (inserted));
4156 if (!NILP (insval))
4157 {
4158 CHECK_NUMBER (insval);
4159 inserted = XFASTINT (insval);
4160 }
4161 }
4162 else
4163 {
4164 /* For the rationale of this see the comment on
4165 format-decode above. */
4166 EMACS_INT opoint = PT;
4167 EMACS_INT opoint_byte = PT_BYTE;
4168 EMACS_INT oinserted = ZV - BEGV;
4169 int ochars_modiff = CHARS_MODIFF;
4170
4171 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4172 insval = call1 (XCAR (p), make_number (oinserted));
4173 if (!NILP (insval))
4174 {
4175 CHECK_NUMBER (insval);
4176 if (ochars_modiff == CHARS_MODIFF)
4177 /* after_insert_file_functions didn't modify
4178 buffer's characters => move point back to
4179 position before inserted text and leave value of
4180 inserted alone. */
4181 SET_PT_BOTH (opoint, opoint_byte);
4182 else
4183 /* after_insert_file_functions did modify buffer's
4184 characters => consider entire buffer changed and
4185 leave point at point-min. */
4186 inserted = XFASTINT (insval);
4187 }
4188 }
4189
4190 QUIT;
4191 p = XCDR (p);
4192 }
4193
4194 if (NILP (visit))
4195 {
4196 BVAR (current_buffer, undo_list) = old_undo;
4197 if (CONSP (old_undo) && inserted != old_inserted)
4198 {
4199 /* Adjust the last undo record for the size change during
4200 the format conversion. */
4201 Lisp_Object tem = XCAR (old_undo);
4202 if (CONSP (tem) && INTEGERP (XCAR (tem))
4203 && INTEGERP (XCDR (tem))
4204 && XFASTINT (XCDR (tem)) == PT + old_inserted)
4205 XSETCDR (tem, make_number (PT + inserted));
4206 }
4207 }
4208 else
4209 /* If undo_list was Qt before, keep it that way.
4210 Otherwise start with an empty undo_list. */
4211 BVAR (current_buffer, undo_list) = EQ (old_undo, Qt) ? Qt : Qnil;
4212
4213 unbind_to (count1, Qnil);
4214 }
4215
4216 /* Call after-change hooks for the inserted text, aside from the case
4217 of normal visiting (not with REPLACE), which is done in a new buffer
4218 "before" the buffer is changed. */
4219 if (inserted > 0 && total > 0
4220 && (NILP (visit) || !NILP (replace)))
4221 {
4222 signal_after_change (PT, 0, inserted);
4223 update_compositions (PT, PT, CHECK_BORDER);
4224 }
4225
4226 if (!NILP (visit)
4227 && current_buffer->modtime == -1)
4228 {
4229 /* If visiting nonexistent file, return nil. */
4230 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
4231 }
4232
4233 if (read_quit)
4234 Fsignal (Qquit, Qnil);
4235
4236 /* ??? Retval needs to be dealt with in all cases consistently. */
4237 if (NILP (val))
4238 val = Fcons (orig_filename,
4239 Fcons (make_number (inserted),
4240 Qnil));
4241
4242 RETURN_UNGCPRO (unbind_to (count, val));
4243 }
4244 \f
4245 static Lisp_Object build_annotations (Lisp_Object, Lisp_Object);
4246
4247 static Lisp_Object
4248 build_annotations_unwind (Lisp_Object arg)
4249 {
4250 Vwrite_region_annotation_buffers = arg;
4251 return Qnil;
4252 }
4253
4254 /* Decide the coding-system to encode the data with. */
4255
4256 static Lisp_Object
4257 choose_write_coding_system (Lisp_Object start, Lisp_Object end, Lisp_Object filename,
4258 Lisp_Object append, Lisp_Object visit, Lisp_Object lockname,
4259 struct coding_system *coding)
4260 {
4261 Lisp_Object val;
4262 Lisp_Object eol_parent = Qnil;
4263
4264 if (auto_saving
4265 && NILP (Fstring_equal (BVAR (current_buffer, filename),
4266 BVAR (current_buffer, auto_save_file_name))))
4267 {
4268 val = Qutf_8_emacs;
4269 eol_parent = Qunix;
4270 }
4271 else if (!NILP (Vcoding_system_for_write))
4272 {
4273 val = Vcoding_system_for_write;
4274 if (coding_system_require_warning
4275 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4276 /* Confirm that VAL can surely encode the current region. */
4277 val = call5 (Vselect_safe_coding_system_function,
4278 start, end, Fcons (Qt, Fcons (val, Qnil)),
4279 Qnil, filename);
4280 }
4281 else
4282 {
4283 /* If the variable `buffer-file-coding-system' is set locally,
4284 it means that the file was read with some kind of code
4285 conversion or the variable is explicitly set by users. We
4286 had better write it out with the same coding system even if
4287 `enable-multibyte-characters' is nil.
4288
4289 If it is not set locally, we anyway have to convert EOL
4290 format if the default value of `buffer-file-coding-system'
4291 tells that it is not Unix-like (LF only) format. */
4292 int using_default_coding = 0;
4293 int force_raw_text = 0;
4294
4295 val = BVAR (current_buffer, buffer_file_coding_system);
4296 if (NILP (val)
4297 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil)))
4298 {
4299 val = Qnil;
4300 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
4301 force_raw_text = 1;
4302 }
4303
4304 if (NILP (val))
4305 {
4306 /* Check file-coding-system-alist. */
4307 Lisp_Object args[7], coding_systems;
4308
4309 args[0] = Qwrite_region; args[1] = start; args[2] = end;
4310 args[3] = filename; args[4] = append; args[5] = visit;
4311 args[6] = lockname;
4312 coding_systems = Ffind_operation_coding_system (7, args);
4313 if (CONSP (coding_systems) && !NILP (XCDR (coding_systems)))
4314 val = XCDR (coding_systems);
4315 }
4316
4317 if (NILP (val))
4318 {
4319 /* If we still have not decided a coding system, use the
4320 default value of buffer-file-coding-system. */
4321 val = BVAR (current_buffer, buffer_file_coding_system);
4322 using_default_coding = 1;
4323 }
4324
4325 if (! NILP (val) && ! force_raw_text)
4326 {
4327 Lisp_Object spec, attrs;
4328
4329 CHECK_CODING_SYSTEM_GET_SPEC (val, spec);
4330 attrs = AREF (spec, 0);
4331 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text))
4332 force_raw_text = 1;
4333 }
4334
4335 if (!force_raw_text
4336 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4337 /* Confirm that VAL can surely encode the current region. */
4338 val = call5 (Vselect_safe_coding_system_function,
4339 start, end, val, Qnil, filename);
4340
4341 /* If the decided coding-system doesn't specify end-of-line
4342 format, we use that of
4343 `default-buffer-file-coding-system'. */
4344 if (! using_default_coding
4345 && ! NILP (BVAR (&buffer_defaults, buffer_file_coding_system)))
4346 val = (coding_inherit_eol_type
4347 (val, BVAR (&buffer_defaults, buffer_file_coding_system)));
4348
4349 /* If we decide not to encode text, use `raw-text' or one of its
4350 subsidiaries. */
4351 if (force_raw_text)
4352 val = raw_text_coding_system (val);
4353 }
4354
4355 val = coding_inherit_eol_type (val, eol_parent);
4356 setup_coding_system (val, coding);
4357
4358 if (!STRINGP (start) && !NILP (BVAR (current_buffer, selective_display)))
4359 coding->mode |= CODING_MODE_SELECTIVE_DISPLAY;
4360 return val;
4361 }
4362
4363 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7,
4364 "r\nFWrite region to file: \ni\ni\ni\np",
4365 doc: /* Write current region into specified file.
4366 When called from a program, requires three arguments:
4367 START, END and FILENAME. START and END are normally buffer positions
4368 specifying the part of the buffer to write.
4369 If START is nil, that means to use the entire buffer contents.
4370 If START is a string, then output that string to the file
4371 instead of any buffer contents; END is ignored.
4372
4373 Optional fourth argument APPEND if non-nil means
4374 append to existing file contents (if any). If it is an integer,
4375 seek to that offset in the file before writing.
4376 Optional fifth argument VISIT, if t or a string, means
4377 set the last-save-file-modtime of buffer to this file's modtime
4378 and mark buffer not modified.
4379 If VISIT is a string, it is a second file name;
4380 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4381 VISIT is also the file name to lock and unlock for clash detection.
4382 If VISIT is neither t nor nil nor a string,
4383 that means do not display the \"Wrote file\" message.
4384 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4385 use for locking and unlocking, overriding FILENAME and VISIT.
4386 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4387 for an existing file with the same name. If MUSTBENEW is `excl',
4388 that means to get an error if the file already exists; never overwrite.
4389 If MUSTBENEW is neither nil nor `excl', that means ask for
4390 confirmation before overwriting, but do go ahead and overwrite the file
4391 if the user confirms.
4392
4393 This does code conversion according to the value of
4394 `coding-system-for-write', `buffer-file-coding-system', or
4395 `file-coding-system-alist', and sets the variable
4396 `last-coding-system-used' to the coding system actually used.
4397
4398 This calls `write-region-annotate-functions' at the start, and
4399 `write-region-post-annotation-function' at the end. */)
4400 (Lisp_Object start, Lisp_Object end, Lisp_Object filename, Lisp_Object append, Lisp_Object visit, Lisp_Object lockname, Lisp_Object mustbenew)
4401 {
4402 register int desc;
4403 int failure;
4404 int save_errno = 0;
4405 const char *fn;
4406 struct stat st;
4407 int count = SPECPDL_INDEX ();
4408 int count1;
4409 Lisp_Object handler;
4410 Lisp_Object visit_file;
4411 Lisp_Object annotations;
4412 Lisp_Object encoded_filename;
4413 int visiting = (EQ (visit, Qt) || STRINGP (visit));
4414 int quietly = !NILP (visit);
4415 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4416 struct buffer *given_buffer;
4417 struct coding_system coding;
4418
4419 if (current_buffer->base_buffer && visiting)
4420 error ("Cannot do file visiting in an indirect buffer");
4421
4422 if (!NILP (start) && !STRINGP (start))
4423 validate_region (&start, &end);
4424
4425 visit_file = Qnil;
4426 GCPRO5 (start, filename, visit, visit_file, lockname);
4427
4428 filename = Fexpand_file_name (filename, Qnil);
4429
4430 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl))
4431 barf_or_query_if_file_exists (filename, "overwrite", 1, 0, 1);
4432
4433 if (STRINGP (visit))
4434 visit_file = Fexpand_file_name (visit, Qnil);
4435 else
4436 visit_file = filename;
4437
4438 if (NILP (lockname))
4439 lockname = visit_file;
4440
4441 annotations = Qnil;
4442
4443 /* If the file name has special constructs in it,
4444 call the corresponding file handler. */
4445 handler = Ffind_file_name_handler (filename, Qwrite_region);
4446 /* If FILENAME has no handler, see if VISIT has one. */
4447 if (NILP (handler) && STRINGP (visit))
4448 handler = Ffind_file_name_handler (visit, Qwrite_region);
4449
4450 if (!NILP (handler))
4451 {
4452 Lisp_Object val;
4453 val = call6 (handler, Qwrite_region, start, end,
4454 filename, append, visit);
4455
4456 if (visiting)
4457 {
4458 SAVE_MODIFF = MODIFF;
4459 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4460 BVAR (current_buffer, filename) = visit_file;
4461 }
4462 UNGCPRO;
4463 return val;
4464 }
4465
4466 record_unwind_protect (save_restriction_restore, save_restriction_save ());
4467
4468 /* Special kludge to simplify auto-saving. */
4469 if (NILP (start))
4470 {
4471 /* Do it later, so write-region-annotate-function can work differently
4472 if we save "the buffer" vs "a region".
4473 This is useful in tar-mode. --Stef
4474 XSETFASTINT (start, BEG);
4475 XSETFASTINT (end, Z); */
4476 Fwiden ();
4477 }
4478
4479 record_unwind_protect (build_annotations_unwind,
4480 Vwrite_region_annotation_buffers);
4481 Vwrite_region_annotation_buffers = Fcons (Fcurrent_buffer (), Qnil);
4482 count1 = SPECPDL_INDEX ();
4483
4484 given_buffer = current_buffer;
4485
4486 if (!STRINGP (start))
4487 {
4488 annotations = build_annotations (start, end);
4489
4490 if (current_buffer != given_buffer)
4491 {
4492 XSETFASTINT (start, BEGV);
4493 XSETFASTINT (end, ZV);
4494 }
4495 }
4496
4497 if (NILP (start))
4498 {
4499 XSETFASTINT (start, BEGV);
4500 XSETFASTINT (end, ZV);
4501 }
4502
4503 UNGCPRO;
4504
4505 GCPRO5 (start, filename, annotations, visit_file, lockname);
4506
4507 /* Decide the coding-system to encode the data with.
4508 We used to make this choice before calling build_annotations, but that
4509 leads to problems when a write-annotate-function takes care of
4510 unsavable chars (as was the case with X-Symbol). */
4511 Vlast_coding_system_used
4512 = choose_write_coding_system (start, end, filename,
4513 append, visit, lockname, &coding);
4514
4515 #ifdef CLASH_DETECTION
4516 if (!auto_saving)
4517 lock_file (lockname);
4518 #endif /* CLASH_DETECTION */
4519
4520 encoded_filename = ENCODE_FILE (filename);
4521
4522 fn = SSDATA (encoded_filename);
4523 desc = -1;
4524 if (!NILP (append))
4525 #ifdef DOS_NT
4526 desc = emacs_open (fn, O_WRONLY | O_BINARY, 0);
4527 #else /* not DOS_NT */
4528 desc = emacs_open (fn, O_WRONLY, 0);
4529 #endif /* not DOS_NT */
4530
4531 if (desc < 0 && (NILP (append) || errno == ENOENT))
4532 #ifdef DOS_NT
4533 desc = emacs_open (fn,
4534 O_WRONLY | O_CREAT | O_BINARY
4535 | (EQ (mustbenew, Qexcl) ? O_EXCL : O_TRUNC),
4536 S_IREAD | S_IWRITE);
4537 #else /* not DOS_NT */
4538 desc = emacs_open (fn, O_WRONLY | O_TRUNC | O_CREAT
4539 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0),
4540 auto_saving ? auto_save_mode_bits : 0666);
4541 #endif /* not DOS_NT */
4542
4543 if (desc < 0)
4544 {
4545 #ifdef CLASH_DETECTION
4546 save_errno = errno;
4547 if (!auto_saving) unlock_file (lockname);
4548 errno = save_errno;
4549 #endif /* CLASH_DETECTION */
4550 UNGCPRO;
4551 report_file_error ("Opening output file", Fcons (filename, Qnil));
4552 }
4553
4554 record_unwind_protect (close_file_unwind, make_number (desc));
4555
4556 if (!NILP (append) && !NILP (Ffile_regular_p (filename)))
4557 {
4558 long ret;
4559
4560 if (NUMBERP (append))
4561 ret = emacs_lseek (desc, XINT (append), SEEK_CUR);
4562 else
4563 ret = lseek (desc, 0, SEEK_END);
4564 if (ret < 0)
4565 {
4566 #ifdef CLASH_DETECTION
4567 if (!auto_saving) unlock_file (lockname);
4568 #endif /* CLASH_DETECTION */
4569 UNGCPRO;
4570 report_file_error ("Lseek error", Fcons (filename, Qnil));
4571 }
4572 }
4573
4574 UNGCPRO;
4575
4576 failure = 0;
4577 immediate_quit = 1;
4578
4579 if (STRINGP (start))
4580 {
4581 failure = 0 > a_write (desc, start, 0, SCHARS (start),
4582 &annotations, &coding);
4583 save_errno = errno;
4584 }
4585 else if (XINT (start) != XINT (end))
4586 {
4587 failure = 0 > a_write (desc, Qnil,
4588 XINT (start), XINT (end) - XINT (start),
4589 &annotations, &coding);
4590 save_errno = errno;
4591 }
4592 else
4593 {
4594 /* If file was empty, still need to write the annotations */
4595 coding.mode |= CODING_MODE_LAST_BLOCK;
4596 failure = 0 > a_write (desc, Qnil, XINT (end), 0, &annotations, &coding);
4597 save_errno = errno;
4598 }
4599
4600 if (CODING_REQUIRE_FLUSHING (&coding)
4601 && !(coding.mode & CODING_MODE_LAST_BLOCK)
4602 && ! failure)
4603 {
4604 /* We have to flush out a data. */
4605 coding.mode |= CODING_MODE_LAST_BLOCK;
4606 failure = 0 > e_write (desc, Qnil, 1, 1, &coding);
4607 save_errno = errno;
4608 }
4609
4610 immediate_quit = 0;
4611
4612 #ifdef HAVE_FSYNC
4613 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
4614 Disk full in NFS may be reported here. */
4615 /* mib says that closing the file will try to write as fast as NFS can do
4616 it, and that means the fsync here is not crucial for autosave files. */
4617 if (!auto_saving && !write_region_inhibit_fsync && fsync (desc) < 0)
4618 {
4619 /* If fsync fails with EINTR, don't treat that as serious. Also
4620 ignore EINVAL which happens when fsync is not supported on this
4621 file. */
4622 if (errno != EINTR && errno != EINVAL)
4623 failure = 1, save_errno = errno;
4624 }
4625 #endif
4626
4627 /* NFS can report a write failure now. */
4628 if (emacs_close (desc) < 0)
4629 failure = 1, save_errno = errno;
4630
4631 stat (fn, &st);
4632
4633 /* Discard the unwind protect for close_file_unwind. */
4634 specpdl_ptr = specpdl + count1;
4635
4636 /* Call write-region-post-annotation-function. */
4637 while (CONSP (Vwrite_region_annotation_buffers))
4638 {
4639 Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers);
4640 if (!NILP (Fbuffer_live_p (buf)))
4641 {
4642 Fset_buffer (buf);
4643 if (FUNCTIONP (Vwrite_region_post_annotation_function))
4644 call0 (Vwrite_region_post_annotation_function);
4645 }
4646 Vwrite_region_annotation_buffers
4647 = XCDR (Vwrite_region_annotation_buffers);
4648 }
4649
4650 unbind_to (count, Qnil);
4651
4652 #ifdef CLASH_DETECTION
4653 if (!auto_saving)
4654 unlock_file (lockname);
4655 #endif /* CLASH_DETECTION */
4656
4657 /* Do this before reporting IO error
4658 to avoid a "file has changed on disk" warning on
4659 next attempt to save. */
4660 if (visiting)
4661 {
4662 current_buffer->modtime = st.st_mtime;
4663 current_buffer->modtime_size = st.st_size;
4664 }
4665
4666 if (failure)
4667 error ("IO error writing %s: %s", SDATA (filename),
4668 emacs_strerror (save_errno));
4669
4670 if (visiting)
4671 {
4672 SAVE_MODIFF = MODIFF;
4673 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4674 BVAR (current_buffer, filename) = visit_file;
4675 update_mode_lines++;
4676 }
4677 else if (quietly)
4678 {
4679 if (auto_saving
4680 && ! NILP (Fstring_equal (BVAR (current_buffer, filename),
4681 BVAR (current_buffer, auto_save_file_name))))
4682 SAVE_MODIFF = MODIFF;
4683
4684 return Qnil;
4685 }
4686
4687 if (!auto_saving)
4688 message_with_string ((INTEGERP (append)
4689 ? "Updated %s"
4690 : ! NILP (append)
4691 ? "Added to %s"
4692 : "Wrote %s"),
4693 visit_file, 1);
4694
4695 return Qnil;
4696 }
4697 \f
4698 Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object);
4699
4700 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
4701 doc: /* Return t if (car A) is numerically less than (car B). */)
4702 (Lisp_Object a, Lisp_Object b)
4703 {
4704 return Flss (Fcar (a), Fcar (b));
4705 }
4706
4707 /* Build the complete list of annotations appropriate for writing out
4708 the text between START and END, by calling all the functions in
4709 write-region-annotate-functions and merging the lists they return.
4710 If one of these functions switches to a different buffer, we assume
4711 that buffer contains altered text. Therefore, the caller must
4712 make sure to restore the current buffer in all cases,
4713 as save-excursion would do. */
4714
4715 static Lisp_Object
4716 build_annotations (Lisp_Object start, Lisp_Object end)
4717 {
4718 Lisp_Object annotations;
4719 Lisp_Object p, res;
4720 struct gcpro gcpro1, gcpro2;
4721 Lisp_Object original_buffer;
4722 int i, used_global = 0;
4723
4724 XSETBUFFER (original_buffer, current_buffer);
4725
4726 annotations = Qnil;
4727 p = Vwrite_region_annotate_functions;
4728 GCPRO2 (annotations, p);
4729 while (CONSP (p))
4730 {
4731 struct buffer *given_buffer = current_buffer;
4732 if (EQ (Qt, XCAR (p)) && !used_global)
4733 { /* Use the global value of the hook. */
4734 Lisp_Object arg[2];
4735 used_global = 1;
4736 arg[0] = Fdefault_value (Qwrite_region_annotate_functions);
4737 arg[1] = XCDR (p);
4738 p = Fappend (2, arg);
4739 continue;
4740 }
4741 Vwrite_region_annotations_so_far = annotations;
4742 res = call2 (XCAR (p), start, end);
4743 /* If the function makes a different buffer current,
4744 assume that means this buffer contains altered text to be output.
4745 Reset START and END from the buffer bounds
4746 and discard all previous annotations because they should have
4747 been dealt with by this function. */
4748 if (current_buffer != given_buffer)
4749 {
4750 Vwrite_region_annotation_buffers
4751 = Fcons (Fcurrent_buffer (),
4752 Vwrite_region_annotation_buffers);
4753 XSETFASTINT (start, BEGV);
4754 XSETFASTINT (end, ZV);
4755 annotations = Qnil;
4756 }
4757 Flength (res); /* Check basic validity of return value */
4758 annotations = merge (annotations, res, Qcar_less_than_car);
4759 p = XCDR (p);
4760 }
4761
4762 /* Now do the same for annotation functions implied by the file-format */
4763 if (auto_saving && (!EQ (BVAR (current_buffer, auto_save_file_format), Qt)))
4764 p = BVAR (current_buffer, auto_save_file_format);
4765 else
4766 p = BVAR (current_buffer, file_format);
4767 for (i = 0; CONSP (p); p = XCDR (p), ++i)
4768 {
4769 struct buffer *given_buffer = current_buffer;
4770
4771 Vwrite_region_annotations_so_far = annotations;
4772
4773 /* Value is either a list of annotations or nil if the function
4774 has written annotations to a temporary buffer, which is now
4775 current. */
4776 res = call5 (Qformat_annotate_function, XCAR (p), start, end,
4777 original_buffer, make_number (i));
4778 if (current_buffer != given_buffer)
4779 {
4780 XSETFASTINT (start, BEGV);
4781 XSETFASTINT (end, ZV);
4782 annotations = Qnil;
4783 }
4784
4785 if (CONSP (res))
4786 annotations = merge (annotations, res, Qcar_less_than_car);
4787 }
4788
4789 UNGCPRO;
4790 return annotations;
4791 }
4792
4793 \f
4794 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
4795 If STRING is nil, POS is the character position in the current buffer.
4796 Intersperse with them the annotations from *ANNOT
4797 which fall within the range of POS to POS + NCHARS,
4798 each at its appropriate position.
4799
4800 We modify *ANNOT by discarding elements as we use them up.
4801
4802 The return value is negative in case of system call failure. */
4803
4804 static int
4805 a_write (int desc, Lisp_Object string, EMACS_INT pos,
4806 register EMACS_INT nchars, Lisp_Object *annot,
4807 struct coding_system *coding)
4808 {
4809 Lisp_Object tem;
4810 EMACS_INT nextpos;
4811 EMACS_INT lastpos = pos + nchars;
4812
4813 while (NILP (*annot) || CONSP (*annot))
4814 {
4815 tem = Fcar_safe (Fcar (*annot));
4816 nextpos = pos - 1;
4817 if (INTEGERP (tem))
4818 nextpos = XFASTINT (tem);
4819
4820 /* If there are no more annotations in this range,
4821 output the rest of the range all at once. */
4822 if (! (nextpos >= pos && nextpos <= lastpos))
4823 return e_write (desc, string, pos, lastpos, coding);
4824
4825 /* Output buffer text up to the next annotation's position. */
4826 if (nextpos > pos)
4827 {
4828 if (0 > e_write (desc, string, pos, nextpos, coding))
4829 return -1;
4830 pos = nextpos;
4831 }
4832 /* Output the annotation. */
4833 tem = Fcdr (Fcar (*annot));
4834 if (STRINGP (tem))
4835 {
4836 if (0 > e_write (desc, tem, 0, SCHARS (tem), coding))
4837 return -1;
4838 }
4839 *annot = Fcdr (*annot);
4840 }
4841 return 0;
4842 }
4843
4844
4845 /* Write text in the range START and END into descriptor DESC,
4846 encoding them with coding system CODING. If STRING is nil, START
4847 and END are character positions of the current buffer, else they
4848 are indexes to the string STRING. */
4849
4850 static int
4851 e_write (int desc, Lisp_Object string, EMACS_INT start, EMACS_INT end,
4852 struct coding_system *coding)
4853 {
4854 if (STRINGP (string))
4855 {
4856 start = 0;
4857 end = SCHARS (string);
4858 }
4859
4860 /* We used to have a code for handling selective display here. But,
4861 now it is handled within encode_coding. */
4862
4863 while (start < end)
4864 {
4865 if (STRINGP (string))
4866 {
4867 coding->src_multibyte = SCHARS (string) < SBYTES (string);
4868 if (CODING_REQUIRE_ENCODING (coding))
4869 {
4870 encode_coding_object (coding, string,
4871 start, string_char_to_byte (string, start),
4872 end, string_char_to_byte (string, end), Qt);
4873 }
4874 else
4875 {
4876 coding->dst_object = string;
4877 coding->consumed_char = SCHARS (string);
4878 coding->produced = SBYTES (string);
4879 }
4880 }
4881 else
4882 {
4883 EMACS_INT start_byte = CHAR_TO_BYTE (start);
4884 EMACS_INT end_byte = CHAR_TO_BYTE (end);
4885
4886 coding->src_multibyte = (end - start) < (end_byte - start_byte);
4887 if (CODING_REQUIRE_ENCODING (coding))
4888 {
4889 encode_coding_object (coding, Fcurrent_buffer (),
4890 start, start_byte, end, end_byte, Qt);
4891 }
4892 else
4893 {
4894 coding->dst_object = Qnil;
4895 coding->dst_pos_byte = start_byte;
4896 if (start >= GPT || end <= GPT)
4897 {
4898 coding->consumed_char = end - start;
4899 coding->produced = end_byte - start_byte;
4900 }
4901 else
4902 {
4903 coding->consumed_char = GPT - start;
4904 coding->produced = GPT_BYTE - start_byte;
4905 }
4906 }
4907 }
4908
4909 if (coding->produced > 0)
4910 {
4911 coding->produced -=
4912 emacs_write (desc,
4913 STRINGP (coding->dst_object)
4914 ? SSDATA (coding->dst_object)
4915 : (char *) BYTE_POS_ADDR (coding->dst_pos_byte),
4916 coding->produced);
4917
4918 if (coding->produced)
4919 return -1;
4920 }
4921 start += coding->consumed_char;
4922 }
4923
4924 return 0;
4925 }
4926 \f
4927 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
4928 Sverify_visited_file_modtime, 0, 1, 0,
4929 doc: /* Return t if last mod time of BUF's visited file matches what BUF records.
4930 This means that the file has not been changed since it was visited or saved.
4931 If BUF is omitted or nil, it defaults to the current buffer.
4932 See Info node `(elisp)Modification Time' for more details. */)
4933 (Lisp_Object buf)
4934 {
4935 struct buffer *b;
4936 struct stat st;
4937 Lisp_Object handler;
4938 Lisp_Object filename;
4939
4940 if (NILP (buf))
4941 b = current_buffer;
4942 else
4943 {
4944 CHECK_BUFFER (buf);
4945 b = XBUFFER (buf);
4946 }
4947
4948 if (!STRINGP (BVAR (b, filename))) return Qt;
4949 if (b->modtime == 0) return Qt;
4950
4951 /* If the file name has special constructs in it,
4952 call the corresponding file handler. */
4953 handler = Ffind_file_name_handler (BVAR (b, filename),
4954 Qverify_visited_file_modtime);
4955 if (!NILP (handler))
4956 return call2 (handler, Qverify_visited_file_modtime, buf);
4957
4958 filename = ENCODE_FILE (BVAR (b, filename));
4959
4960 if (stat (SSDATA (filename), &st) < 0)
4961 {
4962 /* If the file doesn't exist now and didn't exist before,
4963 we say that it isn't modified, provided the error is a tame one. */
4964 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
4965 st.st_mtime = -1;
4966 else
4967 st.st_mtime = 0;
4968 }
4969 if ((st.st_mtime == b->modtime
4970 /* If both are positive, accept them if they are off by one second. */
4971 || (st.st_mtime > 0 && b->modtime > 0
4972 && (st.st_mtime - 1 == b->modtime
4973 || st.st_mtime == b->modtime - 1)))
4974 && (st.st_size == b->modtime_size
4975 || b->modtime_size < 0))
4976 return Qt;
4977 return Qnil;
4978 }
4979
4980 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
4981 Sclear_visited_file_modtime, 0, 0, 0,
4982 doc: /* Clear out records of last mod time of visited file.
4983 Next attempt to save will certainly not complain of a discrepancy. */)
4984 (void)
4985 {
4986 current_buffer->modtime = 0;
4987 current_buffer->modtime_size = -1;
4988 return Qnil;
4989 }
4990
4991 DEFUN ("visited-file-modtime", Fvisited_file_modtime,
4992 Svisited_file_modtime, 0, 0, 0,
4993 doc: /* Return the current buffer's recorded visited file modification time.
4994 The value is a list of the form (HIGH LOW), like the time values
4995 that `file-attributes' returns. If the current buffer has no recorded
4996 file modification time, this function returns 0.
4997 See Info node `(elisp)Modification Time' for more details. */)
4998 (void)
4999 {
5000 if (! current_buffer->modtime)
5001 return make_number (0);
5002 return make_time (current_buffer->modtime);
5003 }
5004
5005 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
5006 Sset_visited_file_modtime, 0, 1, 0,
5007 doc: /* Update buffer's recorded modification time from the visited file's time.
5008 Useful if the buffer was not read from the file normally
5009 or if the file itself has been changed for some known benign reason.
5010 An argument specifies the modification time value to use
5011 \(instead of that of the visited file), in the form of a list
5012 \(HIGH . LOW) or (HIGH LOW). */)
5013 (Lisp_Object time_list)
5014 {
5015 if (!NILP (time_list))
5016 {
5017 CONS_TO_INTEGER (time_list, time_t, current_buffer->modtime);
5018 current_buffer->modtime_size = -1;
5019 }
5020 else
5021 {
5022 register Lisp_Object filename;
5023 struct stat st;
5024 Lisp_Object handler;
5025
5026 filename = Fexpand_file_name (BVAR (current_buffer, filename), Qnil);
5027
5028 /* If the file name has special constructs in it,
5029 call the corresponding file handler. */
5030 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
5031 if (!NILP (handler))
5032 /* The handler can find the file name the same way we did. */
5033 return call2 (handler, Qset_visited_file_modtime, Qnil);
5034
5035 filename = ENCODE_FILE (filename);
5036
5037 if (stat (SSDATA (filename), &st) >= 0)
5038 {
5039 current_buffer->modtime = st.st_mtime;
5040 current_buffer->modtime_size = st.st_size;
5041 }
5042 }
5043
5044 return Qnil;
5045 }
5046 \f
5047 static Lisp_Object
5048 auto_save_error (Lisp_Object error_val)
5049 {
5050 Lisp_Object args[3], msg;
5051 int i, nbytes;
5052 struct gcpro gcpro1;
5053 char *msgbuf;
5054 USE_SAFE_ALLOCA;
5055
5056 auto_save_error_occurred = 1;
5057
5058 ring_bell (XFRAME (selected_frame));
5059
5060 args[0] = build_string ("Auto-saving %s: %s");
5061 args[1] = BVAR (current_buffer, name);
5062 args[2] = Ferror_message_string (error_val);
5063 msg = Fformat (3, args);
5064 GCPRO1 (msg);
5065 nbytes = SBYTES (msg);
5066 SAFE_ALLOCA (msgbuf, char *, nbytes);
5067 memcpy (msgbuf, SDATA (msg), nbytes);
5068
5069 for (i = 0; i < 3; ++i)
5070 {
5071 if (i == 0)
5072 message2 (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5073 else
5074 message2_nolog (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5075 Fsleep_for (make_number (1), Qnil);
5076 }
5077
5078 SAFE_FREE ();
5079 UNGCPRO;
5080 return Qnil;
5081 }
5082
5083 static Lisp_Object
5084 auto_save_1 (void)
5085 {
5086 struct stat st;
5087 Lisp_Object modes;
5088
5089 auto_save_mode_bits = 0666;
5090
5091 /* Get visited file's mode to become the auto save file's mode. */
5092 if (! NILP (BVAR (current_buffer, filename)))
5093 {
5094 if (stat (SSDATA (BVAR (current_buffer, filename)), &st) >= 0)
5095 /* But make sure we can overwrite it later! */
5096 auto_save_mode_bits = st.st_mode | 0600;
5097 else if ((modes = Ffile_modes (BVAR (current_buffer, filename)),
5098 INTEGERP (modes)))
5099 /* Remote files don't cooperate with stat. */
5100 auto_save_mode_bits = XINT (modes) | 0600;
5101 }
5102
5103 return
5104 Fwrite_region (Qnil, Qnil, BVAR (current_buffer, auto_save_file_name), Qnil,
5105 NILP (Vauto_save_visited_file_name) ? Qlambda : Qt,
5106 Qnil, Qnil);
5107 }
5108
5109 static Lisp_Object
5110 do_auto_save_unwind (Lisp_Object arg) /* used as unwind-protect function */
5111
5112 {
5113 FILE *stream = (FILE *) XSAVE_VALUE (arg)->pointer;
5114 auto_saving = 0;
5115 if (stream != NULL)
5116 {
5117 BLOCK_INPUT;
5118 fclose (stream);
5119 UNBLOCK_INPUT;
5120 }
5121 return Qnil;
5122 }
5123
5124 static Lisp_Object
5125 do_auto_save_unwind_1 (Lisp_Object value) /* used as unwind-protect function */
5126
5127 {
5128 minibuffer_auto_raise = XINT (value);
5129 return Qnil;
5130 }
5131
5132 static Lisp_Object
5133 do_auto_save_make_dir (Lisp_Object dir)
5134 {
5135 Lisp_Object mode;
5136
5137 call2 (Qmake_directory, dir, Qt);
5138 XSETFASTINT (mode, 0700);
5139 return Fset_file_modes (dir, mode);
5140 }
5141
5142 static Lisp_Object
5143 do_auto_save_eh (Lisp_Object ignore)
5144 {
5145 return Qnil;
5146 }
5147
5148 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
5149 doc: /* Auto-save all buffers that need it.
5150 This is all buffers that have auto-saving enabled
5151 and are changed since last auto-saved.
5152 Auto-saving writes the buffer into a file
5153 so that your editing is not lost if the system crashes.
5154 This file is not the file you visited; that changes only when you save.
5155 Normally we run the normal hook `auto-save-hook' before saving.
5156
5157 A non-nil NO-MESSAGE argument means do not print any message if successful.
5158 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5159 (Lisp_Object no_message, Lisp_Object current_only)
5160 {
5161 struct buffer *old = current_buffer, *b;
5162 Lisp_Object tail, buf, hook;
5163 int auto_saved = 0;
5164 int do_handled_files;
5165 Lisp_Object oquit;
5166 FILE *stream = NULL;
5167 int count = SPECPDL_INDEX ();
5168 int orig_minibuffer_auto_raise = minibuffer_auto_raise;
5169 int old_message_p = 0;
5170 struct gcpro gcpro1, gcpro2;
5171
5172 if (max_specpdl_size < specpdl_size + 40)
5173 max_specpdl_size = specpdl_size + 40;
5174
5175 if (minibuf_level)
5176 no_message = Qt;
5177
5178 if (NILP (no_message))
5179 {
5180 old_message_p = push_message ();
5181 record_unwind_protect (pop_message_unwind, Qnil);
5182 }
5183
5184 /* Ordinarily don't quit within this function,
5185 but don't make it impossible to quit (in case we get hung in I/O). */
5186 oquit = Vquit_flag;
5187 Vquit_flag = Qnil;
5188
5189 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5190 point to non-strings reached from Vbuffer_alist. */
5191
5192 hook = intern ("auto-save-hook");
5193 Frun_hooks (1, &hook);
5194
5195 if (STRINGP (Vauto_save_list_file_name))
5196 {
5197 Lisp_Object listfile;
5198
5199 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
5200
5201 /* Don't try to create the directory when shutting down Emacs,
5202 because creating the directory might signal an error, and
5203 that would leave Emacs in a strange state. */
5204 if (!NILP (Vrun_hooks))
5205 {
5206 Lisp_Object dir;
5207 dir = Qnil;
5208 GCPRO2 (dir, listfile);
5209 dir = Ffile_name_directory (listfile);
5210 if (NILP (Ffile_directory_p (dir)))
5211 internal_condition_case_1 (do_auto_save_make_dir,
5212 dir, Fcons (Fcons (Qfile_error, Qnil), Qnil),
5213 do_auto_save_eh);
5214 UNGCPRO;
5215 }
5216
5217 stream = fopen (SSDATA (listfile), "w");
5218 }
5219
5220 record_unwind_protect (do_auto_save_unwind,
5221 make_save_value (stream, 0));
5222 record_unwind_protect (do_auto_save_unwind_1,
5223 make_number (minibuffer_auto_raise));
5224 minibuffer_auto_raise = 0;
5225 auto_saving = 1;
5226 auto_save_error_occurred = 0;
5227
5228 /* On first pass, save all files that don't have handlers.
5229 On second pass, save all files that do have handlers.
5230
5231 If Emacs is crashing, the handlers may tweak what is causing
5232 Emacs to crash in the first place, and it would be a shame if
5233 Emacs failed to autosave perfectly ordinary files because it
5234 couldn't handle some ange-ftp'd file. */
5235
5236 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
5237 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
5238 {
5239 buf = XCDR (XCAR (tail));
5240 b = XBUFFER (buf);
5241
5242 /* Record all the buffers that have auto save mode
5243 in the special file that lists them. For each of these buffers,
5244 Record visited name (if any) and auto save name. */
5245 if (STRINGP (BVAR (b, auto_save_file_name))
5246 && stream != NULL && do_handled_files == 0)
5247 {
5248 BLOCK_INPUT;
5249 if (!NILP (BVAR (b, filename)))
5250 {
5251 fwrite (SDATA (BVAR (b, filename)), 1,
5252 SBYTES (BVAR (b, filename)), stream);
5253 }
5254 putc ('\n', stream);
5255 fwrite (SDATA (BVAR (b, auto_save_file_name)), 1,
5256 SBYTES (BVAR (b, auto_save_file_name)), stream);
5257 putc ('\n', stream);
5258 UNBLOCK_INPUT;
5259 }
5260
5261 if (!NILP (current_only)
5262 && b != current_buffer)
5263 continue;
5264
5265 /* Don't auto-save indirect buffers.
5266 The base buffer takes care of it. */
5267 if (b->base_buffer)
5268 continue;
5269
5270 /* Check for auto save enabled
5271 and file changed since last auto save
5272 and file changed since last real save. */
5273 if (STRINGP (BVAR (b, auto_save_file_name))
5274 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
5275 && BUF_AUTOSAVE_MODIFF (b) < BUF_MODIFF (b)
5276 /* -1 means we've turned off autosaving for a while--see below. */
5277 && XINT (BVAR (b, save_length)) >= 0
5278 && (do_handled_files
5279 || NILP (Ffind_file_name_handler (BVAR (b, auto_save_file_name),
5280 Qwrite_region))))
5281 {
5282 EMACS_TIME before_time, after_time;
5283
5284 EMACS_GET_TIME (before_time);
5285
5286 /* If we had a failure, don't try again for 20 minutes. */
5287 if (b->auto_save_failure_time >= 0
5288 && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200)
5289 continue;
5290
5291 set_buffer_internal (b);
5292 if (NILP (Vauto_save_include_big_deletions)
5293 && (XFASTINT (BVAR (b, save_length)) * 10
5294 > (BUF_Z (b) - BUF_BEG (b)) * 13)
5295 /* A short file is likely to change a large fraction;
5296 spare the user annoying messages. */
5297 && XFASTINT (BVAR (b, save_length)) > 5000
5298 /* These messages are frequent and annoying for `*mail*'. */
5299 && !EQ (BVAR (b, filename), Qnil)
5300 && NILP (no_message))
5301 {
5302 /* It has shrunk too much; turn off auto-saving here. */
5303 minibuffer_auto_raise = orig_minibuffer_auto_raise;
5304 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5305 BVAR (b, name), 1);
5306 minibuffer_auto_raise = 0;
5307 /* Turn off auto-saving until there's a real save,
5308 and prevent any more warnings. */
5309 XSETINT (BVAR (b, save_length), -1);
5310 Fsleep_for (make_number (1), Qnil);
5311 continue;
5312 }
5313 if (!auto_saved && NILP (no_message))
5314 message1 ("Auto-saving...");
5315 internal_condition_case (auto_save_1, Qt, auto_save_error);
5316 auto_saved++;
5317 BUF_AUTOSAVE_MODIFF (b) = BUF_MODIFF (b);
5318 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5319 set_buffer_internal (old);
5320
5321 EMACS_GET_TIME (after_time);
5322
5323 /* If auto-save took more than 60 seconds,
5324 assume it was an NFS failure that got a timeout. */
5325 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
5326 b->auto_save_failure_time = EMACS_SECS (after_time);
5327 }
5328 }
5329
5330 /* Prevent another auto save till enough input events come in. */
5331 record_auto_save ();
5332
5333 if (auto_saved && NILP (no_message))
5334 {
5335 if (old_message_p)
5336 {
5337 /* If we are going to restore an old message,
5338 give time to read ours. */
5339 sit_for (make_number (1), 0, 0);
5340 restore_message ();
5341 }
5342 else if (!auto_save_error_occurred)
5343 /* Don't overwrite the error message if an error occurred.
5344 If we displayed a message and then restored a state
5345 with no message, leave a "done" message on the screen. */
5346 message1 ("Auto-saving...done");
5347 }
5348
5349 Vquit_flag = oquit;
5350
5351 /* This restores the message-stack status. */
5352 unbind_to (count, Qnil);
5353 return Qnil;
5354 }
5355
5356 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
5357 Sset_buffer_auto_saved, 0, 0, 0,
5358 doc: /* Mark current buffer as auto-saved with its current text.
5359 No auto-save file will be written until the buffer changes again. */)
5360 (void)
5361 {
5362 /* FIXME: This should not be called in indirect buffers, since
5363 they're not autosaved. */
5364 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
5365 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5366 current_buffer->auto_save_failure_time = -1;
5367 return Qnil;
5368 }
5369
5370 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
5371 Sclear_buffer_auto_save_failure, 0, 0, 0,
5372 doc: /* Clear any record of a recent auto-save failure in the current buffer. */)
5373 (void)
5374 {
5375 current_buffer->auto_save_failure_time = -1;
5376 return Qnil;
5377 }
5378
5379 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
5380 0, 0, 0,
5381 doc: /* Return t if current buffer has been auto-saved recently.
5382 More precisely, if it has been auto-saved since last read from or saved
5383 in the visited file. If the buffer has no visited file,
5384 then any auto-save counts as "recent". */)
5385 (void)
5386 {
5387 /* FIXME: maybe we should return nil for indirect buffers since
5388 they're never autosaved. */
5389 return (SAVE_MODIFF < BUF_AUTOSAVE_MODIFF (current_buffer) ? Qt : Qnil);
5390 }
5391 \f
5392 /* Reading and completing file names */
5393
5394 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p,
5395 Snext_read_file_uses_dialog_p, 0, 0, 0,
5396 doc: /* Return t if a call to `read-file-name' will use a dialog.
5397 The return value is only relevant for a call to `read-file-name' that happens
5398 before any other event (mouse or keypress) is handled. */)
5399 (void)
5400 {
5401 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK)
5402 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
5403 && use_dialog_box
5404 && use_file_dialog
5405 && have_menus_p ())
5406 return Qt;
5407 #endif
5408 return Qnil;
5409 }
5410
5411 Lisp_Object
5412 Fread_file_name (Lisp_Object prompt, Lisp_Object dir, Lisp_Object default_filename, Lisp_Object mustmatch, Lisp_Object initial, Lisp_Object predicate)
5413 {
5414 struct gcpro gcpro1;
5415 Lisp_Object args[7];
5416
5417 GCPRO1 (default_filename);
5418 args[0] = intern ("read-file-name");
5419 args[1] = prompt;
5420 args[2] = dir;
5421 args[3] = default_filename;
5422 args[4] = mustmatch;
5423 args[5] = initial;
5424 args[6] = predicate;
5425 RETURN_UNGCPRO (Ffuncall (7, args));
5426 }
5427
5428 \f
5429 void
5430 syms_of_fileio (void)
5431 {
5432 DEFSYM (Qoperations, "operations");
5433 DEFSYM (Qexpand_file_name, "expand-file-name");
5434 DEFSYM (Qsubstitute_in_file_name, "substitute-in-file-name");
5435 DEFSYM (Qdirectory_file_name, "directory-file-name");
5436 DEFSYM (Qfile_name_directory, "file-name-directory");
5437 DEFSYM (Qfile_name_nondirectory, "file-name-nondirectory");
5438 DEFSYM (Qunhandled_file_name_directory, "unhandled-file-name-directory");
5439 DEFSYM (Qfile_name_as_directory, "file-name-as-directory");
5440 DEFSYM (Qcopy_file, "copy-file");
5441 DEFSYM (Qmake_directory_internal, "make-directory-internal");
5442 DEFSYM (Qmake_directory, "make-directory");
5443 DEFSYM (Qdelete_directory_internal, "delete-directory-internal");
5444 DEFSYM (Qdelete_file, "delete-file");
5445 DEFSYM (Qrename_file, "rename-file");
5446 DEFSYM (Qadd_name_to_file, "add-name-to-file");
5447 DEFSYM (Qmake_symbolic_link, "make-symbolic-link");
5448 DEFSYM (Qfile_exists_p, "file-exists-p");
5449 DEFSYM (Qfile_executable_p, "file-executable-p");
5450 DEFSYM (Qfile_readable_p, "file-readable-p");
5451 DEFSYM (Qfile_writable_p, "file-writable-p");
5452 DEFSYM (Qfile_symlink_p, "file-symlink-p");
5453 DEFSYM (Qaccess_file, "access-file");
5454 DEFSYM (Qfile_directory_p, "file-directory-p");
5455 DEFSYM (Qfile_regular_p, "file-regular-p");
5456 DEFSYM (Qfile_accessible_directory_p, "file-accessible-directory-p");
5457 DEFSYM (Qfile_modes, "file-modes");
5458 DEFSYM (Qset_file_modes, "set-file-modes");
5459 DEFSYM (Qset_file_times, "set-file-times");
5460 DEFSYM (Qfile_selinux_context, "file-selinux-context");
5461 DEFSYM (Qset_file_selinux_context, "set-file-selinux-context");
5462 DEFSYM (Qfile_newer_than_file_p, "file-newer-than-file-p");
5463 DEFSYM (Qinsert_file_contents, "insert-file-contents");
5464 DEFSYM (Qwrite_region, "write-region");
5465 DEFSYM (Qverify_visited_file_modtime, "verify-visited-file-modtime");
5466 DEFSYM (Qset_visited_file_modtime, "set-visited-file-modtime");
5467 DEFSYM (Qauto_save_coding, "auto-save-coding");
5468
5469 DEFSYM (Qfile_name_history, "file-name-history");
5470 Fset (Qfile_name_history, Qnil);
5471
5472 DEFSYM (Qfile_error, "file-error");
5473 DEFSYM (Qfile_already_exists, "file-already-exists");
5474 DEFSYM (Qfile_date_error, "file-date-error");
5475 DEFSYM (Qexcl, "excl");
5476
5477 DEFVAR_LISP ("file-name-coding-system", Vfile_name_coding_system,
5478 doc: /* *Coding system for encoding file names.
5479 If it is nil, `default-file-name-coding-system' (which see) is used. */);
5480 Vfile_name_coding_system = Qnil;
5481
5482 DEFVAR_LISP ("default-file-name-coding-system",
5483 Vdefault_file_name_coding_system,
5484 doc: /* Default coding system for encoding file names.
5485 This variable is used only when `file-name-coding-system' is nil.
5486
5487 This variable is set/changed by the command `set-language-environment'.
5488 User should not set this variable manually,
5489 instead use `file-name-coding-system' to get a constant encoding
5490 of file names regardless of the current language environment. */);
5491 Vdefault_file_name_coding_system = Qnil;
5492
5493 DEFSYM (Qformat_decode, "format-decode");
5494 DEFSYM (Qformat_annotate_function, "format-annotate-function");
5495 DEFSYM (Qafter_insert_file_set_coding, "after-insert-file-set-coding");
5496 DEFSYM (Qcar_less_than_car, "car-less-than-car");
5497
5498 Fput (Qfile_error, Qerror_conditions,
5499 Fpurecopy (list2 (Qfile_error, Qerror)));
5500 Fput (Qfile_error, Qerror_message,
5501 make_pure_c_string ("File error"));
5502
5503 Fput (Qfile_already_exists, Qerror_conditions,
5504 Fpurecopy (list3 (Qfile_already_exists, Qfile_error, Qerror)));
5505 Fput (Qfile_already_exists, Qerror_message,
5506 make_pure_c_string ("File already exists"));
5507
5508 Fput (Qfile_date_error, Qerror_conditions,
5509 Fpurecopy (list3 (Qfile_date_error, Qfile_error, Qerror)));
5510 Fput (Qfile_date_error, Qerror_message,
5511 make_pure_c_string ("Cannot set file date"));
5512
5513 DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist,
5514 doc: /* *Alist of elements (REGEXP . HANDLER) for file names handled specially.
5515 If a file name matches REGEXP, then all I/O on that file is done by calling
5516 HANDLER.
5517
5518 The first argument given to HANDLER is the name of the I/O primitive
5519 to be handled; the remaining arguments are the arguments that were
5520 passed to that primitive. For example, if you do
5521 (file-exists-p FILENAME)
5522 and FILENAME is handled by HANDLER, then HANDLER is called like this:
5523 (funcall HANDLER 'file-exists-p FILENAME)
5524 The function `find-file-name-handler' checks this list for a handler
5525 for its argument. */);
5526 Vfile_name_handler_alist = Qnil;
5527
5528 DEFVAR_LISP ("set-auto-coding-function",
5529 Vset_auto_coding_function,
5530 doc: /* If non-nil, a function to call to decide a coding system of file.
5531 Two arguments are passed to this function: the file name
5532 and the length of a file contents following the point.
5533 This function should return a coding system to decode the file contents.
5534 It should check the file name against `auto-coding-alist'.
5535 If no coding system is decided, it should check a coding system
5536 specified in the heading lines with the format:
5537 -*- ... coding: CODING-SYSTEM; ... -*-
5538 or local variable spec of the tailing lines with `coding:' tag. */);
5539 Vset_auto_coding_function = Qnil;
5540
5541 DEFVAR_LISP ("after-insert-file-functions", Vafter_insert_file_functions,
5542 doc: /* A list of functions to be called at the end of `insert-file-contents'.
5543 Each is passed one argument, the number of characters inserted,
5544 with point at the start of the inserted text. Each function
5545 should leave point the same, and return the new character count.
5546 If `insert-file-contents' is intercepted by a handler from
5547 `file-name-handler-alist', that handler is responsible for calling the
5548 functions in `after-insert-file-functions' if appropriate. */);
5549 Vafter_insert_file_functions = Qnil;
5550
5551 DEFVAR_LISP ("write-region-annotate-functions", Vwrite_region_annotate_functions,
5552 doc: /* A list of functions to be called at the start of `write-region'.
5553 Each is passed two arguments, START and END as for `write-region'.
5554 These are usually two numbers but not always; see the documentation
5555 for `write-region'. The function should return a list of pairs
5556 of the form (POSITION . STRING), consisting of strings to be effectively
5557 inserted at the specified positions of the file being written (1 means to
5558 insert before the first byte written). The POSITIONs must be sorted into
5559 increasing order.
5560
5561 If there are several annotation functions, the lists returned by these
5562 functions are merged destructively. As each annotation function runs,
5563 the variable `write-region-annotations-so-far' contains a list of all
5564 annotations returned by previous annotation functions.
5565
5566 An annotation function can return with a different buffer current.
5567 Doing so removes the annotations returned by previous functions, and
5568 resets START and END to `point-min' and `point-max' of the new buffer.
5569
5570 After `write-region' completes, Emacs calls the function stored in
5571 `write-region-post-annotation-function', once for each buffer that was
5572 current when building the annotations (i.e., at least once), with that
5573 buffer current. */);
5574 Vwrite_region_annotate_functions = Qnil;
5575 DEFSYM (Qwrite_region_annotate_functions, "write-region-annotate-functions");
5576
5577 DEFVAR_LISP ("write-region-post-annotation-function",
5578 Vwrite_region_post_annotation_function,
5579 doc: /* Function to call after `write-region' completes.
5580 The function is called with no arguments. If one or more of the
5581 annotation functions in `write-region-annotate-functions' changed the
5582 current buffer, the function stored in this variable is called for
5583 each of those additional buffers as well, in addition to the original
5584 buffer. The relevant buffer is current during each function call. */);
5585 Vwrite_region_post_annotation_function = Qnil;
5586 staticpro (&Vwrite_region_annotation_buffers);
5587
5588 DEFVAR_LISP ("write-region-annotations-so-far",
5589 Vwrite_region_annotations_so_far,
5590 doc: /* When an annotation function is called, this holds the previous annotations.
5591 These are the annotations made by other annotation functions
5592 that were already called. See also `write-region-annotate-functions'. */);
5593 Vwrite_region_annotations_so_far = Qnil;
5594
5595 DEFVAR_LISP ("inhibit-file-name-handlers", Vinhibit_file_name_handlers,
5596 doc: /* A list of file name handlers that temporarily should not be used.
5597 This applies only to the operation `inhibit-file-name-operation'. */);
5598 Vinhibit_file_name_handlers = Qnil;
5599
5600 DEFVAR_LISP ("inhibit-file-name-operation", Vinhibit_file_name_operation,
5601 doc: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
5602 Vinhibit_file_name_operation = Qnil;
5603
5604 DEFVAR_LISP ("auto-save-list-file-name", Vauto_save_list_file_name,
5605 doc: /* File name in which we write a list of all auto save file names.
5606 This variable is initialized automatically from `auto-save-list-file-prefix'
5607 shortly after Emacs reads your `.emacs' file, if you have not yet given it
5608 a non-nil value. */);
5609 Vauto_save_list_file_name = Qnil;
5610
5611 DEFVAR_LISP ("auto-save-visited-file-name", Vauto_save_visited_file_name,
5612 doc: /* Non-nil says auto-save a buffer in the file it is visiting, when practical.
5613 Normally auto-save files are written under other names. */);
5614 Vauto_save_visited_file_name = Qnil;
5615
5616 DEFVAR_LISP ("auto-save-include-big-deletions", Vauto_save_include_big_deletions,
5617 doc: /* If non-nil, auto-save even if a large part of the text is deleted.
5618 If nil, deleting a substantial portion of the text disables auto-save
5619 in the buffer; this is the default behavior, because the auto-save
5620 file is usually more useful if it contains the deleted text. */);
5621 Vauto_save_include_big_deletions = Qnil;
5622
5623 #ifdef HAVE_FSYNC
5624 DEFVAR_BOOL ("write-region-inhibit-fsync", write_region_inhibit_fsync,
5625 doc: /* *Non-nil means don't call fsync in `write-region'.
5626 This variable affects calls to `write-region' as well as save commands.
5627 A non-nil value may result in data loss! */);
5628 write_region_inhibit_fsync = 0;
5629 #endif
5630
5631 DEFVAR_BOOL ("delete-by-moving-to-trash", delete_by_moving_to_trash,
5632 doc: /* Specifies whether to use the system's trash can.
5633 When non-nil, certain file deletion commands use the function
5634 `move-file-to-trash' instead of deleting files outright.
5635 This includes interactive calls to `delete-file' and
5636 `delete-directory' and the Dired deletion commands. */);
5637 delete_by_moving_to_trash = 0;
5638 Qdelete_by_moving_to_trash = intern_c_string ("delete-by-moving-to-trash");
5639
5640 DEFSYM (Qmove_file_to_trash, "move-file-to-trash");
5641 DEFSYM (Qcopy_directory, "copy-directory");
5642 DEFSYM (Qdelete_directory, "delete-directory");
5643
5644 defsubr (&Sfind_file_name_handler);
5645 defsubr (&Sfile_name_directory);
5646 defsubr (&Sfile_name_nondirectory);
5647 defsubr (&Sunhandled_file_name_directory);
5648 defsubr (&Sfile_name_as_directory);
5649 defsubr (&Sdirectory_file_name);
5650 defsubr (&Smake_temp_name);
5651 defsubr (&Sexpand_file_name);
5652 defsubr (&Ssubstitute_in_file_name);
5653 defsubr (&Scopy_file);
5654 defsubr (&Smake_directory_internal);
5655 defsubr (&Sdelete_directory_internal);
5656 defsubr (&Sdelete_file);
5657 defsubr (&Srename_file);
5658 defsubr (&Sadd_name_to_file);
5659 defsubr (&Smake_symbolic_link);
5660 defsubr (&Sfile_name_absolute_p);
5661 defsubr (&Sfile_exists_p);
5662 defsubr (&Sfile_executable_p);
5663 defsubr (&Sfile_readable_p);
5664 defsubr (&Sfile_writable_p);
5665 defsubr (&Saccess_file);
5666 defsubr (&Sfile_symlink_p);
5667 defsubr (&Sfile_directory_p);
5668 defsubr (&Sfile_accessible_directory_p);
5669 defsubr (&Sfile_regular_p);
5670 defsubr (&Sfile_modes);
5671 defsubr (&Sset_file_modes);
5672 defsubr (&Sset_file_times);
5673 defsubr (&Sfile_selinux_context);
5674 defsubr (&Sset_file_selinux_context);
5675 defsubr (&Sset_default_file_modes);
5676 defsubr (&Sdefault_file_modes);
5677 defsubr (&Sfile_newer_than_file_p);
5678 defsubr (&Sinsert_file_contents);
5679 defsubr (&Swrite_region);
5680 defsubr (&Scar_less_than_car);
5681 defsubr (&Sverify_visited_file_modtime);
5682 defsubr (&Sclear_visited_file_modtime);
5683 defsubr (&Svisited_file_modtime);
5684 defsubr (&Sset_visited_file_modtime);
5685 defsubr (&Sdo_auto_save);
5686 defsubr (&Sset_buffer_auto_saved);
5687 defsubr (&Sclear_buffer_auto_save_failure);
5688 defsubr (&Srecent_auto_save_p);
5689
5690 defsubr (&Snext_read_file_uses_dialog_p);
5691
5692 #ifdef HAVE_SYNC
5693 defsubr (&Sunix_sync);
5694 #endif
5695 }