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