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