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