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