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