fe0fb593208cec01a259fec8656f5bc1ae4d6566
[bpt/emacs.git] / 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 static Lisp_Object Fmake_symbolic_link (Lisp_Object, Lisp_Object, Lisp_Object);
148 static int a_write (int, Lisp_Object, EMACS_INT, EMACS_INT,
149 Lisp_Object *, struct coding_system *);
150 static int e_write (int, Lisp_Object, EMACS_INT, EMACS_INT,
151 struct coding_system *);
152
153 \f
154 void
155 report_file_error (const char *string, Lisp_Object data)
156 {
157 Lisp_Object errstring;
158 int errorno = errno;
159 char *str;
160
161 synchronize_system_messages_locale ();
162 str = strerror (errorno);
163 errstring = code_convert_string_norecord (make_unibyte_string (str,
164 strlen (str)),
165 Vlocale_coding_system, 0);
166
167 while (1)
168 switch (errorno)
169 {
170 case EEXIST:
171 xsignal (Qfile_already_exists, Fcons (errstring, data));
172 break;
173 default:
174 /* System error messages are capitalized. Downcase the initial
175 unless it is followed by a slash. (The slash case caters to
176 error messages that begin with "I/O" or, in German, "E/A".) */
177 if (STRING_MULTIBYTE (errstring)
178 && ! EQ (Faref (errstring, make_number (1)), make_number ('/')))
179 {
180 int c;
181
182 str = SSDATA (errstring);
183 c = STRING_CHAR ((unsigned char *) str);
184 Faset (errstring, make_number (0), make_number (downcase (c)));
185 }
186
187 xsignal (Qfile_error,
188 Fcons (build_string (string), Fcons (errstring, data)));
189 }
190 }
191
192 Lisp_Object
193 close_file_unwind (Lisp_Object fd)
194 {
195 emacs_close (XFASTINT (fd));
196 return Qnil;
197 }
198
199 /* Restore point, having saved it as a marker. */
200
201 Lisp_Object
202 restore_point_unwind (Lisp_Object location)
203 {
204 Fgoto_char (location);
205 Fset_marker (location, Qnil, Qnil);
206 return Qnil;
207 }
208
209 \f
210 static Lisp_Object Qexpand_file_name;
211 static Lisp_Object Qsubstitute_in_file_name;
212 static Lisp_Object Qdirectory_file_name;
213 static Lisp_Object Qfile_name_directory;
214 static Lisp_Object Qfile_name_nondirectory;
215 static Lisp_Object Qunhandled_file_name_directory;
216 static Lisp_Object Qfile_name_as_directory;
217 static Lisp_Object Qcopy_file;
218 static Lisp_Object Qmake_directory_internal;
219 static Lisp_Object Qmake_directory;
220 static Lisp_Object Qdelete_directory_internal;
221 Lisp_Object Qdelete_file;
222 static Lisp_Object Qrename_file;
223 static Lisp_Object Qadd_name_to_file;
224 static Lisp_Object Qmake_symbolic_link;
225 Lisp_Object Qfile_exists_p;
226 static Lisp_Object Qfile_executable_p;
227 static Lisp_Object Qfile_readable_p;
228 static Lisp_Object Qfile_writable_p;
229 static Lisp_Object Qfile_symlink_p;
230 static Lisp_Object Qaccess_file;
231 Lisp_Object Qfile_directory_p;
232 static Lisp_Object Qfile_regular_p;
233 static Lisp_Object Qfile_accessible_directory_p;
234 static Lisp_Object Qfile_modes;
235 static Lisp_Object Qset_file_modes;
236 static Lisp_Object Qset_file_times;
237 static Lisp_Object Qfile_selinux_context;
238 static Lisp_Object Qset_file_selinux_context;
239 static Lisp_Object Qfile_newer_than_file_p;
240 Lisp_Object Qinsert_file_contents;
241 Lisp_Object Qwrite_region;
242 static Lisp_Object Qverify_visited_file_modtime;
243 static Lisp_Object Qset_visited_file_modtime;
244
245 DEFUN ("find-file-name-handler", Ffind_file_name_handler,
246 Sfind_file_name_handler, 2, 2, 0,
247 doc: /* Return FILENAME's handler function for OPERATION, if it has one.
248 Otherwise, return nil.
249 A file name is handled if one of the regular expressions in
250 `file-name-handler-alist' matches it.
251
252 If OPERATION equals `inhibit-file-name-operation', then we ignore
253 any handlers that are members of `inhibit-file-name-handlers',
254 but we still do run any other handlers. This lets handlers
255 use the standard functions without calling themselves recursively. */)
256 (Lisp_Object filename, Lisp_Object operation)
257 {
258 /* This function must not munge the match data. */
259 Lisp_Object chain, inhibited_handlers, result;
260 int pos = -1;
261
262 result = Qnil;
263 CHECK_STRING (filename);
264
265 if (EQ (operation, Vinhibit_file_name_operation))
266 inhibited_handlers = Vinhibit_file_name_handlers;
267 else
268 inhibited_handlers = Qnil;
269
270 for (chain = Vfile_name_handler_alist; CONSP (chain);
271 chain = XCDR (chain))
272 {
273 Lisp_Object elt;
274 elt = XCAR (chain);
275 if (CONSP (elt))
276 {
277 Lisp_Object string = XCAR (elt);
278 EMACS_INT match_pos;
279 Lisp_Object handler = XCDR (elt);
280 Lisp_Object operations = Qnil;
281
282 if (SYMBOLP (handler))
283 operations = Fget (handler, Qoperations);
284
285 if (STRINGP (string)
286 && (match_pos = fast_string_match (string, filename)) > pos
287 && (NILP (operations) || ! NILP (Fmemq (operation, operations))))
288 {
289 Lisp_Object tem;
290
291 handler = XCDR (elt);
292 tem = Fmemq (handler, inhibited_handlers);
293 if (NILP (tem))
294 {
295 result = handler;
296 pos = match_pos;
297 }
298 }
299 }
300
301 QUIT;
302 }
303 return result;
304 }
305 \f
306 DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory,
307 1, 1, 0,
308 doc: /* Return the directory component in file name FILENAME.
309 Return nil if FILENAME does not include a directory.
310 Otherwise return a directory name.
311 Given a Unix syntax file name, returns a string ending in slash. */)
312 (Lisp_Object filename)
313 {
314 #ifndef DOS_NT
315 register const char *beg;
316 #else
317 register char *beg;
318 #endif
319 register const char *p;
320 Lisp_Object handler;
321
322 CHECK_STRING (filename);
323
324 /* If the file name has special constructs in it,
325 call the corresponding file handler. */
326 handler = Ffind_file_name_handler (filename, Qfile_name_directory);
327 if (!NILP (handler))
328 return call2 (handler, Qfile_name_directory, filename);
329
330 filename = FILE_SYSTEM_CASE (filename);
331 #ifdef DOS_NT
332 beg = (char *) alloca (SBYTES (filename) + 1);
333 memcpy (beg, SSDATA (filename), SBYTES (filename) + 1);
334 #else
335 beg = SSDATA (filename);
336 #endif
337 p = beg + SBYTES (filename);
338
339 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
340 #ifdef DOS_NT
341 /* only recognise drive specifier at the beginning */
342 && !(p[-1] == ':'
343 /* handle the "/:d:foo" and "/:foo" cases correctly */
344 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg))
345 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
346 #endif
347 ) p--;
348
349 if (p == beg)
350 return Qnil;
351 #ifdef DOS_NT
352 /* Expansion of "c:" to drive and default directory. */
353 if (p[-1] == ':')
354 {
355 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
356 char *res = alloca (MAXPATHLEN + 1);
357 char *r = res;
358
359 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':')
360 {
361 strncpy (res, beg, 2);
362 beg += 2;
363 r += 2;
364 }
365
366 if (getdefdir (toupper ((unsigned char) *beg) - 'A' + 1, r))
367 {
368 if (!IS_DIRECTORY_SEP (res[strlen (res) - 1]))
369 strcat (res, "/");
370 beg = res;
371 p = beg + strlen (beg);
372 }
373 }
374 dostounix_filename (beg);
375 #endif /* DOS_NT */
376
377 return make_specified_string (beg, -1, p - beg, STRING_MULTIBYTE (filename));
378 }
379
380 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory,
381 Sfile_name_nondirectory, 1, 1, 0,
382 doc: /* Return file name FILENAME sans its directory.
383 For example, in a Unix-syntax file name,
384 this is everything after the last slash,
385 or the entire name if it contains no slash. */)
386 (Lisp_Object filename)
387 {
388 register const char *beg, *p, *end;
389 Lisp_Object handler;
390
391 CHECK_STRING (filename);
392
393 /* If the file name has special constructs in it,
394 call the corresponding file handler. */
395 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory);
396 if (!NILP (handler))
397 return call2 (handler, Qfile_name_nondirectory, filename);
398
399 beg = SSDATA (filename);
400 end = p = beg + SBYTES (filename);
401
402 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
403 #ifdef DOS_NT
404 /* only recognise drive specifier at beginning */
405 && !(p[-1] == ':'
406 /* handle the "/:d:foo" case correctly */
407 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
408 #endif
409 )
410 p--;
411
412 return make_specified_string (p, -1, end - p, STRING_MULTIBYTE (filename));
413 }
414
415 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory,
416 Sunhandled_file_name_directory, 1, 1, 0,
417 doc: /* Return a directly usable directory name somehow associated with FILENAME.
418 A `directly usable' directory name is one that may be used without the
419 intervention of any file handler.
420 If FILENAME is a directly usable file itself, return
421 \(file-name-directory FILENAME).
422 If FILENAME refers to a file which is not accessible from a local process,
423 then this should return nil.
424 The `call-process' and `start-process' functions use this function to
425 get a current directory to run processes in. */)
426 (Lisp_Object filename)
427 {
428 Lisp_Object handler;
429
430 /* If the file name has special constructs in it,
431 call the corresponding file handler. */
432 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
433 if (!NILP (handler))
434 return call2 (handler, Qunhandled_file_name_directory, filename);
435
436 return Ffile_name_directory (filename);
437 }
438
439 \f
440 static char *
441 file_name_as_directory (char *out, const char *in)
442 {
443 ptrdiff_t len = strlen (in);
444
445 if (len == 0)
446 {
447 out[0] = '.';
448 out[1] = '/';
449 out[2] = 0;
450 return out;
451 }
452
453 strcpy (out, in);
454
455 /* For Unix syntax, Append a slash if necessary */
456 if (!IS_DIRECTORY_SEP (out[len - 1]))
457 {
458 out[len] = DIRECTORY_SEP;
459 out[len + 1] = '\0';
460 }
461 #ifdef DOS_NT
462 dostounix_filename (out);
463 #endif
464 return out;
465 }
466
467 DEFUN ("file-name-as-directory", Ffile_name_as_directory,
468 Sfile_name_as_directory, 1, 1, 0,
469 doc: /* Return a string representing the file name FILE interpreted as a directory.
470 This operation exists because a directory is also a file, but its name as
471 a directory is different from its name as a file.
472 The result can be used as the value of `default-directory'
473 or passed as second argument to `expand-file-name'.
474 For a Unix-syntax file name, just appends a slash. */)
475 (Lisp_Object file)
476 {
477 char *buf;
478 Lisp_Object handler;
479
480 CHECK_STRING (file);
481 if (NILP (file))
482 return Qnil;
483
484 /* If the file name has special constructs in it,
485 call the corresponding file handler. */
486 handler = Ffind_file_name_handler (file, Qfile_name_as_directory);
487 if (!NILP (handler))
488 return call2 (handler, Qfile_name_as_directory, file);
489
490 buf = (char *) alloca (SBYTES (file) + 10);
491 file_name_as_directory (buf, SSDATA (file));
492 return make_specified_string (buf, -1, strlen (buf),
493 STRING_MULTIBYTE (file));
494 }
495 \f
496 /*
497 * Convert from directory name to filename.
498 * On UNIX, it's simple: just make sure there isn't a terminating /
499
500 * Value is nonzero if the string output is different from the input.
501 */
502
503 static int
504 directory_file_name (char *src, char *dst)
505 {
506 ptrdiff_t slen;
507
508 slen = strlen (src);
509
510 /* Process as Unix format: just remove any final slash.
511 But leave "/" unchanged; do not change it to "". */
512 strcpy (dst, src);
513 if (slen > 1
514 && IS_DIRECTORY_SEP (dst[slen - 1])
515 #ifdef DOS_NT
516 && !IS_ANY_SEP (dst[slen - 2])
517 #endif
518 )
519 dst[slen - 1] = 0;
520 #ifdef DOS_NT
521 dostounix_filename (dst);
522 #endif
523 return 1;
524 }
525
526 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
527 1, 1, 0,
528 doc: /* Returns the file name of the directory named DIRECTORY.
529 This is the name of the file that holds the data for the directory DIRECTORY.
530 This operation exists because a directory is also a file, but its name as
531 a directory is different from its name as a file.
532 In Unix-syntax, this function just removes the final slash. */)
533 (Lisp_Object directory)
534 {
535 char *buf;
536 Lisp_Object handler;
537
538 CHECK_STRING (directory);
539
540 if (NILP (directory))
541 return Qnil;
542
543 /* If the file name has special constructs in it,
544 call the corresponding file handler. */
545 handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
546 if (!NILP (handler))
547 return call2 (handler, Qdirectory_file_name, directory);
548
549 buf = (char *) alloca (SBYTES (directory) + 20);
550 directory_file_name (SSDATA (directory), buf);
551 return make_specified_string (buf, -1, strlen (buf),
552 STRING_MULTIBYTE (directory));
553 }
554
555 static const char make_temp_name_tbl[64] =
556 {
557 'A','B','C','D','E','F','G','H',
558 'I','J','K','L','M','N','O','P',
559 'Q','R','S','T','U','V','W','X',
560 'Y','Z','a','b','c','d','e','f',
561 'g','h','i','j','k','l','m','n',
562 'o','p','q','r','s','t','u','v',
563 'w','x','y','z','0','1','2','3',
564 '4','5','6','7','8','9','-','_'
565 };
566
567 static unsigned make_temp_name_count, make_temp_name_count_initialized_p;
568
569 /* Value is a temporary file name starting with PREFIX, a string.
570
571 The Emacs process number forms part of the result, so there is
572 no danger of generating a name being used by another process.
573 In addition, this function makes an attempt to choose a name
574 which has no existing file. To make this work, PREFIX should be
575 an absolute file name.
576
577 BASE64_P non-zero means add the pid as 3 characters in base64
578 encoding. In this case, 6 characters will be added to PREFIX to
579 form the file name. Otherwise, if Emacs is running on a system
580 with long file names, add the pid as a decimal number.
581
582 This function signals an error if no unique file name could be
583 generated. */
584
585 Lisp_Object
586 make_temp_name (Lisp_Object prefix, int base64_p)
587 {
588 Lisp_Object val;
589 int len, clen;
590 printmax_t pid;
591 char *p, *data;
592 char pidbuf[INT_BUFSIZE_BOUND (printmax_t)];
593 int pidlen;
594
595 CHECK_STRING (prefix);
596
597 /* VAL is created by adding 6 characters to PREFIX. The first
598 three are the PID of this process, in base 64, and the second
599 three are incremented if the file already exists. This ensures
600 262144 unique file names per PID per PREFIX. */
601
602 pid = getpid ();
603
604 if (base64_p)
605 {
606 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
607 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
608 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
609 pidlen = 3;
610 }
611 else
612 {
613 #ifdef HAVE_LONG_FILE_NAMES
614 pidlen = sprintf (pidbuf, "%"pMd, pid);
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 = 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 ptrdiff_t 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 ptrdiff_t 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 ptrdiff_t 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 ptrdiff_t 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 ptrdiff_t 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 (S_ISDIR (statbuf.st_mode))
1759 xsignal2 (Qfile_error,
1760 build_string ("File is a directory"), absname);
1761
1762 if (! interactive)
1763 xsignal2 (Qfile_already_exists,
1764 build_string ("File already exists"), absname);
1765 GCPRO1 (absname);
1766 tem = format2 ("File %s already exists; %s anyway? ",
1767 absname, build_string (querystring));
1768 if (quick)
1769 tem = call1 (intern ("y-or-n-p"), tem);
1770 else
1771 tem = do_yes_or_no_p (tem);
1772 UNGCPRO;
1773 if (NILP (tem))
1774 xsignal2 (Qfile_already_exists,
1775 build_string ("File already exists"), absname);
1776 if (statptr)
1777 *statptr = statbuf;
1778 }
1779 else
1780 {
1781 if (statptr)
1782 statptr->st_mode = 0;
1783 }
1784 return;
1785 }
1786
1787 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 6,
1788 "fCopy file: \nGCopy %s to file: \np\nP",
1789 doc: /* Copy FILE to NEWNAME. Both args must be strings.
1790 If NEWNAME names a directory, copy FILE there.
1791
1792 This function always sets the file modes of the output file to match
1793 the input file.
1794
1795 The optional third argument OK-IF-ALREADY-EXISTS specifies what to do
1796 if file NEWNAME already exists. If OK-IF-ALREADY-EXISTS is nil, we
1797 signal a `file-already-exists' error without overwriting. If
1798 OK-IF-ALREADY-EXISTS is a number, we request confirmation from the user
1799 about overwriting; this is what happens in interactive use with M-x.
1800 Any other value for OK-IF-ALREADY-EXISTS means to overwrite the
1801 existing file.
1802
1803 Fourth arg KEEP-TIME non-nil means give the output file the same
1804 last-modified time as the old one. (This works on only some systems.)
1805
1806 A prefix arg makes KEEP-TIME non-nil.
1807
1808 If PRESERVE-UID-GID is non-nil, we try to transfer the
1809 uid and gid of FILE to NEWNAME.
1810
1811 If PRESERVE-SELINUX-CONTEXT is non-nil and SELinux is enabled
1812 on the system, we copy the SELinux context of FILE to NEWNAME. */)
1813 (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)
1814 {
1815 int ifd, ofd;
1816 EMACS_INT n;
1817 char buf[16 * 1024];
1818 struct stat st, out_st;
1819 Lisp_Object handler;
1820 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1821 int count = SPECPDL_INDEX ();
1822 int input_file_statable_p;
1823 Lisp_Object encoded_file, encoded_newname;
1824 #if HAVE_LIBSELINUX
1825 security_context_t con;
1826 int fail, conlength = 0;
1827 #endif
1828
1829 encoded_file = encoded_newname = Qnil;
1830 GCPRO4 (file, newname, encoded_file, encoded_newname);
1831 CHECK_STRING (file);
1832 CHECK_STRING (newname);
1833
1834 if (!NILP (Ffile_directory_p (newname)))
1835 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
1836 else
1837 newname = Fexpand_file_name (newname, Qnil);
1838
1839 file = Fexpand_file_name (file, Qnil);
1840
1841 /* If the input file name has special constructs in it,
1842 call the corresponding file handler. */
1843 handler = Ffind_file_name_handler (file, Qcopy_file);
1844 /* Likewise for output file name. */
1845 if (NILP (handler))
1846 handler = Ffind_file_name_handler (newname, Qcopy_file);
1847 if (!NILP (handler))
1848 RETURN_UNGCPRO (call7 (handler, Qcopy_file, file, newname,
1849 ok_if_already_exists, keep_time, preserve_uid_gid,
1850 preserve_selinux_context));
1851
1852 encoded_file = ENCODE_FILE (file);
1853 encoded_newname = ENCODE_FILE (newname);
1854
1855 if (NILP (ok_if_already_exists)
1856 || INTEGERP (ok_if_already_exists))
1857 barf_or_query_if_file_exists (newname, "copy to it",
1858 INTEGERP (ok_if_already_exists), &out_st, 0);
1859 else if (stat (SSDATA (encoded_newname), &out_st) < 0)
1860 out_st.st_mode = 0;
1861
1862 #ifdef WINDOWSNT
1863 if (!CopyFile (SDATA (encoded_file),
1864 SDATA (encoded_newname),
1865 FALSE))
1866 report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil)));
1867 /* CopyFile retains the timestamp by default. */
1868 else if (NILP (keep_time))
1869 {
1870 EMACS_TIME now;
1871 DWORD attributes;
1872 char * filename;
1873
1874 EMACS_GET_TIME (now);
1875 filename = SDATA (encoded_newname);
1876
1877 /* Ensure file is writable while its modified time is set. */
1878 attributes = GetFileAttributes (filename);
1879 SetFileAttributes (filename, attributes & ~FILE_ATTRIBUTE_READONLY);
1880 if (set_file_times (filename, now, now))
1881 {
1882 /* Restore original attributes. */
1883 SetFileAttributes (filename, attributes);
1884 xsignal2 (Qfile_date_error,
1885 build_string ("Cannot set file date"), newname);
1886 }
1887 /* Restore original attributes. */
1888 SetFileAttributes (filename, attributes);
1889 }
1890 #else /* not WINDOWSNT */
1891 immediate_quit = 1;
1892 ifd = emacs_open (SSDATA (encoded_file), O_RDONLY, 0);
1893 immediate_quit = 0;
1894
1895 if (ifd < 0)
1896 report_file_error ("Opening input file", Fcons (file, Qnil));
1897
1898 record_unwind_protect (close_file_unwind, make_number (ifd));
1899
1900 /* We can only copy regular files and symbolic links. Other files are not
1901 copyable by us. */
1902 input_file_statable_p = (fstat (ifd, &st) >= 0);
1903
1904 #if HAVE_LIBSELINUX
1905 if (!NILP (preserve_selinux_context) && is_selinux_enabled ())
1906 {
1907 conlength = fgetfilecon (ifd, &con);
1908 if (conlength == -1)
1909 report_file_error ("Doing fgetfilecon", Fcons (file, Qnil));
1910 }
1911 #endif
1912
1913 if (out_st.st_mode != 0
1914 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
1915 {
1916 errno = 0;
1917 report_file_error ("Input and output files are the same",
1918 Fcons (file, Fcons (newname, Qnil)));
1919 }
1920
1921 if (input_file_statable_p)
1922 {
1923 if (!(S_ISREG (st.st_mode)) && !(S_ISLNK (st.st_mode)))
1924 {
1925 #if defined (EISDIR)
1926 /* Get a better looking error message. */
1927 errno = EISDIR;
1928 #endif /* EISDIR */
1929 report_file_error ("Non-regular file", Fcons (file, Qnil));
1930 }
1931 }
1932
1933 #ifdef MSDOS
1934 /* System's default file type was set to binary by _fmode in emacs.c. */
1935 ofd = emacs_open (SDATA (encoded_newname),
1936 O_WRONLY | O_TRUNC | O_CREAT
1937 | (NILP (ok_if_already_exists) ? O_EXCL : 0),
1938 S_IREAD | S_IWRITE);
1939 #else /* not MSDOS */
1940 {
1941 int new_mask = 0666;
1942 if (input_file_statable_p)
1943 {
1944 if (!NILP (preserve_uid_gid))
1945 new_mask = 0600;
1946 new_mask &= st.st_mode;
1947 }
1948 ofd = emacs_open (SSDATA (encoded_newname),
1949 (O_WRONLY | O_TRUNC | O_CREAT
1950 | (NILP (ok_if_already_exists) ? O_EXCL : 0)),
1951 new_mask);
1952 }
1953 #endif /* not MSDOS */
1954 if (ofd < 0)
1955 report_file_error ("Opening output file", Fcons (newname, Qnil));
1956
1957 record_unwind_protect (close_file_unwind, make_number (ofd));
1958
1959 immediate_quit = 1;
1960 QUIT;
1961 while ((n = emacs_read (ifd, buf, sizeof buf)) > 0)
1962 if (emacs_write (ofd, buf, n) != n)
1963 report_file_error ("I/O error", Fcons (newname, Qnil));
1964 immediate_quit = 0;
1965
1966 #ifndef MSDOS
1967 /* Preserve the original file modes, and if requested, also its
1968 owner and group. */
1969 if (input_file_statable_p)
1970 {
1971 int mode_mask = 07777;
1972 if (!NILP (preserve_uid_gid))
1973 {
1974 /* Attempt to change owner and group. If that doesn't work
1975 attempt to change just the group, as that is sometimes allowed.
1976 Adjust the mode mask to eliminate setuid or setgid bits
1977 that are inappropriate if the owner and group are wrong. */
1978 if (fchown (ofd, st.st_uid, st.st_gid) != 0)
1979 {
1980 mode_mask &= ~06000;
1981 if (fchown (ofd, -1, st.st_gid) == 0)
1982 mode_mask |= 02000;
1983 }
1984 }
1985 if (fchmod (ofd, st.st_mode & mode_mask) != 0)
1986 report_file_error ("Doing chmod", Fcons (newname, Qnil));
1987 }
1988 #endif /* not MSDOS */
1989
1990 #if HAVE_LIBSELINUX
1991 if (conlength > 0)
1992 {
1993 /* Set the modified context back to the file. */
1994 fail = fsetfilecon (ofd, con);
1995 if (fail)
1996 report_file_error ("Doing fsetfilecon", Fcons (newname, Qnil));
1997
1998 freecon (con);
1999 }
2000 #endif
2001
2002 /* Closing the output clobbers the file times on some systems. */
2003 if (emacs_close (ofd) < 0)
2004 report_file_error ("I/O error", Fcons (newname, Qnil));
2005
2006 if (input_file_statable_p)
2007 {
2008 if (!NILP (keep_time))
2009 {
2010 EMACS_TIME atime, mtime;
2011 EMACS_SET_SECS_USECS (atime, st.st_atime, 0);
2012 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0);
2013 if (set_file_times (SSDATA (encoded_newname),
2014 atime, mtime))
2015 xsignal2 (Qfile_date_error,
2016 build_string ("Cannot set file date"), newname);
2017 }
2018 }
2019
2020 emacs_close (ifd);
2021
2022 #ifdef MSDOS
2023 if (input_file_statable_p)
2024 {
2025 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2026 and if it can't, it tells so. Otherwise, under MSDOS we usually
2027 get only the READ bit, which will make the copied file read-only,
2028 so it's better not to chmod at all. */
2029 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0)
2030 chmod (SDATA (encoded_newname), st.st_mode & 07777);
2031 }
2032 #endif /* MSDOS */
2033 #endif /* not WINDOWSNT */
2034
2035 /* Discard the unwind protects. */
2036 specpdl_ptr = specpdl + count;
2037
2038 UNGCPRO;
2039 return Qnil;
2040 }
2041 \f
2042 DEFUN ("make-directory-internal", Fmake_directory_internal,
2043 Smake_directory_internal, 1, 1, 0,
2044 doc: /* Create a new directory named DIRECTORY. */)
2045 (Lisp_Object directory)
2046 {
2047 const char *dir;
2048 Lisp_Object handler;
2049 Lisp_Object encoded_dir;
2050
2051 CHECK_STRING (directory);
2052 directory = Fexpand_file_name (directory, Qnil);
2053
2054 handler = Ffind_file_name_handler (directory, Qmake_directory_internal);
2055 if (!NILP (handler))
2056 return call2 (handler, Qmake_directory_internal, directory);
2057
2058 encoded_dir = ENCODE_FILE (directory);
2059
2060 dir = SSDATA (encoded_dir);
2061
2062 #ifdef WINDOWSNT
2063 if (mkdir (dir) != 0)
2064 #else
2065 if (mkdir (dir, 0777) != 0)
2066 #endif
2067 report_file_error ("Creating directory", list1 (directory));
2068
2069 return Qnil;
2070 }
2071
2072 DEFUN ("delete-directory-internal", Fdelete_directory_internal,
2073 Sdelete_directory_internal, 1, 1, 0,
2074 doc: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
2075 (Lisp_Object directory)
2076 {
2077 const char *dir;
2078 Lisp_Object encoded_dir;
2079
2080 CHECK_STRING (directory);
2081 directory = Fdirectory_file_name (Fexpand_file_name (directory, Qnil));
2082 encoded_dir = ENCODE_FILE (directory);
2083 dir = SSDATA (encoded_dir);
2084
2085 if (rmdir (dir) != 0)
2086 report_file_error ("Removing directory", list1 (directory));
2087
2088 return Qnil;
2089 }
2090
2091 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 2,
2092 "(list (read-file-name \
2093 (if (and delete-by-moving-to-trash (null current-prefix-arg)) \
2094 \"Move file to trash: \" \"Delete file: \") \
2095 nil default-directory (confirm-nonexistent-file-or-buffer)) \
2096 (null current-prefix-arg))",
2097 doc: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
2098 If file has multiple names, it continues to exist with the other names.
2099 TRASH non-nil means to trash the file instead of deleting, provided
2100 `delete-by-moving-to-trash' is non-nil.
2101
2102 When called interactively, TRASH is t if no prefix argument is given.
2103 With a prefix argument, TRASH is nil. */)
2104 (Lisp_Object filename, Lisp_Object trash)
2105 {
2106 Lisp_Object handler;
2107 Lisp_Object encoded_file;
2108 struct gcpro gcpro1;
2109
2110 GCPRO1 (filename);
2111 if (!NILP (Ffile_directory_p (filename))
2112 && NILP (Ffile_symlink_p (filename)))
2113 xsignal2 (Qfile_error,
2114 build_string ("Removing old name: is a directory"),
2115 filename);
2116 UNGCPRO;
2117 filename = Fexpand_file_name (filename, Qnil);
2118
2119 handler = Ffind_file_name_handler (filename, Qdelete_file);
2120 if (!NILP (handler))
2121 return call3 (handler, Qdelete_file, filename, trash);
2122
2123 if (delete_by_moving_to_trash && !NILP (trash))
2124 return call1 (Qmove_file_to_trash, filename);
2125
2126 encoded_file = ENCODE_FILE (filename);
2127
2128 if (0 > unlink (SSDATA (encoded_file)))
2129 report_file_error ("Removing old name", list1 (filename));
2130 return Qnil;
2131 }
2132
2133 static Lisp_Object
2134 internal_delete_file_1 (Lisp_Object ignore)
2135 {
2136 return Qt;
2137 }
2138
2139 /* Delete file FILENAME, returning 1 if successful and 0 if failed.
2140 This ignores `delete-by-moving-to-trash'. */
2141
2142 int
2143 internal_delete_file (Lisp_Object filename)
2144 {
2145 Lisp_Object tem;
2146
2147 tem = internal_condition_case_2 (Fdelete_file, filename, Qnil,
2148 Qt, internal_delete_file_1);
2149 return NILP (tem);
2150 }
2151 \f
2152 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
2153 "fRename file: \nGRename %s to file: \np",
2154 doc: /* Rename FILE as NEWNAME. Both args must be strings.
2155 If file has names other than FILE, it continues to have those names.
2156 Signals a `file-already-exists' error if a file NEWNAME already exists
2157 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2158 A number as third arg means request confirmation if NEWNAME already exists.
2159 This is what happens in interactive use with M-x. */)
2160 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
2161 {
2162 Lisp_Object handler;
2163 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2164 Lisp_Object encoded_file, encoded_newname, symlink_target;
2165
2166 symlink_target = encoded_file = encoded_newname = Qnil;
2167 GCPRO5 (file, newname, encoded_file, encoded_newname, symlink_target);
2168 CHECK_STRING (file);
2169 CHECK_STRING (newname);
2170 file = Fexpand_file_name (file, Qnil);
2171
2172 if ((!NILP (Ffile_directory_p (newname)))
2173 #ifdef DOS_NT
2174 /* If the file names are identical but for the case,
2175 don't attempt to move directory to itself. */
2176 && (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2177 #endif
2178 )
2179 {
2180 Lisp_Object fname = NILP (Ffile_directory_p (file))
2181 ? file : Fdirectory_file_name (file);
2182 newname = Fexpand_file_name (Ffile_name_nondirectory (fname), newname);
2183 }
2184 else
2185 newname = Fexpand_file_name (newname, Qnil);
2186
2187 /* If the file name has special constructs in it,
2188 call the corresponding file handler. */
2189 handler = Ffind_file_name_handler (file, Qrename_file);
2190 if (NILP (handler))
2191 handler = Ffind_file_name_handler (newname, Qrename_file);
2192 if (!NILP (handler))
2193 RETURN_UNGCPRO (call4 (handler, Qrename_file,
2194 file, newname, ok_if_already_exists));
2195
2196 encoded_file = ENCODE_FILE (file);
2197 encoded_newname = ENCODE_FILE (newname);
2198
2199 #ifdef DOS_NT
2200 /* If the file names are identical but for the case, don't ask for
2201 confirmation: they simply want to change the letter-case of the
2202 file name. */
2203 if (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2204 #endif
2205 if (NILP (ok_if_already_exists)
2206 || INTEGERP (ok_if_already_exists))
2207 barf_or_query_if_file_exists (newname, "rename to it",
2208 INTEGERP (ok_if_already_exists), 0, 0);
2209 if (0 > rename (SSDATA (encoded_file), SSDATA (encoded_newname)))
2210 {
2211 if (errno == EXDEV)
2212 {
2213 int count;
2214 symlink_target = Ffile_symlink_p (file);
2215 if (! NILP (symlink_target))
2216 Fmake_symbolic_link (symlink_target, newname,
2217 NILP (ok_if_already_exists) ? Qnil : Qt);
2218 else if (!NILP (Ffile_directory_p (file)))
2219 call4 (Qcopy_directory, file, newname, Qt, Qnil);
2220 else
2221 /* We have already prompted if it was an integer, so don't
2222 have copy-file prompt again. */
2223 Fcopy_file (file, newname,
2224 NILP (ok_if_already_exists) ? Qnil : Qt,
2225 Qt, Qt, Qt);
2226
2227 count = SPECPDL_INDEX ();
2228 specbind (Qdelete_by_moving_to_trash, Qnil);
2229
2230 if (!NILP (Ffile_directory_p (file)) && NILP (symlink_target))
2231 call2 (Qdelete_directory, file, Qt);
2232 else
2233 Fdelete_file (file, Qnil);
2234 unbind_to (count, Qnil);
2235 }
2236 else
2237 report_file_error ("Renaming", list2 (file, newname));
2238 }
2239 UNGCPRO;
2240 return Qnil;
2241 }
2242
2243 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
2244 "fAdd name to file: \nGName to add to %s: \np",
2245 doc: /* Give FILE additional name NEWNAME. Both args must be strings.
2246 Signals a `file-already-exists' error if a file NEWNAME already exists
2247 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2248 A number as third arg means request confirmation if NEWNAME already exists.
2249 This is what happens in interactive use with M-x. */)
2250 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
2251 {
2252 Lisp_Object handler;
2253 Lisp_Object encoded_file, encoded_newname;
2254 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2255
2256 GCPRO4 (file, newname, encoded_file, encoded_newname);
2257 encoded_file = encoded_newname = Qnil;
2258 CHECK_STRING (file);
2259 CHECK_STRING (newname);
2260 file = Fexpand_file_name (file, Qnil);
2261
2262 if (!NILP (Ffile_directory_p (newname)))
2263 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
2264 else
2265 newname = Fexpand_file_name (newname, Qnil);
2266
2267 /* If the file name has special constructs in it,
2268 call the corresponding file handler. */
2269 handler = Ffind_file_name_handler (file, Qadd_name_to_file);
2270 if (!NILP (handler))
2271 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2272 newname, ok_if_already_exists));
2273
2274 /* If the new name has special constructs in it,
2275 call the corresponding file handler. */
2276 handler = Ffind_file_name_handler (newname, Qadd_name_to_file);
2277 if (!NILP (handler))
2278 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2279 newname, ok_if_already_exists));
2280
2281 encoded_file = ENCODE_FILE (file);
2282 encoded_newname = ENCODE_FILE (newname);
2283
2284 if (NILP (ok_if_already_exists)
2285 || INTEGERP (ok_if_already_exists))
2286 barf_or_query_if_file_exists (newname, "make it a new name",
2287 INTEGERP (ok_if_already_exists), 0, 0);
2288
2289 unlink (SSDATA (newname));
2290 if (0 > link (SSDATA (encoded_file), SSDATA (encoded_newname)))
2291 report_file_error ("Adding new name", list2 (file, newname));
2292
2293 UNGCPRO;
2294 return Qnil;
2295 }
2296
2297 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
2298 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np",
2299 doc: /* Make a symbolic link to FILENAME, named LINKNAME.
2300 Both args must be strings.
2301 Signals a `file-already-exists' error if a file LINKNAME already exists
2302 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2303 A number as third arg means request confirmation if LINKNAME already exists.
2304 This happens for interactive use with M-x. */)
2305 (Lisp_Object filename, Lisp_Object linkname, Lisp_Object ok_if_already_exists)
2306 {
2307 Lisp_Object handler;
2308 Lisp_Object encoded_filename, encoded_linkname;
2309 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2310
2311 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname);
2312 encoded_filename = encoded_linkname = Qnil;
2313 CHECK_STRING (filename);
2314 CHECK_STRING (linkname);
2315 /* If the link target has a ~, we must expand it to get
2316 a truly valid file name. Otherwise, do not expand;
2317 we want to permit links to relative file names. */
2318 if (SREF (filename, 0) == '~')
2319 filename = Fexpand_file_name (filename, Qnil);
2320
2321 if (!NILP (Ffile_directory_p (linkname)))
2322 linkname = Fexpand_file_name (Ffile_name_nondirectory (filename), linkname);
2323 else
2324 linkname = Fexpand_file_name (linkname, Qnil);
2325
2326 /* If the file name has special constructs in it,
2327 call the corresponding file handler. */
2328 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
2329 if (!NILP (handler))
2330 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2331 linkname, ok_if_already_exists));
2332
2333 /* If the new link name has special constructs in it,
2334 call the corresponding file handler. */
2335 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link);
2336 if (!NILP (handler))
2337 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2338 linkname, ok_if_already_exists));
2339
2340 encoded_filename = ENCODE_FILE (filename);
2341 encoded_linkname = ENCODE_FILE (linkname);
2342
2343 if (NILP (ok_if_already_exists)
2344 || INTEGERP (ok_if_already_exists))
2345 barf_or_query_if_file_exists (linkname, "make it a link",
2346 INTEGERP (ok_if_already_exists), 0, 0);
2347 if (0 > symlink (SSDATA (encoded_filename),
2348 SSDATA (encoded_linkname)))
2349 {
2350 /* If we didn't complain already, silently delete existing file. */
2351 if (errno == EEXIST)
2352 {
2353 unlink (SSDATA (encoded_linkname));
2354 if (0 <= symlink (SSDATA (encoded_filename),
2355 SSDATA (encoded_linkname)))
2356 {
2357 UNGCPRO;
2358 return Qnil;
2359 }
2360 }
2361 if (errno == ENOSYS)
2362 {
2363 UNGCPRO;
2364 xsignal1 (Qfile_error,
2365 build_string ("Symbolic links are not supported"));
2366 }
2367
2368 report_file_error ("Making symbolic link", list2 (filename, linkname));
2369 }
2370 UNGCPRO;
2371 return Qnil;
2372 }
2373
2374 \f
2375 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
2376 1, 1, 0,
2377 doc: /* Return t if file FILENAME specifies an absolute file name.
2378 On Unix, this is a name starting with a `/' or a `~'. */)
2379 (Lisp_Object filename)
2380 {
2381 CHECK_STRING (filename);
2382 return file_name_absolute_p (SSDATA (filename)) ? Qt : Qnil;
2383 }
2384 \f
2385 /* Return nonzero if file FILENAME exists and can be executed. */
2386
2387 static int
2388 check_executable (char *filename)
2389 {
2390 #ifdef DOS_NT
2391 struct stat st;
2392 if (stat (filename, &st) < 0)
2393 return 0;
2394 return ((st.st_mode & S_IEXEC) != 0);
2395 #else /* not DOS_NT */
2396 #ifdef HAVE_EUIDACCESS
2397 return (euidaccess (filename, 1) >= 0);
2398 #else
2399 /* Access isn't quite right because it uses the real uid
2400 and we really want to test with the effective uid.
2401 But Unix doesn't give us a right way to do it. */
2402 return (access (filename, 1) >= 0);
2403 #endif
2404 #endif /* not DOS_NT */
2405 }
2406
2407 /* Return nonzero if file FILENAME exists and can be written. */
2408
2409 static int
2410 check_writable (const char *filename)
2411 {
2412 #ifdef MSDOS
2413 struct stat st;
2414 if (stat (filename, &st) < 0)
2415 return 0;
2416 return (st.st_mode & S_IWRITE || S_ISDIR (st.st_mode));
2417 #else /* not MSDOS */
2418 #ifdef HAVE_EUIDACCESS
2419 return (euidaccess (filename, 2) >= 0);
2420 #else
2421 /* Access isn't quite right because it uses the real uid
2422 and we really want to test with the effective uid.
2423 But Unix doesn't give us a right way to do it.
2424 Opening with O_WRONLY could work for an ordinary file,
2425 but would lose for directories. */
2426 return (access (filename, 2) >= 0);
2427 #endif
2428 #endif /* not MSDOS */
2429 }
2430
2431 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
2432 doc: /* Return t if file FILENAME exists (whether or not you can read it.)
2433 See also `file-readable-p' and `file-attributes'.
2434 This returns nil for a symlink to a nonexistent file.
2435 Use `file-symlink-p' to test for such links. */)
2436 (Lisp_Object filename)
2437 {
2438 Lisp_Object absname;
2439 Lisp_Object handler;
2440 struct stat statbuf;
2441
2442 CHECK_STRING (filename);
2443 absname = Fexpand_file_name (filename, Qnil);
2444
2445 /* If the file name has special constructs in it,
2446 call the corresponding file handler. */
2447 handler = Ffind_file_name_handler (absname, Qfile_exists_p);
2448 if (!NILP (handler))
2449 return call2 (handler, Qfile_exists_p, absname);
2450
2451 absname = ENCODE_FILE (absname);
2452
2453 return (stat (SSDATA (absname), &statbuf) >= 0) ? Qt : Qnil;
2454 }
2455
2456 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
2457 doc: /* Return t if FILENAME can be executed by you.
2458 For a directory, this means you can access files in that directory. */)
2459 (Lisp_Object filename)
2460 {
2461 Lisp_Object absname;
2462 Lisp_Object handler;
2463
2464 CHECK_STRING (filename);
2465 absname = Fexpand_file_name (filename, Qnil);
2466
2467 /* If the file name has special constructs in it,
2468 call the corresponding file handler. */
2469 handler = Ffind_file_name_handler (absname, Qfile_executable_p);
2470 if (!NILP (handler))
2471 return call2 (handler, Qfile_executable_p, absname);
2472
2473 absname = ENCODE_FILE (absname);
2474
2475 return (check_executable (SSDATA (absname)) ? Qt : Qnil);
2476 }
2477
2478 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
2479 doc: /* Return t if file FILENAME exists and you can read it.
2480 See also `file-exists-p' and `file-attributes'. */)
2481 (Lisp_Object filename)
2482 {
2483 Lisp_Object absname;
2484 Lisp_Object handler;
2485 int desc;
2486 int flags;
2487 struct stat statbuf;
2488
2489 CHECK_STRING (filename);
2490 absname = Fexpand_file_name (filename, Qnil);
2491
2492 /* If the file name has special constructs in it,
2493 call the corresponding file handler. */
2494 handler = Ffind_file_name_handler (absname, Qfile_readable_p);
2495 if (!NILP (handler))
2496 return call2 (handler, Qfile_readable_p, absname);
2497
2498 absname = ENCODE_FILE (absname);
2499
2500 #if defined(DOS_NT) || defined(macintosh)
2501 /* Under MS-DOS, Windows, and Macintosh, open does not work for
2502 directories. */
2503 if (access (SDATA (absname), 0) == 0)
2504 return Qt;
2505 return Qnil;
2506 #else /* not DOS_NT and not macintosh */
2507 flags = O_RDONLY;
2508 #ifdef O_NONBLOCK
2509 /* Opening a fifo without O_NONBLOCK can wait.
2510 We don't want to wait. But we don't want to mess wth O_NONBLOCK
2511 except in the case of a fifo, on a system which handles it. */
2512 desc = stat (SSDATA (absname), &statbuf);
2513 if (desc < 0)
2514 return Qnil;
2515 if (S_ISFIFO (statbuf.st_mode))
2516 flags |= O_NONBLOCK;
2517 #endif
2518 desc = emacs_open (SSDATA (absname), flags, 0);
2519 if (desc < 0)
2520 return Qnil;
2521 emacs_close (desc);
2522 return Qt;
2523 #endif /* not DOS_NT and not macintosh */
2524 }
2525
2526 /* Having this before file-symlink-p mysteriously caused it to be forgotten
2527 on the RT/PC. */
2528 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
2529 doc: /* Return t if file FILENAME can be written or created by you. */)
2530 (Lisp_Object filename)
2531 {
2532 Lisp_Object absname, dir, encoded;
2533 Lisp_Object handler;
2534 struct stat statbuf;
2535
2536 CHECK_STRING (filename);
2537 absname = Fexpand_file_name (filename, Qnil);
2538
2539 /* If the file name has special constructs in it,
2540 call the corresponding file handler. */
2541 handler = Ffind_file_name_handler (absname, Qfile_writable_p);
2542 if (!NILP (handler))
2543 return call2 (handler, Qfile_writable_p, absname);
2544
2545 encoded = ENCODE_FILE (absname);
2546 if (stat (SSDATA (encoded), &statbuf) >= 0)
2547 return (check_writable (SSDATA (encoded))
2548 ? Qt : Qnil);
2549
2550 dir = Ffile_name_directory (absname);
2551 #ifdef MSDOS
2552 if (!NILP (dir))
2553 dir = Fdirectory_file_name (dir);
2554 #endif /* MSDOS */
2555
2556 dir = ENCODE_FILE (dir);
2557 #ifdef WINDOWSNT
2558 /* The read-only attribute of the parent directory doesn't affect
2559 whether a file or directory can be created within it. Some day we
2560 should check ACLs though, which do affect this. */
2561 if (stat (SDATA (dir), &statbuf) < 0)
2562 return Qnil;
2563 return S_ISDIR (statbuf.st_mode) ? Qt : Qnil;
2564 #else
2565 return (check_writable (!NILP (dir) ? SSDATA (dir) : "")
2566 ? Qt : Qnil);
2567 #endif
2568 }
2569 \f
2570 DEFUN ("access-file", Faccess_file, Saccess_file, 2, 2, 0,
2571 doc: /* Access file FILENAME, and get an error if that does not work.
2572 The second argument STRING is used in the error message.
2573 If there is no error, returns nil. */)
2574 (Lisp_Object filename, Lisp_Object string)
2575 {
2576 Lisp_Object handler, encoded_filename, absname;
2577 int fd;
2578
2579 CHECK_STRING (filename);
2580 absname = Fexpand_file_name (filename, Qnil);
2581
2582 CHECK_STRING (string);
2583
2584 /* If the file name has special constructs in it,
2585 call the corresponding file handler. */
2586 handler = Ffind_file_name_handler (absname, Qaccess_file);
2587 if (!NILP (handler))
2588 return call3 (handler, Qaccess_file, absname, string);
2589
2590 encoded_filename = ENCODE_FILE (absname);
2591
2592 fd = emacs_open (SSDATA (encoded_filename), O_RDONLY, 0);
2593 if (fd < 0)
2594 report_file_error (SSDATA (string), Fcons (filename, Qnil));
2595 emacs_close (fd);
2596
2597 return Qnil;
2598 }
2599 \f
2600 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
2601 doc: /* Return non-nil if file FILENAME is the name of a symbolic link.
2602 The value is the link target, as a string.
2603 Otherwise it returns nil.
2604
2605 This function returns t when given the name of a symlink that
2606 points to a nonexistent file. */)
2607 (Lisp_Object filename)
2608 {
2609 Lisp_Object handler;
2610 char *buf;
2611 Lisp_Object val;
2612 char readlink_buf[READLINK_BUFSIZE];
2613
2614 CHECK_STRING (filename);
2615 filename = Fexpand_file_name (filename, Qnil);
2616
2617 /* If the file name has special constructs in it,
2618 call the corresponding file handler. */
2619 handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
2620 if (!NILP (handler))
2621 return call2 (handler, Qfile_symlink_p, filename);
2622
2623 filename = ENCODE_FILE (filename);
2624
2625 buf = emacs_readlink (SSDATA (filename), readlink_buf);
2626 if (! buf)
2627 return Qnil;
2628
2629 val = build_string (buf);
2630 if (buf[0] == '/' && strchr (buf, ':'))
2631 val = concat2 (build_string ("/:"), val);
2632 if (buf != readlink_buf)
2633 xfree (buf);
2634 val = DECODE_FILE (val);
2635 return val;
2636 }
2637
2638 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
2639 doc: /* Return t if FILENAME names an existing directory.
2640 Symbolic links to directories count as directories.
2641 See `file-symlink-p' to distinguish symlinks. */)
2642 (Lisp_Object filename)
2643 {
2644 register Lisp_Object absname;
2645 struct stat st;
2646 Lisp_Object handler;
2647
2648 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2649
2650 /* If the file name has special constructs in it,
2651 call the corresponding file handler. */
2652 handler = Ffind_file_name_handler (absname, Qfile_directory_p);
2653 if (!NILP (handler))
2654 return call2 (handler, Qfile_directory_p, absname);
2655
2656 absname = ENCODE_FILE (absname);
2657
2658 if (stat (SSDATA (absname), &st) < 0)
2659 return Qnil;
2660 return S_ISDIR (st.st_mode) ? Qt : Qnil;
2661 }
2662
2663 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p,
2664 Sfile_accessible_directory_p, 1, 1, 0,
2665 doc: /* Return t if file FILENAME names a directory you can open.
2666 For the value to be t, FILENAME must specify the name of a directory as a file,
2667 and the directory must allow you to open files in it. In order to use a
2668 directory as a buffer's current directory, this predicate must return true.
2669 A directory name spec may be given instead; then the value is t
2670 if the directory so specified exists and really is a readable and
2671 searchable directory. */)
2672 (Lisp_Object filename)
2673 {
2674 Lisp_Object handler;
2675 int tem;
2676 struct gcpro gcpro1;
2677
2678 /* If the file name has special constructs in it,
2679 call the corresponding file handler. */
2680 handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p);
2681 if (!NILP (handler))
2682 return call2 (handler, Qfile_accessible_directory_p, filename);
2683
2684 GCPRO1 (filename);
2685 tem = (NILP (Ffile_directory_p (filename))
2686 || NILP (Ffile_executable_p (filename)));
2687 UNGCPRO;
2688 return tem ? Qnil : Qt;
2689 }
2690
2691 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
2692 doc: /* Return t if FILENAME names a regular file.
2693 This is the sort of file that holds an ordinary stream of data bytes.
2694 Symbolic links to regular files count as regular files.
2695 See `file-symlink-p' to distinguish symlinks. */)
2696 (Lisp_Object filename)
2697 {
2698 register Lisp_Object absname;
2699 struct stat st;
2700 Lisp_Object handler;
2701
2702 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2703
2704 /* If the file name has special constructs in it,
2705 call the corresponding file handler. */
2706 handler = Ffind_file_name_handler (absname, Qfile_regular_p);
2707 if (!NILP (handler))
2708 return call2 (handler, Qfile_regular_p, absname);
2709
2710 absname = ENCODE_FILE (absname);
2711
2712 #ifdef WINDOWSNT
2713 {
2714 int result;
2715 Lisp_Object tem = Vw32_get_true_file_attributes;
2716
2717 /* Tell stat to use expensive method to get accurate info. */
2718 Vw32_get_true_file_attributes = Qt;
2719 result = stat (SDATA (absname), &st);
2720 Vw32_get_true_file_attributes = tem;
2721
2722 if (result < 0)
2723 return Qnil;
2724 return S_ISREG (st.st_mode) ? Qt : Qnil;
2725 }
2726 #else
2727 if (stat (SSDATA (absname), &st) < 0)
2728 return Qnil;
2729 return S_ISREG (st.st_mode) ? Qt : Qnil;
2730 #endif
2731 }
2732 \f
2733 DEFUN ("file-selinux-context", Ffile_selinux_context,
2734 Sfile_selinux_context, 1, 1, 0,
2735 doc: /* Return SELinux context of file named FILENAME,
2736 as a list ("user", "role", "type", "range"). Return (nil, nil, nil, nil)
2737 if file does not exist, is not accessible, or SELinux is disabled */)
2738 (Lisp_Object filename)
2739 {
2740 Lisp_Object absname;
2741 Lisp_Object values[4];
2742 Lisp_Object handler;
2743 #if HAVE_LIBSELINUX
2744 security_context_t con;
2745 int conlength;
2746 context_t context;
2747 #endif
2748
2749 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2750
2751 /* If the file name has special constructs in it,
2752 call the corresponding file handler. */
2753 handler = Ffind_file_name_handler (absname, Qfile_selinux_context);
2754 if (!NILP (handler))
2755 return call2 (handler, Qfile_selinux_context, absname);
2756
2757 absname = ENCODE_FILE (absname);
2758
2759 values[0] = Qnil;
2760 values[1] = Qnil;
2761 values[2] = Qnil;
2762 values[3] = Qnil;
2763 #if HAVE_LIBSELINUX
2764 if (is_selinux_enabled ())
2765 {
2766 conlength = lgetfilecon (SSDATA (absname), &con);
2767 if (conlength > 0)
2768 {
2769 context = context_new (con);
2770 if (context_user_get (context))
2771 values[0] = build_string (context_user_get (context));
2772 if (context_role_get (context))
2773 values[1] = build_string (context_role_get (context));
2774 if (context_type_get (context))
2775 values[2] = build_string (context_type_get (context));
2776 if (context_range_get (context))
2777 values[3] = build_string (context_range_get (context));
2778 context_free (context);
2779 }
2780 if (con)
2781 freecon (con);
2782 }
2783 #endif
2784
2785 return Flist (sizeof(values) / sizeof(values[0]), values);
2786 }
2787 \f
2788 DEFUN ("set-file-selinux-context", Fset_file_selinux_context,
2789 Sset_file_selinux_context, 2, 2, 0,
2790 doc: /* Set SELinux context of file named FILENAME to CONTEXT
2791 as a list ("user", "role", "type", "range"). Has no effect if SELinux
2792 is disabled. */)
2793 (Lisp_Object filename, Lisp_Object context)
2794 {
2795 Lisp_Object absname;
2796 Lisp_Object handler;
2797 #if HAVE_LIBSELINUX
2798 Lisp_Object encoded_absname;
2799 Lisp_Object user = CAR_SAFE (context);
2800 Lisp_Object role = CAR_SAFE (CDR_SAFE (context));
2801 Lisp_Object type = CAR_SAFE (CDR_SAFE (CDR_SAFE (context)));
2802 Lisp_Object range = CAR_SAFE (CDR_SAFE (CDR_SAFE (CDR_SAFE (context))));
2803 security_context_t con;
2804 int fail, conlength;
2805 context_t parsed_con;
2806 #endif
2807
2808 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
2809
2810 /* If the file name has special constructs in it,
2811 call the corresponding file handler. */
2812 handler = Ffind_file_name_handler (absname, Qset_file_selinux_context);
2813 if (!NILP (handler))
2814 return call3 (handler, Qset_file_selinux_context, absname, context);
2815
2816 #if HAVE_LIBSELINUX
2817 if (is_selinux_enabled ())
2818 {
2819 /* Get current file context. */
2820 encoded_absname = ENCODE_FILE (absname);
2821 conlength = lgetfilecon (SSDATA (encoded_absname), &con);
2822 if (conlength > 0)
2823 {
2824 parsed_con = context_new (con);
2825 /* Change the parts defined in the parameter.*/
2826 if (STRINGP (user))
2827 {
2828 if (context_user_set (parsed_con, SSDATA (user)))
2829 error ("Doing context_user_set");
2830 }
2831 if (STRINGP (role))
2832 {
2833 if (context_role_set (parsed_con, SSDATA (role)))
2834 error ("Doing context_role_set");
2835 }
2836 if (STRINGP (type))
2837 {
2838 if (context_type_set (parsed_con, SSDATA (type)))
2839 error ("Doing context_type_set");
2840 }
2841 if (STRINGP (range))
2842 {
2843 if (context_range_set (parsed_con, SSDATA (range)))
2844 error ("Doing context_range_set");
2845 }
2846
2847 /* Set the modified context back to the file. */
2848 fail = lsetfilecon (SSDATA (encoded_absname),
2849 context_str (parsed_con));
2850 if (fail)
2851 report_file_error ("Doing lsetfilecon", Fcons (absname, Qnil));
2852
2853 context_free (parsed_con);
2854 }
2855 else
2856 report_file_error("Doing lgetfilecon", Fcons (absname, Qnil));
2857
2858 if (con)
2859 freecon (con);
2860 }
2861 #endif
2862
2863 return Qnil;
2864 }
2865 \f
2866 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
2867 doc: /* Return mode bits of file named FILENAME, as an integer.
2868 Return nil, if file does not exist or is not accessible. */)
2869 (Lisp_Object filename)
2870 {
2871 Lisp_Object absname;
2872 struct stat st;
2873 Lisp_Object handler;
2874
2875 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2876
2877 /* If the file name has special constructs in it,
2878 call the corresponding file handler. */
2879 handler = Ffind_file_name_handler (absname, Qfile_modes);
2880 if (!NILP (handler))
2881 return call2 (handler, Qfile_modes, absname);
2882
2883 absname = ENCODE_FILE (absname);
2884
2885 if (stat (SSDATA (absname), &st) < 0)
2886 return Qnil;
2887
2888 return make_number (st.st_mode & 07777);
2889 }
2890
2891 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2,
2892 "(let ((file (read-file-name \"File: \"))) \
2893 (list file (read-file-modes nil file)))",
2894 doc: /* Set mode bits of file named FILENAME to MODE (an integer).
2895 Only the 12 low bits of MODE are used.
2896
2897 Interactively, mode bits are read by `read-file-modes', which accepts
2898 symbolic notation, like the `chmod' command from GNU Coreutils. */)
2899 (Lisp_Object filename, Lisp_Object mode)
2900 {
2901 Lisp_Object absname, encoded_absname;
2902 Lisp_Object handler;
2903
2904 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
2905 CHECK_NUMBER (mode);
2906
2907 /* If the file name has special constructs in it,
2908 call the corresponding file handler. */
2909 handler = Ffind_file_name_handler (absname, Qset_file_modes);
2910 if (!NILP (handler))
2911 return call3 (handler, Qset_file_modes, absname, mode);
2912
2913 encoded_absname = ENCODE_FILE (absname);
2914
2915 if (chmod (SSDATA (encoded_absname), XINT (mode) & 07777) < 0)
2916 report_file_error ("Doing chmod", Fcons (absname, Qnil));
2917
2918 return Qnil;
2919 }
2920
2921 DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0,
2922 doc: /* Set the file permission bits for newly created files.
2923 The argument MODE should be an integer; only the low 9 bits are used.
2924 This setting is inherited by subprocesses. */)
2925 (Lisp_Object mode)
2926 {
2927 CHECK_NUMBER (mode);
2928
2929 umask ((~ XINT (mode)) & 0777);
2930
2931 return Qnil;
2932 }
2933
2934 DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0,
2935 doc: /* Return the default file protection for created files.
2936 The value is an integer. */)
2937 (void)
2938 {
2939 int realmask;
2940 Lisp_Object value;
2941
2942 realmask = umask (0);
2943 umask (realmask);
2944
2945 XSETINT (value, (~ realmask) & 0777);
2946 return value;
2947 }
2948 \f
2949
2950 DEFUN ("set-file-times", Fset_file_times, Sset_file_times, 1, 2, 0,
2951 doc: /* Set times of file FILENAME to TIMESTAMP.
2952 Set both access and modification times.
2953 Return t on success, else nil.
2954 Use the current time if TIMESTAMP is nil. TIMESTAMP is in the format of
2955 `current-time'. */)
2956 (Lisp_Object filename, Lisp_Object timestamp)
2957 {
2958 Lisp_Object absname, encoded_absname;
2959 Lisp_Object handler;
2960 time_t sec;
2961 int usec;
2962
2963 if (! lisp_time_argument (timestamp, &sec, &usec))
2964 error ("Invalid time specification");
2965
2966 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
2967
2968 /* If the file name has special constructs in it,
2969 call the corresponding file handler. */
2970 handler = Ffind_file_name_handler (absname, Qset_file_times);
2971 if (!NILP (handler))
2972 return call3 (handler, Qset_file_times, absname, timestamp);
2973
2974 encoded_absname = ENCODE_FILE (absname);
2975
2976 {
2977 EMACS_TIME t;
2978
2979 EMACS_SET_SECS (t, sec);
2980 EMACS_SET_USECS (t, usec);
2981
2982 if (set_file_times (SSDATA (encoded_absname), t, t))
2983 {
2984 #ifdef DOS_NT
2985 struct stat st;
2986
2987 /* Setting times on a directory always fails. */
2988 if (stat (SSDATA (encoded_absname), &st) == 0 && S_ISDIR (st.st_mode))
2989 return Qnil;
2990 #endif
2991 report_file_error ("Setting file times", Fcons (absname, Qnil));
2992 return Qnil;
2993 }
2994 }
2995
2996 return Qt;
2997 }
2998 \f
2999 #ifdef HAVE_SYNC
3000 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
3001 doc: /* Tell Unix to finish all pending disk updates. */)
3002 (void)
3003 {
3004 sync ();
3005 return Qnil;
3006 }
3007
3008 #endif /* HAVE_SYNC */
3009
3010 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
3011 doc: /* Return t if file FILE1 is newer than file FILE2.
3012 If FILE1 does not exist, the answer is nil;
3013 otherwise, if FILE2 does not exist, the answer is t. */)
3014 (Lisp_Object file1, Lisp_Object file2)
3015 {
3016 Lisp_Object absname1, absname2;
3017 struct stat st;
3018 int mtime1;
3019 Lisp_Object handler;
3020 struct gcpro gcpro1, gcpro2;
3021
3022 CHECK_STRING (file1);
3023 CHECK_STRING (file2);
3024
3025 absname1 = Qnil;
3026 GCPRO2 (absname1, file2);
3027 absname1 = expand_and_dir_to_file (file1, BVAR (current_buffer, directory));
3028 absname2 = expand_and_dir_to_file (file2, BVAR (current_buffer, directory));
3029 UNGCPRO;
3030
3031 /* If the file name has special constructs in it,
3032 call the corresponding file handler. */
3033 handler = Ffind_file_name_handler (absname1, Qfile_newer_than_file_p);
3034 if (NILP (handler))
3035 handler = Ffind_file_name_handler (absname2, Qfile_newer_than_file_p);
3036 if (!NILP (handler))
3037 return call3 (handler, Qfile_newer_than_file_p, absname1, absname2);
3038
3039 GCPRO2 (absname1, absname2);
3040 absname1 = ENCODE_FILE (absname1);
3041 absname2 = ENCODE_FILE (absname2);
3042 UNGCPRO;
3043
3044 if (stat (SSDATA (absname1), &st) < 0)
3045 return Qnil;
3046
3047 mtime1 = st.st_mtime;
3048
3049 if (stat (SSDATA (absname2), &st) < 0)
3050 return Qt;
3051
3052 return (mtime1 > st.st_mtime) ? Qt : Qnil;
3053 }
3054 \f
3055 #ifndef READ_BUF_SIZE
3056 #define READ_BUF_SIZE (64 << 10)
3057 #endif
3058
3059 /* This function is called after Lisp functions to decide a coding
3060 system are called, or when they cause an error. Before they are
3061 called, the current buffer is set unibyte and it contains only a
3062 newly inserted text (thus the buffer was empty before the
3063 insertion).
3064
3065 The functions may set markers, overlays, text properties, or even
3066 alter the buffer contents, change the current buffer.
3067
3068 Here, we reset all those changes by:
3069 o set back the current buffer.
3070 o move all markers and overlays to BEG.
3071 o remove all text properties.
3072 o set back the buffer multibyteness. */
3073
3074 static Lisp_Object
3075 decide_coding_unwind (Lisp_Object unwind_data)
3076 {
3077 Lisp_Object multibyte, undo_list, buffer;
3078
3079 multibyte = XCAR (unwind_data);
3080 unwind_data = XCDR (unwind_data);
3081 undo_list = XCAR (unwind_data);
3082 buffer = XCDR (unwind_data);
3083
3084 if (current_buffer != XBUFFER (buffer))
3085 set_buffer_internal (XBUFFER (buffer));
3086 adjust_markers_for_delete (BEG, BEG_BYTE, Z, Z_BYTE);
3087 adjust_overlays_for_delete (BEG, Z - BEG);
3088 BUF_INTERVALS (current_buffer) = 0;
3089 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3090
3091 /* Now we are safe to change the buffer's multibyteness directly. */
3092 BVAR (current_buffer, enable_multibyte_characters) = multibyte;
3093 BVAR (current_buffer, undo_list) = undo_list;
3094
3095 return Qnil;
3096 }
3097
3098
3099 /* Used to pass values from insert-file-contents to read_non_regular. */
3100
3101 static int non_regular_fd;
3102 static EMACS_INT non_regular_inserted;
3103 static EMACS_INT non_regular_nbytes;
3104
3105
3106 /* Read from a non-regular file.
3107 Read non_regular_nbytes bytes max from non_regular_fd.
3108 Non_regular_inserted specifies where to put the read bytes.
3109 Value is the number of bytes read. */
3110
3111 static Lisp_Object
3112 read_non_regular (Lisp_Object ignore)
3113 {
3114 EMACS_INT nbytes;
3115
3116 immediate_quit = 1;
3117 QUIT;
3118 nbytes = emacs_read (non_regular_fd,
3119 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
3120 + non_regular_inserted),
3121 non_regular_nbytes);
3122 immediate_quit = 0;
3123 return make_number (nbytes);
3124 }
3125
3126
3127 /* Condition-case handler used when reading from non-regular files
3128 in insert-file-contents. */
3129
3130 static Lisp_Object
3131 read_non_regular_quit (Lisp_Object ignore)
3132 {
3133 return Qnil;
3134 }
3135
3136 /* Reposition FD to OFFSET, based on WHENCE. This acts like lseek
3137 except that it also tests for OFFSET being out of lseek's range. */
3138 static off_t
3139 emacs_lseek (int fd, EMACS_INT offset, int whence)
3140 {
3141 /* Use "&" rather than "&&" to suppress a bogus GCC warning; see
3142 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=43772>. */
3143 if (! ((TYPE_MINIMUM (off_t) <= offset) & (offset <= TYPE_MAXIMUM (off_t))))
3144 {
3145 errno = EINVAL;
3146 return -1;
3147 }
3148 return lseek (fd, offset, whence);
3149 }
3150
3151
3152 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
3153 1, 5, 0,
3154 doc: /* Insert contents of file FILENAME after point.
3155 Returns list of absolute file name and number of characters inserted.
3156 If second argument VISIT is non-nil, the buffer's visited filename and
3157 last save file modtime are set, and it is marked unmodified. If
3158 visiting and the file does not exist, visiting is completed before the
3159 error is signaled.
3160
3161 The optional third and fourth arguments BEG and END specify what portion
3162 of the file to insert. These arguments count bytes in the file, not
3163 characters in the buffer. If VISIT is non-nil, BEG and END must be nil.
3164
3165 If optional fifth argument REPLACE is non-nil, replace the current
3166 buffer contents (in the accessible portion) with the file contents.
3167 This is better than simply deleting and inserting the whole thing
3168 because (1) it preserves some marker positions and (2) it puts less data
3169 in the undo list. When REPLACE is non-nil, the second return value is
3170 the number of characters that replace previous buffer contents.
3171
3172 This function does code conversion according to the value of
3173 `coding-system-for-read' or `file-coding-system-alist', and sets the
3174 variable `last-coding-system-used' to the coding system actually used. */)
3175 (Lisp_Object filename, Lisp_Object visit, Lisp_Object beg, Lisp_Object end, Lisp_Object replace)
3176 {
3177 struct stat st;
3178 register int fd;
3179 EMACS_INT inserted = 0;
3180 int nochange = 0;
3181 register EMACS_INT how_much;
3182 off_t beg_offset, end_offset;
3183 register EMACS_INT unprocessed;
3184 int count = SPECPDL_INDEX ();
3185 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3186 Lisp_Object handler, val, insval, orig_filename, old_undo;
3187 Lisp_Object p;
3188 EMACS_INT total = 0;
3189 int not_regular = 0;
3190 char read_buf[READ_BUF_SIZE];
3191 struct coding_system coding;
3192 char buffer[1 << 14];
3193 int replace_handled = 0;
3194 int set_coding_system = 0;
3195 Lisp_Object coding_system;
3196 int read_quit = 0;
3197 Lisp_Object old_Vdeactivate_mark = Vdeactivate_mark;
3198 int we_locked_file = 0;
3199 int deferred_remove_unwind_protect = 0;
3200
3201 if (current_buffer->base_buffer && ! NILP (visit))
3202 error ("Cannot do file visiting in an indirect buffer");
3203
3204 if (!NILP (BVAR (current_buffer, read_only)))
3205 Fbarf_if_buffer_read_only ();
3206
3207 val = Qnil;
3208 p = Qnil;
3209 orig_filename = Qnil;
3210 old_undo = Qnil;
3211
3212 GCPRO5 (filename, val, p, orig_filename, old_undo);
3213
3214 CHECK_STRING (filename);
3215 filename = Fexpand_file_name (filename, Qnil);
3216
3217 /* The value Qnil means that the coding system is not yet
3218 decided. */
3219 coding_system = Qnil;
3220
3221 /* If the file name has special constructs in it,
3222 call the corresponding file handler. */
3223 handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
3224 if (!NILP (handler))
3225 {
3226 val = call6 (handler, Qinsert_file_contents, filename,
3227 visit, beg, end, replace);
3228 if (CONSP (val) && CONSP (XCDR (val)))
3229 inserted = XINT (XCAR (XCDR (val)));
3230 goto handled;
3231 }
3232
3233 orig_filename = filename;
3234 filename = ENCODE_FILE (filename);
3235
3236 fd = -1;
3237
3238 #ifdef WINDOWSNT
3239 {
3240 Lisp_Object tem = Vw32_get_true_file_attributes;
3241
3242 /* Tell stat to use expensive method to get accurate info. */
3243 Vw32_get_true_file_attributes = Qt;
3244 total = stat (SSDATA (filename), &st);
3245 Vw32_get_true_file_attributes = tem;
3246 }
3247 if (total < 0)
3248 #else
3249 if (stat (SSDATA (filename), &st) < 0)
3250 #endif /* WINDOWSNT */
3251 {
3252 badopen:
3253 if (NILP (visit))
3254 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
3255 st.st_mtime = -1;
3256 how_much = 0;
3257 if (!NILP (Vcoding_system_for_read))
3258 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read);
3259 goto notfound;
3260 }
3261
3262 /* This code will need to be changed in order to work on named
3263 pipes, and it's probably just not worth it. So we should at
3264 least signal an error. */
3265 if (!S_ISREG (st.st_mode))
3266 {
3267 not_regular = 1;
3268
3269 if (! NILP (visit))
3270 goto notfound;
3271
3272 if (! NILP (replace) || ! NILP (beg) || ! NILP (end))
3273 xsignal2 (Qfile_error,
3274 build_string ("not a regular file"), orig_filename);
3275 }
3276
3277 if (fd < 0)
3278 if ((fd = emacs_open (SSDATA (filename), O_RDONLY, 0)) < 0)
3279 goto badopen;
3280
3281 /* Replacement should preserve point as it preserves markers. */
3282 if (!NILP (replace))
3283 record_unwind_protect (restore_point_unwind, Fpoint_marker ());
3284
3285 record_unwind_protect (close_file_unwind, make_number (fd));
3286
3287
3288 if (!NILP (visit))
3289 {
3290 if (!NILP (beg) || !NILP (end))
3291 error ("Attempt to visit less than an entire file");
3292 if (BEG < Z && NILP (replace))
3293 error ("Cannot do file visiting in a non-empty buffer");
3294 }
3295
3296 if (!NILP (beg))
3297 {
3298 if (! (RANGED_INTEGERP (0, beg, TYPE_MAXIMUM (off_t))))
3299 wrong_type_argument (intern ("file-offset"), beg);
3300 beg_offset = XFASTINT (beg);
3301 }
3302 else
3303 beg_offset = 0;
3304
3305 if (!NILP (end))
3306 {
3307 if (! (RANGED_INTEGERP (0, end, TYPE_MAXIMUM (off_t))))
3308 wrong_type_argument (intern ("file-offset"), end);
3309 end_offset = XFASTINT (end);
3310 }
3311 else
3312 {
3313 if (not_regular)
3314 end_offset = TYPE_MAXIMUM (off_t);
3315 else
3316 {
3317 end_offset = st.st_size;
3318
3319 /* A negative size can happen on a platform that allows file
3320 sizes greater than the maximum off_t value. */
3321 if (end_offset < 0)
3322 buffer_overflow ();
3323
3324 /* The file size returned from stat may be zero, but data
3325 may be readable nonetheless, for example when this is a
3326 file in the /proc filesystem. */
3327 if (end_offset == 0)
3328 end_offset = READ_BUF_SIZE;
3329 }
3330 }
3331
3332 /* Check now whether the buffer will become too large,
3333 in the likely case where the file's length is not changing.
3334 This saves a lot of needless work before a buffer overflow. */
3335 if (! not_regular)
3336 {
3337 /* The likely offset where we will stop reading. We could read
3338 more (or less), if the file grows (or shrinks) as we read it. */
3339 off_t likely_end = min (end_offset, st.st_size);
3340
3341 if (beg_offset < likely_end)
3342 {
3343 ptrdiff_t buf_bytes =
3344 Z_BYTE - (!NILP (replace) ? ZV_BYTE - BEGV_BYTE : 0);
3345 ptrdiff_t buf_growth_max = BUF_BYTES_MAX - buf_bytes;
3346 off_t likely_growth = likely_end - beg_offset;
3347 if (buf_growth_max < likely_growth)
3348 buffer_overflow ();
3349 }
3350 }
3351
3352 /* Prevent redisplay optimizations. */
3353 current_buffer->clip_changed = 1;
3354
3355 if (EQ (Vcoding_system_for_read, Qauto_save_coding))
3356 {
3357 coding_system = coding_inherit_eol_type (Qutf_8_emacs, Qunix);
3358 setup_coding_system (coding_system, &coding);
3359 /* Ensure we set Vlast_coding_system_used. */
3360 set_coding_system = 1;
3361 }
3362 else if (BEG < Z)
3363 {
3364 /* Decide the coding system to use for reading the file now
3365 because we can't use an optimized method for handling
3366 `coding:' tag if the current buffer is not empty. */
3367 if (!NILP (Vcoding_system_for_read))
3368 coding_system = Vcoding_system_for_read;
3369 else
3370 {
3371 /* Don't try looking inside a file for a coding system
3372 specification if it is not seekable. */
3373 if (! not_regular && ! NILP (Vset_auto_coding_function))
3374 {
3375 /* Find a coding system specified in the heading two
3376 lines or in the tailing several lines of the file.
3377 We assume that the 1K-byte and 3K-byte for heading
3378 and tailing respectively are sufficient for this
3379 purpose. */
3380 EMACS_INT nread;
3381
3382 if (st.st_size <= (1024 * 4))
3383 nread = emacs_read (fd, read_buf, 1024 * 4);
3384 else
3385 {
3386 nread = emacs_read (fd, read_buf, 1024);
3387 if (nread >= 0)
3388 {
3389 if (lseek (fd, st.st_size - (1024 * 3), SEEK_SET) < 0)
3390 report_file_error ("Setting file position",
3391 Fcons (orig_filename, Qnil));
3392 nread += emacs_read (fd, read_buf + nread, 1024 * 3);
3393 }
3394 }
3395
3396 if (nread < 0)
3397 error ("IO error reading %s: %s",
3398 SDATA (orig_filename), emacs_strerror (errno));
3399 else if (nread > 0)
3400 {
3401 struct buffer *prev = current_buffer;
3402 Lisp_Object workbuf;
3403 struct buffer *buf;
3404
3405 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
3406
3407 workbuf = Fget_buffer_create (build_string (" *code-converting-work*"));
3408 buf = XBUFFER (workbuf);
3409
3410 delete_all_overlays (buf);
3411 BVAR (buf, directory) = BVAR (current_buffer, directory);
3412 BVAR (buf, read_only) = Qnil;
3413 BVAR (buf, filename) = Qnil;
3414 BVAR (buf, undo_list) = Qt;
3415 eassert (buf->overlays_before == NULL);
3416 eassert (buf->overlays_after == NULL);
3417
3418 set_buffer_internal (buf);
3419 Ferase_buffer ();
3420 BVAR (buf, enable_multibyte_characters) = Qnil;
3421
3422 insert_1_both ((char *) read_buf, nread, nread, 0, 0, 0);
3423 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3424 coding_system = call2 (Vset_auto_coding_function,
3425 filename, make_number (nread));
3426 set_buffer_internal (prev);
3427
3428 /* Discard the unwind protect for recovering the
3429 current buffer. */
3430 specpdl_ptr--;
3431
3432 /* Rewind the file for the actual read done later. */
3433 if (lseek (fd, 0, SEEK_SET) < 0)
3434 report_file_error ("Setting file position",
3435 Fcons (orig_filename, Qnil));
3436 }
3437 }
3438
3439 if (NILP (coding_system))
3440 {
3441 /* If we have not yet decided a coding system, check
3442 file-coding-system-alist. */
3443 Lisp_Object args[6];
3444
3445 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3446 args[2] = visit, args[3] = beg, args[4] = end, args[5] = replace;
3447 coding_system = Ffind_operation_coding_system (6, args);
3448 if (CONSP (coding_system))
3449 coding_system = XCAR (coding_system);
3450 }
3451 }
3452
3453 if (NILP (coding_system))
3454 coding_system = Qundecided;
3455 else
3456 CHECK_CODING_SYSTEM (coding_system);
3457
3458 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3459 /* We must suppress all character code conversion except for
3460 end-of-line conversion. */
3461 coding_system = raw_text_coding_system (coding_system);
3462
3463 setup_coding_system (coding_system, &coding);
3464 /* Ensure we set Vlast_coding_system_used. */
3465 set_coding_system = 1;
3466 }
3467
3468 /* If requested, replace the accessible part of the buffer
3469 with the file contents. Avoid replacing text at the
3470 beginning or end of the buffer that matches the file contents;
3471 that preserves markers pointing to the unchanged parts.
3472
3473 Here we implement this feature in an optimized way
3474 for the case where code conversion is NOT needed.
3475 The following if-statement handles the case of conversion
3476 in a less optimal way.
3477
3478 If the code conversion is "automatic" then we try using this
3479 method and hope for the best.
3480 But if we discover the need for conversion, we give up on this method
3481 and let the following if-statement handle the replace job. */
3482 if (!NILP (replace)
3483 && BEGV < ZV
3484 && (NILP (coding_system)
3485 || ! CODING_REQUIRE_DECODING (&coding)))
3486 {
3487 /* same_at_start and same_at_end count bytes,
3488 because file access counts bytes
3489 and BEG and END count bytes. */
3490 EMACS_INT same_at_start = BEGV_BYTE;
3491 EMACS_INT same_at_end = ZV_BYTE;
3492 EMACS_INT overlap;
3493 /* There is still a possibility we will find the need to do code
3494 conversion. If that happens, we set this variable to 1 to
3495 give up on handling REPLACE in the optimized way. */
3496 int giveup_match_end = 0;
3497
3498 if (beg_offset != 0)
3499 {
3500 if (lseek (fd, beg_offset, SEEK_SET) < 0)
3501 report_file_error ("Setting file position",
3502 Fcons (orig_filename, Qnil));
3503 }
3504
3505 immediate_quit = 1;
3506 QUIT;
3507 /* Count how many chars at the start of the file
3508 match the text at the beginning of the buffer. */
3509 while (1)
3510 {
3511 EMACS_INT nread, bufpos;
3512
3513 nread = emacs_read (fd, buffer, sizeof buffer);
3514 if (nread < 0)
3515 error ("IO error reading %s: %s",
3516 SSDATA (orig_filename), emacs_strerror (errno));
3517 else if (nread == 0)
3518 break;
3519
3520 if (CODING_REQUIRE_DETECTION (&coding))
3521 {
3522 coding_system = detect_coding_system ((unsigned char *) buffer,
3523 nread, nread, 1, 0,
3524 coding_system);
3525 setup_coding_system (coding_system, &coding);
3526 }
3527
3528 if (CODING_REQUIRE_DECODING (&coding))
3529 /* We found that the file should be decoded somehow.
3530 Let's give up here. */
3531 {
3532 giveup_match_end = 1;
3533 break;
3534 }
3535
3536 bufpos = 0;
3537 while (bufpos < nread && same_at_start < ZV_BYTE
3538 && FETCH_BYTE (same_at_start) == buffer[bufpos])
3539 same_at_start++, bufpos++;
3540 /* If we found a discrepancy, stop the scan.
3541 Otherwise loop around and scan the next bufferful. */
3542 if (bufpos != nread)
3543 break;
3544 }
3545 immediate_quit = 0;
3546 /* If the file matches the buffer completely,
3547 there's no need to replace anything. */
3548 if (same_at_start - BEGV_BYTE == end_offset)
3549 {
3550 emacs_close (fd);
3551 specpdl_ptr--;
3552 /* Truncate the buffer to the size of the file. */
3553 del_range_1 (same_at_start, same_at_end, 0, 0);
3554 goto handled;
3555 }
3556 immediate_quit = 1;
3557 QUIT;
3558 /* Count how many chars at the end of the file
3559 match the text at the end of the buffer. But, if we have
3560 already found that decoding is necessary, don't waste time. */
3561 while (!giveup_match_end)
3562 {
3563 int total_read, nread, bufpos, trial;
3564 off_t curpos;
3565
3566 /* At what file position are we now scanning? */
3567 curpos = end_offset - (ZV_BYTE - same_at_end);
3568 /* If the entire file matches the buffer tail, stop the scan. */
3569 if (curpos == 0)
3570 break;
3571 /* How much can we scan in the next step? */
3572 trial = min (curpos, sizeof buffer);
3573 if (lseek (fd, curpos - trial, SEEK_SET) < 0)
3574 report_file_error ("Setting file position",
3575 Fcons (orig_filename, Qnil));
3576
3577 total_read = nread = 0;
3578 while (total_read < trial)
3579 {
3580 nread = emacs_read (fd, buffer + total_read, trial - total_read);
3581 if (nread < 0)
3582 error ("IO error reading %s: %s",
3583 SDATA (orig_filename), emacs_strerror (errno));
3584 else if (nread == 0)
3585 break;
3586 total_read += nread;
3587 }
3588
3589 /* Scan this bufferful from the end, comparing with
3590 the Emacs buffer. */
3591 bufpos = total_read;
3592
3593 /* Compare with same_at_start to avoid counting some buffer text
3594 as matching both at the file's beginning and at the end. */
3595 while (bufpos > 0 && same_at_end > same_at_start
3596 && FETCH_BYTE (same_at_end - 1) == buffer[bufpos - 1])
3597 same_at_end--, bufpos--;
3598
3599 /* If we found a discrepancy, stop the scan.
3600 Otherwise loop around and scan the preceding bufferful. */
3601 if (bufpos != 0)
3602 {
3603 /* If this discrepancy is because of code conversion,
3604 we cannot use this method; giveup and try the other. */
3605 if (same_at_end > same_at_start
3606 && FETCH_BYTE (same_at_end - 1) >= 0200
3607 && ! NILP (BVAR (current_buffer, enable_multibyte_characters))
3608 && (CODING_MAY_REQUIRE_DECODING (&coding)))
3609 giveup_match_end = 1;
3610 break;
3611 }
3612
3613 if (nread == 0)
3614 break;
3615 }
3616 immediate_quit = 0;
3617
3618 if (! giveup_match_end)
3619 {
3620 EMACS_INT temp;
3621
3622 /* We win! We can handle REPLACE the optimized way. */
3623
3624 /* Extend the start of non-matching text area to multibyte
3625 character boundary. */
3626 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3627 while (same_at_start > BEGV_BYTE
3628 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3629 same_at_start--;
3630
3631 /* Extend the end of non-matching text area to multibyte
3632 character boundary. */
3633 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3634 while (same_at_end < ZV_BYTE
3635 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3636 same_at_end++;
3637
3638 /* Don't try to reuse the same piece of text twice. */
3639 overlap = (same_at_start - BEGV_BYTE
3640 - (same_at_end
3641 + (! NILP (end) ? end_offset : st.st_size) - ZV_BYTE));
3642 if (overlap > 0)
3643 same_at_end += overlap;
3644
3645 /* Arrange to read only the nonmatching middle part of the file. */
3646 beg_offset += same_at_start - BEGV_BYTE;
3647 end_offset -= ZV_BYTE - same_at_end;
3648
3649 del_range_byte (same_at_start, same_at_end, 0);
3650 /* Insert from the file at the proper position. */
3651 temp = BYTE_TO_CHAR (same_at_start);
3652 SET_PT_BOTH (temp, same_at_start);
3653
3654 /* If display currently starts at beginning of line,
3655 keep it that way. */
3656 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3657 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
3658
3659 replace_handled = 1;
3660 }
3661 }
3662
3663 /* If requested, replace the accessible part of the buffer
3664 with the file contents. Avoid replacing text at the
3665 beginning or end of the buffer that matches the file contents;
3666 that preserves markers pointing to the unchanged parts.
3667
3668 Here we implement this feature for the case where code conversion
3669 is needed, in a simple way that needs a lot of memory.
3670 The preceding if-statement handles the case of no conversion
3671 in a more optimized way. */
3672 if (!NILP (replace) && ! replace_handled && BEGV < ZV)
3673 {
3674 EMACS_INT same_at_start = BEGV_BYTE;
3675 EMACS_INT same_at_end = ZV_BYTE;
3676 EMACS_INT same_at_start_charpos;
3677 EMACS_INT inserted_chars;
3678 EMACS_INT overlap;
3679 EMACS_INT bufpos;
3680 unsigned char *decoded;
3681 EMACS_INT temp;
3682 EMACS_INT this = 0;
3683 int this_count = SPECPDL_INDEX ();
3684 int multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
3685 Lisp_Object conversion_buffer;
3686
3687 conversion_buffer = code_conversion_save (1, multibyte);
3688
3689 /* First read the whole file, performing code conversion into
3690 CONVERSION_BUFFER. */
3691
3692 if (lseek (fd, beg_offset, SEEK_SET) < 0)
3693 report_file_error ("Setting file position",
3694 Fcons (orig_filename, Qnil));
3695
3696 total = st.st_size; /* Total bytes in the file. */
3697 how_much = 0; /* Bytes read from file so far. */
3698 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */
3699 unprocessed = 0; /* Bytes not processed in previous loop. */
3700
3701 GCPRO1 (conversion_buffer);
3702 while (how_much < total)
3703 {
3704 /* We read one bunch by one (READ_BUF_SIZE bytes) to allow
3705 quitting while reading a huge while. */
3706 /* try is reserved in some compilers (Microsoft C) */
3707 EMACS_INT trytry = min (total - how_much,
3708 READ_BUF_SIZE - unprocessed);
3709
3710 /* Allow quitting out of the actual I/O. */
3711 immediate_quit = 1;
3712 QUIT;
3713 this = emacs_read (fd, read_buf + unprocessed, trytry);
3714 immediate_quit = 0;
3715
3716 if (this <= 0)
3717 break;
3718
3719 how_much += this;
3720
3721 BUF_TEMP_SET_PT (XBUFFER (conversion_buffer),
3722 BUF_Z (XBUFFER (conversion_buffer)));
3723 decode_coding_c_string (&coding, (unsigned char *) read_buf,
3724 unprocessed + this, conversion_buffer);
3725 unprocessed = coding.carryover_bytes;
3726 if (coding.carryover_bytes > 0)
3727 memcpy (read_buf, coding.carryover, unprocessed);
3728 }
3729 UNGCPRO;
3730 emacs_close (fd);
3731
3732 /* We should remove the unwind_protect calling
3733 close_file_unwind, but other stuff has been added the stack,
3734 so defer the removal till we reach the `handled' label. */
3735 deferred_remove_unwind_protect = 1;
3736
3737 /* At this point, HOW_MUCH should equal TOTAL, or should be <= 0
3738 if we couldn't read the file. */
3739
3740 if (this < 0)
3741 error ("IO error reading %s: %s",
3742 SDATA (orig_filename), emacs_strerror (errno));
3743
3744 if (unprocessed > 0)
3745 {
3746 coding.mode |= CODING_MODE_LAST_BLOCK;
3747 decode_coding_c_string (&coding, (unsigned char *) read_buf,
3748 unprocessed, conversion_buffer);
3749 coding.mode &= ~CODING_MODE_LAST_BLOCK;
3750 }
3751
3752 coding_system = CODING_ID_NAME (coding.id);
3753 set_coding_system = 1;
3754 decoded = BUF_BEG_ADDR (XBUFFER (conversion_buffer));
3755 inserted = (BUF_Z_BYTE (XBUFFER (conversion_buffer))
3756 - BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
3757
3758 /* Compare the beginning of the converted string with the buffer
3759 text. */
3760
3761 bufpos = 0;
3762 while (bufpos < inserted && same_at_start < same_at_end
3763 && FETCH_BYTE (same_at_start) == decoded[bufpos])
3764 same_at_start++, bufpos++;
3765
3766 /* If the file matches the head of buffer completely,
3767 there's no need to replace anything. */
3768
3769 if (bufpos == inserted)
3770 {
3771 /* Truncate the buffer to the size of the file. */
3772 if (same_at_start == same_at_end)
3773 nochange = 1;
3774 else
3775 del_range_byte (same_at_start, same_at_end, 0);
3776 inserted = 0;
3777
3778 unbind_to (this_count, Qnil);
3779 goto handled;
3780 }
3781
3782 /* Extend the start of non-matching text area to the previous
3783 multibyte character boundary. */
3784 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3785 while (same_at_start > BEGV_BYTE
3786 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3787 same_at_start--;
3788
3789 /* Scan this bufferful from the end, comparing with
3790 the Emacs buffer. */
3791 bufpos = inserted;
3792
3793 /* Compare with same_at_start to avoid counting some buffer text
3794 as matching both at the file's beginning and at the end. */
3795 while (bufpos > 0 && same_at_end > same_at_start
3796 && FETCH_BYTE (same_at_end - 1) == decoded[bufpos - 1])
3797 same_at_end--, bufpos--;
3798
3799 /* Extend the end of non-matching text area to the next
3800 multibyte character boundary. */
3801 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3802 while (same_at_end < ZV_BYTE
3803 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3804 same_at_end++;
3805
3806 /* Don't try to reuse the same piece of text twice. */
3807 overlap = same_at_start - BEGV_BYTE - (same_at_end + inserted - ZV_BYTE);
3808 if (overlap > 0)
3809 same_at_end += overlap;
3810
3811 /* If display currently starts at beginning of line,
3812 keep it that way. */
3813 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
3814 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
3815
3816 /* Replace the chars that we need to replace,
3817 and update INSERTED to equal the number of bytes
3818 we are taking from the decoded string. */
3819 inserted -= (ZV_BYTE - same_at_end) + (same_at_start - BEGV_BYTE);
3820
3821 if (same_at_end != same_at_start)
3822 {
3823 del_range_byte (same_at_start, same_at_end, 0);
3824 temp = GPT;
3825 same_at_start = GPT_BYTE;
3826 }
3827 else
3828 {
3829 temp = BYTE_TO_CHAR (same_at_start);
3830 }
3831 /* Insert from the file at the proper position. */
3832 SET_PT_BOTH (temp, same_at_start);
3833 same_at_start_charpos
3834 = buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
3835 same_at_start - BEGV_BYTE
3836 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
3837 inserted_chars
3838 = (buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
3839 same_at_start + inserted - BEGV_BYTE
3840 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)))
3841 - same_at_start_charpos);
3842 /* This binding is to avoid ask-user-about-supersession-threat
3843 being called in insert_from_buffer (via in
3844 prepare_to_modify_buffer). */
3845 specbind (intern ("buffer-file-name"), Qnil);
3846 insert_from_buffer (XBUFFER (conversion_buffer),
3847 same_at_start_charpos, inserted_chars, 0);
3848 /* Set `inserted' to the number of inserted characters. */
3849 inserted = PT - temp;
3850 /* Set point before the inserted characters. */
3851 SET_PT_BOTH (temp, same_at_start);
3852
3853 unbind_to (this_count, Qnil);
3854
3855 goto handled;
3856 }
3857
3858 if (! not_regular)
3859 total = end_offset - beg_offset;
3860 else
3861 /* For a special file, all we can do is guess. */
3862 total = READ_BUF_SIZE;
3863
3864 if (NILP (visit) && total > 0)
3865 {
3866 #ifdef CLASH_DETECTION
3867 if (!NILP (BVAR (current_buffer, file_truename))
3868 /* Make binding buffer-file-name to nil effective. */
3869 && !NILP (BVAR (current_buffer, filename))
3870 && SAVE_MODIFF >= MODIFF)
3871 we_locked_file = 1;
3872 #endif /* CLASH_DETECTION */
3873 prepare_to_modify_buffer (GPT, GPT, NULL);
3874 }
3875
3876 move_gap (PT);
3877 if (GAP_SIZE < total)
3878 make_gap (total - GAP_SIZE);
3879
3880 if (beg_offset != 0 || !NILP (replace))
3881 {
3882 if (lseek (fd, beg_offset, SEEK_SET) < 0)
3883 report_file_error ("Setting file position",
3884 Fcons (orig_filename, Qnil));
3885 }
3886
3887 /* In the following loop, HOW_MUCH contains the total bytes read so
3888 far for a regular file, and not changed for a special file. But,
3889 before exiting the loop, it is set to a negative value if I/O
3890 error occurs. */
3891 how_much = 0;
3892
3893 /* Total bytes inserted. */
3894 inserted = 0;
3895
3896 /* Here, we don't do code conversion in the loop. It is done by
3897 decode_coding_gap after all data are read into the buffer. */
3898 {
3899 EMACS_INT gap_size = GAP_SIZE;
3900
3901 while (how_much < total)
3902 {
3903 /* try is reserved in some compilers (Microsoft C) */
3904 EMACS_INT trytry = min (total - how_much, READ_BUF_SIZE);
3905 EMACS_INT this;
3906
3907 if (not_regular)
3908 {
3909 Lisp_Object nbytes;
3910
3911 /* Maybe make more room. */
3912 if (gap_size < trytry)
3913 {
3914 make_gap (total - gap_size);
3915 gap_size = GAP_SIZE;
3916 }
3917
3918 /* Read from the file, capturing `quit'. When an
3919 error occurs, end the loop, and arrange for a quit
3920 to be signaled after decoding the text we read. */
3921 non_regular_fd = fd;
3922 non_regular_inserted = inserted;
3923 non_regular_nbytes = trytry;
3924 nbytes = internal_condition_case_1 (read_non_regular,
3925 Qnil, Qerror,
3926 read_non_regular_quit);
3927 if (NILP (nbytes))
3928 {
3929 read_quit = 1;
3930 break;
3931 }
3932
3933 this = XINT (nbytes);
3934 }
3935 else
3936 {
3937 /* Allow quitting out of the actual I/O. We don't make text
3938 part of the buffer until all the reading is done, so a C-g
3939 here doesn't do any harm. */
3940 immediate_quit = 1;
3941 QUIT;
3942 this = emacs_read (fd,
3943 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
3944 + inserted),
3945 trytry);
3946 immediate_quit = 0;
3947 }
3948
3949 if (this <= 0)
3950 {
3951 how_much = this;
3952 break;
3953 }
3954
3955 gap_size -= this;
3956
3957 /* For a regular file, where TOTAL is the real size,
3958 count HOW_MUCH to compare with it.
3959 For a special file, where TOTAL is just a buffer size,
3960 so don't bother counting in HOW_MUCH.
3961 (INSERTED is where we count the number of characters inserted.) */
3962 if (! not_regular)
3963 how_much += this;
3964 inserted += this;
3965 }
3966 }
3967
3968 /* Now we have read all the file data into the gap.
3969 If it was empty, undo marking the buffer modified. */
3970
3971 if (inserted == 0)
3972 {
3973 #ifdef CLASH_DETECTION
3974 if (we_locked_file)
3975 unlock_file (BVAR (current_buffer, file_truename));
3976 #endif
3977 Vdeactivate_mark = old_Vdeactivate_mark;
3978 }
3979 else
3980 Vdeactivate_mark = Qt;
3981
3982 /* Make the text read part of the buffer. */
3983 GAP_SIZE -= inserted;
3984 GPT += inserted;
3985 GPT_BYTE += inserted;
3986 ZV += inserted;
3987 ZV_BYTE += inserted;
3988 Z += inserted;
3989 Z_BYTE += inserted;
3990
3991 if (GAP_SIZE > 0)
3992 /* Put an anchor to ensure multi-byte form ends at gap. */
3993 *GPT_ADDR = 0;
3994
3995 emacs_close (fd);
3996
3997 /* Discard the unwind protect for closing the file. */
3998 specpdl_ptr--;
3999
4000 if (how_much < 0)
4001 error ("IO error reading %s: %s",
4002 SDATA (orig_filename), emacs_strerror (errno));
4003
4004 notfound:
4005
4006 if (NILP (coding_system))
4007 {
4008 /* The coding system is not yet decided. Decide it by an
4009 optimized method for handling `coding:' tag.
4010
4011 Note that we can get here only if the buffer was empty
4012 before the insertion. */
4013
4014 if (!NILP (Vcoding_system_for_read))
4015 coding_system = Vcoding_system_for_read;
4016 else
4017 {
4018 /* Since we are sure that the current buffer was empty
4019 before the insertion, we can toggle
4020 enable-multibyte-characters directly here without taking
4021 care of marker adjustment. By this way, we can run Lisp
4022 program safely before decoding the inserted text. */
4023 Lisp_Object unwind_data;
4024 int count1 = SPECPDL_INDEX ();
4025
4026 unwind_data = Fcons (BVAR (current_buffer, enable_multibyte_characters),
4027 Fcons (BVAR (current_buffer, undo_list),
4028 Fcurrent_buffer ()));
4029 BVAR (current_buffer, enable_multibyte_characters) = Qnil;
4030 BVAR (current_buffer, undo_list) = Qt;
4031 record_unwind_protect (decide_coding_unwind, unwind_data);
4032
4033 if (inserted > 0 && ! NILP (Vset_auto_coding_function))
4034 {
4035 coding_system = call2 (Vset_auto_coding_function,
4036 filename, make_number (inserted));
4037 }
4038
4039 if (NILP (coding_system))
4040 {
4041 /* If the coding system is not yet decided, check
4042 file-coding-system-alist. */
4043 Lisp_Object args[6];
4044
4045 args[0] = Qinsert_file_contents, args[1] = orig_filename;
4046 args[2] = visit, args[3] = beg, args[4] = end, args[5] = Qnil;
4047 coding_system = Ffind_operation_coding_system (6, args);
4048 if (CONSP (coding_system))
4049 coding_system = XCAR (coding_system);
4050 }
4051 unbind_to (count1, Qnil);
4052 inserted = Z_BYTE - BEG_BYTE;
4053 }
4054
4055 if (NILP (coding_system))
4056 coding_system = Qundecided;
4057 else
4058 CHECK_CODING_SYSTEM (coding_system);
4059
4060 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
4061 /* We must suppress all character code conversion except for
4062 end-of-line conversion. */
4063 coding_system = raw_text_coding_system (coding_system);
4064 setup_coding_system (coding_system, &coding);
4065 /* Ensure we set Vlast_coding_system_used. */
4066 set_coding_system = 1;
4067 }
4068
4069 if (!NILP (visit))
4070 {
4071 /* When we visit a file by raw-text, we change the buffer to
4072 unibyte. */
4073 if (CODING_FOR_UNIBYTE (&coding)
4074 /* Can't do this if part of the buffer might be preserved. */
4075 && NILP (replace))
4076 /* Visiting a file with these coding system makes the buffer
4077 unibyte. */
4078 BVAR (current_buffer, enable_multibyte_characters) = Qnil;
4079 }
4080
4081 coding.dst_multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
4082 if (CODING_MAY_REQUIRE_DECODING (&coding)
4083 && (inserted > 0 || CODING_REQUIRE_FLUSHING (&coding)))
4084 {
4085 move_gap_both (PT, PT_BYTE);
4086 GAP_SIZE += inserted;
4087 ZV_BYTE -= inserted;
4088 Z_BYTE -= inserted;
4089 ZV -= inserted;
4090 Z -= inserted;
4091 decode_coding_gap (&coding, inserted, inserted);
4092 inserted = coding.produced_char;
4093 coding_system = CODING_ID_NAME (coding.id);
4094 }
4095 else if (inserted > 0)
4096 adjust_after_insert (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4097 inserted);
4098
4099 /* Now INSERTED is measured in characters. */
4100
4101 handled:
4102
4103 if (deferred_remove_unwind_protect)
4104 /* If requested above, discard the unwind protect for closing the
4105 file. */
4106 specpdl_ptr--;
4107
4108 if (!NILP (visit))
4109 {
4110 if (!EQ (BVAR (current_buffer, undo_list), Qt) && !nochange)
4111 BVAR (current_buffer, undo_list) = Qnil;
4112
4113 if (NILP (handler))
4114 {
4115 current_buffer->modtime = st.st_mtime;
4116 current_buffer->modtime_size = st.st_size;
4117 BVAR (current_buffer, filename) = orig_filename;
4118 }
4119
4120 SAVE_MODIFF = MODIFF;
4121 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
4122 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4123 #ifdef CLASH_DETECTION
4124 if (NILP (handler))
4125 {
4126 if (!NILP (BVAR (current_buffer, file_truename)))
4127 unlock_file (BVAR (current_buffer, file_truename));
4128 unlock_file (filename);
4129 }
4130 #endif /* CLASH_DETECTION */
4131 if (not_regular)
4132 xsignal2 (Qfile_error,
4133 build_string ("not a regular file"), orig_filename);
4134 }
4135
4136 if (set_coding_system)
4137 Vlast_coding_system_used = coding_system;
4138
4139 if (! NILP (Ffboundp (Qafter_insert_file_set_coding)))
4140 {
4141 insval = call2 (Qafter_insert_file_set_coding, make_number (inserted),
4142 visit);
4143 if (! NILP (insval))
4144 {
4145 CHECK_NUMBER (insval);
4146 inserted = XFASTINT (insval);
4147 }
4148 }
4149
4150 /* Decode file format. */
4151 if (inserted > 0)
4152 {
4153 /* Don't run point motion or modification hooks when decoding. */
4154 int count1 = SPECPDL_INDEX ();
4155 EMACS_INT old_inserted = inserted;
4156 specbind (Qinhibit_point_motion_hooks, Qt);
4157 specbind (Qinhibit_modification_hooks, Qt);
4158
4159 /* Save old undo list and don't record undo for decoding. */
4160 old_undo = BVAR (current_buffer, undo_list);
4161 BVAR (current_buffer, undo_list) = Qt;
4162
4163 if (NILP (replace))
4164 {
4165 insval = call3 (Qformat_decode,
4166 Qnil, make_number (inserted), visit);
4167 CHECK_NUMBER (insval);
4168 inserted = XFASTINT (insval);
4169 }
4170 else
4171 {
4172 /* If REPLACE is non-nil and we succeeded in not replacing the
4173 beginning or end of the buffer text with the file's contents,
4174 call format-decode with `point' positioned at the beginning
4175 of the buffer and `inserted' equalling the number of
4176 characters in the buffer. Otherwise, format-decode might
4177 fail to correctly analyze the beginning or end of the buffer.
4178 Hence we temporarily save `point' and `inserted' here and
4179 restore `point' iff format-decode did not insert or delete
4180 any text. Otherwise we leave `point' at point-min. */
4181 EMACS_INT opoint = PT;
4182 EMACS_INT opoint_byte = PT_BYTE;
4183 EMACS_INT oinserted = ZV - BEGV;
4184 int ochars_modiff = CHARS_MODIFF;
4185
4186 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4187 insval = call3 (Qformat_decode,
4188 Qnil, make_number (oinserted), visit);
4189 CHECK_NUMBER (insval);
4190 if (ochars_modiff == CHARS_MODIFF)
4191 /* format_decode didn't modify buffer's characters => move
4192 point back to position before inserted text and leave
4193 value of inserted alone. */
4194 SET_PT_BOTH (opoint, opoint_byte);
4195 else
4196 /* format_decode modified buffer's characters => consider
4197 entire buffer changed and leave point at point-min. */
4198 inserted = XFASTINT (insval);
4199 }
4200
4201 /* For consistency with format-decode call these now iff inserted > 0
4202 (martin 2007-06-28). */
4203 p = Vafter_insert_file_functions;
4204 while (CONSP (p))
4205 {
4206 if (NILP (replace))
4207 {
4208 insval = call1 (XCAR (p), make_number (inserted));
4209 if (!NILP (insval))
4210 {
4211 CHECK_NUMBER (insval);
4212 inserted = XFASTINT (insval);
4213 }
4214 }
4215 else
4216 {
4217 /* For the rationale of this see the comment on
4218 format-decode above. */
4219 EMACS_INT opoint = PT;
4220 EMACS_INT opoint_byte = PT_BYTE;
4221 EMACS_INT oinserted = ZV - BEGV;
4222 int ochars_modiff = CHARS_MODIFF;
4223
4224 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4225 insval = call1 (XCAR (p), make_number (oinserted));
4226 if (!NILP (insval))
4227 {
4228 CHECK_NUMBER (insval);
4229 if (ochars_modiff == CHARS_MODIFF)
4230 /* after_insert_file_functions didn't modify
4231 buffer's characters => move point back to
4232 position before inserted text and leave value of
4233 inserted alone. */
4234 SET_PT_BOTH (opoint, opoint_byte);
4235 else
4236 /* after_insert_file_functions did modify buffer's
4237 characters => consider entire buffer changed and
4238 leave point at point-min. */
4239 inserted = XFASTINT (insval);
4240 }
4241 }
4242
4243 QUIT;
4244 p = XCDR (p);
4245 }
4246
4247 if (NILP (visit))
4248 {
4249 BVAR (current_buffer, undo_list) = old_undo;
4250 if (CONSP (old_undo) && inserted != old_inserted)
4251 {
4252 /* Adjust the last undo record for the size change during
4253 the format conversion. */
4254 Lisp_Object tem = XCAR (old_undo);
4255 if (CONSP (tem) && INTEGERP (XCAR (tem))
4256 && INTEGERP (XCDR (tem))
4257 && XFASTINT (XCDR (tem)) == PT + old_inserted)
4258 XSETCDR (tem, make_number (PT + inserted));
4259 }
4260 }
4261 else
4262 /* If undo_list was Qt before, keep it that way.
4263 Otherwise start with an empty undo_list. */
4264 BVAR (current_buffer, undo_list) = EQ (old_undo, Qt) ? Qt : Qnil;
4265
4266 unbind_to (count1, Qnil);
4267 }
4268
4269 /* Call after-change hooks for the inserted text, aside from the case
4270 of normal visiting (not with REPLACE), which is done in a new buffer
4271 "before" the buffer is changed. */
4272 if (inserted > 0 && total > 0
4273 && (NILP (visit) || !NILP (replace)))
4274 {
4275 signal_after_change (PT, 0, inserted);
4276 update_compositions (PT, PT, CHECK_BORDER);
4277 }
4278
4279 if (!NILP (visit)
4280 && current_buffer->modtime == -1)
4281 {
4282 /* If visiting nonexistent file, return nil. */
4283 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
4284 }
4285
4286 if (read_quit)
4287 Fsignal (Qquit, Qnil);
4288
4289 /* ??? Retval needs to be dealt with in all cases consistently. */
4290 if (NILP (val))
4291 val = Fcons (orig_filename,
4292 Fcons (make_number (inserted),
4293 Qnil));
4294
4295 RETURN_UNGCPRO (unbind_to (count, val));
4296 }
4297 \f
4298 static Lisp_Object build_annotations (Lisp_Object, Lisp_Object);
4299
4300 static Lisp_Object
4301 build_annotations_unwind (Lisp_Object arg)
4302 {
4303 Vwrite_region_annotation_buffers = arg;
4304 return Qnil;
4305 }
4306
4307 /* Decide the coding-system to encode the data with. */
4308
4309 static Lisp_Object
4310 choose_write_coding_system (Lisp_Object start, Lisp_Object end, Lisp_Object filename,
4311 Lisp_Object append, Lisp_Object visit, Lisp_Object lockname,
4312 struct coding_system *coding)
4313 {
4314 Lisp_Object val;
4315 Lisp_Object eol_parent = Qnil;
4316
4317 if (auto_saving
4318 && NILP (Fstring_equal (BVAR (current_buffer, filename),
4319 BVAR (current_buffer, auto_save_file_name))))
4320 {
4321 val = Qutf_8_emacs;
4322 eol_parent = Qunix;
4323 }
4324 else if (!NILP (Vcoding_system_for_write))
4325 {
4326 val = Vcoding_system_for_write;
4327 if (coding_system_require_warning
4328 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4329 /* Confirm that VAL can surely encode the current region. */
4330 val = call5 (Vselect_safe_coding_system_function,
4331 start, end, Fcons (Qt, Fcons (val, Qnil)),
4332 Qnil, filename);
4333 }
4334 else
4335 {
4336 /* If the variable `buffer-file-coding-system' is set locally,
4337 it means that the file was read with some kind of code
4338 conversion or the variable is explicitly set by users. We
4339 had better write it out with the same coding system even if
4340 `enable-multibyte-characters' is nil.
4341
4342 If it is not set locally, we anyway have to convert EOL
4343 format if the default value of `buffer-file-coding-system'
4344 tells that it is not Unix-like (LF only) format. */
4345 int using_default_coding = 0;
4346 int force_raw_text = 0;
4347
4348 val = BVAR (current_buffer, buffer_file_coding_system);
4349 if (NILP (val)
4350 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil)))
4351 {
4352 val = Qnil;
4353 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
4354 force_raw_text = 1;
4355 }
4356
4357 if (NILP (val))
4358 {
4359 /* Check file-coding-system-alist. */
4360 Lisp_Object args[7], coding_systems;
4361
4362 args[0] = Qwrite_region; args[1] = start; args[2] = end;
4363 args[3] = filename; args[4] = append; args[5] = visit;
4364 args[6] = lockname;
4365 coding_systems = Ffind_operation_coding_system (7, args);
4366 if (CONSP (coding_systems) && !NILP (XCDR (coding_systems)))
4367 val = XCDR (coding_systems);
4368 }
4369
4370 if (NILP (val))
4371 {
4372 /* If we still have not decided a coding system, use the
4373 default value of buffer-file-coding-system. */
4374 val = BVAR (current_buffer, buffer_file_coding_system);
4375 using_default_coding = 1;
4376 }
4377
4378 if (! NILP (val) && ! force_raw_text)
4379 {
4380 Lisp_Object spec, attrs;
4381
4382 CHECK_CODING_SYSTEM_GET_SPEC (val, spec);
4383 attrs = AREF (spec, 0);
4384 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text))
4385 force_raw_text = 1;
4386 }
4387
4388 if (!force_raw_text
4389 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4390 /* Confirm that VAL can surely encode the current region. */
4391 val = call5 (Vselect_safe_coding_system_function,
4392 start, end, val, Qnil, filename);
4393
4394 /* If the decided coding-system doesn't specify end-of-line
4395 format, we use that of
4396 `default-buffer-file-coding-system'. */
4397 if (! using_default_coding
4398 && ! NILP (BVAR (&buffer_defaults, buffer_file_coding_system)))
4399 val = (coding_inherit_eol_type
4400 (val, BVAR (&buffer_defaults, buffer_file_coding_system)));
4401
4402 /* If we decide not to encode text, use `raw-text' or one of its
4403 subsidiaries. */
4404 if (force_raw_text)
4405 val = raw_text_coding_system (val);
4406 }
4407
4408 val = coding_inherit_eol_type (val, eol_parent);
4409 setup_coding_system (val, coding);
4410
4411 if (!STRINGP (start) && !NILP (BVAR (current_buffer, selective_display)))
4412 coding->mode |= CODING_MODE_SELECTIVE_DISPLAY;
4413 return val;
4414 }
4415
4416 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7,
4417 "r\nFWrite region to file: \ni\ni\ni\np",
4418 doc: /* Write current region into specified file.
4419 When called from a program, requires three arguments:
4420 START, END and FILENAME. START and END are normally buffer positions
4421 specifying the part of the buffer to write.
4422 If START is nil, that means to use the entire buffer contents.
4423 If START is a string, then output that string to the file
4424 instead of any buffer contents; END is ignored.
4425
4426 Optional fourth argument APPEND if non-nil means
4427 append to existing file contents (if any). If it is an integer,
4428 seek to that offset in the file before writing.
4429 Optional fifth argument VISIT, if t or a string, means
4430 set the last-save-file-modtime of buffer to this file's modtime
4431 and mark buffer not modified.
4432 If VISIT is a string, it is a second file name;
4433 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4434 VISIT is also the file name to lock and unlock for clash detection.
4435 If VISIT is neither t nor nil nor a string,
4436 that means do not display the \"Wrote file\" message.
4437 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4438 use for locking and unlocking, overriding FILENAME and VISIT.
4439 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4440 for an existing file with the same name. If MUSTBENEW is `excl',
4441 that means to get an error if the file already exists; never overwrite.
4442 If MUSTBENEW is neither nil nor `excl', that means ask for
4443 confirmation before overwriting, but do go ahead and overwrite the file
4444 if the user confirms.
4445
4446 This does code conversion according to the value of
4447 `coding-system-for-write', `buffer-file-coding-system', or
4448 `file-coding-system-alist', and sets the variable
4449 `last-coding-system-used' to the coding system actually used.
4450
4451 This calls `write-region-annotate-functions' at the start, and
4452 `write-region-post-annotation-function' at the end. */)
4453 (Lisp_Object start, Lisp_Object end, Lisp_Object filename, Lisp_Object append, Lisp_Object visit, Lisp_Object lockname, Lisp_Object mustbenew)
4454 {
4455 register int desc;
4456 int failure;
4457 int save_errno = 0;
4458 const char *fn;
4459 struct stat st;
4460 int count = SPECPDL_INDEX ();
4461 int count1;
4462 Lisp_Object handler;
4463 Lisp_Object visit_file;
4464 Lisp_Object annotations;
4465 Lisp_Object encoded_filename;
4466 int visiting = (EQ (visit, Qt) || STRINGP (visit));
4467 int quietly = !NILP (visit);
4468 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4469 struct buffer *given_buffer;
4470 struct coding_system coding;
4471
4472 if (current_buffer->base_buffer && visiting)
4473 error ("Cannot do file visiting in an indirect buffer");
4474
4475 if (!NILP (start) && !STRINGP (start))
4476 validate_region (&start, &end);
4477
4478 visit_file = Qnil;
4479 GCPRO5 (start, filename, visit, visit_file, lockname);
4480
4481 filename = Fexpand_file_name (filename, Qnil);
4482
4483 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl))
4484 barf_or_query_if_file_exists (filename, "overwrite", 1, 0, 1);
4485
4486 if (STRINGP (visit))
4487 visit_file = Fexpand_file_name (visit, Qnil);
4488 else
4489 visit_file = filename;
4490
4491 if (NILP (lockname))
4492 lockname = visit_file;
4493
4494 annotations = Qnil;
4495
4496 /* If the file name has special constructs in it,
4497 call the corresponding file handler. */
4498 handler = Ffind_file_name_handler (filename, Qwrite_region);
4499 /* If FILENAME has no handler, see if VISIT has one. */
4500 if (NILP (handler) && STRINGP (visit))
4501 handler = Ffind_file_name_handler (visit, Qwrite_region);
4502
4503 if (!NILP (handler))
4504 {
4505 Lisp_Object val;
4506 val = call6 (handler, Qwrite_region, start, end,
4507 filename, append, visit);
4508
4509 if (visiting)
4510 {
4511 SAVE_MODIFF = MODIFF;
4512 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4513 BVAR (current_buffer, filename) = visit_file;
4514 }
4515 UNGCPRO;
4516 return val;
4517 }
4518
4519 record_unwind_protect (save_restriction_restore, save_restriction_save ());
4520
4521 /* Special kludge to simplify auto-saving. */
4522 if (NILP (start))
4523 {
4524 /* Do it later, so write-region-annotate-function can work differently
4525 if we save "the buffer" vs "a region".
4526 This is useful in tar-mode. --Stef
4527 XSETFASTINT (start, BEG);
4528 XSETFASTINT (end, Z); */
4529 Fwiden ();
4530 }
4531
4532 record_unwind_protect (build_annotations_unwind,
4533 Vwrite_region_annotation_buffers);
4534 Vwrite_region_annotation_buffers = Fcons (Fcurrent_buffer (), Qnil);
4535 count1 = SPECPDL_INDEX ();
4536
4537 given_buffer = current_buffer;
4538
4539 if (!STRINGP (start))
4540 {
4541 annotations = build_annotations (start, end);
4542
4543 if (current_buffer != given_buffer)
4544 {
4545 XSETFASTINT (start, BEGV);
4546 XSETFASTINT (end, ZV);
4547 }
4548 }
4549
4550 if (NILP (start))
4551 {
4552 XSETFASTINT (start, BEGV);
4553 XSETFASTINT (end, ZV);
4554 }
4555
4556 UNGCPRO;
4557
4558 GCPRO5 (start, filename, annotations, visit_file, lockname);
4559
4560 /* Decide the coding-system to encode the data with.
4561 We used to make this choice before calling build_annotations, but that
4562 leads to problems when a write-annotate-function takes care of
4563 unsavable chars (as was the case with X-Symbol). */
4564 Vlast_coding_system_used
4565 = choose_write_coding_system (start, end, filename,
4566 append, visit, lockname, &coding);
4567
4568 #ifdef CLASH_DETECTION
4569 if (!auto_saving)
4570 lock_file (lockname);
4571 #endif /* CLASH_DETECTION */
4572
4573 encoded_filename = ENCODE_FILE (filename);
4574
4575 fn = SSDATA (encoded_filename);
4576 desc = -1;
4577 if (!NILP (append))
4578 #ifdef DOS_NT
4579 desc = emacs_open (fn, O_WRONLY | O_BINARY, 0);
4580 #else /* not DOS_NT */
4581 desc = emacs_open (fn, O_WRONLY, 0);
4582 #endif /* not DOS_NT */
4583
4584 if (desc < 0 && (NILP (append) || errno == ENOENT))
4585 #ifdef DOS_NT
4586 desc = emacs_open (fn,
4587 O_WRONLY | O_CREAT | O_BINARY
4588 | (EQ (mustbenew, Qexcl) ? O_EXCL : O_TRUNC),
4589 S_IREAD | S_IWRITE);
4590 #else /* not DOS_NT */
4591 desc = emacs_open (fn, O_WRONLY | O_TRUNC | O_CREAT
4592 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0),
4593 auto_saving ? auto_save_mode_bits : 0666);
4594 #endif /* not DOS_NT */
4595
4596 if (desc < 0)
4597 {
4598 #ifdef CLASH_DETECTION
4599 save_errno = errno;
4600 if (!auto_saving) unlock_file (lockname);
4601 errno = save_errno;
4602 #endif /* CLASH_DETECTION */
4603 UNGCPRO;
4604 report_file_error ("Opening output file", Fcons (filename, Qnil));
4605 }
4606
4607 record_unwind_protect (close_file_unwind, make_number (desc));
4608
4609 if (!NILP (append) && !NILP (Ffile_regular_p (filename)))
4610 {
4611 off_t ret;
4612
4613 if (NUMBERP (append))
4614 ret = emacs_lseek (desc, XINT (append), SEEK_CUR);
4615 else
4616 ret = lseek (desc, 0, SEEK_END);
4617 if (ret < 0)
4618 {
4619 #ifdef CLASH_DETECTION
4620 if (!auto_saving) unlock_file (lockname);
4621 #endif /* CLASH_DETECTION */
4622 UNGCPRO;
4623 report_file_error ("Lseek error", Fcons (filename, Qnil));
4624 }
4625 }
4626
4627 UNGCPRO;
4628
4629 failure = 0;
4630 immediate_quit = 1;
4631
4632 if (STRINGP (start))
4633 {
4634 failure = 0 > a_write (desc, start, 0, SCHARS (start),
4635 &annotations, &coding);
4636 save_errno = errno;
4637 }
4638 else if (XINT (start) != XINT (end))
4639 {
4640 failure = 0 > a_write (desc, Qnil,
4641 XINT (start), XINT (end) - XINT (start),
4642 &annotations, &coding);
4643 save_errno = errno;
4644 }
4645 else
4646 {
4647 /* If file was empty, still need to write the annotations */
4648 coding.mode |= CODING_MODE_LAST_BLOCK;
4649 failure = 0 > a_write (desc, Qnil, XINT (end), 0, &annotations, &coding);
4650 save_errno = errno;
4651 }
4652
4653 if (CODING_REQUIRE_FLUSHING (&coding)
4654 && !(coding.mode & CODING_MODE_LAST_BLOCK)
4655 && ! failure)
4656 {
4657 /* We have to flush out a data. */
4658 coding.mode |= CODING_MODE_LAST_BLOCK;
4659 failure = 0 > e_write (desc, Qnil, 1, 1, &coding);
4660 save_errno = errno;
4661 }
4662
4663 immediate_quit = 0;
4664
4665 #ifdef HAVE_FSYNC
4666 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
4667 Disk full in NFS may be reported here. */
4668 /* mib says that closing the file will try to write as fast as NFS can do
4669 it, and that means the fsync here is not crucial for autosave files. */
4670 if (!auto_saving && !write_region_inhibit_fsync && fsync (desc) < 0)
4671 {
4672 /* If fsync fails with EINTR, don't treat that as serious. Also
4673 ignore EINVAL which happens when fsync is not supported on this
4674 file. */
4675 if (errno != EINTR && errno != EINVAL)
4676 failure = 1, save_errno = errno;
4677 }
4678 #endif
4679
4680 /* NFS can report a write failure now. */
4681 if (emacs_close (desc) < 0)
4682 failure = 1, save_errno = errno;
4683
4684 stat (fn, &st);
4685
4686 /* Discard the unwind protect for close_file_unwind. */
4687 specpdl_ptr = specpdl + count1;
4688
4689 /* Call write-region-post-annotation-function. */
4690 while (CONSP (Vwrite_region_annotation_buffers))
4691 {
4692 Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers);
4693 if (!NILP (Fbuffer_live_p (buf)))
4694 {
4695 Fset_buffer (buf);
4696 if (FUNCTIONP (Vwrite_region_post_annotation_function))
4697 call0 (Vwrite_region_post_annotation_function);
4698 }
4699 Vwrite_region_annotation_buffers
4700 = XCDR (Vwrite_region_annotation_buffers);
4701 }
4702
4703 unbind_to (count, Qnil);
4704
4705 #ifdef CLASH_DETECTION
4706 if (!auto_saving)
4707 unlock_file (lockname);
4708 #endif /* CLASH_DETECTION */
4709
4710 /* Do this before reporting IO error
4711 to avoid a "file has changed on disk" warning on
4712 next attempt to save. */
4713 if (visiting)
4714 {
4715 current_buffer->modtime = st.st_mtime;
4716 current_buffer->modtime_size = st.st_size;
4717 }
4718
4719 if (failure)
4720 error ("IO error writing %s: %s", SDATA (filename),
4721 emacs_strerror (save_errno));
4722
4723 if (visiting)
4724 {
4725 SAVE_MODIFF = MODIFF;
4726 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4727 BVAR (current_buffer, filename) = visit_file;
4728 update_mode_lines++;
4729 }
4730 else if (quietly)
4731 {
4732 if (auto_saving
4733 && ! NILP (Fstring_equal (BVAR (current_buffer, filename),
4734 BVAR (current_buffer, auto_save_file_name))))
4735 SAVE_MODIFF = MODIFF;
4736
4737 return Qnil;
4738 }
4739
4740 if (!auto_saving)
4741 message_with_string ((INTEGERP (append)
4742 ? "Updated %s"
4743 : ! NILP (append)
4744 ? "Added to %s"
4745 : "Wrote %s"),
4746 visit_file, 1);
4747
4748 return Qnil;
4749 }
4750 \f
4751 Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object);
4752
4753 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
4754 doc: /* Return t if (car A) is numerically less than (car B). */)
4755 (Lisp_Object a, Lisp_Object b)
4756 {
4757 return Flss (Fcar (a), Fcar (b));
4758 }
4759
4760 /* Build the complete list of annotations appropriate for writing out
4761 the text between START and END, by calling all the functions in
4762 write-region-annotate-functions and merging the lists they return.
4763 If one of these functions switches to a different buffer, we assume
4764 that buffer contains altered text. Therefore, the caller must
4765 make sure to restore the current buffer in all cases,
4766 as save-excursion would do. */
4767
4768 static Lisp_Object
4769 build_annotations (Lisp_Object start, Lisp_Object end)
4770 {
4771 Lisp_Object annotations;
4772 Lisp_Object p, res;
4773 struct gcpro gcpro1, gcpro2;
4774 Lisp_Object original_buffer;
4775 int i, used_global = 0;
4776
4777 XSETBUFFER (original_buffer, current_buffer);
4778
4779 annotations = Qnil;
4780 p = Vwrite_region_annotate_functions;
4781 GCPRO2 (annotations, p);
4782 while (CONSP (p))
4783 {
4784 struct buffer *given_buffer = current_buffer;
4785 if (EQ (Qt, XCAR (p)) && !used_global)
4786 { /* Use the global value of the hook. */
4787 Lisp_Object arg[2];
4788 used_global = 1;
4789 arg[0] = Fdefault_value (Qwrite_region_annotate_functions);
4790 arg[1] = XCDR (p);
4791 p = Fappend (2, arg);
4792 continue;
4793 }
4794 Vwrite_region_annotations_so_far = annotations;
4795 res = call2 (XCAR (p), start, end);
4796 /* If the function makes a different buffer current,
4797 assume that means this buffer contains altered text to be output.
4798 Reset START and END from the buffer bounds
4799 and discard all previous annotations because they should have
4800 been dealt with by this function. */
4801 if (current_buffer != given_buffer)
4802 {
4803 Vwrite_region_annotation_buffers
4804 = Fcons (Fcurrent_buffer (),
4805 Vwrite_region_annotation_buffers);
4806 XSETFASTINT (start, BEGV);
4807 XSETFASTINT (end, ZV);
4808 annotations = Qnil;
4809 }
4810 Flength (res); /* Check basic validity of return value */
4811 annotations = merge (annotations, res, Qcar_less_than_car);
4812 p = XCDR (p);
4813 }
4814
4815 /* Now do the same for annotation functions implied by the file-format */
4816 if (auto_saving && (!EQ (BVAR (current_buffer, auto_save_file_format), Qt)))
4817 p = BVAR (current_buffer, auto_save_file_format);
4818 else
4819 p = BVAR (current_buffer, file_format);
4820 for (i = 0; CONSP (p); p = XCDR (p), ++i)
4821 {
4822 struct buffer *given_buffer = current_buffer;
4823
4824 Vwrite_region_annotations_so_far = annotations;
4825
4826 /* Value is either a list of annotations or nil if the function
4827 has written annotations to a temporary buffer, which is now
4828 current. */
4829 res = call5 (Qformat_annotate_function, XCAR (p), start, end,
4830 original_buffer, make_number (i));
4831 if (current_buffer != given_buffer)
4832 {
4833 XSETFASTINT (start, BEGV);
4834 XSETFASTINT (end, ZV);
4835 annotations = Qnil;
4836 }
4837
4838 if (CONSP (res))
4839 annotations = merge (annotations, res, Qcar_less_than_car);
4840 }
4841
4842 UNGCPRO;
4843 return annotations;
4844 }
4845
4846 \f
4847 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
4848 If STRING is nil, POS is the character position in the current buffer.
4849 Intersperse with them the annotations from *ANNOT
4850 which fall within the range of POS to POS + NCHARS,
4851 each at its appropriate position.
4852
4853 We modify *ANNOT by discarding elements as we use them up.
4854
4855 The return value is negative in case of system call failure. */
4856
4857 static int
4858 a_write (int desc, Lisp_Object string, EMACS_INT pos,
4859 register EMACS_INT nchars, Lisp_Object *annot,
4860 struct coding_system *coding)
4861 {
4862 Lisp_Object tem;
4863 EMACS_INT nextpos;
4864 EMACS_INT lastpos = pos + nchars;
4865
4866 while (NILP (*annot) || CONSP (*annot))
4867 {
4868 tem = Fcar_safe (Fcar (*annot));
4869 nextpos = pos - 1;
4870 if (INTEGERP (tem))
4871 nextpos = XFASTINT (tem);
4872
4873 /* If there are no more annotations in this range,
4874 output the rest of the range all at once. */
4875 if (! (nextpos >= pos && nextpos <= lastpos))
4876 return e_write (desc, string, pos, lastpos, coding);
4877
4878 /* Output buffer text up to the next annotation's position. */
4879 if (nextpos > pos)
4880 {
4881 if (0 > e_write (desc, string, pos, nextpos, coding))
4882 return -1;
4883 pos = nextpos;
4884 }
4885 /* Output the annotation. */
4886 tem = Fcdr (Fcar (*annot));
4887 if (STRINGP (tem))
4888 {
4889 if (0 > e_write (desc, tem, 0, SCHARS (tem), coding))
4890 return -1;
4891 }
4892 *annot = Fcdr (*annot);
4893 }
4894 return 0;
4895 }
4896
4897
4898 /* Write text in the range START and END into descriptor DESC,
4899 encoding them with coding system CODING. If STRING is nil, START
4900 and END are character positions of the current buffer, else they
4901 are indexes to the string STRING. */
4902
4903 static int
4904 e_write (int desc, Lisp_Object string, EMACS_INT start, EMACS_INT end,
4905 struct coding_system *coding)
4906 {
4907 if (STRINGP (string))
4908 {
4909 start = 0;
4910 end = SCHARS (string);
4911 }
4912
4913 /* We used to have a code for handling selective display here. But,
4914 now it is handled within encode_coding. */
4915
4916 while (start < end)
4917 {
4918 if (STRINGP (string))
4919 {
4920 coding->src_multibyte = SCHARS (string) < SBYTES (string);
4921 if (CODING_REQUIRE_ENCODING (coding))
4922 {
4923 encode_coding_object (coding, string,
4924 start, string_char_to_byte (string, start),
4925 end, string_char_to_byte (string, end), Qt);
4926 }
4927 else
4928 {
4929 coding->dst_object = string;
4930 coding->consumed_char = SCHARS (string);
4931 coding->produced = SBYTES (string);
4932 }
4933 }
4934 else
4935 {
4936 EMACS_INT start_byte = CHAR_TO_BYTE (start);
4937 EMACS_INT end_byte = CHAR_TO_BYTE (end);
4938
4939 coding->src_multibyte = (end - start) < (end_byte - start_byte);
4940 if (CODING_REQUIRE_ENCODING (coding))
4941 {
4942 encode_coding_object (coding, Fcurrent_buffer (),
4943 start, start_byte, end, end_byte, Qt);
4944 }
4945 else
4946 {
4947 coding->dst_object = Qnil;
4948 coding->dst_pos_byte = start_byte;
4949 if (start >= GPT || end <= GPT)
4950 {
4951 coding->consumed_char = end - start;
4952 coding->produced = end_byte - start_byte;
4953 }
4954 else
4955 {
4956 coding->consumed_char = GPT - start;
4957 coding->produced = GPT_BYTE - start_byte;
4958 }
4959 }
4960 }
4961
4962 if (coding->produced > 0)
4963 {
4964 coding->produced -=
4965 emacs_write (desc,
4966 STRINGP (coding->dst_object)
4967 ? SSDATA (coding->dst_object)
4968 : (char *) BYTE_POS_ADDR (coding->dst_pos_byte),
4969 coding->produced);
4970
4971 if (coding->produced)
4972 return -1;
4973 }
4974 start += coding->consumed_char;
4975 }
4976
4977 return 0;
4978 }
4979 \f
4980 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
4981 Sverify_visited_file_modtime, 0, 1, 0,
4982 doc: /* Return t if last mod time of BUF's visited file matches what BUF records.
4983 This means that the file has not been changed since it was visited or saved.
4984 If BUF is omitted or nil, it defaults to the current buffer.
4985 See Info node `(elisp)Modification Time' for more details. */)
4986 (Lisp_Object buf)
4987 {
4988 struct buffer *b;
4989 struct stat st;
4990 Lisp_Object handler;
4991 Lisp_Object filename;
4992
4993 if (NILP (buf))
4994 b = current_buffer;
4995 else
4996 {
4997 CHECK_BUFFER (buf);
4998 b = XBUFFER (buf);
4999 }
5000
5001 if (!STRINGP (BVAR (b, filename))) return Qt;
5002 if (b->modtime == 0) return Qt;
5003
5004 /* If the file name has special constructs in it,
5005 call the corresponding file handler. */
5006 handler = Ffind_file_name_handler (BVAR (b, filename),
5007 Qverify_visited_file_modtime);
5008 if (!NILP (handler))
5009 return call2 (handler, Qverify_visited_file_modtime, buf);
5010
5011 filename = ENCODE_FILE (BVAR (b, filename));
5012
5013 if (stat (SSDATA (filename), &st) < 0)
5014 {
5015 /* If the file doesn't exist now and didn't exist before,
5016 we say that it isn't modified, provided the error is a tame one. */
5017 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
5018 st.st_mtime = -1;
5019 else
5020 st.st_mtime = 0;
5021 }
5022 if ((st.st_mtime == b->modtime
5023 /* If both are positive, accept them if they are off by one second. */
5024 || (st.st_mtime > 0 && b->modtime > 0
5025 && (st.st_mtime - 1 == b->modtime
5026 || st.st_mtime == b->modtime - 1)))
5027 && (st.st_size == b->modtime_size
5028 || b->modtime_size < 0))
5029 return Qt;
5030 return Qnil;
5031 }
5032
5033 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
5034 Sclear_visited_file_modtime, 0, 0, 0,
5035 doc: /* Clear out records of last mod time of visited file.
5036 Next attempt to save will certainly not complain of a discrepancy. */)
5037 (void)
5038 {
5039 current_buffer->modtime = 0;
5040 current_buffer->modtime_size = -1;
5041 return Qnil;
5042 }
5043
5044 DEFUN ("visited-file-modtime", Fvisited_file_modtime,
5045 Svisited_file_modtime, 0, 0, 0,
5046 doc: /* Return the current buffer's recorded visited file modification time.
5047 The value is a list of the form (HIGH LOW), like the time values
5048 that `file-attributes' returns. If the current buffer has no recorded
5049 file modification time, this function returns 0.
5050 See Info node `(elisp)Modification Time' for more details. */)
5051 (void)
5052 {
5053 if (! current_buffer->modtime)
5054 return make_number (0);
5055 return make_time (current_buffer->modtime);
5056 }
5057
5058 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
5059 Sset_visited_file_modtime, 0, 1, 0,
5060 doc: /* Update buffer's recorded modification time from the visited file's time.
5061 Useful if the buffer was not read from the file normally
5062 or if the file itself has been changed for some known benign reason.
5063 An argument specifies the modification time value to use
5064 \(instead of that of the visited file), in the form of a list
5065 \(HIGH . LOW) or (HIGH LOW). */)
5066 (Lisp_Object time_list)
5067 {
5068 if (!NILP (time_list))
5069 {
5070 CONS_TO_INTEGER (time_list, time_t, current_buffer->modtime);
5071 current_buffer->modtime_size = -1;
5072 }
5073 else
5074 {
5075 register Lisp_Object filename;
5076 struct stat st;
5077 Lisp_Object handler;
5078
5079 filename = Fexpand_file_name (BVAR (current_buffer, filename), Qnil);
5080
5081 /* If the file name has special constructs in it,
5082 call the corresponding file handler. */
5083 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
5084 if (!NILP (handler))
5085 /* The handler can find the file name the same way we did. */
5086 return call2 (handler, Qset_visited_file_modtime, Qnil);
5087
5088 filename = ENCODE_FILE (filename);
5089
5090 if (stat (SSDATA (filename), &st) >= 0)
5091 {
5092 current_buffer->modtime = st.st_mtime;
5093 current_buffer->modtime_size = st.st_size;
5094 }
5095 }
5096
5097 return Qnil;
5098 }
5099 \f
5100 static Lisp_Object
5101 auto_save_error (Lisp_Object error_val)
5102 {
5103 Lisp_Object args[3], msg;
5104 int i, nbytes;
5105 struct gcpro gcpro1;
5106 char *msgbuf;
5107 USE_SAFE_ALLOCA;
5108
5109 auto_save_error_occurred = 1;
5110
5111 ring_bell (XFRAME (selected_frame));
5112
5113 args[0] = build_string ("Auto-saving %s: %s");
5114 args[1] = BVAR (current_buffer, name);
5115 args[2] = Ferror_message_string (error_val);
5116 msg = Fformat (3, args);
5117 GCPRO1 (msg);
5118 nbytes = SBYTES (msg);
5119 SAFE_ALLOCA (msgbuf, char *, nbytes);
5120 memcpy (msgbuf, SDATA (msg), nbytes);
5121
5122 for (i = 0; i < 3; ++i)
5123 {
5124 if (i == 0)
5125 message2 (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5126 else
5127 message2_nolog (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5128 Fsleep_for (make_number (1), Qnil);
5129 }
5130
5131 SAFE_FREE ();
5132 UNGCPRO;
5133 return Qnil;
5134 }
5135
5136 static Lisp_Object
5137 auto_save_1 (void)
5138 {
5139 struct stat st;
5140 Lisp_Object modes;
5141
5142 auto_save_mode_bits = 0666;
5143
5144 /* Get visited file's mode to become the auto save file's mode. */
5145 if (! NILP (BVAR (current_buffer, filename)))
5146 {
5147 if (stat (SSDATA (BVAR (current_buffer, filename)), &st) >= 0)
5148 /* But make sure we can overwrite it later! */
5149 auto_save_mode_bits = (st.st_mode | 0600) & 0777;
5150 else if ((modes = Ffile_modes (BVAR (current_buffer, filename)),
5151 INTEGERP (modes)))
5152 /* Remote files don't cooperate with stat. */
5153 auto_save_mode_bits = (XINT (modes) | 0600) & 0777;
5154 }
5155
5156 return
5157 Fwrite_region (Qnil, Qnil, BVAR (current_buffer, auto_save_file_name), Qnil,
5158 NILP (Vauto_save_visited_file_name) ? Qlambda : Qt,
5159 Qnil, Qnil);
5160 }
5161
5162 static Lisp_Object
5163 do_auto_save_unwind (Lisp_Object arg) /* used as unwind-protect function */
5164
5165 {
5166 FILE *stream = (FILE *) XSAVE_VALUE (arg)->pointer;
5167 auto_saving = 0;
5168 if (stream != NULL)
5169 {
5170 BLOCK_INPUT;
5171 fclose (stream);
5172 UNBLOCK_INPUT;
5173 }
5174 return Qnil;
5175 }
5176
5177 static Lisp_Object
5178 do_auto_save_unwind_1 (Lisp_Object value) /* used as unwind-protect function */
5179
5180 {
5181 minibuffer_auto_raise = XINT (value);
5182 return Qnil;
5183 }
5184
5185 static Lisp_Object
5186 do_auto_save_make_dir (Lisp_Object dir)
5187 {
5188 Lisp_Object mode;
5189
5190 call2 (Qmake_directory, dir, Qt);
5191 XSETFASTINT (mode, 0700);
5192 return Fset_file_modes (dir, mode);
5193 }
5194
5195 static Lisp_Object
5196 do_auto_save_eh (Lisp_Object ignore)
5197 {
5198 return Qnil;
5199 }
5200
5201 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
5202 doc: /* Auto-save all buffers that need it.
5203 This is all buffers that have auto-saving enabled
5204 and are changed since last auto-saved.
5205 Auto-saving writes the buffer into a file
5206 so that your editing is not lost if the system crashes.
5207 This file is not the file you visited; that changes only when you save.
5208 Normally we run the normal hook `auto-save-hook' before saving.
5209
5210 A non-nil NO-MESSAGE argument means do not print any message if successful.
5211 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5212 (Lisp_Object no_message, Lisp_Object current_only)
5213 {
5214 struct buffer *old = current_buffer, *b;
5215 Lisp_Object tail, buf, hook;
5216 int auto_saved = 0;
5217 int do_handled_files;
5218 Lisp_Object oquit;
5219 FILE *stream = NULL;
5220 int count = SPECPDL_INDEX ();
5221 int orig_minibuffer_auto_raise = minibuffer_auto_raise;
5222 int old_message_p = 0;
5223 struct gcpro gcpro1, gcpro2;
5224
5225 if (max_specpdl_size < specpdl_size + 40)
5226 max_specpdl_size = specpdl_size + 40;
5227
5228 if (minibuf_level)
5229 no_message = Qt;
5230
5231 if (NILP (no_message))
5232 {
5233 old_message_p = push_message ();
5234 record_unwind_protect (pop_message_unwind, Qnil);
5235 }
5236
5237 /* Ordinarily don't quit within this function,
5238 but don't make it impossible to quit (in case we get hung in I/O). */
5239 oquit = Vquit_flag;
5240 Vquit_flag = Qnil;
5241
5242 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5243 point to non-strings reached from Vbuffer_alist. */
5244
5245 hook = intern ("auto-save-hook");
5246 Frun_hooks (1, &hook);
5247
5248 if (STRINGP (Vauto_save_list_file_name))
5249 {
5250 Lisp_Object listfile;
5251
5252 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
5253
5254 /* Don't try to create the directory when shutting down Emacs,
5255 because creating the directory might signal an error, and
5256 that would leave Emacs in a strange state. */
5257 if (!NILP (Vrun_hooks))
5258 {
5259 Lisp_Object dir;
5260 dir = Qnil;
5261 GCPRO2 (dir, listfile);
5262 dir = Ffile_name_directory (listfile);
5263 if (NILP (Ffile_directory_p (dir)))
5264 internal_condition_case_1 (do_auto_save_make_dir,
5265 dir, Fcons (Fcons (Qfile_error, Qnil), Qnil),
5266 do_auto_save_eh);
5267 UNGCPRO;
5268 }
5269
5270 stream = fopen (SSDATA (listfile), "w");
5271 }
5272
5273 record_unwind_protect (do_auto_save_unwind,
5274 make_save_value (stream, 0));
5275 record_unwind_protect (do_auto_save_unwind_1,
5276 make_number (minibuffer_auto_raise));
5277 minibuffer_auto_raise = 0;
5278 auto_saving = 1;
5279 auto_save_error_occurred = 0;
5280
5281 /* On first pass, save all files that don't have handlers.
5282 On second pass, save all files that do have handlers.
5283
5284 If Emacs is crashing, the handlers may tweak what is causing
5285 Emacs to crash in the first place, and it would be a shame if
5286 Emacs failed to autosave perfectly ordinary files because it
5287 couldn't handle some ange-ftp'd file. */
5288
5289 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
5290 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
5291 {
5292 buf = XCDR (XCAR (tail));
5293 b = XBUFFER (buf);
5294
5295 /* Record all the buffers that have auto save mode
5296 in the special file that lists them. For each of these buffers,
5297 Record visited name (if any) and auto save name. */
5298 if (STRINGP (BVAR (b, auto_save_file_name))
5299 && stream != NULL && do_handled_files == 0)
5300 {
5301 BLOCK_INPUT;
5302 if (!NILP (BVAR (b, filename)))
5303 {
5304 fwrite (SDATA (BVAR (b, filename)), 1,
5305 SBYTES (BVAR (b, filename)), stream);
5306 }
5307 putc ('\n', stream);
5308 fwrite (SDATA (BVAR (b, auto_save_file_name)), 1,
5309 SBYTES (BVAR (b, auto_save_file_name)), stream);
5310 putc ('\n', stream);
5311 UNBLOCK_INPUT;
5312 }
5313
5314 if (!NILP (current_only)
5315 && b != current_buffer)
5316 continue;
5317
5318 /* Don't auto-save indirect buffers.
5319 The base buffer takes care of it. */
5320 if (b->base_buffer)
5321 continue;
5322
5323 /* Check for auto save enabled
5324 and file changed since last auto save
5325 and file changed since last real save. */
5326 if (STRINGP (BVAR (b, auto_save_file_name))
5327 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
5328 && BUF_AUTOSAVE_MODIFF (b) < BUF_MODIFF (b)
5329 /* -1 means we've turned off autosaving for a while--see below. */
5330 && XINT (BVAR (b, save_length)) >= 0
5331 && (do_handled_files
5332 || NILP (Ffind_file_name_handler (BVAR (b, auto_save_file_name),
5333 Qwrite_region))))
5334 {
5335 EMACS_TIME before_time, after_time;
5336
5337 EMACS_GET_TIME (before_time);
5338
5339 /* If we had a failure, don't try again for 20 minutes. */
5340 if (b->auto_save_failure_time >= 0
5341 && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200)
5342 continue;
5343
5344 set_buffer_internal (b);
5345 if (NILP (Vauto_save_include_big_deletions)
5346 && (XFASTINT (BVAR (b, save_length)) * 10
5347 > (BUF_Z (b) - BUF_BEG (b)) * 13)
5348 /* A short file is likely to change a large fraction;
5349 spare the user annoying messages. */
5350 && XFASTINT (BVAR (b, save_length)) > 5000
5351 /* These messages are frequent and annoying for `*mail*'. */
5352 && !EQ (BVAR (b, filename), Qnil)
5353 && NILP (no_message))
5354 {
5355 /* It has shrunk too much; turn off auto-saving here. */
5356 minibuffer_auto_raise = orig_minibuffer_auto_raise;
5357 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5358 BVAR (b, name), 1);
5359 minibuffer_auto_raise = 0;
5360 /* Turn off auto-saving until there's a real save,
5361 and prevent any more warnings. */
5362 XSETINT (BVAR (b, save_length), -1);
5363 Fsleep_for (make_number (1), Qnil);
5364 continue;
5365 }
5366 if (!auto_saved && NILP (no_message))
5367 message1 ("Auto-saving...");
5368 internal_condition_case (auto_save_1, Qt, auto_save_error);
5369 auto_saved++;
5370 BUF_AUTOSAVE_MODIFF (b) = BUF_MODIFF (b);
5371 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5372 set_buffer_internal (old);
5373
5374 EMACS_GET_TIME (after_time);
5375
5376 /* If auto-save took more than 60 seconds,
5377 assume it was an NFS failure that got a timeout. */
5378 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
5379 b->auto_save_failure_time = EMACS_SECS (after_time);
5380 }
5381 }
5382
5383 /* Prevent another auto save till enough input events come in. */
5384 record_auto_save ();
5385
5386 if (auto_saved && NILP (no_message))
5387 {
5388 if (old_message_p)
5389 {
5390 /* If we are going to restore an old message,
5391 give time to read ours. */
5392 sit_for (make_number (1), 0, 0);
5393 restore_message ();
5394 }
5395 else if (!auto_save_error_occurred)
5396 /* Don't overwrite the error message if an error occurred.
5397 If we displayed a message and then restored a state
5398 with no message, leave a "done" message on the screen. */
5399 message1 ("Auto-saving...done");
5400 }
5401
5402 Vquit_flag = oquit;
5403
5404 /* This restores the message-stack status. */
5405 unbind_to (count, Qnil);
5406 return Qnil;
5407 }
5408
5409 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
5410 Sset_buffer_auto_saved, 0, 0, 0,
5411 doc: /* Mark current buffer as auto-saved with its current text.
5412 No auto-save file will be written until the buffer changes again. */)
5413 (void)
5414 {
5415 /* FIXME: This should not be called in indirect buffers, since
5416 they're not autosaved. */
5417 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
5418 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5419 current_buffer->auto_save_failure_time = -1;
5420 return Qnil;
5421 }
5422
5423 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
5424 Sclear_buffer_auto_save_failure, 0, 0, 0,
5425 doc: /* Clear any record of a recent auto-save failure in the current buffer. */)
5426 (void)
5427 {
5428 current_buffer->auto_save_failure_time = -1;
5429 return Qnil;
5430 }
5431
5432 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
5433 0, 0, 0,
5434 doc: /* Return t if current buffer has been auto-saved recently.
5435 More precisely, if it has been auto-saved since last read from or saved
5436 in the visited file. If the buffer has no visited file,
5437 then any auto-save counts as "recent". */)
5438 (void)
5439 {
5440 /* FIXME: maybe we should return nil for indirect buffers since
5441 they're never autosaved. */
5442 return (SAVE_MODIFF < BUF_AUTOSAVE_MODIFF (current_buffer) ? Qt : Qnil);
5443 }
5444 \f
5445 /* Reading and completing file names */
5446
5447 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p,
5448 Snext_read_file_uses_dialog_p, 0, 0, 0,
5449 doc: /* Return t if a call to `read-file-name' will use a dialog.
5450 The return value is only relevant for a call to `read-file-name' that happens
5451 before any other event (mouse or keypress) is handled. */)
5452 (void)
5453 {
5454 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK)
5455 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
5456 && use_dialog_box
5457 && use_file_dialog
5458 && have_menus_p ())
5459 return Qt;
5460 #endif
5461 return Qnil;
5462 }
5463
5464 Lisp_Object
5465 Fread_file_name (Lisp_Object prompt, Lisp_Object dir, Lisp_Object default_filename, Lisp_Object mustmatch, Lisp_Object initial, Lisp_Object predicate)
5466 {
5467 struct gcpro gcpro1;
5468 Lisp_Object args[7];
5469
5470 GCPRO1 (default_filename);
5471 args[0] = intern ("read-file-name");
5472 args[1] = prompt;
5473 args[2] = dir;
5474 args[3] = default_filename;
5475 args[4] = mustmatch;
5476 args[5] = initial;
5477 args[6] = predicate;
5478 RETURN_UNGCPRO (Ffuncall (7, args));
5479 }
5480
5481 \f
5482 void
5483 syms_of_fileio (void)
5484 {
5485 DEFSYM (Qoperations, "operations");
5486 DEFSYM (Qexpand_file_name, "expand-file-name");
5487 DEFSYM (Qsubstitute_in_file_name, "substitute-in-file-name");
5488 DEFSYM (Qdirectory_file_name, "directory-file-name");
5489 DEFSYM (Qfile_name_directory, "file-name-directory");
5490 DEFSYM (Qfile_name_nondirectory, "file-name-nondirectory");
5491 DEFSYM (Qunhandled_file_name_directory, "unhandled-file-name-directory");
5492 DEFSYM (Qfile_name_as_directory, "file-name-as-directory");
5493 DEFSYM (Qcopy_file, "copy-file");
5494 DEFSYM (Qmake_directory_internal, "make-directory-internal");
5495 DEFSYM (Qmake_directory, "make-directory");
5496 DEFSYM (Qdelete_directory_internal, "delete-directory-internal");
5497 DEFSYM (Qdelete_file, "delete-file");
5498 DEFSYM (Qrename_file, "rename-file");
5499 DEFSYM (Qadd_name_to_file, "add-name-to-file");
5500 DEFSYM (Qmake_symbolic_link, "make-symbolic-link");
5501 DEFSYM (Qfile_exists_p, "file-exists-p");
5502 DEFSYM (Qfile_executable_p, "file-executable-p");
5503 DEFSYM (Qfile_readable_p, "file-readable-p");
5504 DEFSYM (Qfile_writable_p, "file-writable-p");
5505 DEFSYM (Qfile_symlink_p, "file-symlink-p");
5506 DEFSYM (Qaccess_file, "access-file");
5507 DEFSYM (Qfile_directory_p, "file-directory-p");
5508 DEFSYM (Qfile_regular_p, "file-regular-p");
5509 DEFSYM (Qfile_accessible_directory_p, "file-accessible-directory-p");
5510 DEFSYM (Qfile_modes, "file-modes");
5511 DEFSYM (Qset_file_modes, "set-file-modes");
5512 DEFSYM (Qset_file_times, "set-file-times");
5513 DEFSYM (Qfile_selinux_context, "file-selinux-context");
5514 DEFSYM (Qset_file_selinux_context, "set-file-selinux-context");
5515 DEFSYM (Qfile_newer_than_file_p, "file-newer-than-file-p");
5516 DEFSYM (Qinsert_file_contents, "insert-file-contents");
5517 DEFSYM (Qwrite_region, "write-region");
5518 DEFSYM (Qverify_visited_file_modtime, "verify-visited-file-modtime");
5519 DEFSYM (Qset_visited_file_modtime, "set-visited-file-modtime");
5520 DEFSYM (Qauto_save_coding, "auto-save-coding");
5521
5522 DEFSYM (Qfile_name_history, "file-name-history");
5523 Fset (Qfile_name_history, Qnil);
5524
5525 DEFSYM (Qfile_error, "file-error");
5526 DEFSYM (Qfile_already_exists, "file-already-exists");
5527 DEFSYM (Qfile_date_error, "file-date-error");
5528 DEFSYM (Qexcl, "excl");
5529
5530 DEFVAR_LISP ("file-name-coding-system", Vfile_name_coding_system,
5531 doc: /* *Coding system for encoding file names.
5532 If it is nil, `default-file-name-coding-system' (which see) is used. */);
5533 Vfile_name_coding_system = Qnil;
5534
5535 DEFVAR_LISP ("default-file-name-coding-system",
5536 Vdefault_file_name_coding_system,
5537 doc: /* Default coding system for encoding file names.
5538 This variable is used only when `file-name-coding-system' is nil.
5539
5540 This variable is set/changed by the command `set-language-environment'.
5541 User should not set this variable manually,
5542 instead use `file-name-coding-system' to get a constant encoding
5543 of file names regardless of the current language environment. */);
5544 Vdefault_file_name_coding_system = Qnil;
5545
5546 DEFSYM (Qformat_decode, "format-decode");
5547 DEFSYM (Qformat_annotate_function, "format-annotate-function");
5548 DEFSYM (Qafter_insert_file_set_coding, "after-insert-file-set-coding");
5549 DEFSYM (Qcar_less_than_car, "car-less-than-car");
5550
5551 Fput (Qfile_error, Qerror_conditions,
5552 Fpurecopy (list2 (Qfile_error, Qerror)));
5553 Fput (Qfile_error, Qerror_message,
5554 make_pure_c_string ("File error"));
5555
5556 Fput (Qfile_already_exists, Qerror_conditions,
5557 Fpurecopy (list3 (Qfile_already_exists, Qfile_error, Qerror)));
5558 Fput (Qfile_already_exists, Qerror_message,
5559 make_pure_c_string ("File already exists"));
5560
5561 Fput (Qfile_date_error, Qerror_conditions,
5562 Fpurecopy (list3 (Qfile_date_error, Qfile_error, Qerror)));
5563 Fput (Qfile_date_error, Qerror_message,
5564 make_pure_c_string ("Cannot set file date"));
5565
5566 DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist,
5567 doc: /* *Alist of elements (REGEXP . HANDLER) for file names handled specially.
5568 If a file name matches REGEXP, then all I/O on that file is done by calling
5569 HANDLER.
5570
5571 The first argument given to HANDLER is the name of the I/O primitive
5572 to be handled; the remaining arguments are the arguments that were
5573 passed to that primitive. For example, if you do
5574 (file-exists-p FILENAME)
5575 and FILENAME is handled by HANDLER, then HANDLER is called like this:
5576 (funcall HANDLER 'file-exists-p FILENAME)
5577 The function `find-file-name-handler' checks this list for a handler
5578 for its argument. */);
5579 Vfile_name_handler_alist = Qnil;
5580
5581 DEFVAR_LISP ("set-auto-coding-function",
5582 Vset_auto_coding_function,
5583 doc: /* If non-nil, a function to call to decide a coding system of file.
5584 Two arguments are passed to this function: the file name
5585 and the length of a file contents following the point.
5586 This function should return a coding system to decode the file contents.
5587 It should check the file name against `auto-coding-alist'.
5588 If no coding system is decided, it should check a coding system
5589 specified in the heading lines with the format:
5590 -*- ... coding: CODING-SYSTEM; ... -*-
5591 or local variable spec of the tailing lines with `coding:' tag. */);
5592 Vset_auto_coding_function = Qnil;
5593
5594 DEFVAR_LISP ("after-insert-file-functions", Vafter_insert_file_functions,
5595 doc: /* A list of functions to be called at the end of `insert-file-contents'.
5596 Each is passed one argument, the number of characters inserted,
5597 with point at the start of the inserted text. Each function
5598 should leave point the same, and return the new character count.
5599 If `insert-file-contents' is intercepted by a handler from
5600 `file-name-handler-alist', that handler is responsible for calling the
5601 functions in `after-insert-file-functions' if appropriate. */);
5602 Vafter_insert_file_functions = Qnil;
5603
5604 DEFVAR_LISP ("write-region-annotate-functions", Vwrite_region_annotate_functions,
5605 doc: /* A list of functions to be called at the start of `write-region'.
5606 Each is passed two arguments, START and END as for `write-region'.
5607 These are usually two numbers but not always; see the documentation
5608 for `write-region'. The function should return a list of pairs
5609 of the form (POSITION . STRING), consisting of strings to be effectively
5610 inserted at the specified positions of the file being written (1 means to
5611 insert before the first byte written). The POSITIONs must be sorted into
5612 increasing order.
5613
5614 If there are several annotation functions, the lists returned by these
5615 functions are merged destructively. As each annotation function runs,
5616 the variable `write-region-annotations-so-far' contains a list of all
5617 annotations returned by previous annotation functions.
5618
5619 An annotation function can return with a different buffer current.
5620 Doing so removes the annotations returned by previous functions, and
5621 resets START and END to `point-min' and `point-max' of the new buffer.
5622
5623 After `write-region' completes, Emacs calls the function stored in
5624 `write-region-post-annotation-function', once for each buffer that was
5625 current when building the annotations (i.e., at least once), with that
5626 buffer current. */);
5627 Vwrite_region_annotate_functions = Qnil;
5628 DEFSYM (Qwrite_region_annotate_functions, "write-region-annotate-functions");
5629
5630 DEFVAR_LISP ("write-region-post-annotation-function",
5631 Vwrite_region_post_annotation_function,
5632 doc: /* Function to call after `write-region' completes.
5633 The function is called with no arguments. If one or more of the
5634 annotation functions in `write-region-annotate-functions' changed the
5635 current buffer, the function stored in this variable is called for
5636 each of those additional buffers as well, in addition to the original
5637 buffer. The relevant buffer is current during each function call. */);
5638 Vwrite_region_post_annotation_function = Qnil;
5639 staticpro (&Vwrite_region_annotation_buffers);
5640
5641 DEFVAR_LISP ("write-region-annotations-so-far",
5642 Vwrite_region_annotations_so_far,
5643 doc: /* When an annotation function is called, this holds the previous annotations.
5644 These are the annotations made by other annotation functions
5645 that were already called. See also `write-region-annotate-functions'. */);
5646 Vwrite_region_annotations_so_far = Qnil;
5647
5648 DEFVAR_LISP ("inhibit-file-name-handlers", Vinhibit_file_name_handlers,
5649 doc: /* A list of file name handlers that temporarily should not be used.
5650 This applies only to the operation `inhibit-file-name-operation'. */);
5651 Vinhibit_file_name_handlers = Qnil;
5652
5653 DEFVAR_LISP ("inhibit-file-name-operation", Vinhibit_file_name_operation,
5654 doc: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
5655 Vinhibit_file_name_operation = Qnil;
5656
5657 DEFVAR_LISP ("auto-save-list-file-name", Vauto_save_list_file_name,
5658 doc: /* File name in which we write a list of all auto save file names.
5659 This variable is initialized automatically from `auto-save-list-file-prefix'
5660 shortly after Emacs reads your `.emacs' file, if you have not yet given it
5661 a non-nil value. */);
5662 Vauto_save_list_file_name = Qnil;
5663
5664 DEFVAR_LISP ("auto-save-visited-file-name", Vauto_save_visited_file_name,
5665 doc: /* Non-nil says auto-save a buffer in the file it is visiting, when practical.
5666 Normally auto-save files are written under other names. */);
5667 Vauto_save_visited_file_name = Qnil;
5668
5669 DEFVAR_LISP ("auto-save-include-big-deletions", Vauto_save_include_big_deletions,
5670 doc: /* If non-nil, auto-save even if a large part of the text is deleted.
5671 If nil, deleting a substantial portion of the text disables auto-save
5672 in the buffer; this is the default behavior, because the auto-save
5673 file is usually more useful if it contains the deleted text. */);
5674 Vauto_save_include_big_deletions = Qnil;
5675
5676 #ifdef HAVE_FSYNC
5677 DEFVAR_BOOL ("write-region-inhibit-fsync", write_region_inhibit_fsync,
5678 doc: /* *Non-nil means don't call fsync in `write-region'.
5679 This variable affects calls to `write-region' as well as save commands.
5680 A non-nil value may result in data loss! */);
5681 write_region_inhibit_fsync = 0;
5682 #endif
5683
5684 DEFVAR_BOOL ("delete-by-moving-to-trash", delete_by_moving_to_trash,
5685 doc: /* Specifies whether to use the system's trash can.
5686 When non-nil, certain file deletion commands use the function
5687 `move-file-to-trash' instead of deleting files outright.
5688 This includes interactive calls to `delete-file' and
5689 `delete-directory' and the Dired deletion commands. */);
5690 delete_by_moving_to_trash = 0;
5691 Qdelete_by_moving_to_trash = intern_c_string ("delete-by-moving-to-trash");
5692
5693 DEFSYM (Qmove_file_to_trash, "move-file-to-trash");
5694 DEFSYM (Qcopy_directory, "copy-directory");
5695 DEFSYM (Qdelete_directory, "delete-directory");
5696
5697 defsubr (&Sfind_file_name_handler);
5698 defsubr (&Sfile_name_directory);
5699 defsubr (&Sfile_name_nondirectory);
5700 defsubr (&Sunhandled_file_name_directory);
5701 defsubr (&Sfile_name_as_directory);
5702 defsubr (&Sdirectory_file_name);
5703 defsubr (&Smake_temp_name);
5704 defsubr (&Sexpand_file_name);
5705 defsubr (&Ssubstitute_in_file_name);
5706 defsubr (&Scopy_file);
5707 defsubr (&Smake_directory_internal);
5708 defsubr (&Sdelete_directory_internal);
5709 defsubr (&Sdelete_file);
5710 defsubr (&Srename_file);
5711 defsubr (&Sadd_name_to_file);
5712 defsubr (&Smake_symbolic_link);
5713 defsubr (&Sfile_name_absolute_p);
5714 defsubr (&Sfile_exists_p);
5715 defsubr (&Sfile_executable_p);
5716 defsubr (&Sfile_readable_p);
5717 defsubr (&Sfile_writable_p);
5718 defsubr (&Saccess_file);
5719 defsubr (&Sfile_symlink_p);
5720 defsubr (&Sfile_directory_p);
5721 defsubr (&Sfile_accessible_directory_p);
5722 defsubr (&Sfile_regular_p);
5723 defsubr (&Sfile_modes);
5724 defsubr (&Sset_file_modes);
5725 defsubr (&Sset_file_times);
5726 defsubr (&Sfile_selinux_context);
5727 defsubr (&Sset_file_selinux_context);
5728 defsubr (&Sset_default_file_modes);
5729 defsubr (&Sdefault_file_modes);
5730 defsubr (&Sfile_newer_than_file_p);
5731 defsubr (&Sinsert_file_contents);
5732 defsubr (&Swrite_region);
5733 defsubr (&Scar_less_than_car);
5734 defsubr (&Sverify_visited_file_modtime);
5735 defsubr (&Sclear_visited_file_modtime);
5736 defsubr (&Svisited_file_modtime);
5737 defsubr (&Sset_visited_file_modtime);
5738 defsubr (&Sdo_auto_save);
5739 defsubr (&Sset_buffer_auto_saved);
5740 defsubr (&Sclear_buffer_auto_save_failure);
5741 defsubr (&Srecent_auto_save_p);
5742
5743 defsubr (&Snext_read_file_uses_dialog_p);
5744
5745 #ifdef HAVE_SYNC
5746 defsubr (&Sunix_sync);
5747 #endif
5748 }