Try to detect file modification within the same second.
[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->modtime_size = st.st_size;
4096 current_buffer->filename = orig_filename;
4097 }
4098
4099 SAVE_MODIFF = MODIFF;
4100 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
4101 XSETFASTINT (current_buffer->save_length, Z - BEG);
4102 #ifdef CLASH_DETECTION
4103 if (NILP (handler))
4104 {
4105 if (!NILP (current_buffer->file_truename))
4106 unlock_file (current_buffer->file_truename);
4107 unlock_file (filename);
4108 }
4109 #endif /* CLASH_DETECTION */
4110 if (not_regular)
4111 xsignal2 (Qfile_error,
4112 build_string ("not a regular file"), orig_filename);
4113 }
4114
4115 if (set_coding_system)
4116 Vlast_coding_system_used = coding_system;
4117
4118 if (! NILP (Ffboundp (Qafter_insert_file_set_coding)))
4119 {
4120 insval = call2 (Qafter_insert_file_set_coding, make_number (inserted),
4121 visit);
4122 if (! NILP (insval))
4123 {
4124 CHECK_NUMBER (insval);
4125 inserted = XFASTINT (insval);
4126 }
4127 }
4128
4129 /* Decode file format. */
4130 if (inserted > 0)
4131 {
4132 /* Don't run point motion or modification hooks when decoding. */
4133 int count = SPECPDL_INDEX ();
4134 EMACS_INT old_inserted = inserted;
4135 specbind (Qinhibit_point_motion_hooks, Qt);
4136 specbind (Qinhibit_modification_hooks, Qt);
4137
4138 /* Save old undo list and don't record undo for decoding. */
4139 old_undo = current_buffer->undo_list;
4140 current_buffer->undo_list = Qt;
4141
4142 if (NILP (replace))
4143 {
4144 insval = call3 (Qformat_decode,
4145 Qnil, make_number (inserted), visit);
4146 CHECK_NUMBER (insval);
4147 inserted = XFASTINT (insval);
4148 }
4149 else
4150 {
4151 /* If REPLACE is non-nil and we succeeded in not replacing the
4152 beginning or end of the buffer text with the file's contents,
4153 call format-decode with `point' positioned at the beginning
4154 of the buffer and `inserted' equalling the number of
4155 characters in the buffer. Otherwise, format-decode might
4156 fail to correctly analyze the beginning or end of the buffer.
4157 Hence we temporarily save `point' and `inserted' here and
4158 restore `point' iff format-decode did not insert or delete
4159 any text. Otherwise we leave `point' at point-min. */
4160 EMACS_INT opoint = PT;
4161 EMACS_INT opoint_byte = PT_BYTE;
4162 EMACS_INT oinserted = ZV - BEGV;
4163 int ochars_modiff = CHARS_MODIFF;
4164
4165 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4166 insval = call3 (Qformat_decode,
4167 Qnil, make_number (oinserted), visit);
4168 CHECK_NUMBER (insval);
4169 if (ochars_modiff == CHARS_MODIFF)
4170 /* format_decode didn't modify buffer's characters => move
4171 point back to position before inserted text and leave
4172 value of inserted alone. */
4173 SET_PT_BOTH (opoint, opoint_byte);
4174 else
4175 /* format_decode modified buffer's characters => consider
4176 entire buffer changed and leave point at point-min. */
4177 inserted = XFASTINT (insval);
4178 }
4179
4180 /* For consistency with format-decode call these now iff inserted > 0
4181 (martin 2007-06-28). */
4182 p = Vafter_insert_file_functions;
4183 while (CONSP (p))
4184 {
4185 if (NILP (replace))
4186 {
4187 insval = call1 (XCAR (p), make_number (inserted));
4188 if (!NILP (insval))
4189 {
4190 CHECK_NUMBER (insval);
4191 inserted = XFASTINT (insval);
4192 }
4193 }
4194 else
4195 {
4196 /* For the rationale of this see the comment on
4197 format-decode above. */
4198 EMACS_INT opoint = PT;
4199 EMACS_INT opoint_byte = PT_BYTE;
4200 EMACS_INT oinserted = ZV - BEGV;
4201 int ochars_modiff = CHARS_MODIFF;
4202
4203 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4204 insval = call1 (XCAR (p), make_number (oinserted));
4205 if (!NILP (insval))
4206 {
4207 CHECK_NUMBER (insval);
4208 if (ochars_modiff == CHARS_MODIFF)
4209 /* after_insert_file_functions didn't modify
4210 buffer's characters => move point back to
4211 position before inserted text and leave value of
4212 inserted alone. */
4213 SET_PT_BOTH (opoint, opoint_byte);
4214 else
4215 /* after_insert_file_functions did modify buffer's
4216 characters => consider entire buffer changed and
4217 leave point at point-min. */
4218 inserted = XFASTINT (insval);
4219 }
4220 }
4221
4222 QUIT;
4223 p = XCDR (p);
4224 }
4225
4226 if (NILP (visit))
4227 {
4228 current_buffer->undo_list = old_undo;
4229 if (CONSP (old_undo) && inserted != old_inserted)
4230 {
4231 /* Adjust the last undo record for the size change during
4232 the format conversion. */
4233 Lisp_Object tem = XCAR (old_undo);
4234 if (CONSP (tem) && INTEGERP (XCAR (tem))
4235 && INTEGERP (XCDR (tem))
4236 && XFASTINT (XCDR (tem)) == PT + old_inserted)
4237 XSETCDR (tem, make_number (PT + inserted));
4238 }
4239 }
4240 else
4241 /* If undo_list was Qt before, keep it that way.
4242 Otherwise start with an empty undo_list. */
4243 current_buffer->undo_list = EQ (old_undo, Qt) ? Qt : Qnil;
4244
4245 unbind_to (count, Qnil);
4246 }
4247
4248 /* Call after-change hooks for the inserted text, aside from the case
4249 of normal visiting (not with REPLACE), which is done in a new buffer
4250 "before" the buffer is changed. */
4251 if (inserted > 0 && total > 0
4252 && (NILP (visit) || !NILP (replace)))
4253 {
4254 signal_after_change (PT, 0, inserted);
4255 update_compositions (PT, PT, CHECK_BORDER);
4256 }
4257
4258 if (!NILP (visit)
4259 && current_buffer->modtime == -1)
4260 {
4261 /* If visiting nonexistent file, return nil. */
4262 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
4263 }
4264
4265 if (read_quit)
4266 Fsignal (Qquit, Qnil);
4267
4268 /* ??? Retval needs to be dealt with in all cases consistently. */
4269 if (NILP (val))
4270 val = Fcons (orig_filename,
4271 Fcons (make_number (inserted),
4272 Qnil));
4273
4274 RETURN_UNGCPRO (unbind_to (count, val));
4275 }
4276 \f
4277 static Lisp_Object build_annotations P_ ((Lisp_Object, Lisp_Object));
4278
4279 static Lisp_Object
4280 build_annotations_unwind (arg)
4281 Lisp_Object arg;
4282 {
4283 Vwrite_region_annotation_buffers = arg;
4284 return Qnil;
4285 }
4286
4287 /* Decide the coding-system to encode the data with. */
4288
4289 static Lisp_Object
4290 choose_write_coding_system (start, end, filename,
4291 append, visit, lockname, coding)
4292 Lisp_Object start, end, filename, append, visit, lockname;
4293 struct coding_system *coding;
4294 {
4295 Lisp_Object val;
4296 Lisp_Object eol_parent = Qnil;
4297
4298 if (auto_saving
4299 && NILP (Fstring_equal (current_buffer->filename,
4300 current_buffer->auto_save_file_name)))
4301 {
4302 val = Qutf_8_emacs;
4303 eol_parent = Qunix;
4304 }
4305 else if (!NILP (Vcoding_system_for_write))
4306 {
4307 val = Vcoding_system_for_write;
4308 if (coding_system_require_warning
4309 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4310 /* Confirm that VAL can surely encode the current region. */
4311 val = call5 (Vselect_safe_coding_system_function,
4312 start, end, Fcons (Qt, Fcons (val, Qnil)),
4313 Qnil, filename);
4314 }
4315 else
4316 {
4317 /* If the variable `buffer-file-coding-system' is set locally,
4318 it means that the file was read with some kind of code
4319 conversion or the variable is explicitly set by users. We
4320 had better write it out with the same coding system even if
4321 `enable-multibyte-characters' is nil.
4322
4323 If it is not set locally, we anyway have to convert EOL
4324 format if the default value of `buffer-file-coding-system'
4325 tells that it is not Unix-like (LF only) format. */
4326 int using_default_coding = 0;
4327 int force_raw_text = 0;
4328
4329 val = current_buffer->buffer_file_coding_system;
4330 if (NILP (val)
4331 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil)))
4332 {
4333 val = Qnil;
4334 if (NILP (current_buffer->enable_multibyte_characters))
4335 force_raw_text = 1;
4336 }
4337
4338 if (NILP (val))
4339 {
4340 /* Check file-coding-system-alist. */
4341 Lisp_Object args[7], coding_systems;
4342
4343 args[0] = Qwrite_region; args[1] = start; args[2] = end;
4344 args[3] = filename; args[4] = append; args[5] = visit;
4345 args[6] = lockname;
4346 coding_systems = Ffind_operation_coding_system (7, args);
4347 if (CONSP (coding_systems) && !NILP (XCDR (coding_systems)))
4348 val = XCDR (coding_systems);
4349 }
4350
4351 if (NILP (val))
4352 {
4353 /* If we still have not decided a coding system, use the
4354 default value of buffer-file-coding-system. */
4355 val = current_buffer->buffer_file_coding_system;
4356 using_default_coding = 1;
4357 }
4358
4359 if (! NILP (val) && ! force_raw_text)
4360 {
4361 Lisp_Object spec, attrs;
4362
4363 CHECK_CODING_SYSTEM_GET_SPEC (val, spec);
4364 attrs = AREF (spec, 0);
4365 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text))
4366 force_raw_text = 1;
4367 }
4368
4369 if (!force_raw_text
4370 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4371 /* Confirm that VAL can surely encode the current region. */
4372 val = call5 (Vselect_safe_coding_system_function,
4373 start, end, val, Qnil, filename);
4374
4375 /* If the decided coding-system doesn't specify end-of-line
4376 format, we use that of
4377 `default-buffer-file-coding-system'. */
4378 if (! using_default_coding
4379 && ! NILP (buffer_defaults.buffer_file_coding_system))
4380 val = (coding_inherit_eol_type
4381 (val, buffer_defaults.buffer_file_coding_system));
4382
4383 /* If we decide not to encode text, use `raw-text' or one of its
4384 subsidiaries. */
4385 if (force_raw_text)
4386 val = raw_text_coding_system (val);
4387 }
4388
4389 val = coding_inherit_eol_type (val, eol_parent);
4390 setup_coding_system (val, coding);
4391
4392 if (!STRINGP (start) && !NILP (current_buffer->selective_display))
4393 coding->mode |= CODING_MODE_SELECTIVE_DISPLAY;
4394 return val;
4395 }
4396
4397 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7,
4398 "r\nFWrite region to file: \ni\ni\ni\np",
4399 doc: /* Write current region into specified file.
4400 When called from a program, requires three arguments:
4401 START, END and FILENAME. START and END are normally buffer positions
4402 specifying the part of the buffer to write.
4403 If START is nil, that means to use the entire buffer contents.
4404 If START is a string, then output that string to the file
4405 instead of any buffer contents; END is ignored.
4406
4407 Optional fourth argument APPEND if non-nil means
4408 append to existing file contents (if any). If it is an integer,
4409 seek to that offset in the file before writing.
4410 Optional fifth argument VISIT, if t or a string, means
4411 set the last-save-file-modtime of buffer to this file's modtime
4412 and mark buffer not modified.
4413 If VISIT is a string, it is a second file name;
4414 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4415 VISIT is also the file name to lock and unlock for clash detection.
4416 If VISIT is neither t nor nil nor a string,
4417 that means do not display the \"Wrote file\" message.
4418 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4419 use for locking and unlocking, overriding FILENAME and VISIT.
4420 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4421 for an existing file with the same name. If MUSTBENEW is `excl',
4422 that means to get an error if the file already exists; never overwrite.
4423 If MUSTBENEW is neither nil nor `excl', that means ask for
4424 confirmation before overwriting, but do go ahead and overwrite the file
4425 if the user confirms.
4426
4427 This does code conversion according to the value of
4428 `coding-system-for-write', `buffer-file-coding-system', or
4429 `file-coding-system-alist', and sets the variable
4430 `last-coding-system-used' to the coding system actually used.
4431
4432 This calls `write-region-annotate-functions' at the start, and
4433 `write-region-post-annotation-function' at the end. */)
4434 (start, end, filename, append, visit, lockname, mustbenew)
4435 Lisp_Object start, end, filename, append, visit, lockname, mustbenew;
4436 {
4437 register int desc;
4438 int failure;
4439 int save_errno = 0;
4440 const unsigned char *fn;
4441 struct stat st;
4442 int count = SPECPDL_INDEX ();
4443 int count1;
4444 Lisp_Object handler;
4445 Lisp_Object visit_file;
4446 Lisp_Object annotations;
4447 Lisp_Object encoded_filename;
4448 int visiting = (EQ (visit, Qt) || STRINGP (visit));
4449 int quietly = !NILP (visit);
4450 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4451 struct buffer *given_buffer;
4452 #ifdef DOS_NT
4453 int buffer_file_type = O_BINARY;
4454 #endif /* DOS_NT */
4455 struct coding_system coding;
4456
4457 if (current_buffer->base_buffer && visiting)
4458 error ("Cannot do file visiting in an indirect buffer");
4459
4460 if (!NILP (start) && !STRINGP (start))
4461 validate_region (&start, &end);
4462
4463 visit_file = Qnil;
4464 GCPRO5 (start, filename, visit, visit_file, lockname);
4465
4466 filename = Fexpand_file_name (filename, Qnil);
4467
4468 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl))
4469 barf_or_query_if_file_exists (filename, "overwrite", 1, 0, 1);
4470
4471 if (STRINGP (visit))
4472 visit_file = Fexpand_file_name (visit, Qnil);
4473 else
4474 visit_file = filename;
4475
4476 if (NILP (lockname))
4477 lockname = visit_file;
4478
4479 annotations = Qnil;
4480
4481 /* If the file name has special constructs in it,
4482 call the corresponding file handler. */
4483 handler = Ffind_file_name_handler (filename, Qwrite_region);
4484 /* If FILENAME has no handler, see if VISIT has one. */
4485 if (NILP (handler) && STRINGP (visit))
4486 handler = Ffind_file_name_handler (visit, Qwrite_region);
4487
4488 if (!NILP (handler))
4489 {
4490 Lisp_Object val;
4491 val = call6 (handler, Qwrite_region, start, end,
4492 filename, append, visit);
4493
4494 if (visiting)
4495 {
4496 SAVE_MODIFF = MODIFF;
4497 XSETFASTINT (current_buffer->save_length, Z - BEG);
4498 current_buffer->filename = visit_file;
4499 }
4500 UNGCPRO;
4501 return val;
4502 }
4503
4504 record_unwind_protect (save_restriction_restore, save_restriction_save ());
4505
4506 /* Special kludge to simplify auto-saving. */
4507 if (NILP (start))
4508 {
4509 /* Do it later, so write-region-annotate-function can work differently
4510 if we save "the buffer" vs "a region".
4511 This is useful in tar-mode. --Stef
4512 XSETFASTINT (start, BEG);
4513 XSETFASTINT (end, Z); */
4514 Fwiden ();
4515 }
4516
4517 record_unwind_protect (build_annotations_unwind,
4518 Vwrite_region_annotation_buffers);
4519 Vwrite_region_annotation_buffers = Fcons (Fcurrent_buffer (), Qnil);
4520 count1 = SPECPDL_INDEX ();
4521
4522 given_buffer = current_buffer;
4523
4524 if (!STRINGP (start))
4525 {
4526 annotations = build_annotations (start, end);
4527
4528 if (current_buffer != given_buffer)
4529 {
4530 XSETFASTINT (start, BEGV);
4531 XSETFASTINT (end, ZV);
4532 }
4533 }
4534
4535 if (NILP (start))
4536 {
4537 XSETFASTINT (start, BEGV);
4538 XSETFASTINT (end, ZV);
4539 }
4540
4541 UNGCPRO;
4542
4543 GCPRO5 (start, filename, annotations, visit_file, lockname);
4544
4545 /* Decide the coding-system to encode the data with.
4546 We used to make this choice before calling build_annotations, but that
4547 leads to problems when a write-annotate-function takes care of
4548 unsavable chars (as was the case with X-Symbol). */
4549 Vlast_coding_system_used
4550 = choose_write_coding_system (start, end, filename,
4551 append, visit, lockname, &coding);
4552
4553 #ifdef CLASH_DETECTION
4554 if (!auto_saving)
4555 lock_file (lockname);
4556 #endif /* CLASH_DETECTION */
4557
4558 encoded_filename = ENCODE_FILE (filename);
4559
4560 fn = SDATA (encoded_filename);
4561 desc = -1;
4562 if (!NILP (append))
4563 #ifdef DOS_NT
4564 desc = emacs_open (fn, O_WRONLY | buffer_file_type, 0);
4565 #else /* not DOS_NT */
4566 desc = emacs_open (fn, O_WRONLY, 0);
4567 #endif /* not DOS_NT */
4568
4569 if (desc < 0 && (NILP (append) || errno == ENOENT))
4570 #ifdef DOS_NT
4571 desc = emacs_open (fn,
4572 O_WRONLY | O_CREAT | buffer_file_type
4573 | (EQ (mustbenew, Qexcl) ? O_EXCL : O_TRUNC),
4574 S_IREAD | S_IWRITE);
4575 #else /* not DOS_NT */
4576 desc = emacs_open (fn, O_WRONLY | O_TRUNC | O_CREAT
4577 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0),
4578 auto_saving ? auto_save_mode_bits : 0666);
4579 #endif /* not DOS_NT */
4580
4581 if (desc < 0)
4582 {
4583 #ifdef CLASH_DETECTION
4584 save_errno = errno;
4585 if (!auto_saving) unlock_file (lockname);
4586 errno = save_errno;
4587 #endif /* CLASH_DETECTION */
4588 UNGCPRO;
4589 report_file_error ("Opening output file", Fcons (filename, Qnil));
4590 }
4591
4592 record_unwind_protect (close_file_unwind, make_number (desc));
4593
4594 if (!NILP (append) && !NILP (Ffile_regular_p (filename)))
4595 {
4596 long ret;
4597
4598 if (NUMBERP (append))
4599 ret = lseek (desc, XINT (append), 1);
4600 else
4601 ret = lseek (desc, 0, 2);
4602 if (ret < 0)
4603 {
4604 #ifdef CLASH_DETECTION
4605 if (!auto_saving) unlock_file (lockname);
4606 #endif /* CLASH_DETECTION */
4607 UNGCPRO;
4608 report_file_error ("Lseek error", Fcons (filename, Qnil));
4609 }
4610 }
4611
4612 UNGCPRO;
4613
4614 failure = 0;
4615 immediate_quit = 1;
4616
4617 if (STRINGP (start))
4618 {
4619 failure = 0 > a_write (desc, start, 0, SCHARS (start),
4620 &annotations, &coding);
4621 save_errno = errno;
4622 }
4623 else if (XINT (start) != XINT (end))
4624 {
4625 failure = 0 > a_write (desc, Qnil,
4626 XINT (start), XINT (end) - XINT (start),
4627 &annotations, &coding);
4628 save_errno = errno;
4629 }
4630 else
4631 {
4632 /* If file was empty, still need to write the annotations */
4633 coding.mode |= CODING_MODE_LAST_BLOCK;
4634 failure = 0 > a_write (desc, Qnil, XINT (end), 0, &annotations, &coding);
4635 save_errno = errno;
4636 }
4637
4638 if (CODING_REQUIRE_FLUSHING (&coding)
4639 && !(coding.mode & CODING_MODE_LAST_BLOCK)
4640 && ! failure)
4641 {
4642 /* We have to flush out a data. */
4643 coding.mode |= CODING_MODE_LAST_BLOCK;
4644 failure = 0 > e_write (desc, Qnil, 1, 1, &coding);
4645 save_errno = errno;
4646 }
4647
4648 immediate_quit = 0;
4649
4650 #ifdef HAVE_FSYNC
4651 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
4652 Disk full in NFS may be reported here. */
4653 /* mib says that closing the file will try to write as fast as NFS can do
4654 it, and that means the fsync here is not crucial for autosave files. */
4655 if (!auto_saving && !write_region_inhibit_fsync && fsync (desc) < 0)
4656 {
4657 /* If fsync fails with EINTR, don't treat that as serious. Also
4658 ignore EINVAL which happens when fsync is not supported on this
4659 file. */
4660 if (errno != EINTR && errno != EINVAL)
4661 failure = 1, save_errno = errno;
4662 }
4663 #endif
4664
4665 /* NFS can report a write failure now. */
4666 if (emacs_close (desc) < 0)
4667 failure = 1, save_errno = errno;
4668
4669 stat (fn, &st);
4670
4671 /* Discard the unwind protect for close_file_unwind. */
4672 specpdl_ptr = specpdl + count1;
4673
4674 /* Call write-region-post-annotation-function. */
4675 while (CONSP (Vwrite_region_annotation_buffers))
4676 {
4677 Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers);
4678 if (!NILP (Fbuffer_live_p (buf)))
4679 {
4680 Fset_buffer (buf);
4681 if (FUNCTIONP (Vwrite_region_post_annotation_function))
4682 call0 (Vwrite_region_post_annotation_function);
4683 }
4684 Vwrite_region_annotation_buffers
4685 = XCDR (Vwrite_region_annotation_buffers);
4686 }
4687
4688 unbind_to (count, Qnil);
4689
4690 #ifdef CLASH_DETECTION
4691 if (!auto_saving)
4692 unlock_file (lockname);
4693 #endif /* CLASH_DETECTION */
4694
4695 /* Do this before reporting IO error
4696 to avoid a "file has changed on disk" warning on
4697 next attempt to save. */
4698 if (visiting)
4699 {
4700 current_buffer->modtime = st.st_mtime;
4701 current_buffer->modtime_size = st.st_size;
4702 }
4703
4704 if (failure)
4705 error ("IO error writing %s: %s", SDATA (filename),
4706 emacs_strerror (save_errno));
4707
4708 if (visiting)
4709 {
4710 SAVE_MODIFF = MODIFF;
4711 XSETFASTINT (current_buffer->save_length, Z - BEG);
4712 current_buffer->filename = visit_file;
4713 update_mode_lines++;
4714 }
4715 else if (quietly)
4716 {
4717 if (auto_saving
4718 && ! NILP (Fstring_equal (current_buffer->filename,
4719 current_buffer->auto_save_file_name)))
4720 SAVE_MODIFF = MODIFF;
4721
4722 return Qnil;
4723 }
4724
4725 if (!auto_saving)
4726 message_with_string ((INTEGERP (append)
4727 ? "Updated %s"
4728 : ! NILP (append)
4729 ? "Added to %s"
4730 : "Wrote %s"),
4731 visit_file, 1);
4732
4733 return Qnil;
4734 }
4735 \f
4736 Lisp_Object merge ();
4737
4738 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
4739 doc: /* Return t if (car A) is numerically less than (car B). */)
4740 (a, b)
4741 Lisp_Object a, b;
4742 {
4743 return Flss (Fcar (a), Fcar (b));
4744 }
4745
4746 /* Build the complete list of annotations appropriate for writing out
4747 the text between START and END, by calling all the functions in
4748 write-region-annotate-functions and merging the lists they return.
4749 If one of these functions switches to a different buffer, we assume
4750 that buffer contains altered text. Therefore, the caller must
4751 make sure to restore the current buffer in all cases,
4752 as save-excursion would do. */
4753
4754 static Lisp_Object
4755 build_annotations (start, end)
4756 Lisp_Object start, end;
4757 {
4758 Lisp_Object annotations;
4759 Lisp_Object p, res;
4760 struct gcpro gcpro1, gcpro2;
4761 Lisp_Object original_buffer;
4762 int i, used_global = 0;
4763
4764 XSETBUFFER (original_buffer, current_buffer);
4765
4766 annotations = Qnil;
4767 p = Vwrite_region_annotate_functions;
4768 GCPRO2 (annotations, p);
4769 while (CONSP (p))
4770 {
4771 struct buffer *given_buffer = current_buffer;
4772 if (EQ (Qt, XCAR (p)) && !used_global)
4773 { /* Use the global value of the hook. */
4774 Lisp_Object arg[2];
4775 used_global = 1;
4776 arg[0] = Fdefault_value (Qwrite_region_annotate_functions);
4777 arg[1] = XCDR (p);
4778 p = Fappend (2, arg);
4779 continue;
4780 }
4781 Vwrite_region_annotations_so_far = annotations;
4782 res = call2 (XCAR (p), start, end);
4783 /* If the function makes a different buffer current,
4784 assume that means this buffer contains altered text to be output.
4785 Reset START and END from the buffer bounds
4786 and discard all previous annotations because they should have
4787 been dealt with by this function. */
4788 if (current_buffer != given_buffer)
4789 {
4790 Vwrite_region_annotation_buffers
4791 = Fcons (Fcurrent_buffer (),
4792 Vwrite_region_annotation_buffers);
4793 XSETFASTINT (start, BEGV);
4794 XSETFASTINT (end, ZV);
4795 annotations = Qnil;
4796 }
4797 Flength (res); /* Check basic validity of return value */
4798 annotations = merge (annotations, res, Qcar_less_than_car);
4799 p = XCDR (p);
4800 }
4801
4802 /* Now do the same for annotation functions implied by the file-format */
4803 if (auto_saving && (!EQ (current_buffer->auto_save_file_format, Qt)))
4804 p = current_buffer->auto_save_file_format;
4805 else
4806 p = current_buffer->file_format;
4807 for (i = 0; CONSP (p); p = XCDR (p), ++i)
4808 {
4809 struct buffer *given_buffer = current_buffer;
4810
4811 Vwrite_region_annotations_so_far = annotations;
4812
4813 /* Value is either a list of annotations or nil if the function
4814 has written annotations to a temporary buffer, which is now
4815 current. */
4816 res = call5 (Qformat_annotate_function, XCAR (p), start, end,
4817 original_buffer, make_number (i));
4818 if (current_buffer != given_buffer)
4819 {
4820 XSETFASTINT (start, BEGV);
4821 XSETFASTINT (end, ZV);
4822 annotations = Qnil;
4823 }
4824
4825 if (CONSP (res))
4826 annotations = merge (annotations, res, Qcar_less_than_car);
4827 }
4828
4829 UNGCPRO;
4830 return annotations;
4831 }
4832
4833 \f
4834 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
4835 If STRING is nil, POS is the character position in the current buffer.
4836 Intersperse with them the annotations from *ANNOT
4837 which fall within the range of POS to POS + NCHARS,
4838 each at its appropriate position.
4839
4840 We modify *ANNOT by discarding elements as we use them up.
4841
4842 The return value is negative in case of system call failure. */
4843
4844 static int
4845 a_write (desc, string, pos, nchars, annot, coding)
4846 int desc;
4847 Lisp_Object string;
4848 register int nchars;
4849 int pos;
4850 Lisp_Object *annot;
4851 struct coding_system *coding;
4852 {
4853 Lisp_Object tem;
4854 int nextpos;
4855 int lastpos = pos + nchars;
4856
4857 while (NILP (*annot) || CONSP (*annot))
4858 {
4859 tem = Fcar_safe (Fcar (*annot));
4860 nextpos = pos - 1;
4861 if (INTEGERP (tem))
4862 nextpos = XFASTINT (tem);
4863
4864 /* If there are no more annotations in this range,
4865 output the rest of the range all at once. */
4866 if (! (nextpos >= pos && nextpos <= lastpos))
4867 return e_write (desc, string, pos, lastpos, coding);
4868
4869 /* Output buffer text up to the next annotation's position. */
4870 if (nextpos > pos)
4871 {
4872 if (0 > e_write (desc, string, pos, nextpos, coding))
4873 return -1;
4874 pos = nextpos;
4875 }
4876 /* Output the annotation. */
4877 tem = Fcdr (Fcar (*annot));
4878 if (STRINGP (tem))
4879 {
4880 if (0 > e_write (desc, tem, 0, SCHARS (tem), coding))
4881 return -1;
4882 }
4883 *annot = Fcdr (*annot);
4884 }
4885 return 0;
4886 }
4887
4888
4889 /* Write text in the range START and END into descriptor DESC,
4890 encoding them with coding system CODING. If STRING is nil, START
4891 and END are character positions of the current buffer, else they
4892 are indexes to the string STRING. */
4893
4894 static int
4895 e_write (desc, string, start, end, coding)
4896 int desc;
4897 Lisp_Object string;
4898 int start, end;
4899 struct coding_system *coding;
4900 {
4901 if (STRINGP (string))
4902 {
4903 start = 0;
4904 end = SCHARS (string);
4905 }
4906
4907 /* We used to have a code for handling selective display here. But,
4908 now it is handled within encode_coding. */
4909
4910 while (start < end)
4911 {
4912 if (STRINGP (string))
4913 {
4914 coding->src_multibyte = SCHARS (string) < SBYTES (string);
4915 if (CODING_REQUIRE_ENCODING (coding))
4916 {
4917 encode_coding_object (coding, string,
4918 start, string_char_to_byte (string, start),
4919 end, string_char_to_byte (string, end), Qt);
4920 }
4921 else
4922 {
4923 coding->dst_object = string;
4924 coding->consumed_char = SCHARS (string);
4925 coding->produced = SBYTES (string);
4926 }
4927 }
4928 else
4929 {
4930 int start_byte = CHAR_TO_BYTE (start);
4931 int end_byte = CHAR_TO_BYTE (end);
4932
4933 coding->src_multibyte = (end - start) < (end_byte - start_byte);
4934 if (CODING_REQUIRE_ENCODING (coding))
4935 {
4936 encode_coding_object (coding, Fcurrent_buffer (),
4937 start, start_byte, end, end_byte, Qt);
4938 }
4939 else
4940 {
4941 coding->dst_object = Qnil;
4942 coding->dst_pos_byte = start_byte;
4943 if (start >= GPT || end <= GPT)
4944 {
4945 coding->consumed_char = end - start;
4946 coding->produced = end_byte - start_byte;
4947 }
4948 else
4949 {
4950 coding->consumed_char = GPT - start;
4951 coding->produced = GPT_BYTE - start_byte;
4952 }
4953 }
4954 }
4955
4956 if (coding->produced > 0)
4957 {
4958 coding->produced -=
4959 emacs_write (desc,
4960 STRINGP (coding->dst_object)
4961 ? SDATA (coding->dst_object)
4962 : BYTE_POS_ADDR (coding->dst_pos_byte),
4963 coding->produced);
4964
4965 if (coding->produced)
4966 return -1;
4967 }
4968 start += coding->consumed_char;
4969 }
4970
4971 return 0;
4972 }
4973 \f
4974 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
4975 Sverify_visited_file_modtime, 1, 1, 0,
4976 doc: /* Return t if last mod time of BUF's visited file matches what BUF records.
4977 This means that the file has not been changed since it was visited or saved.
4978 See Info node `(elisp)Modification Time' for more details. */)
4979 (buf)
4980 Lisp_Object buf;
4981 {
4982 struct buffer *b;
4983 struct stat st;
4984 Lisp_Object handler;
4985 Lisp_Object filename;
4986
4987 CHECK_BUFFER (buf);
4988 b = XBUFFER (buf);
4989
4990 if (!STRINGP (b->filename)) return Qt;
4991 if (b->modtime == 0) return Qt;
4992
4993 /* If the file name has special constructs in it,
4994 call the corresponding file handler. */
4995 handler = Ffind_file_name_handler (b->filename,
4996 Qverify_visited_file_modtime);
4997 if (!NILP (handler))
4998 return call2 (handler, Qverify_visited_file_modtime, buf);
4999
5000 filename = ENCODE_FILE (b->filename);
5001
5002 if (stat (SDATA (filename), &st) < 0)
5003 {
5004 /* If the file doesn't exist now and didn't exist before,
5005 we say that it isn't modified, provided the error is a tame one. */
5006 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
5007 st.st_mtime = -1;
5008 else
5009 st.st_mtime = 0;
5010 }
5011 if ((st.st_mtime == b->modtime
5012 /* If both are positive, accept them if they are off by one second. */
5013 || (st.st_mtime > 0 && b->modtime > 0
5014 && (st.st_mtime == b->modtime + 1
5015 || st.st_mtime == b->modtime - 1)))
5016 && (st.st_size == b->modtime_size
5017 || b->modtime_size < 0))
5018 return Qt;
5019 return Qnil;
5020 }
5021
5022 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
5023 Sclear_visited_file_modtime, 0, 0, 0,
5024 doc: /* Clear out records of last mod time of visited file.
5025 Next attempt to save will certainly not complain of a discrepancy. */)
5026 ()
5027 {
5028 current_buffer->modtime = 0;
5029 current_buffer->modtime_size = -1;
5030 return Qnil;
5031 }
5032
5033 DEFUN ("visited-file-modtime", Fvisited_file_modtime,
5034 Svisited_file_modtime, 0, 0, 0,
5035 doc: /* Return the current buffer's recorded visited file modification time.
5036 The value is a list of the form (HIGH LOW), like the time values
5037 that `file-attributes' returns. If the current buffer has no recorded
5038 file modification time, this function returns 0.
5039 See Info node `(elisp)Modification Time' for more details. */)
5040 ()
5041 {
5042 if (! current_buffer->modtime)
5043 return make_number (0);
5044 return make_time ((time_t) current_buffer->modtime);
5045 }
5046
5047 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
5048 Sset_visited_file_modtime, 0, 1, 0,
5049 doc: /* Update buffer's recorded modification time from the visited file's time.
5050 Useful if the buffer was not read from the file normally
5051 or if the file itself has been changed for some known benign reason.
5052 An argument specifies the modification time value to use
5053 \(instead of that of the visited file), in the form of a list
5054 \(HIGH . LOW) or (HIGH LOW). */)
5055 (time_list)
5056 Lisp_Object time_list;
5057 {
5058 if (!NILP (time_list))
5059 {
5060 current_buffer->modtime = cons_to_long (time_list);
5061 current_buffer->modtime_size = -1;
5062 }
5063 else
5064 {
5065 register Lisp_Object filename;
5066 struct stat st;
5067 Lisp_Object handler;
5068
5069 filename = Fexpand_file_name (current_buffer->filename, Qnil);
5070
5071 /* If the file name has special constructs in it,
5072 call the corresponding file handler. */
5073 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
5074 if (!NILP (handler))
5075 /* The handler can find the file name the same way we did. */
5076 return call2 (handler, Qset_visited_file_modtime, Qnil);
5077
5078 filename = ENCODE_FILE (filename);
5079
5080 if (stat (SDATA (filename), &st) >= 0)
5081 {
5082 current_buffer->modtime = st.st_mtime;
5083 current_buffer->modtime_size = st.st_size;
5084 }
5085 }
5086
5087 return Qnil;
5088 }
5089 \f
5090 Lisp_Object
5091 auto_save_error (error)
5092 Lisp_Object error;
5093 {
5094 Lisp_Object args[3], msg;
5095 int i, nbytes;
5096 struct gcpro gcpro1;
5097 char *msgbuf;
5098 USE_SAFE_ALLOCA;
5099
5100 auto_save_error_occurred = 1;
5101
5102 ring_bell (XFRAME (selected_frame));
5103
5104 args[0] = build_string ("Auto-saving %s: %s");
5105 args[1] = current_buffer->name;
5106 args[2] = Ferror_message_string (error);
5107 msg = Fformat (3, args);
5108 GCPRO1 (msg);
5109 nbytes = SBYTES (msg);
5110 SAFE_ALLOCA (msgbuf, char *, nbytes);
5111 bcopy (SDATA (msg), msgbuf, nbytes);
5112
5113 for (i = 0; i < 3; ++i)
5114 {
5115 if (i == 0)
5116 message2 (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5117 else
5118 message2_nolog (msgbuf, nbytes, STRING_MULTIBYTE (msg));
5119 Fsleep_for (make_number (1), Qnil);
5120 }
5121
5122 SAFE_FREE ();
5123 UNGCPRO;
5124 return Qnil;
5125 }
5126
5127 Lisp_Object
5128 auto_save_1 ()
5129 {
5130 struct stat st;
5131 Lisp_Object modes;
5132
5133 auto_save_mode_bits = 0666;
5134
5135 /* Get visited file's mode to become the auto save file's mode. */
5136 if (! NILP (current_buffer->filename))
5137 {
5138 if (stat (SDATA (current_buffer->filename), &st) >= 0)
5139 /* But make sure we can overwrite it later! */
5140 auto_save_mode_bits = st.st_mode | 0600;
5141 else if ((modes = Ffile_modes (current_buffer->filename),
5142 INTEGERP (modes)))
5143 /* Remote files don't cooperate with stat. */
5144 auto_save_mode_bits = XINT (modes) | 0600;
5145 }
5146
5147 return
5148 Fwrite_region (Qnil, Qnil, current_buffer->auto_save_file_name, Qnil,
5149 NILP (Vauto_save_visited_file_name) ? Qlambda : Qt,
5150 Qnil, Qnil);
5151 }
5152
5153 static Lisp_Object
5154 do_auto_save_unwind (arg) /* used as unwind-protect function */
5155 Lisp_Object arg;
5156 {
5157 FILE *stream = (FILE *) XSAVE_VALUE (arg)->pointer;
5158 auto_saving = 0;
5159 if (stream != NULL)
5160 {
5161 BLOCK_INPUT;
5162 fclose (stream);
5163 UNBLOCK_INPUT;
5164 }
5165 return Qnil;
5166 }
5167
5168 static Lisp_Object
5169 do_auto_save_unwind_1 (value) /* used as unwind-protect function */
5170 Lisp_Object value;
5171 {
5172 minibuffer_auto_raise = XINT (value);
5173 return Qnil;
5174 }
5175
5176 static Lisp_Object
5177 do_auto_save_make_dir (dir)
5178 Lisp_Object dir;
5179 {
5180 Lisp_Object mode;
5181
5182 call2 (Qmake_directory, dir, Qt);
5183 XSETFASTINT (mode, 0700);
5184 return Fset_file_modes (dir, mode);
5185 }
5186
5187 static Lisp_Object
5188 do_auto_save_eh (ignore)
5189 Lisp_Object ignore;
5190 {
5191 return Qnil;
5192 }
5193
5194 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
5195 doc: /* Auto-save all buffers that need it.
5196 This is all buffers that have auto-saving enabled
5197 and are changed since last auto-saved.
5198 Auto-saving writes the buffer into a file
5199 so that your editing is not lost if the system crashes.
5200 This file is not the file you visited; that changes only when you save.
5201 Normally we run the normal hook `auto-save-hook' before saving.
5202
5203 A non-nil NO-MESSAGE argument means do not print any message if successful.
5204 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5205 (no_message, current_only)
5206 Lisp_Object no_message, current_only;
5207 {
5208 struct buffer *old = current_buffer, *b;
5209 Lisp_Object tail, buf;
5210 int auto_saved = 0;
5211 int do_handled_files;
5212 Lisp_Object oquit;
5213 FILE *stream = NULL;
5214 int count = SPECPDL_INDEX ();
5215 int orig_minibuffer_auto_raise = minibuffer_auto_raise;
5216 int old_message_p = 0;
5217 struct gcpro gcpro1, gcpro2;
5218
5219 if (max_specpdl_size < specpdl_size + 40)
5220 max_specpdl_size = specpdl_size + 40;
5221
5222 if (minibuf_level)
5223 no_message = Qt;
5224
5225 if (NILP (no_message))
5226 {
5227 old_message_p = push_message ();
5228 record_unwind_protect (pop_message_unwind, Qnil);
5229 }
5230
5231 /* Ordinarily don't quit within this function,
5232 but don't make it impossible to quit (in case we get hung in I/O). */
5233 oquit = Vquit_flag;
5234 Vquit_flag = Qnil;
5235
5236 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5237 point to non-strings reached from Vbuffer_alist. */
5238
5239 if (!NILP (Vrun_hooks))
5240 call1 (Vrun_hooks, intern ("auto-save-hook"));
5241
5242 if (STRINGP (Vauto_save_list_file_name))
5243 {
5244 Lisp_Object listfile;
5245
5246 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
5247
5248 /* Don't try to create the directory when shutting down Emacs,
5249 because creating the directory might signal an error, and
5250 that would leave Emacs in a strange state. */
5251 if (!NILP (Vrun_hooks))
5252 {
5253 Lisp_Object dir;
5254 dir = Qnil;
5255 GCPRO2 (dir, listfile);
5256 dir = Ffile_name_directory (listfile);
5257 if (NILP (Ffile_directory_p (dir)))
5258 internal_condition_case_1 (do_auto_save_make_dir,
5259 dir, Fcons (Fcons (Qfile_error, Qnil), Qnil),
5260 do_auto_save_eh);
5261 UNGCPRO;
5262 }
5263
5264 stream = fopen (SDATA (listfile), "w");
5265 }
5266
5267 record_unwind_protect (do_auto_save_unwind,
5268 make_save_value (stream, 0));
5269 record_unwind_protect (do_auto_save_unwind_1,
5270 make_number (minibuffer_auto_raise));
5271 minibuffer_auto_raise = 0;
5272 auto_saving = 1;
5273 auto_save_error_occurred = 0;
5274
5275 /* On first pass, save all files that don't have handlers.
5276 On second pass, save all files that do have handlers.
5277
5278 If Emacs is crashing, the handlers may tweak what is causing
5279 Emacs to crash in the first place, and it would be a shame if
5280 Emacs failed to autosave perfectly ordinary files because it
5281 couldn't handle some ange-ftp'd file. */
5282
5283 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
5284 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
5285 {
5286 buf = XCDR (XCAR (tail));
5287 b = XBUFFER (buf);
5288
5289 /* Record all the buffers that have auto save mode
5290 in the special file that lists them. For each of these buffers,
5291 Record visited name (if any) and auto save name. */
5292 if (STRINGP (b->auto_save_file_name)
5293 && stream != NULL && do_handled_files == 0)
5294 {
5295 BLOCK_INPUT;
5296 if (!NILP (b->filename))
5297 {
5298 fwrite (SDATA (b->filename), 1,
5299 SBYTES (b->filename), stream);
5300 }
5301 putc ('\n', stream);
5302 fwrite (SDATA (b->auto_save_file_name), 1,
5303 SBYTES (b->auto_save_file_name), stream);
5304 putc ('\n', stream);
5305 UNBLOCK_INPUT;
5306 }
5307
5308 if (!NILP (current_only)
5309 && b != current_buffer)
5310 continue;
5311
5312 /* Don't auto-save indirect buffers.
5313 The base buffer takes care of it. */
5314 if (b->base_buffer)
5315 continue;
5316
5317 /* Check for auto save enabled
5318 and file changed since last auto save
5319 and file changed since last real save. */
5320 if (STRINGP (b->auto_save_file_name)
5321 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
5322 && BUF_AUTOSAVE_MODIFF (b) < BUF_MODIFF (b)
5323 /* -1 means we've turned off autosaving for a while--see below. */
5324 && XINT (b->save_length) >= 0
5325 && (do_handled_files
5326 || NILP (Ffind_file_name_handler (b->auto_save_file_name,
5327 Qwrite_region))))
5328 {
5329 EMACS_TIME before_time, after_time;
5330
5331 EMACS_GET_TIME (before_time);
5332
5333 /* If we had a failure, don't try again for 20 minutes. */
5334 if (b->auto_save_failure_time >= 0
5335 && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200)
5336 continue;
5337
5338 set_buffer_internal (b);
5339 if (NILP (Vauto_save_include_big_deletions)
5340 && (XFASTINT (b->save_length) * 10
5341 > (BUF_Z (b) - BUF_BEG (b)) * 13)
5342 /* A short file is likely to change a large fraction;
5343 spare the user annoying messages. */
5344 && XFASTINT (b->save_length) > 5000
5345 /* These messages are frequent and annoying for `*mail*'. */
5346 && !EQ (b->filename, Qnil)
5347 && NILP (no_message))
5348 {
5349 /* It has shrunk too much; turn off auto-saving here. */
5350 minibuffer_auto_raise = orig_minibuffer_auto_raise;
5351 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5352 b->name, 1);
5353 minibuffer_auto_raise = 0;
5354 /* Turn off auto-saving until there's a real save,
5355 and prevent any more warnings. */
5356 XSETINT (b->save_length, -1);
5357 Fsleep_for (make_number (1), Qnil);
5358 continue;
5359 }
5360 if (!auto_saved && NILP (no_message))
5361 message1 ("Auto-saving...");
5362 internal_condition_case (auto_save_1, Qt, auto_save_error);
5363 auto_saved++;
5364 BUF_AUTOSAVE_MODIFF (b) = BUF_MODIFF (b);
5365 XSETFASTINT (current_buffer->save_length, Z - BEG);
5366 set_buffer_internal (old);
5367
5368 EMACS_GET_TIME (after_time);
5369
5370 /* If auto-save took more than 60 seconds,
5371 assume it was an NFS failure that got a timeout. */
5372 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
5373 b->auto_save_failure_time = EMACS_SECS (after_time);
5374 }
5375 }
5376
5377 /* Prevent another auto save till enough input events come in. */
5378 record_auto_save ();
5379
5380 if (auto_saved && NILP (no_message))
5381 {
5382 if (old_message_p)
5383 {
5384 /* If we are going to restore an old message,
5385 give time to read ours. */
5386 sit_for (make_number (1), 0, 0);
5387 restore_message ();
5388 }
5389 else if (!auto_save_error_occurred)
5390 /* Don't overwrite the error message if an error occurred.
5391 If we displayed a message and then restored a state
5392 with no message, leave a "done" message on the screen. */
5393 message1 ("Auto-saving...done");
5394 }
5395
5396 Vquit_flag = oquit;
5397
5398 /* This restores the message-stack status. */
5399 unbind_to (count, Qnil);
5400 return Qnil;
5401 }
5402
5403 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
5404 Sset_buffer_auto_saved, 0, 0, 0,
5405 doc: /* Mark current buffer as auto-saved with its current text.
5406 No auto-save file will be written until the buffer changes again. */)
5407 ()
5408 {
5409 /* FIXME: This should not be called in indirect buffers, since
5410 they're not autosaved. */
5411 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
5412 XSETFASTINT (current_buffer->save_length, Z - BEG);
5413 current_buffer->auto_save_failure_time = -1;
5414 return Qnil;
5415 }
5416
5417 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
5418 Sclear_buffer_auto_save_failure, 0, 0, 0,
5419 doc: /* Clear any record of a recent auto-save failure in the current buffer. */)
5420 ()
5421 {
5422 current_buffer->auto_save_failure_time = -1;
5423 return Qnil;
5424 }
5425
5426 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
5427 0, 0, 0,
5428 doc: /* Return t if current buffer has been auto-saved recently.
5429 More precisely, if it has been auto-saved since last read from or saved
5430 in the visited file. If the buffer has no visited file,
5431 then any auto-save counts as "recent". */)
5432 ()
5433 {
5434 /* FIXME: maybe we should return nil for indirect buffers since
5435 they're never autosaved. */
5436 return (SAVE_MODIFF < BUF_AUTOSAVE_MODIFF (current_buffer) ? Qt : Qnil);
5437 }
5438 \f
5439 /* Reading and completing file names */
5440
5441 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p,
5442 Snext_read_file_uses_dialog_p, 0, 0, 0,
5443 doc: /* Return t if a call to `read-file-name' will use a dialog.
5444 The return value is only relevant for a call to `read-file-name' that happens
5445 before any other event (mouse or keypress) is handled. */)
5446 ()
5447 {
5448 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK)
5449 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
5450 && use_dialog_box
5451 && use_file_dialog
5452 && have_menus_p ())
5453 return Qt;
5454 #endif
5455 return Qnil;
5456 }
5457
5458 Lisp_Object
5459 Fread_file_name (prompt, dir, default_filename, mustmatch, initial, predicate)
5460 Lisp_Object prompt, dir, default_filename, mustmatch, initial, predicate;
5461 {
5462 struct gcpro gcpro1, gcpro2;
5463 Lisp_Object args[7];
5464
5465 GCPRO1 (default_filename);
5466 args[0] = intern ("read-file-name");
5467 args[1] = prompt;
5468 args[2] = dir;
5469 args[3] = default_filename;
5470 args[4] = mustmatch;
5471 args[5] = initial;
5472 args[6] = predicate;
5473 RETURN_UNGCPRO (Ffuncall (7, args));
5474 }
5475
5476 \f
5477 void
5478 syms_of_fileio ()
5479 {
5480 Qoperations = intern_c_string ("operations");
5481 Qexpand_file_name = intern_c_string ("expand-file-name");
5482 Qsubstitute_in_file_name = intern_c_string ("substitute-in-file-name");
5483 Qdirectory_file_name = intern_c_string ("directory-file-name");
5484 Qfile_name_directory = intern_c_string ("file-name-directory");
5485 Qfile_name_nondirectory = intern_c_string ("file-name-nondirectory");
5486 Qunhandled_file_name_directory = intern_c_string ("unhandled-file-name-directory");
5487 Qfile_name_as_directory = intern_c_string ("file-name-as-directory");
5488 Qcopy_file = intern_c_string ("copy-file");
5489 Qmake_directory_internal = intern_c_string ("make-directory-internal");
5490 Qmake_directory = intern_c_string ("make-directory");
5491 Qdelete_directory_internal = intern_c_string ("delete-directory-internal");
5492 Qdelete_file = intern_c_string ("delete-file");
5493 Qrename_file = intern_c_string ("rename-file");
5494 Qadd_name_to_file = intern_c_string ("add-name-to-file");
5495 Qmake_symbolic_link = intern_c_string ("make-symbolic-link");
5496 Qfile_exists_p = intern_c_string ("file-exists-p");
5497 Qfile_executable_p = intern_c_string ("file-executable-p");
5498 Qfile_readable_p = intern_c_string ("file-readable-p");
5499 Qfile_writable_p = intern_c_string ("file-writable-p");
5500 Qfile_symlink_p = intern_c_string ("file-symlink-p");
5501 Qaccess_file = intern_c_string ("access-file");
5502 Qfile_directory_p = intern_c_string ("file-directory-p");
5503 Qfile_regular_p = intern_c_string ("file-regular-p");
5504 Qfile_accessible_directory_p = intern_c_string ("file-accessible-directory-p");
5505 Qfile_modes = intern_c_string ("file-modes");
5506 Qset_file_modes = intern_c_string ("set-file-modes");
5507 Qset_file_times = intern_c_string ("set-file-times");
5508 Qfile_newer_than_file_p = intern_c_string ("file-newer-than-file-p");
5509 Qinsert_file_contents = intern_c_string ("insert-file-contents");
5510 Qwrite_region = intern_c_string ("write-region");
5511 Qverify_visited_file_modtime = intern_c_string ("verify-visited-file-modtime");
5512 Qset_visited_file_modtime = intern_c_string ("set-visited-file-modtime");
5513 Qauto_save_coding = intern_c_string ("auto-save-coding");
5514
5515 staticpro (&Qoperations);
5516 staticpro (&Qexpand_file_name);
5517 staticpro (&Qsubstitute_in_file_name);
5518 staticpro (&Qdirectory_file_name);
5519 staticpro (&Qfile_name_directory);
5520 staticpro (&Qfile_name_nondirectory);
5521 staticpro (&Qunhandled_file_name_directory);
5522 staticpro (&Qfile_name_as_directory);
5523 staticpro (&Qcopy_file);
5524 staticpro (&Qmake_directory_internal);
5525 staticpro (&Qmake_directory);
5526 staticpro (&Qdelete_directory_internal);
5527 staticpro (&Qdelete_file);
5528 staticpro (&Qrename_file);
5529 staticpro (&Qadd_name_to_file);
5530 staticpro (&Qmake_symbolic_link);
5531 staticpro (&Qfile_exists_p);
5532 staticpro (&Qfile_executable_p);
5533 staticpro (&Qfile_readable_p);
5534 staticpro (&Qfile_writable_p);
5535 staticpro (&Qaccess_file);
5536 staticpro (&Qfile_symlink_p);
5537 staticpro (&Qfile_directory_p);
5538 staticpro (&Qfile_regular_p);
5539 staticpro (&Qfile_accessible_directory_p);
5540 staticpro (&Qfile_modes);
5541 staticpro (&Qset_file_modes);
5542 staticpro (&Qset_file_times);
5543 staticpro (&Qfile_newer_than_file_p);
5544 staticpro (&Qinsert_file_contents);
5545 staticpro (&Qwrite_region);
5546 staticpro (&Qverify_visited_file_modtime);
5547 staticpro (&Qset_visited_file_modtime);
5548 staticpro (&Qauto_save_coding);
5549
5550 Qfile_name_history = intern_c_string ("file-name-history");
5551 Fset (Qfile_name_history, Qnil);
5552 staticpro (&Qfile_name_history);
5553
5554 Qfile_error = intern_c_string ("file-error");
5555 staticpro (&Qfile_error);
5556 Qfile_already_exists = intern_c_string ("file-already-exists");
5557 staticpro (&Qfile_already_exists);
5558 Qfile_date_error = intern_c_string ("file-date-error");
5559 staticpro (&Qfile_date_error);
5560 Qexcl = intern_c_string ("excl");
5561 staticpro (&Qexcl);
5562
5563 #ifdef DOS_NT
5564 Qfind_buffer_file_type = intern_c_string ("find-buffer-file-type");
5565 staticpro (&Qfind_buffer_file_type);
5566 #endif /* DOS_NT */
5567
5568 DEFVAR_LISP ("file-name-coding-system", &Vfile_name_coding_system,
5569 doc: /* *Coding system for encoding file names.
5570 If it is nil, `default-file-name-coding-system' (which see) is used. */);
5571 Vfile_name_coding_system = Qnil;
5572
5573 DEFVAR_LISP ("default-file-name-coding-system",
5574 &Vdefault_file_name_coding_system,
5575 doc: /* Default coding system for encoding file names.
5576 This variable is used only when `file-name-coding-system' is nil.
5577
5578 This variable is set/changed by the command `set-language-environment'.
5579 User should not set this variable manually,
5580 instead use `file-name-coding-system' to get a constant encoding
5581 of file names regardless of the current language environment. */);
5582 Vdefault_file_name_coding_system = Qnil;
5583
5584 Qformat_decode = intern_c_string ("format-decode");
5585 staticpro (&Qformat_decode);
5586 Qformat_annotate_function = intern_c_string ("format-annotate-function");
5587 staticpro (&Qformat_annotate_function);
5588 Qafter_insert_file_set_coding = intern_c_string ("after-insert-file-set-coding");
5589 staticpro (&Qafter_insert_file_set_coding);
5590
5591 Qcar_less_than_car = intern_c_string ("car-less-than-car");
5592 staticpro (&Qcar_less_than_car);
5593
5594 Fput (Qfile_error, Qerror_conditions,
5595 Fpurecopy (list2 (Qfile_error, Qerror)));
5596 Fput (Qfile_error, Qerror_message,
5597 make_pure_c_string ("File error"));
5598
5599 Fput (Qfile_already_exists, Qerror_conditions,
5600 Fpurecopy (list3 (Qfile_already_exists, Qfile_error, Qerror)));
5601 Fput (Qfile_already_exists, Qerror_message,
5602 make_pure_c_string ("File already exists"));
5603
5604 Fput (Qfile_date_error, Qerror_conditions,
5605 Fpurecopy (list3 (Qfile_date_error, Qfile_error, Qerror)));
5606 Fput (Qfile_date_error, Qerror_message,
5607 make_pure_c_string ("Cannot set file date"));
5608
5609 DEFVAR_LISP ("directory-sep-char", &Vdirectory_sep_char,
5610 doc: /* Directory separator character for built-in functions that return file names.
5611 The value is always ?/. Don't use this variable, just use `/'. */);
5612 XSETFASTINT (Vdirectory_sep_char, '/');
5613
5614 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist,
5615 doc: /* *Alist of elements (REGEXP . HANDLER) for file names handled specially.
5616 If a file name matches REGEXP, then all I/O on that file is done by calling
5617 HANDLER.
5618
5619 The first argument given to HANDLER is the name of the I/O primitive
5620 to be handled; the remaining arguments are the arguments that were
5621 passed to that primitive. For example, if you do
5622 (file-exists-p FILENAME)
5623 and FILENAME is handled by HANDLER, then HANDLER is called like this:
5624 (funcall HANDLER 'file-exists-p FILENAME)
5625 The function `find-file-name-handler' checks this list for a handler
5626 for its argument. */);
5627 Vfile_name_handler_alist = Qnil;
5628
5629 DEFVAR_LISP ("set-auto-coding-function",
5630 &Vset_auto_coding_function,
5631 doc: /* If non-nil, a function to call to decide a coding system of file.
5632 Two arguments are passed to this function: the file name
5633 and the length of a file contents following the point.
5634 This function should return a coding system to decode the file contents.
5635 It should check the file name against `auto-coding-alist'.
5636 If no coding system is decided, it should check a coding system
5637 specified in the heading lines with the format:
5638 -*- ... coding: CODING-SYSTEM; ... -*-
5639 or local variable spec of the tailing lines with `coding:' tag. */);
5640 Vset_auto_coding_function = Qnil;
5641
5642 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions,
5643 doc: /* A list of functions to be called at the end of `insert-file-contents'.
5644 Each is passed one argument, the number of characters inserted,
5645 with point at the start of the inserted text. Each function
5646 should leave point the same, and return the new character count.
5647 If `insert-file-contents' is intercepted by a handler from
5648 `file-name-handler-alist', that handler is responsible for calling the
5649 functions in `after-insert-file-functions' if appropriate. */);
5650 Vafter_insert_file_functions = Qnil;
5651
5652 DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions,
5653 doc: /* A list of functions to be called at the start of `write-region'.
5654 Each is passed two arguments, START and END as for `write-region'.
5655 These are usually two numbers but not always; see the documentation
5656 for `write-region'. The function should return a list of pairs
5657 of the form (POSITION . STRING), consisting of strings to be effectively
5658 inserted at the specified positions of the file being written (1 means to
5659 insert before the first byte written). The POSITIONs must be sorted into
5660 increasing order.
5661
5662 If there are several annotation functions, the lists returned by these
5663 functions are merged destructively. As each annotation function runs,
5664 the variable `write-region-annotations-so-far' contains a list of all
5665 annotations returned by previous annotation functions.
5666
5667 An annotation function can return with a different buffer current.
5668 Doing so removes the annotations returned by previous functions, and
5669 resets START and END to `point-min' and `point-max' of the new buffer.
5670
5671 After `write-region' completes, Emacs calls the function stored in
5672 `write-region-post-annotation-function', once for each buffer that was
5673 current when building the annotations (i.e., at least once), with that
5674 buffer current. */);
5675 Vwrite_region_annotate_functions = Qnil;
5676 staticpro (&Qwrite_region_annotate_functions);
5677 Qwrite_region_annotate_functions
5678 = intern_c_string ("write-region-annotate-functions");
5679
5680 DEFVAR_LISP ("write-region-post-annotation-function",
5681 &Vwrite_region_post_annotation_function,
5682 doc: /* Function to call after `write-region' completes.
5683 The function is called with no arguments. If one or more of the
5684 annotation functions in `write-region-annotate-functions' changed the
5685 current buffer, the function stored in this variable is called for
5686 each of those additional buffers as well, in addition to the original
5687 buffer. The relevant buffer is current during each function call. */);
5688 Vwrite_region_post_annotation_function = Qnil;
5689 staticpro (&Vwrite_region_annotation_buffers);
5690
5691 DEFVAR_LISP ("write-region-annotations-so-far",
5692 &Vwrite_region_annotations_so_far,
5693 doc: /* When an annotation function is called, this holds the previous annotations.
5694 These are the annotations made by other annotation functions
5695 that were already called. See also `write-region-annotate-functions'. */);
5696 Vwrite_region_annotations_so_far = Qnil;
5697
5698 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers,
5699 doc: /* A list of file name handlers that temporarily should not be used.
5700 This applies only to the operation `inhibit-file-name-operation'. */);
5701 Vinhibit_file_name_handlers = Qnil;
5702
5703 DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation,
5704 doc: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
5705 Vinhibit_file_name_operation = Qnil;
5706
5707 DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name,
5708 doc: /* File name in which we write a list of all auto save file names.
5709 This variable is initialized automatically from `auto-save-list-file-prefix'
5710 shortly after Emacs reads your `.emacs' file, if you have not yet given it
5711 a non-nil value. */);
5712 Vauto_save_list_file_name = Qnil;
5713
5714 DEFVAR_LISP ("auto-save-visited-file-name", &Vauto_save_visited_file_name,
5715 doc: /* Non-nil says auto-save a buffer in the file it is visiting, when practical.
5716 Normally auto-save files are written under other names. */);
5717 Vauto_save_visited_file_name = Qnil;
5718
5719 DEFVAR_LISP ("auto-save-include-big-deletions", &Vauto_save_include_big_deletions,
5720 doc: /* If non-nil, auto-save even if a large part of the text is deleted.
5721 If nil, deleting a substantial portion of the text disables auto-save
5722 in the buffer; this is the default behavior, because the auto-save
5723 file is usually more useful if it contains the deleted text. */);
5724 Vauto_save_include_big_deletions = Qnil;
5725
5726 #ifdef HAVE_FSYNC
5727 DEFVAR_BOOL ("write-region-inhibit-fsync", &write_region_inhibit_fsync,
5728 doc: /* *Non-nil means don't call fsync in `write-region'.
5729 This variable affects calls to `write-region' as well as save commands.
5730 A non-nil value may result in data loss! */);
5731 write_region_inhibit_fsync = 0;
5732 #endif
5733
5734 DEFVAR_BOOL ("delete-by-moving-to-trash", &delete_by_moving_to_trash,
5735 doc: /* Specifies whether to use the system's trash can.
5736 When non-nil, the function `move-file-to-trash' will be used by
5737 `delete-file' and `delete-directory'. */);
5738 delete_by_moving_to_trash = 0;
5739 Qdelete_by_moving_to_trash = intern_c_string ("delete-by-moving-to-trash");
5740 Qmove_file_to_trash = intern_c_string ("move-file-to-trash");
5741 staticpro (&Qmove_file_to_trash);
5742 Qcopy_directory = intern_c_string ("copy-directory");
5743 staticpro (&Qcopy_directory);
5744 Qdelete_directory = intern_c_string ("delete-directory");
5745 staticpro (&Qdelete_directory);
5746
5747 defsubr (&Sfind_file_name_handler);
5748 defsubr (&Sfile_name_directory);
5749 defsubr (&Sfile_name_nondirectory);
5750 defsubr (&Sunhandled_file_name_directory);
5751 defsubr (&Sfile_name_as_directory);
5752 defsubr (&Sdirectory_file_name);
5753 defsubr (&Smake_temp_name);
5754 defsubr (&Sexpand_file_name);
5755 defsubr (&Ssubstitute_in_file_name);
5756 defsubr (&Scopy_file);
5757 defsubr (&Smake_directory_internal);
5758 defsubr (&Sdelete_directory_internal);
5759 defsubr (&Sdelete_file);
5760 defsubr (&Srename_file);
5761 defsubr (&Sadd_name_to_file);
5762 defsubr (&Smake_symbolic_link);
5763 defsubr (&Sfile_name_absolute_p);
5764 defsubr (&Sfile_exists_p);
5765 defsubr (&Sfile_executable_p);
5766 defsubr (&Sfile_readable_p);
5767 defsubr (&Sfile_writable_p);
5768 defsubr (&Saccess_file);
5769 defsubr (&Sfile_symlink_p);
5770 defsubr (&Sfile_directory_p);
5771 defsubr (&Sfile_accessible_directory_p);
5772 defsubr (&Sfile_regular_p);
5773 defsubr (&Sfile_modes);
5774 defsubr (&Sset_file_modes);
5775 defsubr (&Sset_file_times);
5776 defsubr (&Sset_default_file_modes);
5777 defsubr (&Sdefault_file_modes);
5778 defsubr (&Sfile_newer_than_file_p);
5779 defsubr (&Sinsert_file_contents);
5780 defsubr (&Swrite_region);
5781 defsubr (&Scar_less_than_car);
5782 defsubr (&Sverify_visited_file_modtime);
5783 defsubr (&Sclear_visited_file_modtime);
5784 defsubr (&Svisited_file_modtime);
5785 defsubr (&Sset_visited_file_modtime);
5786 defsubr (&Sdo_auto_save);
5787 defsubr (&Sset_buffer_auto_saved);
5788 defsubr (&Sclear_buffer_auto_save_failure);
5789 defsubr (&Srecent_auto_save_p);
5790
5791 defsubr (&Snext_read_file_uses_dialog_p);
5792
5793 #ifdef HAVE_SYNC
5794 defsubr (&Sunix_sync);
5795 #endif
5796 }
5797
5798 /* arch-tag: 64ba3fd7-f844-4fb2-ba4b-427eb928786c
5799 (do not change this comment) */