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