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