Mercurial > hg > xemacs-beta
annotate src/fileio.c @ 4466:969a957a44ac
Prevent #'batch-texinfo-format choking on man/internals/internals.texi
2008-05-21 Aidan Kehoe <kehoea@parhasard.net>
* internals/internals.texi (Ben's README):
Add a couple of @itemize / @end itemize pairs, to prevent
#'batch-texinfo-format choking on the input.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 21 May 2008 21:07:26 +0200 |
parents | 732b87cfabf2 |
children | eb82259f265d |
rev | line source |
---|---|
428 | 1 /* File IO for XEmacs. |
2 Copyright (C) 1985-1988, 1992-1995 Free Software Foundation, Inc. | |
2367 | 3 Copyright (C) 1996, 2001, 2002, 2003, 2004 Ben Wing. |
428 | 4 |
5 This file is part of XEmacs. | |
6 | |
7 XEmacs is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
9 Free Software Foundation; either version 2, or (at your option) any | |
10 later version. | |
11 | |
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with XEmacs; see the file COPYING. If not, write to | |
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
20 Boston, MA 02111-1307, USA. */ | |
21 | |
22 /* Synched up with: Mule 2.0, FSF 19.30. */ | |
771 | 23 /* More syncing: FSF Emacs 19.34.6 by Marc Paquette <marcpa@cam.org> |
24 (Note: Sync messages from Marc Paquette may indicate | |
25 incomplete synching, so beware.) */ | |
2526 | 26 /* Some functions synched with FSF 21.0.103. */ |
771 | 27 /* Mule-ized completely except for the #if 0-code including decrypt-string |
28 and encrypt-string. --ben 7-2-00 */ | |
1333 | 29 /* #if 0-code Mule-ized, 2-22-03. --ben */ |
771 | 30 |
428 | 31 |
32 #include <config.h> | |
33 #include "lisp.h" | |
34 | |
35 #include "buffer.h" | |
800 | 36 #include "device.h" |
428 | 37 #include "events.h" |
800 | 38 #include "file-coding.h" |
428 | 39 #include "frame.h" |
40 #include "insdel.h" | |
41 #include "lstream.h" | |
2526 | 42 #include "profile.h" |
872 | 43 #include "process.h" |
428 | 44 #include "redisplay.h" |
45 #include "sysdep.h" | |
872 | 46 #include "window-impl.h" |
771 | 47 |
428 | 48 #include "sysfile.h" |
49 #include "sysproc.h" | |
50 #include "syspwd.h" | |
51 #include "systime.h" | |
52 #include "sysdir.h" | |
53 | |
54 #ifdef HPUX | |
55 #include <netio.h> | |
56 #ifdef HPUX_PRE_8_0 | |
57 #include <errnet.h> | |
58 #endif /* HPUX_PRE_8_0 */ | |
59 #endif /* HPUX */ | |
60 | |
1315 | 61 #ifdef WIN32_ANY |
657 | 62 #define WIN32_FILENAMES |
771 | 63 #include "syswindows.h" |
428 | 64 #define IS_DRIVE(x) isalpha (x) |
65 /* Need to lower-case the drive letter, or else expanded | |
66 filenames will sometimes compare inequal, because | |
67 `expand-file-name' doesn't always down-case the drive letter. */ | |
68 #define DRIVE_LETTER(x) tolower (x) | |
657 | 69 #endif /* WIN32_NATIVE || CYGWIN */ |
428 | 70 |
71 int lisp_to_time (Lisp_Object, time_t *); | |
72 Lisp_Object time_to_lisp (time_t); | |
73 | |
74 /* Nonzero during writing of auto-save files */ | |
75 static int auto_saving; | |
76 | |
77 /* Set by auto_save_1 to mode of original file so Fwrite_region_internal | |
78 will create a new file with the same mode as the original */ | |
79 static int auto_save_mode_bits; | |
80 | |
81 /* Alist of elements (REGEXP . HANDLER) for file names | |
82 whose I/O is done with a special handler. */ | |
83 Lisp_Object Vfile_name_handler_alist; | |
84 | |
85 /* Format for auto-save files */ | |
86 Lisp_Object Vauto_save_file_format; | |
87 | |
88 /* Lisp functions for translating file formats */ | |
89 Lisp_Object Qformat_decode, Qformat_annotate_function; | |
90 | |
91 /* Functions to be called to process text properties in inserted file. */ | |
92 Lisp_Object Vafter_insert_file_functions; | |
93 | |
94 /* Functions to be called to create text property annotations for file. */ | |
95 Lisp_Object Vwrite_region_annotate_functions; | |
96 | |
97 /* During build_annotations, each time an annotation function is called, | |
98 this holds the annotations made by the previous functions. */ | |
99 Lisp_Object Vwrite_region_annotations_so_far; | |
100 | |
101 /* File name in which we write a list of all our auto save files. */ | |
102 Lisp_Object Vauto_save_list_file_name; | |
103 | |
444 | 104 /* Prefix used to construct Vauto_save_list_file_name. */ |
105 Lisp_Object Vauto_save_list_file_prefix; | |
106 | |
107 /* When non-nil, it prevents auto-save list file creation. */ | |
108 int inhibit_auto_save_session; | |
109 | |
428 | 110 int disable_auto_save_when_buffer_shrinks; |
111 | |
112 Lisp_Object Vdirectory_sep_char; | |
113 | |
114 /* These variables describe handlers that have "already" had a chance | |
115 to handle the current operation. | |
116 | |
117 Vinhibit_file_name_handlers is a list of file name handlers. | |
118 Vinhibit_file_name_operation is the operation being handled. | |
119 If we try to handle that operation, we ignore those handlers. */ | |
120 | |
121 static Lisp_Object Vinhibit_file_name_handlers; | |
122 static Lisp_Object Vinhibit_file_name_operation; | |
123 | |
563 | 124 Lisp_Object Qfile_already_exists; |
4266 | 125 Lisp_Object Qexcl; |
428 | 126 |
127 Lisp_Object Qauto_save_hook; | |
128 Lisp_Object Qauto_save_error; | |
129 Lisp_Object Qauto_saving; | |
130 | |
131 Lisp_Object Qcar_less_than_car; | |
132 | |
133 Lisp_Object Qcompute_buffer_file_truename; | |
134 | |
2526 | 135 Lisp_Object QSin_expand_file_name; |
136 | |
428 | 137 EXFUN (Frunning_temacs_p, 0); |
138 | |
563 | 139 /* DATA can be anything acceptable to signal_error (). |
140 */ | |
141 | |
142 DOESNT_RETURN | |
143 report_file_type_error (Lisp_Object errtype, Lisp_Object oserrmess, | |
867 | 144 const CIbyte *string, Lisp_Object data) |
563 | 145 { |
146 struct gcpro gcpro1; | |
147 Lisp_Object errdata = build_error_data (NULL, data); | |
148 | |
149 GCPRO1 (errdata); | |
771 | 150 errdata = Fcons (build_msg_string (string), |
563 | 151 Fcons (oserrmess, errdata)); |
152 signal_error_1 (errtype, errdata); | |
801 | 153 /* UNGCPRO; not reached */ |
563 | 154 } |
155 | |
156 DOESNT_RETURN | |
157 report_error_with_errno (Lisp_Object errtype, | |
867 | 158 const CIbyte *string, Lisp_Object data) |
563 | 159 { |
160 report_file_type_error (errtype, lisp_strerror (errno), string, data); | |
161 } | |
162 | |
428 | 163 /* signal a file error when errno contains a meaningful value. */ |
164 | |
165 DOESNT_RETURN | |
867 | 166 report_file_error (const CIbyte *string, Lisp_Object data) |
428 | 167 { |
563 | 168 report_error_with_errno (Qfile_error, string, data); |
428 | 169 } |
170 | |
171 | |
172 /* Just like strerror(3), except return a lisp string instead of char *. | |
173 The string needs to be converted since it may be localized. | |
771 | 174 */ |
428 | 175 Lisp_Object |
176 lisp_strerror (int errnum) | |
177 { | |
771 | 178 Extbyte *ret = strerror (errnum); |
179 if (!ret) | |
180 { | |
867 | 181 Ibyte ffff[99]; |
771 | 182 qxesprintf (ffff, "Unknown error %d", errnum); |
183 return build_intstring (ffff); | |
184 } | |
185 return build_ext_string (ret, Qstrerror_encoding); | |
428 | 186 } |
187 | |
188 static Lisp_Object | |
189 close_file_unwind (Lisp_Object fd) | |
190 { | |
191 if (CONSP (fd)) | |
192 { | |
193 if (INTP (XCAR (fd))) | |
771 | 194 retry_close (XINT (XCAR (fd))); |
428 | 195 |
853 | 196 free_cons (fd); |
428 | 197 } |
198 else | |
771 | 199 retry_close (XINT (fd)); |
428 | 200 |
201 return Qnil; | |
202 } | |
203 | |
204 static Lisp_Object | |
205 delete_stream_unwind (Lisp_Object stream) | |
206 { | |
207 Lstream_delete (XLSTREAM (stream)); | |
208 return Qnil; | |
209 } | |
210 | |
211 /* Restore point, having saved it as a marker. */ | |
212 | |
213 static Lisp_Object | |
214 restore_point_unwind (Lisp_Object point_marker) | |
215 { | |
216 BUF_SET_PT (current_buffer, marker_position (point_marker)); | |
217 return Fset_marker (point_marker, Qnil, Qnil); | |
218 } | |
219 | |
220 | |
221 Lisp_Object Qexpand_file_name; | |
222 Lisp_Object Qfile_truename; | |
223 Lisp_Object Qsubstitute_in_file_name; | |
224 Lisp_Object Qdirectory_file_name; | |
225 Lisp_Object Qfile_name_directory; | |
226 Lisp_Object Qfile_name_nondirectory; | |
996 | 227 Lisp_Object Qfile_name_sans_extension; |
428 | 228 Lisp_Object Qunhandled_file_name_directory; |
229 Lisp_Object Qfile_name_as_directory; | |
230 Lisp_Object Qcopy_file; | |
231 Lisp_Object Qmake_directory_internal; | |
232 Lisp_Object Qdelete_directory; | |
233 Lisp_Object Qdelete_file; | |
234 Lisp_Object Qrename_file; | |
235 Lisp_Object Qadd_name_to_file; | |
236 Lisp_Object Qmake_symbolic_link; | |
844 | 237 Lisp_Object Qmake_temp_name; |
428 | 238 Lisp_Object Qfile_exists_p; |
239 Lisp_Object Qfile_executable_p; | |
240 Lisp_Object Qfile_readable_p; | |
241 Lisp_Object Qfile_symlink_p; | |
242 Lisp_Object Qfile_writable_p; | |
243 Lisp_Object Qfile_directory_p; | |
244 Lisp_Object Qfile_regular_p; | |
245 Lisp_Object Qfile_accessible_directory_p; | |
246 Lisp_Object Qfile_modes; | |
247 Lisp_Object Qset_file_modes; | |
248 Lisp_Object Qfile_newer_than_file_p; | |
249 Lisp_Object Qinsert_file_contents; | |
250 Lisp_Object Qwrite_region; | |
251 Lisp_Object Qverify_visited_file_modtime; | |
252 Lisp_Object Qset_visited_file_modtime; | |
253 | |
254 /* If FILENAME is handled specially on account of its syntax, | |
255 return its handler function. Otherwise, return nil. */ | |
256 | |
257 DEFUN ("find-file-name-handler", Ffind_file_name_handler, 1, 2, 0, /* | |
258 Return FILENAME's handler function for OPERATION, if it has one. | |
259 Otherwise, return nil. | |
260 A file name is handled if one of the regular expressions in | |
261 `file-name-handler-alist' matches it. | |
262 | |
263 If OPERATION equals `inhibit-file-name-operation', then we ignore | |
264 any handlers that are members of `inhibit-file-name-handlers', | |
265 but we still do run any other handlers. This lets handlers | |
266 use the standard functions without calling themselves recursively. | |
751 | 267 |
268 Otherwise, OPERATION is the name of a funcall'able function. | |
428 | 269 */ |
270 (filename, operation)) | |
271 { | |
272 /* This function does not GC */ | |
273 /* This function can be called during GC */ | |
274 /* This function must not munge the match data. */ | |
2367 | 275 Lisp_Object inhibited_handlers; |
428 | 276 |
277 CHECK_STRING (filename); | |
278 | |
279 if (EQ (operation, Vinhibit_file_name_operation)) | |
280 inhibited_handlers = Vinhibit_file_name_handlers; | |
281 else | |
282 inhibited_handlers = Qnil; | |
283 | |
2367 | 284 { |
285 EXTERNAL_LIST_LOOP_2 (elt, Vfile_name_handler_alist) | |
286 { | |
287 if (CONSP (elt)) | |
288 { | |
289 Lisp_Object string = XCAR (elt); | |
290 if (STRINGP (string) | |
291 && (fast_lisp_string_match (string, filename) >= 0)) | |
292 { | |
293 Lisp_Object handler = XCDR (elt); | |
294 if (NILP (Fmemq (handler, inhibited_handlers))) | |
295 return handler; | |
296 } | |
297 } | |
298 } | |
299 } | |
428 | 300 return Qnil; |
301 } | |
302 | |
303 static Lisp_Object | |
304 call2_check_string (Lisp_Object fn, Lisp_Object arg0, Lisp_Object arg1) | |
305 { | |
306 /* This function can call lisp */ | |
307 Lisp_Object result = call2 (fn, arg0, arg1); | |
308 CHECK_STRING (result); | |
309 return result; | |
310 } | |
311 | |
312 static Lisp_Object | |
313 call2_check_string_or_nil (Lisp_Object fn, Lisp_Object arg0, Lisp_Object arg1) | |
314 { | |
315 /* This function can call lisp */ | |
316 Lisp_Object result = call2 (fn, arg0, arg1); | |
317 if (!NILP (result)) | |
318 CHECK_STRING (result); | |
319 return result; | |
320 } | |
321 | |
322 static Lisp_Object | |
323 call3_check_string (Lisp_Object fn, Lisp_Object arg0, | |
324 Lisp_Object arg1, Lisp_Object arg2) | |
325 { | |
326 /* This function can call lisp */ | |
327 Lisp_Object result = call3 (fn, arg0, arg1, arg2); | |
328 CHECK_STRING (result); | |
329 return result; | |
330 } | |
331 | |
332 | |
2526 | 333 |
334 Ibyte * | |
335 find_end_of_directory_component (const Ibyte *path, Bytecount len) | |
336 { | |
337 const Ibyte *p = path + len; | |
338 | |
339 while (p != path && !IS_DIRECTORY_SEP (p[-1]) | |
340 #ifdef WIN32_FILENAMES | |
341 /* only recognise drive specifier at the beginning */ | |
342 && !(p[-1] == ':' | |
343 /* handle the "/:d:foo" and "/:foo" cases correctly */ | |
344 && ((p == path + 2 && !IS_DIRECTORY_SEP (*path)) | |
345 || (p == path + 4 && IS_DIRECTORY_SEP (*path)))) | |
346 #endif | |
347 ) p--; | |
348 | |
349 return (Ibyte *) p; | |
350 } | |
351 | |
428 | 352 DEFUN ("file-name-directory", Ffile_name_directory, 1, 1, 0, /* |
444 | 353 Return the directory component in file name FILENAME. |
354 Return nil if FILENAME does not include a directory. | |
428 | 355 Otherwise return a directory spec. |
356 Given a Unix syntax file name, returns a string ending in slash. | |
357 */ | |
444 | 358 (filename)) |
428 | 359 { |
442 | 360 /* This function can GC. GC checked 2000-07-28 ben */ |
771 | 361 /* This function synched with Emacs 21.0.103. */ |
867 | 362 Ibyte *beg; |
363 Ibyte *p; | |
428 | 364 Lisp_Object handler; |
365 | |
444 | 366 CHECK_STRING (filename); |
428 | 367 |
368 /* If the file name has special constructs in it, | |
369 call the corresponding file handler. */ | |
444 | 370 handler = Ffind_file_name_handler (filename, Qfile_name_directory); |
428 | 371 if (!NILP (handler)) |
444 | 372 return call2_check_string_or_nil (handler, Qfile_name_directory, filename); |
428 | 373 |
374 #ifdef FILE_SYSTEM_CASE | |
444 | 375 filename = FILE_SYSTEM_CASE (filename); |
428 | 376 #endif |
444 | 377 beg = XSTRING_DATA (filename); |
771 | 378 /* XEmacs: no need to alloca-copy here */ |
2526 | 379 p = find_end_of_directory_component (beg, XSTRING_LENGTH (filename)); |
428 | 380 |
381 if (p == beg) | |
382 return Qnil; | |
442 | 383 #ifdef WIN32_NATIVE |
428 | 384 /* Expansion of "c:" to drive and default directory. */ |
771 | 385 if (p[-1] == ':') |
428 | 386 { |
867 | 387 Ibyte *res; |
388 Ibyte *wd = mswindows_getdcwd (toupper (*beg) - 'A' + 1); | |
771 | 389 |
2367 | 390 res = alloca_ibytes ((wd ? qxestrlen (wd) : 0) + 10); /* go overboard */ |
1116 | 391 res[0] = '\0'; |
771 | 392 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':') |
393 { | |
394 qxestrncpy (res, beg, 2); | |
395 beg += 2; | |
1116 | 396 res[2] = '\0'; |
771 | 397 } |
398 | |
399 if (wd) | |
428 | 400 { |
3648 | 401 int size; |
771 | 402 qxestrcat (res, wd); |
3648 | 403 size = qxestrlen (res); |
404 if (!IS_DIRECTORY_SEP (res[size - 1])) | |
405 { | |
406 res[size] = DIRECTORY_SEP; | |
407 res[size + 1] = '\0'; | |
408 } | |
428 | 409 beg = res; |
771 | 410 p = beg + qxestrlen (beg); |
428 | 411 } |
3648 | 412 else |
413 { | |
414 return Qnil; | |
415 } | |
771 | 416 if (wd) |
1726 | 417 xfree (wd, Ibyte *); |
428 | 418 } |
771 | 419 |
420 #if 0 /* No! This screws up efs, which calls file-name-directory on URL's | |
421 and expects the slashes to be left alone. This is here because of | |
422 an analogous call in FSF 21. */ | |
423 { | |
424 Bytecount len = p - beg; | |
867 | 425 Ibyte *newbeg = alloca_ibytes (len + 1); |
771 | 426 |
427 qxestrncpy (newbeg, beg, len); | |
428 newbeg[len] = '\0'; | |
429 newbeg = mswindows_canonicalize_filename (newbeg); | |
1726 | 430 return build_intstring (newbeg); |
771 | 431 } |
432 #endif | |
433 #endif /* not WIN32_NATIVE */ | |
428 | 434 return make_string (beg, p - beg); |
435 } | |
436 | |
437 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory, 1, 1, 0, /* | |
444 | 438 Return file name FILENAME sans its directory. |
428 | 439 For example, in a Unix-syntax file name, |
440 this is everything after the last slash, | |
441 or the entire name if it contains no slash. | |
442 */ | |
444 | 443 (filename)) |
428 | 444 { |
442 | 445 /* This function can GC. GC checked 2000-07-28 ben */ |
771 | 446 /* This function synched with Emacs 21.0.103. */ |
867 | 447 Ibyte *beg, *p, *end; |
428 | 448 Lisp_Object handler; |
449 | |
444 | 450 CHECK_STRING (filename); |
428 | 451 |
452 /* If the file name has special constructs in it, | |
453 call the corresponding file handler. */ | |
444 | 454 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory); |
428 | 455 if (!NILP (handler)) |
444 | 456 return call2_check_string (handler, Qfile_name_nondirectory, filename); |
457 | |
458 beg = XSTRING_DATA (filename); | |
459 end = p = beg + XSTRING_LENGTH (filename); | |
428 | 460 |
771 | 461 while (p != beg && !IS_DIRECTORY_SEP (p[-1]) |
657 | 462 #ifdef WIN32_FILENAMES |
771 | 463 /* only recognise drive specifier at beginning */ |
464 && !(p[-1] == ':' | |
465 /* handle the "/:d:foo" case correctly */ | |
466 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg)))) | |
428 | 467 #endif |
771 | 468 ) |
469 p--; | |
428 | 470 |
471 return make_string (p, end - p); | |
472 } | |
473 | |
474 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory, 1, 1, 0, /* | |
475 Return a directly usable directory name somehow associated with FILENAME. | |
476 A `directly usable' directory name is one that may be used without the | |
477 intervention of any file handler. | |
478 If FILENAME is a directly usable file itself, return | |
479 \(file-name-directory FILENAME). | |
480 The `call-process' and `start-process' functions use this function to | |
481 get a current directory to run processes in. | |
482 */ | |
444 | 483 (filename)) |
428 | 484 { |
442 | 485 /* This function can GC. GC checked 2000-07-28 ben */ |
428 | 486 Lisp_Object handler; |
487 | |
488 /* If the file name has special constructs in it, | |
489 call the corresponding file handler. */ | |
490 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory); | |
491 if (!NILP (handler)) | |
492 return call2 (handler, Qunhandled_file_name_directory, | |
493 filename); | |
494 | |
495 return Ffile_name_directory (filename); | |
496 } | |
497 | |
498 | |
867 | 499 static Ibyte * |
500 file_name_as_directory (Ibyte *out, Ibyte *in) | |
428 | 501 { |
442 | 502 /* This function cannot GC */ |
771 | 503 int size = qxestrlen (in); |
428 | 504 |
505 if (size == 0) | |
506 { | |
507 out[0] = '.'; | |
508 out[1] = DIRECTORY_SEP; | |
509 out[2] = '\0'; | |
510 } | |
511 else | |
512 { | |
771 | 513 qxestrcpy (out, in); |
428 | 514 /* Append a slash if necessary */ |
515 if (!IS_ANY_SEP (out[size-1])) | |
516 { | |
517 out[size] = DIRECTORY_SEP; | |
518 out[size + 1] = '\0'; | |
519 } | |
520 } | |
521 return out; | |
522 } | |
523 | |
524 DEFUN ("file-name-as-directory", Ffile_name_as_directory, 1, 1, 0, /* | |
525 Return a string representing file FILENAME interpreted as a directory. | |
526 This operation exists because a directory is also a file, but its name as | |
527 a directory is different from its name as a file. | |
528 The result can be used as the value of `default-directory' | |
529 or passed as second argument to `expand-file-name'. | |
530 For a Unix-syntax file name, just appends a slash, | |
531 except for (file-name-as-directory \"\") => \"./\". | |
532 */ | |
444 | 533 (filename)) |
428 | 534 { |
442 | 535 /* This function can GC. GC checked 2000-07-28 ben */ |
867 | 536 Ibyte *buf; |
428 | 537 Lisp_Object handler; |
538 | |
444 | 539 CHECK_STRING (filename); |
428 | 540 |
541 /* If the file name has special constructs in it, | |
542 call the corresponding file handler. */ | |
444 | 543 handler = Ffind_file_name_handler (filename, Qfile_name_as_directory); |
428 | 544 if (!NILP (handler)) |
444 | 545 return call2_check_string (handler, Qfile_name_as_directory, filename); |
546 | |
867 | 547 buf = alloca_ibytes (XSTRING_LENGTH (filename) + 10); |
2526 | 548 file_name_as_directory (buf, XSTRING_DATA (filename)); |
549 if (qxestrcmp (buf, XSTRING_DATA (filename))) | |
550 return build_intstring (buf); | |
551 else | |
552 return filename; | |
428 | 553 } |
554 | |
555 /* | |
556 * Convert from directory name to filename. | |
557 * On UNIX, it's simple: just make sure there isn't a terminating / | |
558 * | |
559 * Value is nonzero if the string output is different from the input. | |
560 */ | |
561 | |
562 static int | |
867 | 563 directory_file_name (const Ibyte *src, Ibyte *dst) |
428 | 564 { |
442 | 565 /* This function cannot GC */ |
771 | 566 long slen = qxestrlen (src); |
428 | 567 /* Process as Unix format: just remove any final slash. |
568 But leave "/" unchanged; do not change it to "". */ | |
771 | 569 qxestrcpy (dst, src); |
428 | 570 if (slen > 1 |
571 && IS_DIRECTORY_SEP (dst[slen - 1]) | |
657 | 572 #ifdef WIN32_FILENAMES |
428 | 573 && !IS_ANY_SEP (dst[slen - 2]) |
657 | 574 #endif /* WIN32_FILENAMES */ |
428 | 575 ) |
576 dst[slen - 1] = 0; | |
577 return 1; | |
578 } | |
579 | |
580 DEFUN ("directory-file-name", Fdirectory_file_name, 1, 1, 0, /* | |
444 | 581 Return the file name of the directory named DIRECTORY. |
582 This is the name of the file that holds the data for the directory. | |
428 | 583 This operation exists because a directory is also a file, but its name as |
584 a directory is different from its name as a file. | |
585 In Unix-syntax, this function just removes the final slash. | |
586 */ | |
587 (directory)) | |
588 { | |
442 | 589 /* This function can GC. GC checked 2000-07-28 ben */ |
867 | 590 Ibyte *buf; |
428 | 591 Lisp_Object handler; |
592 | |
593 CHECK_STRING (directory); | |
594 | |
595 #if 0 /* #### WTF? */ | |
596 if (NILP (directory)) | |
597 return Qnil; | |
598 #endif | |
599 | |
600 /* If the file name has special constructs in it, | |
601 call the corresponding file handler. */ | |
602 handler = Ffind_file_name_handler (directory, Qdirectory_file_name); | |
603 if (!NILP (handler)) | |
604 return call2_check_string (handler, Qdirectory_file_name, directory); | |
2367 | 605 buf = alloca_ibytes (XSTRING_LENGTH (directory) + 20); |
771 | 606 directory_file_name (XSTRING_DATA (directory), buf); |
607 return build_intstring (buf); | |
428 | 608 } |
609 | |
610 /* Fmake_temp_name used to be a simple wrapper around mktemp(), but it | |
611 proved too broken for our purposes (it supported only 26 or 62 | |
612 unique names under some implementations). For example, this | |
613 arbitrary limit broke generation of Gnus Incoming* files. | |
614 | |
615 This implementation is better than what one usually finds in libc. | |
616 --hniksic */ | |
617 | |
442 | 618 static unsigned int temp_name_rand; |
619 | |
428 | 620 DEFUN ("make-temp-name", Fmake_temp_name, 1, 1, 0, /* |
442 | 621 Generate a temporary file name starting with PREFIX. |
428 | 622 The Emacs process number forms part of the result, so there is no |
623 danger of generating a name being used by another process. | |
624 | |
625 In addition, this function makes an attempt to choose a name that | |
626 does not specify an existing file. To make this work, PREFIX should | |
4266 | 627 be an absolute file name. |
628 | |
629 This function is analagous to mktemp(3) under POSIX, and as with it, there | |
630 exists a race condition between the test for the existence of the new file | |
4383
1e04b9c8125b
Correct the make-temp-name docstring.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4324
diff
changeset
|
631 and its creation. See `make-temp-file' for a function which avoids this |
4266 | 632 race condition by specifying the appropriate flags to `write-region'. |
428 | 633 */ |
634 (prefix)) | |
635 { | |
442 | 636 static const char tbl[64] = |
637 { | |
428 | 638 'A','B','C','D','E','F','G','H', |
639 'I','J','K','L','M','N','O','P', | |
640 'Q','R','S','T','U','V','W','X', | |
641 'Y','Z','a','b','c','d','e','f', | |
642 'g','h','i','j','k','l','m','n', | |
643 'o','p','q','r','s','t','u','v', | |
644 'w','x','y','z','0','1','2','3', | |
442 | 645 '4','5','6','7','8','9','-','_' |
646 }; | |
428 | 647 |
648 Bytecount len; | |
867 | 649 Ibyte *p, *data; |
844 | 650 Lisp_Object handler; |
428 | 651 |
652 CHECK_STRING (prefix); | |
844 | 653 handler = Ffind_file_name_handler (prefix, Qmake_temp_name); |
654 if (!NILP (handler)) | |
655 return call2_check_string (handler, Qmake_temp_name, prefix); | |
428 | 656 |
657 /* I was tempted to apply Fexpand_file_name on PREFIX here, but it's | |
658 a bad idea because: | |
659 | |
660 1) It might change the prefix, so the resulting string might not | |
661 begin with PREFIX. This violates the principle of least | |
662 surprise. | |
663 | |
664 2) It breaks under many unforeseeable circumstances, such as with | |
665 the code that uses (make-temp-name "") instead of | |
666 (make-temp-name "./"). | |
667 | |
844 | 668 [[ 3) It might yield unexpected (to stat(2)) results in the presence |
669 of EFS and file name handlers.]] Now that we check for a handler, | |
670 that's less of a concern. --ben */ | |
428 | 671 |
672 len = XSTRING_LENGTH (prefix); | |
867 | 673 data = alloca_ibytes (len + 7); |
428 | 674 memcpy (data, XSTRING_DATA (prefix), len); |
675 p = data + len; | |
771 | 676 p[6] = '\0'; |
428 | 677 |
678 /* VAL is created by adding 6 characters to PREFIX. The first three | |
679 are the PID of this process, in base 64, and the second three are | |
442 | 680 a pseudo-random number seeded from process startup time. This |
681 ensures 262144 unique file names per PID per PREFIX per machine. */ | |
682 | |
683 { | |
771 | 684 unsigned int pid = (unsigned int) qxe_getpid (); |
442 | 685 *p++ = tbl[(pid >> 0) & 63]; |
686 *p++ = tbl[(pid >> 6) & 63]; | |
687 *p++ = tbl[(pid >> 12) & 63]; | |
688 } | |
428 | 689 |
690 /* Here we try to minimize useless stat'ing when this function is | |
691 invoked many times successively with the same PREFIX. We achieve | |
442 | 692 this by using a very pseudo-random number generator to generate |
693 file names unique to this process, with a very long cycle. */ | |
428 | 694 |
695 while (1) | |
696 { | |
697 struct stat ignored; | |
442 | 698 |
699 p[0] = tbl[(temp_name_rand >> 0) & 63]; | |
700 p[1] = tbl[(temp_name_rand >> 6) & 63]; | |
701 p[2] = tbl[(temp_name_rand >> 12) & 63]; | |
428 | 702 |
703 /* Poor man's congruential RN generator. Replace with ++count | |
704 for debugging. */ | |
442 | 705 temp_name_rand += 25229; |
706 temp_name_rand %= 225307; | |
428 | 707 |
708 QUIT; | |
709 | |
771 | 710 if (qxe_stat (data, &ignored) < 0) |
428 | 711 { |
712 /* We want to return only if errno is ENOENT. */ | |
713 if (errno == ENOENT) | |
771 | 714 return make_string (data, len + 6); |
428 | 715 |
716 /* The error here is dubious, but there is little else we | |
717 can do. The alternatives are to return nil, which is | |
718 as bad as (and in many cases worse than) throwing the | |
719 error, or to ignore the error, which will likely result | |
720 in inflooping. */ | |
721 report_file_error ("Cannot create temporary name for prefix", | |
563 | 722 prefix); |
428 | 723 return Qnil; /* not reached */ |
724 } | |
725 } | |
726 } | |
727 | |
728 | |
771 | 729 |
428 | 730 DEFUN ("expand-file-name", Fexpand_file_name, 1, 2, 0, /* |
731 Convert filename NAME to absolute, and canonicalize it. | |
732 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative | |
733 (does not start with slash); if DEFAULT-DIRECTORY is nil or missing, | |
444 | 734 the current buffer's value of `default-directory' is used. |
428 | 735 File name components that are `.' are removed, and |
736 so are file name components followed by `..', along with the `..' itself; | |
737 note that these simplifications are done without checking the resulting | |
738 file names in the file system. | |
739 An initial `~/' expands to your home directory. | |
740 An initial `~USER/' expands to USER's home directory. | |
741 See also the function `substitute-in-file-name'. | |
742 */ | |
743 (name, default_directory)) | |
744 { | |
771 | 745 /* This function can GC. GC-checked 2000-11-18. |
746 This function synched with Emacs 21.0.103. */ | |
867 | 747 Ibyte *nm; |
748 | |
749 Ibyte *newdir, *p, *o; | |
428 | 750 int tlen; |
867 | 751 Ibyte *target; |
657 | 752 #ifdef WIN32_FILENAMES |
428 | 753 int drive = 0; |
754 int collapse_newdir = 1; | |
771 | 755 /* XEmacs note: This concerns the special '/:' syntax for preventing |
756 wildcards and such. We don't support this currently but I'm | |
757 keeping the code here in case we do. */ | |
758 int is_escaped = 0; | |
657 | 759 #endif |
760 #ifndef WIN32_NATIVE | |
428 | 761 struct passwd *pw; |
771 | 762 #endif |
428 | 763 int length; |
446 | 764 Lisp_Object handler = Qnil; |
765 struct gcpro gcpro1, gcpro2, gcpro3; | |
2526 | 766 PROFILE_DECLARE (); |
767 | |
768 PROFILE_RECORD_ENTERING_SECTION (QSin_expand_file_name); | |
442 | 769 |
770 /* both of these get set below */ | |
446 | 771 GCPRO3 (name, default_directory, handler); |
428 | 772 |
773 CHECK_STRING (name); | |
774 | |
775 /* If the file name has special constructs in it, | |
776 call the corresponding file handler. */ | |
777 handler = Ffind_file_name_handler (name, Qexpand_file_name); | |
778 if (!NILP (handler)) | |
2526 | 779 RETURN_UNGCPRO_EXIT_PROFILING (QSin_expand_file_name, |
780 call3_check_string | |
781 (handler, Qexpand_file_name, | |
782 name, default_directory)); | |
428 | 783 |
784 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */ | |
785 if (NILP (default_directory)) | |
786 default_directory = current_buffer->directory; | |
787 if (! STRINGP (default_directory)) | |
771 | 788 #ifdef WIN32_NATIVE |
789 default_directory = build_string ("C:\\"); | |
790 #else | |
428 | 791 default_directory = build_string ("/"); |
771 | 792 #endif |
428 | 793 |
794 if (!NILP (default_directory)) | |
795 { | |
796 handler = Ffind_file_name_handler (default_directory, Qexpand_file_name); | |
797 if (!NILP (handler)) | |
2526 | 798 RETURN_UNGCPRO_EXIT_PROFILING (QSin_expand_file_name, |
799 call3 (handler, Qexpand_file_name, | |
800 name, default_directory)); | |
428 | 801 } |
802 | |
803 o = XSTRING_DATA (default_directory); | |
804 | |
805 /* Make sure DEFAULT_DIRECTORY is properly expanded. | |
806 It would be better to do this down below where we actually use | |
807 default_directory. Unfortunately, calling Fexpand_file_name recursively | |
808 could invoke GC, and the strings might be relocated. This would | |
809 be annoying because we have pointers into strings lying around | |
810 that would need adjusting, and people would add new pointers to | |
811 the code and forget to adjust them, resulting in intermittent bugs. | |
812 Putting this call here avoids all that crud. | |
813 | |
814 The EQ test avoids infinite recursion. */ | |
815 if (! NILP (default_directory) && !EQ (default_directory, name) | |
816 /* Save time in some common cases - as long as default_directory | |
817 is not relative, it can be canonicalized with name below (if it | |
818 is needed at all) without requiring it to be expanded now. */ | |
657 | 819 #ifdef WIN32_FILENAMES |
442 | 820 /* Detect Windows file names with drive specifiers. */ |
428 | 821 && ! (IS_DRIVE (o[0]) && (IS_DEVICE_SEP (o[1]) && IS_DIRECTORY_SEP (o[2]))) |
822 /* Detect Windows file names in UNC format. */ | |
823 && ! (IS_DIRECTORY_SEP (o[0]) && IS_DIRECTORY_SEP (o[1])) | |
657 | 824 #endif /* not WIN32_FILENAMES */ |
825 #ifndef WIN32_NATIVE | |
428 | 826 /* Detect Unix absolute file names (/... alone is not absolute on |
442 | 827 Windows). */ |
428 | 828 && ! (IS_DIRECTORY_SEP (o[0])) |
442 | 829 #endif /* not WIN32_NATIVE */ |
428 | 830 ) |
442 | 831 |
832 default_directory = Fexpand_file_name (default_directory, Qnil); | |
428 | 833 |
834 #ifdef FILE_SYSTEM_CASE | |
835 name = FILE_SYSTEM_CASE (name); | |
836 #endif | |
837 | |
838 /* #### dmoore - this is ugly, clean this up. Looks like nm pointing | |
839 into name should be safe during all of this, though. */ | |
840 nm = XSTRING_DATA (name); | |
841 | |
657 | 842 #ifdef WIN32_FILENAMES |
428 | 843 /* We will force directory separators to be either all \ or /, so make |
844 a local copy to modify, even if there ends up being no change. */ | |
867 | 845 nm = qxestrcpy (alloca_ibytes (qxestrlen (nm) + 1), nm); |
771 | 846 |
847 /* Note if special escape prefix is present, but remove for now. */ | |
848 if (nm[0] == '/' && nm[1] == ':') | |
849 { | |
850 is_escaped = 1; | |
851 nm += 2; | |
852 } | |
428 | 853 |
854 /* Find and remove drive specifier if present; this makes nm absolute | |
855 even if the rest of the name appears to be relative. */ | |
856 { | |
867 | 857 Ibyte *colon = qxestrrchr (nm, ':'); |
428 | 858 |
859 if (colon) | |
657 | 860 { |
428 | 861 /* Only recognize colon as part of drive specifier if there is a |
862 single alphabetic character preceding the colon (and if the | |
863 character before the drive letter, if present, is a directory | |
864 separator); this is to support the remote system syntax used by | |
865 ange-ftp, and the "po:username" syntax for POP mailboxes. */ | |
866 look_again: | |
867 if (nm == colon) | |
868 nm++; | |
869 else if (IS_DRIVE (colon[-1]) | |
870 && (colon == nm + 1 || IS_DIRECTORY_SEP (colon[-2]))) | |
871 { | |
872 drive = colon[-1]; | |
873 nm = colon + 1; | |
874 } | |
875 else | |
876 { | |
877 while (--colon >= nm) | |
878 if (colon[0] == ':') | |
879 goto look_again; | |
880 } | |
657 | 881 } |
428 | 882 } |
883 | |
884 /* If we see "c://somedir", we want to strip the first slash after the | |
885 colon when stripping the drive letter. Otherwise, this expands to | |
886 "//somedir". */ | |
887 if (drive && IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1])) | |
888 nm++; | |
657 | 889 #endif /* WIN32_FILENAMES */ |
428 | 890 |
771 | 891 #ifdef WIN32_FILENAMES |
892 /* Discard any previous drive specifier if nm is now in UNC format. */ | |
893 if (IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1])) | |
894 { | |
895 drive = 0; | |
896 } | |
897 #endif | |
898 | |
428 | 899 /* If nm is absolute, look for /./ or /../ sequences; if none are |
900 found, we can probably return right away. We will avoid allocating | |
901 a new string if name is already fully expanded. */ | |
902 if ( | |
903 IS_DIRECTORY_SEP (nm[0]) | |
442 | 904 #ifdef WIN32_NATIVE |
771 | 905 && (drive || IS_DIRECTORY_SEP (nm[1])) && !is_escaped |
428 | 906 #endif |
907 ) | |
908 { | |
909 /* If it turns out that the filename we want to return is just a | |
910 suffix of FILENAME, we don't need to go through and edit | |
911 things; we just need to construct a new string using data | |
912 starting at the middle of FILENAME. If we set lose to a | |
913 non-zero value, that means we've discovered that we can't do | |
914 that cool trick. */ | |
915 int lose = 0; | |
916 | |
917 p = nm; | |
918 while (*p) | |
919 { | |
920 /* Since we know the name is absolute, we can assume that each | |
921 element starts with a "/". */ | |
922 | |
923 /* "." and ".." are hairy. */ | |
924 if (IS_DIRECTORY_SEP (p[0]) | |
925 && p[1] == '.' | |
926 && (IS_DIRECTORY_SEP (p[2]) | |
927 || p[2] == 0 | |
928 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3]) | |
929 || p[3] == 0)))) | |
930 lose = 1; | |
771 | 931 /* We want to replace multiple `/' in a row with a single |
932 slash. */ | |
933 else if (p > nm | |
934 && IS_DIRECTORY_SEP (p[0]) | |
935 && IS_DIRECTORY_SEP (p[1])) | |
936 lose = 1; | |
428 | 937 p++; |
938 } | |
939 if (!lose) | |
940 { | |
657 | 941 #ifdef WIN32_FILENAMES |
942 if (drive || IS_DIRECTORY_SEP (nm[1])) | |
428 | 943 { |
867 | 944 Ibyte *newnm; |
771 | 945 |
657 | 946 if (IS_DIRECTORY_SEP (nm[1])) |
947 { | |
771 | 948 newnm = mswindows_canonicalize_filename (nm); |
949 if (qxestrcmp (newnm, XSTRING_DATA (name)) != 0) | |
950 name = build_intstring (newnm); | |
657 | 951 } |
771 | 952 else |
657 | 953 { |
771 | 954 /* drive must be set, so this is okay */ |
955 newnm = mswindows_canonicalize_filename (nm - 2); | |
956 if (qxestrcmp (newnm, XSTRING_DATA (name)) != 0) | |
957 { | |
958 name = build_intstring (newnm); | |
959 XSTRING_DATA (name)[0] = DRIVE_LETTER (drive); | |
960 XSTRING_DATA (name)[1] = ':'; | |
961 } | |
657 | 962 } |
1726 | 963 xfree (newnm, Ibyte *); |
2526 | 964 RETURN_UNGCPRO_EXIT_PROFILING (QSin_expand_file_name, name); |
428 | 965 } |
771 | 966 #endif /* WIN32_FILENAMES */ |
657 | 967 #ifndef WIN32_NATIVE |
428 | 968 if (nm == XSTRING_DATA (name)) |
2526 | 969 RETURN_UNGCPRO_EXIT_PROFILING (QSin_expand_file_name, name); |
970 RETURN_UNGCPRO_EXIT_PROFILING (QSin_expand_file_name, | |
971 build_intstring (nm)); | |
442 | 972 #endif /* not WIN32_NATIVE */ |
428 | 973 } |
974 } | |
975 | |
976 /* At this point, nm might or might not be an absolute file name. We | |
977 need to expand ~ or ~user if present, otherwise prefix nm with | |
978 default_directory if nm is not absolute, and finally collapse /./ | |
979 and /foo/../ sequences. | |
980 | |
981 We set newdir to be the appropriate prefix if one is needed: | |
982 - the relevant user directory if nm starts with ~ or ~user | |
983 - the specified drive's working dir (DOS/NT only) if nm does not | |
984 start with / | |
985 - the value of default_directory. | |
986 | |
987 Note that these prefixes are not guaranteed to be absolute (except | |
988 for the working dir of a drive). Therefore, to ensure we always | |
989 return an absolute name, if the final prefix is not absolute we | |
990 append it to the current working directory. */ | |
991 | |
992 newdir = 0; | |
993 | |
994 if (nm[0] == '~') /* prefix ~ */ | |
995 { | |
996 if (IS_DIRECTORY_SEP (nm[1]) | |
997 || nm[1] == 0) /* ~ by itself */ | |
998 { | |
867 | 999 Ibyte *homedir = get_home_directory (); |
771 | 1000 |
1001 if (!homedir) | |
867 | 1002 newdir = (Ibyte *) ""; |
428 | 1003 else |
771 | 1004 newdir = homedir; |
428 | 1005 |
1006 nm++; | |
657 | 1007 #ifdef WIN32_FILENAMES |
428 | 1008 collapse_newdir = 0; |
1009 #endif | |
1010 } | |
1011 else /* ~user/filename */ | |
1012 { | |
1013 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p)); p++) | |
1014 DO_NOTHING; | |
2367 | 1015 o = alloca_ibytes (p - nm + 1); |
771 | 1016 memcpy (o, nm, p - nm); |
428 | 1017 o [p - nm] = 0; |
1018 | |
558 | 1019 /* #### While NT is single-user (for the moment) you still |
1020 can have multiple user profiles users defined, each with | |
1021 its HOME. So maybe possibly we should think about handling | |
1022 ~user. --ben */ | |
1023 #ifndef WIN32_NATIVE | |
442 | 1024 #ifdef CYGWIN |
771 | 1025 { |
867 | 1026 Ibyte *user; |
771 | 1027 |
1028 if ((user = user_login_name (NULL)) != NULL) | |
1029 { | |
1030 /* Does the user login name match the ~name? */ | |
1031 if (qxestrcmp (user, o + 1) == 0) | |
1032 { | |
1033 newdir = get_home_directory (); | |
1034 nm = p; | |
1035 } | |
1036 } | |
1037 } | |
1038 if (!newdir) | |
428 | 1039 { |
442 | 1040 #endif /* CYGWIN */ |
428 | 1041 /* Jamie reports that getpwnam() can get wedged by SIGIO/SIGALARM |
1042 occurring in it. (It can call select()). */ | |
1043 slow_down_interrupts (); | |
771 | 1044 pw = (struct passwd *) qxe_getpwnam (o + 1); |
428 | 1045 speed_up_interrupts (); |
1046 if (pw) | |
1047 { | |
867 | 1048 newdir = (Ibyte *) pw->pw_dir; |
428 | 1049 nm = p; |
771 | 1050 /* FSF: if WIN32_NATIVE, collapse_newdir = 0; |
1051 not possible here. */ | |
428 | 1052 } |
442 | 1053 #ifdef CYGWIN |
428 | 1054 } |
1055 #endif | |
442 | 1056 #endif /* not WIN32_NATIVE */ |
428 | 1057 |
1058 /* If we don't find a user of that name, leave the name | |
1059 unchanged; don't move nm forward to p. */ | |
1060 } | |
1061 } | |
1062 | |
657 | 1063 #ifdef WIN32_FILENAMES |
428 | 1064 /* On DOS and Windows, nm is absolute if a drive name was specified; |
1065 use the drive's current directory as the prefix if needed. */ | |
1066 if (!newdir && drive) | |
1067 { | |
657 | 1068 #ifdef WIN32_NATIVE |
428 | 1069 /* Get default directory if needed to make nm absolute. */ |
1070 if (!IS_DIRECTORY_SEP (nm[0])) | |
1071 { | |
867 | 1072 Ibyte *newcwd = mswindows_getdcwd (toupper (drive) - 'A' + 1); |
771 | 1073 if (newcwd) |
1074 { | |
867 | 1075 IBYTE_STRING_TO_ALLOCA (newcwd, newdir); |
1726 | 1076 xfree (newcwd, Ibyte *); |
771 | 1077 } |
1078 else | |
428 | 1079 newdir = NULL; |
1080 } | |
657 | 1081 #endif /* WIN32_NATIVE */ |
428 | 1082 if (!newdir) |
1083 { | |
1084 /* Either nm starts with /, or drive isn't mounted. */ | |
2367 | 1085 newdir = alloca_ibytes (4); |
428 | 1086 newdir[0] = DRIVE_LETTER (drive); |
1087 newdir[1] = ':'; | |
1088 newdir[2] = '/'; | |
1089 newdir[3] = 0; | |
1090 } | |
1091 } | |
657 | 1092 #endif /* WIN32_FILENAMES */ |
428 | 1093 |
1094 /* Finally, if no prefix has been specified and nm is not absolute, | |
1095 then it must be expanded relative to default_directory. */ | |
1096 | |
1097 if (1 | |
442 | 1098 #ifndef WIN32_NATIVE |
428 | 1099 /* /... alone is not absolute on DOS and Windows. */ |
1100 && !IS_DIRECTORY_SEP (nm[0]) | |
657 | 1101 #endif |
1102 #ifdef WIN32_FILENAMES | |
428 | 1103 && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1])) |
1104 #endif | |
1105 && !newdir) | |
1106 { | |
1107 newdir = XSTRING_DATA (default_directory); | |
771 | 1108 #ifdef WIN32_FILENAMES |
1109 /* Note if special escape prefix is present, but remove for now. */ | |
1110 if (newdir[0] == '/' && newdir[1] == ':') | |
1111 { | |
1112 is_escaped = 1; | |
1113 newdir += 2; | |
1114 } | |
1115 #endif | |
428 | 1116 } |
1117 | |
657 | 1118 #ifdef WIN32_FILENAMES |
428 | 1119 if (newdir) |
1120 { | |
1121 /* First ensure newdir is an absolute name. */ | |
1122 if ( | |
442 | 1123 /* Detect Windows file names with drive specifiers. */ |
428 | 1124 ! (IS_DRIVE (newdir[0]) |
1125 && IS_DEVICE_SEP (newdir[1]) && IS_DIRECTORY_SEP (newdir[2])) | |
1126 /* Detect Windows file names in UNC format. */ | |
1127 && ! (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1])) | |
771 | 1128 /* XEmacs: added these two lines: Detect drive spec by itself */ |
428 | 1129 && ! (IS_DEVICE_SEP (newdir[1]) && newdir[2] == 0) |
657 | 1130 /* Detect unix format. */ |
1131 #ifndef WIN32_NATIVE | |
1132 && ! (IS_DIRECTORY_SEP (newdir[0])) | |
1133 #endif | |
428 | 1134 ) |
1135 { | |
1136 /* Effectively, let newdir be (expand-file-name newdir cwd). | |
1137 Because of the admonition against calling expand-file-name | |
1138 when we have pointers into lisp strings, we accomplish this | |
1139 indirectly by prepending newdir to nm if necessary, and using | |
1140 cwd (or the wd of newdir's drive) as the new newdir. */ | |
1141 | |
1142 if (IS_DRIVE (newdir[0]) && newdir[1] == ':') | |
1143 { | |
1144 drive = newdir[0]; | |
1145 newdir += 2; | |
1146 } | |
1147 if (!IS_DIRECTORY_SEP (nm[0])) | |
1148 { | |
2367 | 1149 Ibyte *tmp = alloca_ibytes (qxestrlen (newdir) + |
1150 qxestrlen (nm) + 2); | |
771 | 1151 file_name_as_directory (tmp, newdir); |
1152 qxestrcat (tmp, nm); | |
428 | 1153 nm = tmp; |
1154 } | |
1155 if (drive) | |
1156 { | |
657 | 1157 #ifdef WIN32_NATIVE |
867 | 1158 Ibyte *newcwd = mswindows_getdcwd (toupper (drive) - 'A' + 1); |
771 | 1159 if (newcwd) |
1160 { | |
867 | 1161 IBYTE_STRING_TO_ALLOCA (newcwd, newdir); |
1726 | 1162 xfree (newcwd, Ibyte *); |
771 | 1163 } |
1164 else | |
657 | 1165 #endif |
867 | 1166 IBYTE_STRING_TO_ALLOCA ((Ibyte *) "/", newdir); |
428 | 1167 } |
1168 else | |
867 | 1169 IBYTE_STRING_TO_ALLOCA (get_initial_directory (0, 0), newdir); |
428 | 1170 } |
1171 | |
1172 /* Strip off drive name from prefix, if present. */ | |
1173 if (IS_DRIVE (newdir[0]) && newdir[1] == ':') | |
1174 { | |
1175 drive = newdir[0]; | |
1176 newdir += 2; | |
1177 } | |
1178 | |
1179 /* Keep only a prefix from newdir if nm starts with slash | |
771 | 1180 (//server/share for UNC, nothing otherwise). */ |
657 | 1181 if (IS_DIRECTORY_SEP (nm[0]) |
1182 #ifndef WIN32_NATIVE | |
1183 && IS_DIRECTORY_SEP (nm[1]) | |
1184 #endif | |
1185 && collapse_newdir) | |
428 | 1186 { |
1187 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1])) | |
1188 { | |
2367 | 1189 /* !!#### Use ei API */ |
1190 newdir = qxestrcpy (alloca_ibytes (qxestrlen (newdir) + 1), | |
1191 newdir); | |
428 | 1192 p = newdir + 2; |
1193 while (*p && !IS_DIRECTORY_SEP (*p)) p++; | |
1194 p++; | |
1195 while (*p && !IS_DIRECTORY_SEP (*p)) p++; | |
1196 *p = 0; | |
1197 } | |
1198 else | |
867 | 1199 newdir = (Ibyte *) ""; |
428 | 1200 } |
1201 } | |
657 | 1202 #endif /* WIN32_FILENAMES */ |
428 | 1203 |
1204 if (newdir) | |
1205 { | |
1206 /* Get rid of any slash at the end of newdir, unless newdir is | |
771 | 1207 just / or // (an incomplete UNC name). */ |
1208 length = qxestrlen (newdir); | |
428 | 1209 if (length > 1 && IS_DIRECTORY_SEP (newdir[length - 1]) |
657 | 1210 #ifdef WIN32_FILENAMES |
428 | 1211 && !(length == 2 && IS_DIRECTORY_SEP (newdir[0])) |
1212 #endif | |
1213 ) | |
1214 { | |
2367 | 1215 Ibyte *temp = alloca_ibytes (length); |
428 | 1216 memcpy (temp, newdir, length - 1); |
1217 temp[length - 1] = 0; | |
1218 newdir = temp; | |
1219 } | |
1220 tlen = length + 1; | |
1221 } | |
1222 else | |
1223 tlen = 0; | |
1224 | |
1225 /* Now concatenate the directory and name to new space in the stack frame */ | |
771 | 1226 tlen += qxestrlen (nm) + 1; |
657 | 1227 #ifdef WIN32_FILENAMES |
771 | 1228 /* Reserve space for drive specifier and escape prefix, since either |
1229 or both may need to be inserted. (The Microsoft x86 compiler | |
428 | 1230 produces incorrect code if the following two lines are combined.) */ |
2367 | 1231 target = alloca_ibytes (tlen + 4); |
771 | 1232 target += 4; |
657 | 1233 #else /* not WIN32_FILENAMES */ |
2367 | 1234 target = alloca_ibytes (tlen); |
657 | 1235 #endif /* not WIN32_FILENAMES */ |
428 | 1236 *target = 0; |
1237 | |
1238 if (newdir) | |
1239 { | |
1240 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0])) | |
771 | 1241 { |
1242 #ifdef WIN32_FILENAMES | |
1243 /* If newdir is effectively "C:/", then the drive letter will have | |
1244 been stripped and newdir will be "/". Concatenating with an | |
1245 absolute directory in nm produces "//", which will then be | |
1246 incorrectly treated as a network share. Ignore newdir in | |
1247 this case (keeping the drive letter). */ | |
1248 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0]) | |
1249 && newdir[1] == '\0')) | |
1250 #endif | |
1251 qxestrcpy (target, newdir); | |
1252 } | |
428 | 1253 else |
771 | 1254 file_name_as_directory (target, newdir); |
428 | 1255 } |
1256 | |
771 | 1257 qxestrcat (target, nm); |
428 | 1258 |
1259 /* ASSERT (IS_DIRECTORY_SEP (target[0])) if not VMS */ | |
1260 | |
771 | 1261 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they |
1262 appear. */ | |
428 | 1263 |
1264 p = target; | |
1265 o = target; | |
1266 | |
1267 while (*p) | |
1268 { | |
1269 if (!IS_DIRECTORY_SEP (*p)) | |
1270 { | |
1271 *o++ = *p++; | |
1272 } | |
1273 else if (IS_DIRECTORY_SEP (p[0]) | |
1274 && p[1] == '.' | |
1275 && (IS_DIRECTORY_SEP (p[2]) | |
1276 || p[2] == 0)) | |
1277 { | |
1278 /* If "/." is the entire filename, keep the "/". Otherwise, | |
1279 just delete the whole "/.". */ | |
1280 if (o == target && p[2] == '\0') | |
1281 *o++ = *p; | |
1282 p += 2; | |
1283 } | |
1284 else if (IS_DIRECTORY_SEP (p[0]) && p[1] == '.' && p[2] == '.' | |
1285 /* `/../' is the "superroot" on certain file systems. */ | |
1286 && o != target | |
1287 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0)) | |
1288 { | |
1289 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o)) | |
1290 ; | |
1291 /* Keep initial / only if this is the whole name. */ | |
1292 if (o == target && IS_ANY_SEP (*o) && p[3] == 0) | |
1293 ++o; | |
1294 p += 3; | |
1295 } | |
771 | 1296 else if (p > target |
1297 && IS_DIRECTORY_SEP (p[0]) && IS_DIRECTORY_SEP (p[1])) | |
1298 { | |
1299 /* Collapse multiple `/' in a row. */ | |
1300 *o++ = *p++; | |
1301 while (IS_DIRECTORY_SEP (*p)) | |
1302 ++p; | |
1303 } | |
428 | 1304 else |
1305 { | |
1306 *o++ = *p++; | |
1307 } | |
1308 } | |
1309 | |
657 | 1310 #ifdef WIN32_FILENAMES |
428 | 1311 /* At last, set drive name, except for network file name. */ |
1312 if (drive) | |
1313 { | |
1314 target -= 2; | |
1315 target[0] = DRIVE_LETTER (drive); | |
1316 target[1] = ':'; | |
1317 } | |
657 | 1318 #ifdef WIN32_NATIVE |
428 | 1319 else |
1320 { | |
1321 assert (IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1])); | |
1322 } | |
657 | 1323 #endif |
771 | 1324 /* Reinsert the escape prefix if required. */ |
1325 if (is_escaped) | |
1326 { | |
1327 target -= 2; | |
1328 target[0] = '/'; | |
1329 target[1] = ':'; | |
1330 } | |
1331 | |
1332 *o = '\0'; | |
1333 | |
1334 { | |
867 | 1335 Ibyte *newtarget = mswindows_canonicalize_filename (target); |
771 | 1336 Lisp_Object result = build_intstring (newtarget); |
1726 | 1337 xfree (newtarget, Ibyte *); |
771 | 1338 |
2526 | 1339 RETURN_UNGCPRO_EXIT_PROFILING (QSin_expand_file_name, result); |
771 | 1340 } |
1341 #else /* not WIN32_FILENAMES */ | |
2526 | 1342 RETURN_UNGCPRO_EXIT_PROFILING (QSin_expand_file_name, |
1343 make_string (target, o - target)); | |
771 | 1344 #endif /* not WIN32_FILENAMES */ |
428 | 1345 } |
1346 | |
1347 DEFUN ("file-truename", Ffile_truename, 1, 2, 0, /* | |
444 | 1348 Return the canonical name of FILENAME. |
1349 Second arg DEFAULT is directory to start with if FILENAME is relative | |
428 | 1350 (does not start with slash); if DEFAULT is nil or missing, |
444 | 1351 the current buffer's value of `default-directory' is used. |
428 | 1352 No component of the resulting pathname will be a symbolic link, as |
1353 in the realpath() function. | |
1354 */ | |
1355 (filename, default_)) | |
1356 { | |
442 | 1357 /* This function can GC. GC checked 2000-07-28 ben. */ |
428 | 1358 Lisp_Object expanded_name; |
1359 struct gcpro gcpro1; | |
1360 | |
1361 CHECK_STRING (filename); | |
1362 | |
1363 expanded_name = Fexpand_file_name (filename, default_); | |
1364 | |
1365 if (!STRINGP (expanded_name)) | |
1366 return Qnil; | |
1367 | |
1368 GCPRO1 (expanded_name); | |
442 | 1369 |
1370 { | |
1371 Lisp_Object handler = | |
1372 Ffind_file_name_handler (expanded_name, Qfile_truename); | |
1373 | |
1374 if (!NILP (handler)) | |
1375 RETURN_UNGCPRO | |
1376 (call2_check_string (handler, Qfile_truename, expanded_name)); | |
1377 } | |
428 | 1378 |
1379 { | |
2421 | 1380 Ibyte resolved_path[PATH_MAX_INTERNAL]; |
771 | 1381 Bytecount elen = XSTRING_LENGTH (expanded_name); |
867 | 1382 Ibyte *path; |
1383 Ibyte *p; | |
771 | 1384 |
1385 LISP_STRING_TO_ALLOCA (expanded_name, path); | |
988 | 1386 |
1111 | 1387 #if defined (WIN32_FILENAMES) && defined (CYGWIN) |
988 | 1388 /* When using win32 filenames in cygwin we want file-truename to |
1389 detect that c:/windows == /windows for example. */ | |
1111 | 1390 if (! (IS_DIRECTORY_SEP (path[0]) && IS_DIRECTORY_SEP (path[1]))) |
1391 { | |
1392 LOCAL_TO_WIN32_FILE_FORMAT (path, p); | |
1393 path = p; | |
1394 } | |
988 | 1395 #endif |
428 | 1396 p = path; |
442 | 1397 |
428 | 1398 /* Try doing it all at once. */ |
2526 | 1399 if (!qxe_realpath (path, resolved_path, 0)) |
428 | 1400 { |
1401 /* Didn't resolve it -- have to do it one component at a time. */ | |
1402 /* "realpath" is a typically useless, stupid un*x piece of crap. | |
1403 It claims to return a useful value in the "error" case, but since | |
1404 there is no indication provided of how far along the pathname | |
1405 the function went before erring, there is no way to use the | |
442 | 1406 partial result returned. What a piece of junk. |
1407 | |
1408 The above comment refers to historical versions of | |
1409 realpath(). The Unix98 specs state: | |
1410 | |
1411 "On successful completion, realpath() returns a | |
1412 pointer to the resolved name. Otherwise, realpath() | |
1413 returns a null pointer and sets errno to indicate the | |
1414 error, and the contents of the buffer pointed to by | |
1415 resolved_name are undefined." | |
1416 | |
771 | 1417 Since we depend on undocumented semantics of various system |
2526 | 1418 realpath()s, we just use our own version in realpath.c. |
1419 | |
1420 Note also that our own version differs in its semantics from any | |
1421 standard version, since it accepts and returns internal-format | |
1422 text, not external-format. */ | |
428 | 1423 for (;;) |
1424 { | |
867 | 1425 Ibyte *pos; |
446 | 1426 |
657 | 1427 #ifdef WIN32_FILENAMES |
446 | 1428 if (IS_DRIVE (p[0]) && IS_DEVICE_SEP (p[1]) |
1429 && IS_DIRECTORY_SEP (p[2])) | |
1430 /* don't test c: on windows */ | |
1431 p = p+2; | |
1432 else if (IS_DIRECTORY_SEP (p[0]) && IS_DIRECTORY_SEP (p[1])) | |
1433 /* start after // */ | |
1434 p = p+1; | |
1435 #endif | |
1436 for (pos = p + 1; pos < path + elen; pos++) | |
1437 if (IS_DIRECTORY_SEP (*pos)) | |
1438 { | |
1439 *(p = pos) = 0; | |
1440 break; | |
1441 } | |
1442 if (p != pos) | |
1443 p = 0; | |
428 | 1444 |
2526 | 1445 if (qxe_realpath (path, resolved_path, 0)) |
428 | 1446 { |
1447 if (p) | |
446 | 1448 *p = DIRECTORY_SEP; |
428 | 1449 else |
1450 break; | |
1451 | |
1452 } | |
1453 else if (errno == ENOENT || errno == EACCES) | |
1454 { | |
1455 /* Failed on this component. Just tack on the rest of | |
1456 the string and we are done. */ | |
771 | 1457 int rlen = qxestrlen (resolved_path); |
428 | 1458 |
1459 /* "On failure, it returns NULL, sets errno to indicate | |
1460 the error, and places in resolved_path the absolute pathname | |
1461 of the path component which could not be resolved." */ | |
442 | 1462 |
1463 if (p) | |
428 | 1464 { |
1465 int plen = elen - (p - path); | |
1466 | |
446 | 1467 if (rlen > 1 && IS_DIRECTORY_SEP (resolved_path[rlen - 1])) |
428 | 1468 rlen = rlen - 1; |
1469 | |
1470 if (plen + rlen + 1 > countof (resolved_path)) | |
1471 goto toolong; | |
1472 | |
446 | 1473 resolved_path[rlen] = DIRECTORY_SEP; |
428 | 1474 memcpy (resolved_path + rlen + 1, p + 1, plen + 1 - 1); |
1475 } | |
1476 break; | |
1477 } | |
1478 else | |
1479 goto lose; | |
1480 } | |
1481 } | |
1482 | |
1483 { | |
442 | 1484 Lisp_Object resolved_name; |
771 | 1485 int rlen = qxestrlen (resolved_path); |
826 | 1486 if (elen > 0 && IS_DIRECTORY_SEP (string_byte (expanded_name, elen - 1)) |
446 | 1487 && !(rlen > 0 && IS_DIRECTORY_SEP (resolved_path[rlen - 1]))) |
428 | 1488 { |
1489 if (rlen + 1 > countof (resolved_path)) | |
1490 goto toolong; | |
446 | 1491 resolved_path[rlen++] = DIRECTORY_SEP; |
442 | 1492 resolved_path[rlen] = '\0'; |
428 | 1493 } |
771 | 1494 resolved_name = make_string (resolved_path, rlen); |
442 | 1495 RETURN_UNGCPRO (resolved_name); |
428 | 1496 } |
1497 | |
1498 toolong: | |
1499 errno = ENAMETOOLONG; | |
1500 goto lose; | |
1501 lose: | |
563 | 1502 report_file_error ("Finding truename", expanded_name); |
428 | 1503 } |
442 | 1504 RETURN_UNGCPRO (Qnil); |
428 | 1505 } |
1506 | |
1507 | |
1508 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name, 1, 1, 0, /* | |
1509 Substitute environment variables referred to in FILENAME. | |
1510 `$FOO' where FOO is an environment variable name means to substitute | |
1511 the value of that variable. The variable name should be terminated | |
444 | 1512 with a character, not a letter, digit or underscore; otherwise, enclose |
428 | 1513 the entire variable name in braces. |
1514 If `/~' appears, all of FILENAME through that `/' is discarded. | |
1515 */ | |
444 | 1516 (filename)) |
428 | 1517 { |
442 | 1518 /* This function can GC. GC checked 2000-07-28 ben. */ |
867 | 1519 Ibyte *nm; |
1520 | |
4324
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1521 Ibyte *s, *p, *o, *x, *endp, *got; |
867 | 1522 Ibyte *target = 0; |
428 | 1523 int total = 0; |
4324
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1524 int substituted = 0, seen_braces; |
867 | 1525 Ibyte *xnm; |
428 | 1526 Lisp_Object handler; |
1527 | |
444 | 1528 CHECK_STRING (filename); |
428 | 1529 |
1530 /* If the file name has special constructs in it, | |
1531 call the corresponding file handler. */ | |
444 | 1532 handler = Ffind_file_name_handler (filename, Qsubstitute_in_file_name); |
428 | 1533 if (!NILP (handler)) |
1534 return call2_check_string_or_nil (handler, Qsubstitute_in_file_name, | |
444 | 1535 filename); |
1536 | |
1537 nm = XSTRING_DATA (filename); | |
1538 endp = nm + XSTRING_LENGTH (filename); | |
428 | 1539 |
1540 /* If /~ or // appears, discard everything through first slash. */ | |
1541 | |
1542 for (p = nm; p != endp; p++) | |
1543 { | |
1544 if ((p[0] == '~' | |
657 | 1545 #if defined (WIN32_FILENAMES) |
440 | 1546 /* // at start of file name is meaningful in WindowsNT systems */ |
428 | 1547 || (IS_DIRECTORY_SEP (p[0]) && p - 1 != nm) |
657 | 1548 #else /* not (WIN32_FILENAMES) */ |
428 | 1549 || IS_DIRECTORY_SEP (p[0]) |
657 | 1550 #endif /* not (WIN32_FILENAMES) */ |
428 | 1551 ) |
1552 && p != nm | |
1553 && (IS_DIRECTORY_SEP (p[-1]))) | |
1554 { | |
1555 nm = p; | |
1556 substituted = 1; | |
1557 } | |
657 | 1558 #ifdef WIN32_FILENAMES |
428 | 1559 /* see comment in expand-file-name about drive specifiers */ |
1560 else if (IS_DRIVE (p[0]) && p[1] == ':' | |
1561 && p > nm && IS_DIRECTORY_SEP (p[-1])) | |
1562 { | |
1563 nm = p; | |
1564 substituted = 1; | |
1565 } | |
657 | 1566 #endif /* WIN32_FILENAMES */ |
428 | 1567 } |
1568 | |
1569 /* See if any variables are substituted into the string | |
1570 and find the total length of their values in `total' */ | |
1571 | |
1572 for (p = nm; p != endp;) | |
1573 if (*p != '$') | |
1574 p++; | |
1575 else | |
1576 { | |
1577 p++; | |
1578 if (p == endp) | |
4324
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1579 { |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1580 /* No substitution, no error. */ |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1581 break; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1582 } |
428 | 1583 else if (*p == '$') |
1584 { | |
1585 /* "$$" means a single "$" */ | |
1586 p++; | |
1587 total -= 1; | |
1588 substituted = 1; | |
1589 continue; | |
1590 } | |
1591 else if (*p == '{') | |
1592 { | |
1593 o = ++p; | |
1594 while (p != endp && *p != '}') p++; | |
4324
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1595 if (*p != '}') |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1596 { |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1597 /* No substitution, no error. Keep looking. */ |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1598 p = o; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1599 continue; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1600 } |
428 | 1601 s = p; |
1602 } | |
1603 else | |
1604 { | |
1605 o = p; | |
1606 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
1607 s = p; | |
1608 } | |
1609 | |
1610 /* Copy out the variable name */ | |
2367 | 1611 target = alloca_ibytes (s - o + 1); |
771 | 1612 qxestrncpy (target, o, s - o); |
428 | 1613 target[s - o] = 0; |
442 | 1614 #ifdef WIN32_NATIVE |
1204 | 1615 qxestrupr (target); /* $home == $HOME etc. */ |
442 | 1616 #endif /* WIN32_NATIVE */ |
428 | 1617 |
1618 /* Get variable value */ | |
4324
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1619 got = egetenv ((CIbyte *) target); |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1620 if (got) |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1621 { |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1622 total += qxestrlen (got); |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1623 substituted = 1; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1624 } |
428 | 1625 } |
1626 | |
1627 if (!substituted) | |
444 | 1628 return filename; |
1629 | |
1630 /* If substitution required, recopy the filename and do it */ | |
428 | 1631 /* Make space in stack frame for the new copy */ |
2367 | 1632 xnm = alloca_ibytes (XSTRING_LENGTH (filename) + total + 1); |
428 | 1633 x = xnm; |
1634 | |
1635 /* Copy the rest of the name through, replacing $ constructs with values */ | |
1636 for (p = nm; *p;) | |
1637 if (*p != '$') | |
1638 *x++ = *p++; | |
1639 else | |
1640 { | |
1641 p++; | |
4324
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1642 seen_braces = 0; |
428 | 1643 if (p == endp) |
4324
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1644 { |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1645 *x++ = '$'; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1646 break; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1647 } |
428 | 1648 else if (*p == '$') |
1649 { | |
1650 *x++ = *p++; | |
1651 continue; | |
1652 } | |
1653 else if (*p == '{') | |
1654 { | |
4324
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1655 seen_braces = 1; |
428 | 1656 o = ++p; |
1657 while (p != endp && *p != '}') p++; | |
4324
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1658 if (*p != '}') |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1659 { |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1660 /* Don't syntax error, don't substitute */ |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1661 *x++ = '{'; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1662 p = o; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1663 continue; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1664 } |
428 | 1665 s = p++; |
1666 } | |
1667 else | |
1668 { | |
1669 o = p; | |
1670 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
1671 s = p; | |
1672 } | |
1673 | |
1674 /* Copy out the variable name */ | |
2367 | 1675 target = alloca_ibytes (s - o + 1); |
771 | 1676 qxestrncpy (target, o, s - o); |
428 | 1677 target[s - o] = 0; |
442 | 1678 #ifdef WIN32_NATIVE |
1204 | 1679 qxestrupr (target); /* $home == $HOME etc. */ |
442 | 1680 #endif /* WIN32_NATIVE */ |
428 | 1681 |
1682 /* Get variable value */ | |
4324
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1683 got = egetenv ((CIbyte *) target); |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1684 if (got) |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1685 { |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1686 qxestrcpy (x, got); |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1687 x += qxestrlen (got); |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1688 } |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1689 else |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1690 { |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1691 *x++ = '$'; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1692 if (seen_braces) |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1693 { |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1694 *x++ = '{'; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1695 /* Preserve the original case. */ |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1696 qxestrncpy (x, o, s - o); |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1697 x += s - o; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1698 *x++ = '}'; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1699 } |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1700 else |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1701 { |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1702 /* Preserve the original case. */ |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1703 qxestrncpy (x, o, s - o); |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1704 x += s - o; |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1705 } |
5e526366d533
Don't error on unknown environment variables, #'substitute-in-file-name.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4266
diff
changeset
|
1706 } |
428 | 1707 } |
1708 | |
1709 *x = 0; | |
1710 | |
1711 /* If /~ or // appears, discard everything through first slash. */ | |
1712 | |
1713 for (p = xnm; p != x; p++) | |
1714 if ((p[0] == '~' | |
657 | 1715 #if defined (WIN32_FILENAMES) |
428 | 1716 || (IS_DIRECTORY_SEP (p[0]) && p - 1 != xnm) |
657 | 1717 #else /* not WIN32_FILENAMES */ |
428 | 1718 || IS_DIRECTORY_SEP (p[0]) |
657 | 1719 #endif /* not WIN32_FILENAMES */ |
428 | 1720 ) |
1721 /* don't do p[-1] if that would go off the beginning --jwz */ | |
1722 && p != nm && p > xnm && IS_DIRECTORY_SEP (p[-1])) | |
1723 xnm = p; | |
657 | 1724 #ifdef WIN32_FILENAMES |
428 | 1725 else if (IS_DRIVE (p[0]) && p[1] == ':' |
1726 && p > nm && IS_DIRECTORY_SEP (p[-1])) | |
1727 xnm = p; | |
1728 #endif | |
1729 | |
1730 return make_string (xnm, x - xnm); | |
1731 } | |
1732 | |
1733 /* A slightly faster and more convenient way to get | |
1734 (directory-file-name (expand-file-name FOO)). */ | |
1735 | |
1736 Lisp_Object | |
1737 expand_and_dir_to_file (Lisp_Object filename, Lisp_Object defdir) | |
1738 { | |
442 | 1739 /* This function can call Lisp. GC checked 2000-07-28 ben */ |
428 | 1740 Lisp_Object abspath; |
1741 struct gcpro gcpro1; | |
1742 | |
1743 abspath = Fexpand_file_name (filename, defdir); | |
1744 GCPRO1 (abspath); | |
1745 /* Remove final slash, if any (unless path is root). | |
1746 stat behaves differently depending! */ | |
1747 if (XSTRING_LENGTH (abspath) > 1 | |
826 | 1748 && IS_DIRECTORY_SEP (string_byte (abspath, XSTRING_LENGTH (abspath) - 1)) |
1749 && !IS_DEVICE_SEP (string_byte (abspath, XSTRING_LENGTH (abspath) - 2))) | |
428 | 1750 /* We cannot take shortcuts; they might be wrong for magic file names. */ |
1751 abspath = Fdirectory_file_name (abspath); | |
1752 UNGCPRO; | |
1753 return abspath; | |
1754 } | |
1755 | |
1756 /* Signal an error if the file ABSNAME already exists. | |
1757 If INTERACTIVE is nonzero, ask the user whether to proceed, | |
1758 and bypass the error if the user says to go ahead. | |
1759 QUERYSTRING is a name for the action that is being considered | |
1760 to alter the file. | |
1761 *STATPTR is used to store the stat information if the file exists. | |
1762 If the file does not exist, STATPTR->st_mode is set to 0. */ | |
1763 | |
1764 static void | |
1333 | 1765 barf_or_query_if_file_exists (Lisp_Object absname, const CIbyte *querystring, |
428 | 1766 int interactive, struct stat *statptr) |
1767 { | |
442 | 1768 /* This function can call Lisp. GC checked 2000-07-28 ben */ |
428 | 1769 struct stat statbuf; |
1770 | |
1771 /* stat is a good way to tell whether the file exists, | |
1772 regardless of what access permissions it has. */ | |
771 | 1773 if (qxe_stat (XSTRING_DATA (absname), &statbuf) >= 0) |
428 | 1774 { |
1775 Lisp_Object tem; | |
1776 | |
1777 if (interactive) | |
1778 { | |
1779 Lisp_Object prompt; | |
1780 struct gcpro gcpro1; | |
1781 | |
771 | 1782 prompt = |
1783 emacs_sprintf_string | |
1784 (CGETTEXT ("File %s already exists; %s anyway? "), | |
1785 XSTRING_DATA (absname), CGETTEXT (querystring)); | |
428 | 1786 |
1787 GCPRO1 (prompt); | |
1788 tem = call1 (Qyes_or_no_p, prompt); | |
1789 UNGCPRO; | |
1790 } | |
1791 else | |
1792 tem = Qnil; | |
1793 | |
1794 if (NILP (tem)) | |
1795 Fsignal (Qfile_already_exists, | |
771 | 1796 list2 (build_msg_string ("File already exists"), |
428 | 1797 absname)); |
1798 if (statptr) | |
1799 *statptr = statbuf; | |
1800 } | |
1801 else | |
1802 { | |
1803 if (statptr) | |
1804 statptr->st_mode = 0; | |
1805 } | |
1806 return; | |
1807 } | |
1808 | |
1809 DEFUN ("copy-file", Fcopy_file, 2, 4, | |
1810 "fCopy file: \nFCopy %s to file: \np\nP", /* | |
444 | 1811 Copy FILENAME to NEWNAME. Both args must be strings. |
428 | 1812 Signals a `file-already-exists' error if file NEWNAME already exists, |
1813 unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil. | |
1814 A number as third arg means request confirmation if NEWNAME already exists. | |
1815 This is what happens in interactive use with M-x. | |
1816 Fourth arg KEEP-TIME non-nil means give the new file the same | |
1817 last-modified time as the old one. (This works on only some systems.) | |
1818 A prefix arg makes KEEP-TIME non-nil. | |
1819 */ | |
1820 (filename, newname, ok_if_already_exists, keep_time)) | |
1821 { | |
442 | 1822 /* This function can call Lisp. GC checked 2000-07-28 ben */ |
428 | 1823 int ifd, ofd, n; |
1824 char buf[16 * 1024]; | |
1825 struct stat st, out_st; | |
1826 Lisp_Object handler; | |
1827 int speccount = specpdl_depth (); | |
1828 struct gcpro gcpro1, gcpro2; | |
1829 /* Lisp_Object args[6]; */ | |
1830 int input_file_statable_p; | |
1831 | |
1832 GCPRO2 (filename, newname); | |
1833 CHECK_STRING (filename); | |
1834 CHECK_STRING (newname); | |
1835 filename = Fexpand_file_name (filename, Qnil); | |
1836 newname = Fexpand_file_name (newname, Qnil); | |
1837 | |
1838 /* If the input file name has special constructs in it, | |
1839 call the corresponding file handler. */ | |
1840 handler = Ffind_file_name_handler (filename, Qcopy_file); | |
1841 /* Likewise for output file name. */ | |
1842 if (NILP (handler)) | |
1843 handler = Ffind_file_name_handler (newname, Qcopy_file); | |
1844 if (!NILP (handler)) | |
1845 { | |
1846 UNGCPRO; | |
1847 return call5 (handler, Qcopy_file, filename, newname, | |
1848 ok_if_already_exists, keep_time); | |
1849 } | |
1850 | |
1851 /* When second argument is a directory, copy the file into it. | |
1852 (copy-file "foo" "bar/") == (copy-file "foo" "bar/foo") | |
1853 */ | |
1854 if (!NILP (Ffile_directory_p (newname))) | |
1855 { | |
1856 Lisp_Object args[3]; | |
1857 struct gcpro ngcpro1; | |
1858 int i = 1; | |
1859 | |
1860 args[0] = newname; | |
1861 args[1] = Qnil; args[2] = Qnil; | |
1862 NGCPRO1 (*args); | |
1863 ngcpro1.nvars = 3; | |
826 | 1864 if (!IS_DIRECTORY_SEP (string_byte (newname, |
442 | 1865 XSTRING_LENGTH (newname) - 1))) |
1866 | |
1867 args[i++] = Fchar_to_string (Vdirectory_sep_char); | |
428 | 1868 args[i++] = Ffile_name_nondirectory (filename); |
1869 newname = Fconcat (i, args); | |
1870 NUNGCPRO; | |
1871 } | |
1872 | |
1873 if (NILP (ok_if_already_exists) | |
1874 || INTP (ok_if_already_exists)) | |
1875 barf_or_query_if_file_exists (newname, "copy to it", | |
1876 INTP (ok_if_already_exists), &out_st); | |
771 | 1877 else if (qxe_stat (XSTRING_DATA (newname), &out_st) < 0) |
428 | 1878 out_st.st_mode = 0; |
1879 | |
771 | 1880 ifd = qxe_interruptible_open (XSTRING_DATA (filename), |
1881 O_RDONLY | OPEN_BINARY, 0); | |
428 | 1882 if (ifd < 0) |
563 | 1883 report_file_error ("Opening input file", filename); |
428 | 1884 |
1885 record_unwind_protect (close_file_unwind, make_int (ifd)); | |
1886 | |
1887 /* We can only copy regular files and symbolic links. Other files are not | |
1888 copyable by us. */ | |
771 | 1889 input_file_statable_p = (qxe_fstat (ifd, &st) >= 0); |
428 | 1890 |
442 | 1891 #ifndef WIN32_NATIVE |
428 | 1892 if (out_st.st_mode != 0 |
1893 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino) | |
1894 { | |
1895 errno = 0; | |
1896 report_file_error ("Input and output files are the same", | |
563 | 1897 list3 (Qunbound, filename, newname)); |
428 | 1898 } |
1899 #endif | |
1900 | |
1901 #if defined (S_ISREG) && defined (S_ISLNK) | |
1902 if (input_file_statable_p) | |
1903 { | |
1904 if (!(S_ISREG (st.st_mode)) | |
1905 /* XEmacs: have to allow S_ISCHR in order to copy /dev/null */ | |
1906 #ifdef S_ISCHR | |
1907 && !(S_ISCHR (st.st_mode)) | |
1908 #endif | |
1909 && !(S_ISLNK (st.st_mode))) | |
1910 { | |
1911 #if defined (EISDIR) | |
1912 /* Get a better looking error message. */ | |
1913 errno = EISDIR; | |
1914 #endif /* EISDIR */ | |
563 | 1915 report_file_error ("Non-regular file", filename); |
428 | 1916 } |
1917 } | |
1918 #endif /* S_ISREG && S_ISLNK */ | |
1919 | |
771 | 1920 ofd = qxe_open (XSTRING_DATA (newname), |
1921 O_WRONLY | O_CREAT | O_TRUNC | OPEN_BINARY, CREAT_MODE); | |
428 | 1922 if (ofd < 0) |
563 | 1923 report_file_error ("Opening output file", newname); |
428 | 1924 |
1925 { | |
1926 Lisp_Object ofd_locative = noseeum_cons (make_int (ofd), Qnil); | |
1927 | |
1928 record_unwind_protect (close_file_unwind, ofd_locative); | |
1929 | |
1930 while ((n = read_allowing_quit (ifd, buf, sizeof (buf))) > 0) | |
1931 { | |
1932 if (write_allowing_quit (ofd, buf, n) != n) | |
563 | 1933 report_file_error ("I/O error", newname); |
428 | 1934 } |
1935 | |
1936 /* Closing the output clobbers the file times on some systems. */ | |
771 | 1937 if (retry_close (ofd) < 0) |
563 | 1938 report_file_error ("I/O error", newname); |
428 | 1939 |
1940 if (input_file_statable_p) | |
1941 { | |
442 | 1942 if (!NILP (keep_time)) |
1943 { | |
1944 EMACS_TIME atime, mtime; | |
1945 EMACS_SET_SECS_USECS (atime, st.st_atime, 0); | |
1946 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0); | |
592 | 1947 if (set_file_times (newname, atime, mtime)) |
1948 report_file_error ("I/O error", list1 (newname)); | |
442 | 1949 } |
771 | 1950 qxe_chmod (XSTRING_DATA (newname), st.st_mode & 07777); |
428 | 1951 } |
1952 | |
1953 /* We'll close it by hand */ | |
1954 XCAR (ofd_locative) = Qnil; | |
1955 | |
1956 /* Close ifd */ | |
771 | 1957 unbind_to (speccount); |
428 | 1958 } |
1959 | |
1960 UNGCPRO; | |
1961 return Qnil; | |
1962 } | |
1963 | |
1964 DEFUN ("make-directory-internal", Fmake_directory_internal, 1, 1, 0, /* | |
1965 Create a directory. One argument, a file name string. | |
1966 */ | |
1967 (dirname_)) | |
1968 { | |
1969 /* This function can GC. GC checked 1997.04.06. */ | |
1970 Lisp_Object handler; | |
1971 struct gcpro gcpro1; | |
771 | 1972 DECLARE_EISTRING (dir); |
428 | 1973 |
1974 CHECK_STRING (dirname_); | |
1975 dirname_ = Fexpand_file_name (dirname_, Qnil); | |
1976 | |
1977 GCPRO1 (dirname_); | |
1978 handler = Ffind_file_name_handler (dirname_, Qmake_directory_internal); | |
1979 UNGCPRO; | |
1980 if (!NILP (handler)) | |
1981 return (call2 (handler, Qmake_directory_internal, dirname_)); | |
1982 | |
771 | 1983 eicpy_lstr (dir, dirname_); |
1984 if (eigetch_char (dir, eicharlen (dir) - 1) == '/') | |
1985 eidel (dir, eilen (dir) - 1, -1, 1, -1); | |
1986 | |
1987 if (qxe_mkdir (eidata (dir), 0777) != 0) | |
563 | 1988 report_file_error ("Creating directory", dirname_); |
428 | 1989 |
1990 return Qnil; | |
1991 } | |
1992 | |
1993 DEFUN ("delete-directory", Fdelete_directory, 1, 1, "FDelete directory: ", /* | |
1994 Delete a directory. One argument, a file name or directory name string. | |
1995 */ | |
1996 (dirname_)) | |
1997 { | |
1998 /* This function can GC. GC checked 1997.04.06. */ | |
1999 Lisp_Object handler; | |
2000 struct gcpro gcpro1; | |
2001 | |
2002 CHECK_STRING (dirname_); | |
2003 | |
2004 GCPRO1 (dirname_); | |
2005 dirname_ = Fexpand_file_name (dirname_, Qnil); | |
2006 dirname_ = Fdirectory_file_name (dirname_); | |
2007 | |
2008 handler = Ffind_file_name_handler (dirname_, Qdelete_directory); | |
2009 UNGCPRO; | |
2010 if (!NILP (handler)) | |
2011 return (call2 (handler, Qdelete_directory, dirname_)); | |
2012 | |
771 | 2013 if (qxe_rmdir (XSTRING_DATA (dirname_)) != 0) |
563 | 2014 report_file_error ("Removing directory", dirname_); |
428 | 2015 |
2016 return Qnil; | |
2017 } | |
2018 | |
2019 DEFUN ("delete-file", Fdelete_file, 1, 1, "fDelete file: ", /* | |
442 | 2020 Delete the file named FILENAME (a string). |
2021 If FILENAME has multiple names, it continues to exist with the other names. | |
428 | 2022 */ |
2023 (filename)) | |
2024 { | |
2025 /* This function can GC. GC checked 1997.04.06. */ | |
2026 Lisp_Object handler; | |
2027 struct gcpro gcpro1; | |
2028 | |
2029 CHECK_STRING (filename); | |
2030 filename = Fexpand_file_name (filename, Qnil); | |
2031 | |
2032 GCPRO1 (filename); | |
2033 handler = Ffind_file_name_handler (filename, Qdelete_file); | |
2034 UNGCPRO; | |
2035 if (!NILP (handler)) | |
2036 return call2 (handler, Qdelete_file, filename); | |
2037 | |
771 | 2038 if (0 > qxe_unlink (XSTRING_DATA (filename))) |
563 | 2039 report_file_error ("Removing old name", filename); |
428 | 2040 return Qnil; |
2041 } | |
2042 | |
2043 static Lisp_Object | |
2286 | 2044 internal_delete_file_1 (Lisp_Object UNUSED (ignore), |
2045 Lisp_Object UNUSED (ignore2)) | |
428 | 2046 { |
2047 return Qt; | |
2048 } | |
2049 | |
2050 /* Delete file FILENAME, returning 1 if successful and 0 if failed. */ | |
2051 | |
2052 int | |
2053 internal_delete_file (Lisp_Object filename) | |
2054 { | |
2055 /* This function can GC. GC checked 1997.04.06. */ | |
2056 return NILP (condition_case_1 (Qt, Fdelete_file, filename, | |
2057 internal_delete_file_1, Qnil)); | |
2058 } | |
2059 | |
2060 DEFUN ("rename-file", Frename_file, 2, 3, | |
2061 "fRename file: \nFRename %s to file: \np", /* | |
444 | 2062 Rename FILENAME as NEWNAME. Both args must be strings. |
2063 If file has names other than FILENAME, it continues to have those names. | |
428 | 2064 Signals a `file-already-exists' error if a file NEWNAME already exists |
2065 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil. | |
2066 A number as third arg means request confirmation if NEWNAME already exists. | |
2067 This is what happens in interactive use with M-x. | |
2068 */ | |
2069 (filename, newname, ok_if_already_exists)) | |
2070 { | |
2071 /* This function can GC. GC checked 1997.04.06. */ | |
2072 Lisp_Object handler; | |
2073 struct gcpro gcpro1, gcpro2; | |
2074 | |
2075 GCPRO2 (filename, newname); | |
2076 CHECK_STRING (filename); | |
2077 CHECK_STRING (newname); | |
2078 filename = Fexpand_file_name (filename, Qnil); | |
2079 newname = Fexpand_file_name (newname, Qnil); | |
2080 | |
2081 /* If the file name has special constructs in it, | |
2082 call the corresponding file handler. */ | |
2083 handler = Ffind_file_name_handler (filename, Qrename_file); | |
2084 if (NILP (handler)) | |
2085 handler = Ffind_file_name_handler (newname, Qrename_file); | |
2086 if (!NILP (handler)) | |
2087 { | |
2088 UNGCPRO; | |
2089 return call4 (handler, Qrename_file, | |
2090 filename, newname, ok_if_already_exists); | |
2091 } | |
2092 | |
2093 /* When second argument is a directory, rename the file into it. | |
2094 (rename-file "foo" "bar/") == (rename-file "foo" "bar/foo") | |
2095 */ | |
2096 if (!NILP (Ffile_directory_p (newname))) | |
2097 { | |
2098 Lisp_Object args[3]; | |
2099 struct gcpro ngcpro1; | |
2100 int i = 1; | |
2101 | |
2102 args[0] = newname; | |
2103 args[1] = Qnil; args[2] = Qnil; | |
2104 NGCPRO1 (*args); | |
2105 ngcpro1.nvars = 3; | |
826 | 2106 if (string_byte (newname, XSTRING_LENGTH (newname) - 1) != '/') |
428 | 2107 args[i++] = build_string ("/"); |
2108 args[i++] = Ffile_name_nondirectory (filename); | |
2109 newname = Fconcat (i, args); | |
2110 NUNGCPRO; | |
2111 } | |
2112 | |
2113 if (NILP (ok_if_already_exists) | |
2114 || INTP (ok_if_already_exists)) | |
2115 barf_or_query_if_file_exists (newname, "rename to it", | |
2116 INTP (ok_if_already_exists), 0); | |
2117 | |
442 | 2118 /* We have configure check for rename() and emulate using |
2119 link()/unlink() if necessary. */ | |
771 | 2120 if (0 > qxe_rename (XSTRING_DATA (filename), XSTRING_DATA (newname))) |
428 | 2121 { |
2122 if (errno == EXDEV) | |
2123 { | |
2124 Fcopy_file (filename, newname, | |
2125 /* We have already prompted if it was an integer, | |
2126 so don't have copy-file prompt again. */ | |
2127 (NILP (ok_if_already_exists) ? Qnil : Qt), | |
2128 Qt); | |
2129 Fdelete_file (filename); | |
2130 } | |
2131 else | |
2132 { | |
563 | 2133 report_file_error ("Renaming", list3 (Qunbound, filename, newname)); |
428 | 2134 } |
2135 } | |
2136 UNGCPRO; | |
2137 return Qnil; | |
2138 } | |
2139 | |
2140 DEFUN ("add-name-to-file", Fadd_name_to_file, 2, 3, | |
2141 "fAdd name to file: \nFName to add to %s: \np", /* | |
444 | 2142 Give FILENAME additional name NEWNAME. Both args must be strings. |
428 | 2143 Signals a `file-already-exists' error if a file NEWNAME already exists |
2144 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil. | |
2145 A number as third arg means request confirmation if NEWNAME already exists. | |
2146 This is what happens in interactive use with M-x. | |
2147 */ | |
2148 (filename, newname, ok_if_already_exists)) | |
2149 { | |
2150 /* This function can GC. GC checked 1997.04.06. */ | |
2151 Lisp_Object handler; | |
2152 struct gcpro gcpro1, gcpro2; | |
2153 | |
2154 GCPRO2 (filename, newname); | |
2155 CHECK_STRING (filename); | |
2156 CHECK_STRING (newname); | |
2157 filename = Fexpand_file_name (filename, Qnil); | |
2158 newname = Fexpand_file_name (newname, Qnil); | |
2159 | |
2160 /* If the file name has special constructs in it, | |
2161 call the corresponding file handler. */ | |
2162 handler = Ffind_file_name_handler (filename, Qadd_name_to_file); | |
2163 if (!NILP (handler)) | |
2164 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, filename, | |
2165 newname, ok_if_already_exists)); | |
2166 | |
2167 /* If the new name has special constructs in it, | |
2168 call the corresponding file handler. */ | |
2169 handler = Ffind_file_name_handler (newname, Qadd_name_to_file); | |
2170 if (!NILP (handler)) | |
2171 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, filename, | |
2172 newname, ok_if_already_exists)); | |
2173 | |
2174 if (NILP (ok_if_already_exists) | |
2175 || INTP (ok_if_already_exists)) | |
2176 barf_or_query_if_file_exists (newname, "make it a new name", | |
2177 INTP (ok_if_already_exists), 0); | |
771 | 2178 /* #### Emacs 20.6 contains an implementation of link() in w32.c. |
2179 Need to port. */ | |
2180 #ifndef HAVE_LINK | |
563 | 2181 signal_error_2 (Qunimplemented, "Adding new name", filename, newname); |
771 | 2182 #else /* HAVE_LINK */ |
2183 qxe_unlink (XSTRING_DATA (newname)); | |
2184 if (0 > qxe_link (XSTRING_DATA (filename), XSTRING_DATA (newname))) | |
428 | 2185 { |
2186 report_file_error ("Adding new name", | |
563 | 2187 list3 (Qunbound, filename, newname)); |
428 | 2188 } |
771 | 2189 #endif /* HAVE_LINK */ |
428 | 2190 |
2191 UNGCPRO; | |
2192 return Qnil; | |
2193 } | |
2194 | |
2195 DEFUN ("make-symbolic-link", Fmake_symbolic_link, 2, 3, | |
2196 "FMake symbolic link to file: \nFMake symbolic link to file %s: \np", /* | |
2197 Make a symbolic link to FILENAME, named LINKNAME. Both args strings. | |
2198 Signals a `file-already-exists' error if a file LINKNAME already exists | |
2199 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil. | |
2200 A number as third arg means request confirmation if LINKNAME already exists. | |
2201 This happens for interactive use with M-x. | |
4465
732b87cfabf2
Document Win32 symlink behaviour; adjust tests to take it into a/c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4383
diff
changeset
|
2202 |
732b87cfabf2
Document Win32 symlink behaviour; adjust tests to take it into a/c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4383
diff
changeset
|
2203 On platforms where symbolic links are not available, any file handlers will |
732b87cfabf2
Document Win32 symlink behaviour; adjust tests to take it into a/c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4383
diff
changeset
|
2204 be run, but the check for the existence of LINKNAME will not be done, and |
732b87cfabf2
Document Win32 symlink behaviour; adjust tests to take it into a/c.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4383
diff
changeset
|
2205 the symbolic link will not be created. |
428 | 2206 */ |
2207 (filename, linkname, ok_if_already_exists)) | |
2208 { | |
2209 /* This function can GC. GC checked 1997.06.04. */ | |
442 | 2210 /* XEmacs change: run handlers even if local machine doesn't have symlinks */ |
428 | 2211 Lisp_Object handler; |
2212 struct gcpro gcpro1, gcpro2; | |
2213 | |
2214 GCPRO2 (filename, linkname); | |
2215 CHECK_STRING (filename); | |
2216 CHECK_STRING (linkname); | |
2217 /* If the link target has a ~, we must expand it to get | |
2218 a truly valid file name. Otherwise, do not expand; | |
2219 we want to permit links to relative file names. */ | |
826 | 2220 if (string_byte (filename, 0) == '~') |
428 | 2221 filename = Fexpand_file_name (filename, Qnil); |
2222 linkname = Fexpand_file_name (linkname, Qnil); | |
2223 | |
2224 /* If the file name has special constructs in it, | |
2225 call the corresponding file handler. */ | |
2226 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link); | |
2227 if (!NILP (handler)) | |
2228 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename, linkname, | |
2229 ok_if_already_exists)); | |
2230 | |
2231 /* If the new link name has special constructs in it, | |
2232 call the corresponding file handler. */ | |
2233 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link); | |
2234 if (!NILP (handler)) | |
2235 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename, | |
2236 linkname, ok_if_already_exists)); | |
2237 | |
771 | 2238 #ifdef HAVE_SYMLINK |
428 | 2239 if (NILP (ok_if_already_exists) |
2240 || INTP (ok_if_already_exists)) | |
2241 barf_or_query_if_file_exists (linkname, "make it a link", | |
2242 INTP (ok_if_already_exists), 0); | |
2243 | |
771 | 2244 qxe_unlink (XSTRING_DATA (linkname)); |
2245 if (0 > qxe_symlink (XSTRING_DATA (filename), | |
2246 XSTRING_DATA (linkname))) | |
428 | 2247 { |
2248 report_file_error ("Making symbolic link", | |
563 | 2249 list3 (Qunbound, filename, linkname)); |
428 | 2250 } |
771 | 2251 #endif |
442 | 2252 |
428 | 2253 UNGCPRO; |
2254 return Qnil; | |
2255 } | |
2256 | |
2257 #ifdef HPUX_NET | |
2258 | |
2259 DEFUN ("sysnetunam", Fsysnetunam, 2, 2, 0, /* | |
2260 Open a network connection to PATH using LOGIN as the login string. | |
2261 */ | |
2262 (path, login)) | |
2263 { | |
2264 int netresult; | |
1333 | 2265 const Extbyte *path_ext; |
2266 const Extbyte *login_ext; | |
428 | 2267 |
2268 CHECK_STRING (path); | |
2269 CHECK_STRING (login); | |
2270 | |
2271 /* netunam, being a strange-o system call only used once, is not | |
2272 encapsulated. */ | |
440 | 2273 |
442 | 2274 LISP_STRING_TO_EXTERNAL (path, path_ext, Qfile_name); |
2275 LISP_STRING_TO_EXTERNAL (login, login_ext, Qnative); | |
440 | 2276 |
2277 netresult = netunam (path_ext, login_ext); | |
2278 | |
2279 return netresult == -1 ? Qnil : Qt; | |
428 | 2280 } |
2281 #endif /* HPUX_NET */ | |
2282 | |
2283 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, 1, 1, 0, /* | |
2284 Return t if file FILENAME specifies an absolute path name. | |
2285 On Unix, this is a name starting with a `/' or a `~'. | |
2286 */ | |
2287 (filename)) | |
2288 { | |
2289 /* This function does not GC */ | |
867 | 2290 Ibyte *ptr; |
428 | 2291 |
2292 CHECK_STRING (filename); | |
2293 ptr = XSTRING_DATA (filename); | |
2294 return (IS_DIRECTORY_SEP (*ptr) || *ptr == '~' | |
657 | 2295 #ifdef WIN32_FILENAMES |
428 | 2296 || (IS_DRIVE (*ptr) && ptr[1] == ':' && IS_DIRECTORY_SEP (ptr[2])) |
2297 #endif | |
2298 ) ? Qt : Qnil; | |
2299 } | |
2300 | |
2301 /* Return nonzero if file FILENAME exists and can be executed. */ | |
2302 | |
2303 static int | |
771 | 2304 check_executable (Lisp_Object filename) |
428 | 2305 { |
442 | 2306 #ifdef WIN32_NATIVE |
428 | 2307 struct stat st; |
771 | 2308 if (qxe_stat (XSTRING_DATA (filename), &st) < 0) |
428 | 2309 return 0; |
2310 return ((st.st_mode & S_IEXEC) != 0); | |
442 | 2311 #else /* not WIN32_NATIVE */ |
428 | 2312 #ifdef HAVE_EACCESS |
771 | 2313 return qxe_eaccess (XSTRING_DATA (filename), X_OK) >= 0; |
428 | 2314 #else |
2315 /* Access isn't quite right because it uses the real uid | |
2316 and we really want to test with the effective uid. | |
2317 But Unix doesn't give us a right way to do it. */ | |
771 | 2318 return qxe_access (XSTRING_DATA (filename), X_OK) >= 0; |
428 | 2319 #endif /* HAVE_EACCESS */ |
442 | 2320 #endif /* not WIN32_NATIVE */ |
428 | 2321 } |
2322 | |
2323 /* Return nonzero if file FILENAME exists and can be written. */ | |
2324 | |
2325 static int | |
867 | 2326 check_writable (const Ibyte *filename) |
428 | 2327 { |
3728 | 2328 #if defined(WIN32_NATIVE) || defined(CYGWIN) |
2329 #ifdef CYGWIN | |
2330 char filename_buffer[PATH_MAX]; | |
2331 #endif | |
2332 // Since this has to work for a directory, we can't just call 'CreateFile' | |
2333 PSECURITY_DESCRIPTOR pDesc; /* Must be freed with LocalFree */ | |
2334 /* these need not be freed, they point into pDesc */ | |
2335 PSID psidOwner; | |
2336 PSID psidGroup; | |
2337 PACL pDacl; | |
2338 PACL pSacl; | |
2339 /* end of insides of descriptor */ | |
2340 DWORD error; | |
2341 DWORD attributes; | |
2342 HANDLE tokenHandle; | |
2343 GENERIC_MAPPING genericMapping; | |
2344 DWORD accessMask; | |
2345 PRIVILEGE_SET PrivilegeSet; | |
2346 DWORD dwPrivSetSize = sizeof( PRIVILEGE_SET ); | |
2347 BOOL fAccessGranted = FALSE; | |
3781 | 2348 DWORD dwAccessAllowed; |
2349 Extbyte *fnameext; | |
3728 | 2350 |
2351 #ifdef CYGWIN | |
2352 cygwin_conv_to_full_win32_path(filename, filename_buffer); | |
2353 filename = (Ibyte*)filename_buffer; | |
2354 #endif | |
2355 | |
2356 C_STRING_TO_TSTR(filename, fnameext); | |
3781 | 2357 |
2358 // First check for a normal file with the old-style readonly bit | |
2359 attributes = qxeGetFileAttributes(fnameext); | |
2360 if (FILE_ATTRIBUTE_READONLY == (attributes & (FILE_ATTRIBUTE_DIRECTORY|FILE_ATTRIBUTE_READONLY))) | |
2361 return 0; | |
2362 | |
3728 | 2363 /* Win32 prototype lacks const. */ |
2364 error = qxeGetNamedSecurityInfo(fnameext, SE_FILE_OBJECT, | |
3781 | 2365 DACL_SECURITY_INFORMATION|GROUP_SECURITY_INFORMATION|OWNER_SECURITY_INFORMATION, |
2366 &psidOwner, &psidGroup, &pDacl, &pSacl, &pDesc); | |
3728 | 2367 if(error != ERROR_SUCCESS) { // FAT? |
3781 | 2368 attributes = qxeGetFileAttributes(fnameext); |
3728 | 2369 return (attributes & FILE_ATTRIBUTE_DIRECTORY) || (0 == (attributes & FILE_ATTRIBUTE_READONLY)); |
2370 } | |
2371 | |
2372 genericMapping.GenericRead = FILE_GENERIC_READ; | |
2373 genericMapping.GenericWrite = FILE_GENERIC_WRITE; | |
2374 genericMapping.GenericExecute = FILE_GENERIC_EXECUTE; | |
2375 genericMapping.GenericAll = FILE_ALL_ACCESS; | |
2376 | |
2377 if(!ImpersonateSelf(SecurityDelegation)) { | |
2378 return 0; | |
2379 } | |
2380 if(!OpenThreadToken(GetCurrentThread(), TOKEN_ALL_ACCESS, TRUE, &tokenHandle)) { | |
2381 return 0; | |
2382 } | |
2383 | |
2384 accessMask = GENERIC_WRITE; | |
2385 MapGenericMask(&accessMask, &genericMapping); | |
2386 | |
2387 if(!AccessCheck(pDesc, tokenHandle, accessMask, &genericMapping, | |
2388 &PrivilegeSet, // receives privileges used in check | |
2389 &dwPrivSetSize, // size of PrivilegeSet buffer | |
2390 &dwAccessAllowed, // receives mask of allowed access rights | |
2391 &fAccessGranted)) | |
2392 { | |
2393 CloseHandle(tokenHandle); | |
2394 RevertToSelf(); | |
2395 LocalFree(pDesc); | |
2396 return 0; | |
2397 } | |
2398 CloseHandle(tokenHandle); | |
2399 RevertToSelf(); | |
2400 LocalFree(pDesc); | |
2401 return fAccessGranted == TRUE; | |
2402 #else | |
428 | 2403 #ifdef HAVE_EACCESS |
771 | 2404 return (qxe_eaccess (filename, W_OK) >= 0); |
428 | 2405 #else |
2406 /* Access isn't quite right because it uses the real uid | |
2407 and we really want to test with the effective uid. | |
2408 But Unix doesn't give us a right way to do it. | |
2409 Opening with O_WRONLY could work for an ordinary file, | |
2410 but would lose for directories. */ | |
771 | 2411 return (qxe_access (filename, W_OK) >= 0); |
428 | 2412 #endif |
3728 | 2413 #endif |
428 | 2414 } |
2415 | |
2416 DEFUN ("file-exists-p", Ffile_exists_p, 1, 1, 0, /* | |
2417 Return t if file FILENAME exists. (This does not mean you can read it.) | |
2418 See also `file-readable-p' and `file-attributes'. | |
2419 */ | |
2420 (filename)) | |
2421 { | |
442 | 2422 /* This function can call lisp; GC checked 2000-07-11 ben */ |
428 | 2423 Lisp_Object abspath; |
2424 Lisp_Object handler; | |
2425 struct stat statbuf; | |
2426 struct gcpro gcpro1; | |
2427 | |
2428 CHECK_STRING (filename); | |
2429 abspath = Fexpand_file_name (filename, Qnil); | |
2430 | |
2431 /* If the file name has special constructs in it, | |
2432 call the corresponding file handler. */ | |
2433 GCPRO1 (abspath); | |
2434 handler = Ffind_file_name_handler (abspath, Qfile_exists_p); | |
2435 UNGCPRO; | |
2436 if (!NILP (handler)) | |
2437 return call2 (handler, Qfile_exists_p, abspath); | |
2438 | |
771 | 2439 return qxe_stat (XSTRING_DATA (abspath), &statbuf) >= 0 ? Qt : Qnil; |
428 | 2440 } |
2441 | |
2442 DEFUN ("file-executable-p", Ffile_executable_p, 1, 1, 0, /* | |
2443 Return t if FILENAME can be executed by you. | |
2444 For a directory, this means you can access files in that directory. | |
2445 */ | |
2446 (filename)) | |
2447 | |
2448 { | |
442 | 2449 /* This function can GC. GC checked 07-11-2000 ben. */ |
428 | 2450 Lisp_Object abspath; |
2451 Lisp_Object handler; | |
2452 struct gcpro gcpro1; | |
2453 | |
2454 CHECK_STRING (filename); | |
2455 abspath = Fexpand_file_name (filename, Qnil); | |
2456 | |
2457 /* If the file name has special constructs in it, | |
2458 call the corresponding file handler. */ | |
2459 GCPRO1 (abspath); | |
2460 handler = Ffind_file_name_handler (abspath, Qfile_executable_p); | |
2461 UNGCPRO; | |
2462 if (!NILP (handler)) | |
2463 return call2 (handler, Qfile_executable_p, abspath); | |
2464 | |
771 | 2465 return check_executable (abspath) ? Qt : Qnil; |
428 | 2466 } |
2467 | |
2468 DEFUN ("file-readable-p", Ffile_readable_p, 1, 1, 0, /* | |
2469 Return t if file FILENAME exists and you can read it. | |
2470 See also `file-exists-p' and `file-attributes'. | |
2471 */ | |
2472 (filename)) | |
2473 { | |
2474 /* This function can GC */ | |
2475 Lisp_Object abspath = Qnil; | |
2476 Lisp_Object handler; | |
2477 struct gcpro gcpro1; | |
2478 GCPRO1 (abspath); | |
2479 | |
2480 CHECK_STRING (filename); | |
2481 abspath = Fexpand_file_name (filename, Qnil); | |
2482 | |
2483 /* If the file name has special constructs in it, | |
2484 call the corresponding file handler. */ | |
2485 handler = Ffind_file_name_handler (abspath, Qfile_readable_p); | |
2486 if (!NILP (handler)) | |
2487 RETURN_UNGCPRO (call2 (handler, Qfile_readable_p, abspath)); | |
2488 | |
2526 | 2489 #if defined (WIN32_FILENAMES) |
428 | 2490 /* Under MS-DOS and Windows, open does not work for directories. */ |
2491 UNGCPRO; | |
771 | 2492 if (qxe_access (XSTRING_DATA (abspath), 0) == 0) |
428 | 2493 return Qt; |
2494 else | |
2495 return Qnil; | |
657 | 2496 #else /* not WIN32_FILENAMES */ |
428 | 2497 { |
771 | 2498 int desc = qxe_interruptible_open (XSTRING_DATA (abspath), |
2499 O_RDONLY | OPEN_BINARY, 0); | |
428 | 2500 UNGCPRO; |
2501 if (desc < 0) | |
2502 return Qnil; | |
771 | 2503 retry_close (desc); |
428 | 2504 return Qt; |
2505 } | |
657 | 2506 #endif /* not WIN32_FILENAMES */ |
428 | 2507 } |
2508 | |
2509 /* Having this before file-symlink-p mysteriously caused it to be forgotten | |
2510 on the RT/PC. */ | |
2511 DEFUN ("file-writable-p", Ffile_writable_p, 1, 1, 0, /* | |
2512 Return t if file FILENAME can be written or created by you. | |
2513 */ | |
2514 (filename)) | |
2515 { | |
2516 /* This function can GC. GC checked 1997.04.10. */ | |
2517 Lisp_Object abspath, dir; | |
2518 Lisp_Object handler; | |
2519 struct stat statbuf; | |
2520 struct gcpro gcpro1; | |
2521 | |
2522 CHECK_STRING (filename); | |
2523 abspath = Fexpand_file_name (filename, Qnil); | |
2524 | |
2525 /* If the file name has special constructs in it, | |
2526 call the corresponding file handler. */ | |
2527 GCPRO1 (abspath); | |
2528 handler = Ffind_file_name_handler (abspath, Qfile_writable_p); | |
2529 UNGCPRO; | |
2530 if (!NILP (handler)) | |
2531 return call2 (handler, Qfile_writable_p, abspath); | |
2532 | |
771 | 2533 if (qxe_stat (XSTRING_DATA (abspath), &statbuf) >= 0) |
2534 return (check_writable (XSTRING_DATA (abspath)) | |
428 | 2535 ? Qt : Qnil); |
2536 | |
2537 | |
2538 GCPRO1 (abspath); | |
2539 dir = Ffile_name_directory (abspath); | |
2540 UNGCPRO; | |
867 | 2541 return (check_writable (!NILP (dir) ? XSTRING_DATA (dir) : (Ibyte *) "") |
428 | 2542 ? Qt : Qnil); |
2543 } | |
2544 | |
2545 DEFUN ("file-symlink-p", Ffile_symlink_p, 1, 1, 0, /* | |
2546 Return non-nil if file FILENAME is the name of a symbolic link. | |
2547 The value is the name of the file to which it is linked. | |
2548 Otherwise returns nil. | |
2549 */ | |
2550 (filename)) | |
2551 { | |
2552 /* This function can GC. GC checked 1997.04.10. */ | |
442 | 2553 /* XEmacs change: run handlers even if local machine doesn't have symlinks */ |
771 | 2554 #ifdef HAVE_READLINK |
867 | 2555 Ibyte *buf; |
428 | 2556 int bufsize; |
2557 int valsize; | |
2558 Lisp_Object val; | |
442 | 2559 #endif |
428 | 2560 Lisp_Object handler; |
2561 struct gcpro gcpro1; | |
2562 | |
2563 CHECK_STRING (filename); | |
2564 filename = Fexpand_file_name (filename, Qnil); | |
2565 | |
2566 /* If the file name has special constructs in it, | |
2567 call the corresponding file handler. */ | |
2568 GCPRO1 (filename); | |
2569 handler = Ffind_file_name_handler (filename, Qfile_symlink_p); | |
2570 UNGCPRO; | |
2571 if (!NILP (handler)) | |
2572 return call2 (handler, Qfile_symlink_p, filename); | |
2573 | |
771 | 2574 #ifdef HAVE_READLINK |
428 | 2575 bufsize = 100; |
2576 while (1) | |
2577 { | |
867 | 2578 buf = xnew_array_and_zero (Ibyte, bufsize); |
771 | 2579 valsize = qxe_readlink (XSTRING_DATA (filename), |
2580 buf, bufsize); | |
428 | 2581 if (valsize < bufsize) break; |
2582 /* Buffer was not long enough */ | |
1726 | 2583 xfree (buf, Ibyte *); |
428 | 2584 bufsize *= 2; |
2585 } | |
2586 if (valsize == -1) | |
2587 { | |
1726 | 2588 xfree (buf, Ibyte *); |
428 | 2589 return Qnil; |
2590 } | |
771 | 2591 val = make_string (buf, valsize); |
1726 | 2592 xfree (buf, Ibyte *); |
428 | 2593 return val; |
2526 | 2594 #elif defined (WIN32_NATIVE) |
2595 if (mswindows_shortcuts_are_symlinks) | |
2596 { | |
2597 /* We want to resolve the directory component and leave the rest | |
2598 alone. */ | |
2599 Ibyte *path = XSTRING_DATA (filename); | |
2600 Ibyte *dirend = | |
2601 find_end_of_directory_component (path, XSTRING_LENGTH (filename)); | |
2602 Ibyte *fname; | |
2603 DECLARE_EISTRING (dir); | |
2604 | |
2605 if (dirend != path) | |
2606 { | |
2607 Ibyte *resdir; | |
2608 DECLARE_EISTRING (resname); | |
2609 | |
2610 eicpy_raw (dir, path, dirend - path); | |
2611 PATHNAME_RESOLVE_LINKS (eidata (dir), resdir); | |
2612 eicpy_rawz (resname, resdir); | |
2613 eicat_rawz (resname, dirend); | |
2614 path = eidata (resname); | |
2615 } | |
2616 | |
2617 fname = mswindows_read_link (path); | |
2618 if (!fname) | |
2619 return Qnil; | |
2620 { | |
2621 Lisp_Object val = build_intstring (fname); | |
2622 xfree (fname, Ibyte *); | |
2623 return val; | |
2624 } | |
2625 } | |
428 | 2626 return Qnil; |
2526 | 2627 #else |
2628 return Qnil; | |
2629 #endif | |
428 | 2630 } |
2631 | |
2632 DEFUN ("file-directory-p", Ffile_directory_p, 1, 1, 0, /* | |
2633 Return t if file FILENAME is the name of a directory as a file. | |
2634 A directory name spec may be given instead; then the value is t | |
2635 if the directory so specified exists and really is a directory. | |
2636 */ | |
2637 (filename)) | |
2638 { | |
2639 /* This function can GC. GC checked 1997.04.10. */ | |
2640 Lisp_Object abspath; | |
2641 struct stat st; | |
2642 Lisp_Object handler; | |
2643 struct gcpro gcpro1; | |
2644 | |
2645 GCPRO1 (current_buffer->directory); | |
2646 abspath = expand_and_dir_to_file (filename, | |
2647 current_buffer->directory); | |
2648 UNGCPRO; | |
2649 | |
2650 /* If the file name has special constructs in it, | |
2651 call the corresponding file handler. */ | |
2652 GCPRO1 (abspath); | |
2653 handler = Ffind_file_name_handler (abspath, Qfile_directory_p); | |
2654 UNGCPRO; | |
2655 if (!NILP (handler)) | |
2656 return call2 (handler, Qfile_directory_p, abspath); | |
2657 | |
771 | 2658 if (qxe_stat (XSTRING_DATA (abspath), &st) < 0) |
428 | 2659 return Qnil; |
2660 return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil; | |
2661 } | |
2662 | |
2663 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p, 1, 1, 0, /* | |
2664 Return t if file FILENAME is the name of a directory as a file, | |
2665 and files in that directory can be opened by you. In order to use a | |
2666 directory as a buffer's current directory, this predicate must return true. | |
2667 A directory name spec may be given instead; then the value is t | |
2668 if the directory so specified exists and really is a readable and | |
2669 searchable directory. | |
2670 */ | |
2671 (filename)) | |
2672 { | |
2673 /* This function can GC. GC checked 1997.04.10. */ | |
2674 Lisp_Object handler; | |
2675 | |
2676 /* If the file name has special constructs in it, | |
2677 call the corresponding file handler. */ | |
2678 handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p); | |
2679 if (!NILP (handler)) | |
2680 return call2 (handler, Qfile_accessible_directory_p, | |
2681 filename); | |
2682 | |
2526 | 2683 #if !defined (WIN32_NATIVE) |
428 | 2684 if (NILP (Ffile_directory_p (filename))) |
2685 return (Qnil); | |
2686 else | |
2687 return Ffile_executable_p (filename); | |
2688 #else | |
2689 { | |
2690 int tem; | |
2691 struct gcpro gcpro1; | |
2692 /* It's an unlikely combination, but yes we really do need to gcpro: | |
2693 Suppose that file-accessible-directory-p has no handler, but | |
2694 file-directory-p does have a handler; this handler causes a GC which | |
2695 relocates the string in `filename'; and finally file-directory-p | |
2696 returns non-nil. Then we would end up passing a garbaged string | |
2697 to file-executable-p. */ | |
2698 GCPRO1 (filename); | |
2699 tem = (NILP (Ffile_directory_p (filename)) | |
2700 || NILP (Ffile_executable_p (filename))); | |
2701 UNGCPRO; | |
2702 return tem ? Qnil : Qt; | |
2703 } | |
442 | 2704 #endif /* !defined(WIN32_NATIVE) */ |
428 | 2705 } |
2706 | |
2707 DEFUN ("file-regular-p", Ffile_regular_p, 1, 1, 0, /* | |
2708 Return t if file FILENAME is the name of a regular file. | |
2709 This is the sort of file that holds an ordinary stream of data bytes. | |
2710 */ | |
2711 (filename)) | |
2712 { | |
2713 /* This function can GC. GC checked 1997.04.10. */ | |
2714 Lisp_Object abspath; | |
2715 struct stat st; | |
2716 Lisp_Object handler; | |
2717 struct gcpro gcpro1; | |
2718 | |
2719 GCPRO1 (current_buffer->directory); | |
2720 abspath = expand_and_dir_to_file (filename, current_buffer->directory); | |
2721 UNGCPRO; | |
2722 | |
2723 /* If the file name has special constructs in it, | |
2724 call the corresponding file handler. */ | |
2725 GCPRO1 (abspath); | |
2726 handler = Ffind_file_name_handler (abspath, Qfile_regular_p); | |
2727 UNGCPRO; | |
2728 if (!NILP (handler)) | |
2729 return call2 (handler, Qfile_regular_p, abspath); | |
2730 | |
771 | 2731 if (qxe_stat (XSTRING_DATA (abspath), &st) < 0) |
428 | 2732 return Qnil; |
2733 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil; | |
2734 } | |
2735 | |
2736 DEFUN ("file-modes", Ffile_modes, 1, 1, 0, /* | |
444 | 2737 Return mode bits of file named FILENAME, as an integer. |
428 | 2738 */ |
2739 (filename)) | |
2740 { | |
2741 /* This function can GC. GC checked 1997.04.10. */ | |
2742 Lisp_Object abspath; | |
2743 struct stat st; | |
2744 Lisp_Object handler; | |
2745 struct gcpro gcpro1; | |
2746 | |
2747 GCPRO1 (current_buffer->directory); | |
2748 abspath = expand_and_dir_to_file (filename, | |
2749 current_buffer->directory); | |
2750 UNGCPRO; | |
2751 | |
2752 /* If the file name has special constructs in it, | |
2753 call the corresponding file handler. */ | |
2754 GCPRO1 (abspath); | |
2755 handler = Ffind_file_name_handler (abspath, Qfile_modes); | |
2756 UNGCPRO; | |
2757 if (!NILP (handler)) | |
2758 return call2 (handler, Qfile_modes, abspath); | |
2759 | |
771 | 2760 if (qxe_stat (XSTRING_DATA (abspath), &st) < 0) |
428 | 2761 return Qnil; |
2762 /* Syncing with FSF 19.34.6 note: not in FSF, #if 0'ed out here. */ | |
2763 #if 0 | |
442 | 2764 #ifdef WIN32_NATIVE |
771 | 2765 if (check_executable (abspath)) |
428 | 2766 st.st_mode |= S_IEXEC; |
442 | 2767 #endif /* WIN32_NATIVE */ |
428 | 2768 #endif /* 0 */ |
2769 | |
2770 return make_int (st.st_mode & 07777); | |
2771 } | |
2772 | |
2773 DEFUN ("set-file-modes", Fset_file_modes, 2, 2, 0, /* | |
444 | 2774 Set mode bits of file named FILENAME to MODE (an integer). |
428 | 2775 Only the 12 low bits of MODE are used. |
2776 */ | |
2777 (filename, mode)) | |
2778 { | |
2779 /* This function can GC. GC checked 1997.04.10. */ | |
2780 Lisp_Object abspath; | |
2781 Lisp_Object handler; | |
2782 struct gcpro gcpro1; | |
2783 | |
2784 GCPRO1 (current_buffer->directory); | |
2785 abspath = Fexpand_file_name (filename, current_buffer->directory); | |
2786 UNGCPRO; | |
2787 | |
2788 CHECK_INT (mode); | |
2789 | |
2790 /* If the file name has special constructs in it, | |
2791 call the corresponding file handler. */ | |
2792 GCPRO1 (abspath); | |
2793 handler = Ffind_file_name_handler (abspath, Qset_file_modes); | |
2794 UNGCPRO; | |
2795 if (!NILP (handler)) | |
2796 return call3 (handler, Qset_file_modes, abspath, mode); | |
2797 | |
771 | 2798 if (qxe_chmod (XSTRING_DATA (abspath), XINT (mode)) < 0) |
563 | 2799 report_file_error ("Doing chmod", abspath); |
428 | 2800 |
2801 return Qnil; | |
2802 } | |
2803 | |
2804 DEFUN ("set-default-file-modes", Fset_default_file_modes, 1, 1, 0, /* | |
2805 Set the file permission bits for newly created files. | |
444 | 2806 The argument MODE should be an integer; if a bit in MODE is 1, |
2807 subsequently created files will not have the permission corresponding | |
2808 to that bit enabled. Only the low 9 bits are used. | |
428 | 2809 This setting is inherited by subprocesses. |
2810 */ | |
2811 (mode)) | |
2812 { | |
2813 CHECK_INT (mode); | |
2814 | |
2815 umask ((~ XINT (mode)) & 0777); | |
2816 | |
2817 return Qnil; | |
2818 } | |
2819 | |
2820 DEFUN ("default-file-modes", Fdefault_file_modes, 0, 0, 0, /* | |
2821 Return the default file protection for created files. | |
2822 The umask value determines which permissions are enabled in newly | |
2823 created files. If a permission's bit in the umask is 1, subsequently | |
2824 created files will not have that permission enabled. | |
2825 */ | |
2826 ()) | |
2827 { | |
2828 int mode; | |
2829 | |
2830 mode = umask (0); | |
2831 umask (mode); | |
2832 | |
2833 return make_int ((~ mode) & 0777); | |
2834 } | |
2835 | |
2836 DEFUN ("unix-sync", Funix_sync, 0, 0, "", /* | |
2837 Tell Unix to finish all pending disk updates. | |
2838 */ | |
2839 ()) | |
2840 { | |
442 | 2841 #ifndef WIN32_NATIVE |
428 | 2842 sync (); |
2843 #endif | |
2844 return Qnil; | |
2845 } | |
2846 | |
2847 | |
2848 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, 2, 2, 0, /* | |
2849 Return t if file FILE1 is newer than file FILE2. | |
2850 If FILE1 does not exist, the answer is nil; | |
2851 otherwise, if FILE2 does not exist, the answer is t. | |
2852 */ | |
2853 (file1, file2)) | |
2854 { | |
2855 /* This function can GC. GC checked 1997.04.10. */ | |
2856 Lisp_Object abspath1, abspath2; | |
2857 struct stat st; | |
2858 int mtime1; | |
2859 Lisp_Object handler; | |
2860 struct gcpro gcpro1, gcpro2, gcpro3; | |
2861 | |
2862 CHECK_STRING (file1); | |
2863 CHECK_STRING (file2); | |
2864 | |
2865 abspath1 = Qnil; | |
2866 abspath2 = Qnil; | |
2867 | |
2868 GCPRO3 (abspath1, abspath2, current_buffer->directory); | |
2869 abspath1 = expand_and_dir_to_file (file1, current_buffer->directory); | |
2870 abspath2 = expand_and_dir_to_file (file2, current_buffer->directory); | |
2871 | |
2872 /* If the file name has special constructs in it, | |
2873 call the corresponding file handler. */ | |
2874 handler = Ffind_file_name_handler (abspath1, Qfile_newer_than_file_p); | |
2875 if (NILP (handler)) | |
2876 handler = Ffind_file_name_handler (abspath2, Qfile_newer_than_file_p); | |
2877 UNGCPRO; | |
2878 if (!NILP (handler)) | |
2879 return call3 (handler, Qfile_newer_than_file_p, abspath1, | |
2880 abspath2); | |
2881 | |
771 | 2882 if (qxe_stat (XSTRING_DATA (abspath1), &st) < 0) |
428 | 2883 return Qnil; |
2884 | |
2885 mtime1 = st.st_mtime; | |
2886 | |
771 | 2887 if (qxe_stat (XSTRING_DATA (abspath2), &st) < 0) |
428 | 2888 return Qt; |
2889 | |
2890 return (mtime1 > st.st_mtime) ? Qt : Qnil; | |
2891 } | |
2892 | |
2893 | |
2894 /* Stack sizes > 2**16 is a good way to elicit compiler bugs */ | |
2895 /* #define READ_BUF_SIZE (2 << 16) */ | |
2896 #define READ_BUF_SIZE (1 << 15) | |
2897 | |
2898 DEFUN ("insert-file-contents-internal", Finsert_file_contents_internal, | |
2899 1, 7, 0, /* | |
2900 Insert contents of file FILENAME after point; no coding-system frobbing. | |
2901 This function is identical to `insert-file-contents' except for the | |
771 | 2902 handling of the CODESYS and USED-CODESYS arguments. |
2903 | |
2904 The file is decoded according to CODESYS; if omitted, no conversion | |
2905 happens. If USED-CODESYS is non-nil, it should be a symbol, and the actual | |
2906 coding system that was used for the decoding is stored into it. It will in | |
2907 general be different from CODESYS if CODESYS specifies automatic encoding | |
2908 detection or end-of-line detection. | |
428 | 2909 |
444 | 2910 Currently START and END refer to byte positions (as opposed to character |
771 | 2911 positions), even in Mule and under MS Windows. (Fixing this, particularly |
2912 under Mule, is very difficult.) | |
428 | 2913 */ |
444 | 2914 (filename, visit, start, end, replace, codesys, used_codesys)) |
428 | 2915 { |
2916 /* This function can call lisp */ | |
2917 struct stat st; | |
2918 int fd; | |
2919 int saverrno = 0; | |
2920 Charcount inserted = 0; | |
2921 int speccount; | |
3841 | 2922 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
3814 | 2923 Lisp_Object val; |
428 | 2924 int total; |
867 | 2925 Ibyte read_buf[READ_BUF_SIZE]; |
428 | 2926 int mc_count; |
2927 struct buffer *buf = current_buffer; | |
2928 Lisp_Object curbuf; | |
2929 int not_regular = 0; | |
771 | 2930 int do_speedy_insert = |
2931 coding_system_is_binary (Fget_coding_system (codesys)); | |
428 | 2932 |
2933 if (buf->base_buffer && ! NILP (visit)) | |
563 | 2934 invalid_operation ("Cannot do file visiting in an indirect buffer", Qunbound); |
428 | 2935 |
2936 /* No need to call Fbarf_if_buffer_read_only() here. | |
2937 That's called in begin_multiple_change() or wherever. */ | |
2938 | |
2939 val = Qnil; | |
2940 | |
2941 /* #### dmoore - should probably check in various places to see if | |
2942 curbuf was killed and if so signal an error? */ | |
2943 | |
793 | 2944 curbuf = wrap_buffer (buf); |
428 | 2945 |
3814 | 2946 GCPRO4 (filename, val, visit, curbuf); |
428 | 2947 |
2948 mc_count = (NILP (replace)) ? | |
2949 begin_multiple_change (buf, BUF_PT (buf), BUF_PT (buf)) : | |
2950 begin_multiple_change (buf, BUF_BEG (buf), BUF_Z (buf)); | |
2951 | |
2952 speccount = specpdl_depth (); /* begin_multiple_change also adds | |
2953 an unwind_protect */ | |
2954 | |
2955 filename = Fexpand_file_name (filename, Qnil); | |
2956 | |
2957 if (!NILP (used_codesys)) | |
2958 CHECK_SYMBOL (used_codesys); | |
2959 | |
444 | 2960 if ( (!NILP (start) || !NILP (end)) && !NILP (visit) ) |
563 | 2961 invalid_operation ("Attempt to visit less than an entire file", Qunbound); |
428 | 2962 |
2963 fd = -1; | |
2964 | |
771 | 2965 if (qxe_stat (XSTRING_DATA (filename), &st) < 0) |
428 | 2966 { |
2967 badopen: | |
2968 if (NILP (visit)) | |
563 | 2969 report_file_error ("Opening input file", filename); |
428 | 2970 st.st_mtime = -1; |
2971 goto notfound; | |
2972 } | |
2973 | |
2974 #ifdef S_IFREG | |
2975 /* Signal an error if we are accessing a non-regular file, with | |
444 | 2976 REPLACE, START or END being non-nil. */ |
428 | 2977 if (!S_ISREG (st.st_mode)) |
2978 { | |
2979 not_regular = 1; | |
2980 | |
2981 if (!NILP (visit)) | |
2982 goto notfound; | |
2983 | |
444 | 2984 if (!NILP (replace) || !NILP (start) || !NILP (end)) |
428 | 2985 { |
2986 end_multiple_change (buf, mc_count); | |
2987 | |
444 | 2988 RETURN_UNGCPRO |
2989 (Fsignal (Qfile_error, | |
771 | 2990 list2 (build_msg_string("not a regular file"), |
444 | 2991 filename))); |
428 | 2992 } |
2993 } | |
2994 #endif /* S_IFREG */ | |
2995 | |
444 | 2996 if (!NILP (start)) |
2997 CHECK_INT (start); | |
428 | 2998 else |
444 | 2999 start = Qzero; |
428 | 3000 |
3001 if (!NILP (end)) | |
3002 CHECK_INT (end); | |
3003 | |
3004 if (fd < 0) | |
3005 { | |
771 | 3006 if ((fd = qxe_interruptible_open (XSTRING_DATA (filename), |
3007 O_RDONLY | OPEN_BINARY, 0)) < 0) | |
428 | 3008 goto badopen; |
3009 } | |
3010 | |
3011 /* Replacement should preserve point as it preserves markers. */ | |
3012 if (!NILP (replace)) | |
3013 record_unwind_protect (restore_point_unwind, Fpoint_marker (Qnil, Qnil)); | |
3014 | |
3015 record_unwind_protect (close_file_unwind, make_int (fd)); | |
3016 | |
3017 /* Supposedly happens on VMS. */ | |
3018 if (st.st_size < 0) | |
563 | 3019 signal_error (Qfile_error, "File size is negative", Qunbound); |
428 | 3020 |
3021 if (NILP (end)) | |
3022 { | |
3023 if (!not_regular) | |
3024 { | |
3025 end = make_int (st.st_size); | |
3026 if (XINT (end) != st.st_size) | |
563 | 3027 out_of_memory ("Maximum buffer size exceeded", Qunbound); |
428 | 3028 } |
3029 } | |
3030 | |
3031 /* If requested, replace the accessible part of the buffer | |
3032 with the file contents. Avoid replacing text at the | |
3033 beginning or end of the buffer that matches the file contents; | |
771 | 3034 that preserves markers pointing to the unchanged parts. */ |
3035 /* The replace-mode code is currently implemented by comparing the | |
3036 file on disk with the contents in the buffer, character by character. | |
3037 That works only if the characters on disk are exactly what will go into | |
3038 the buffer -- i.e. `binary' conversion. | |
3039 | |
3040 FSF tries to implement this in all situations, even the non-binary | |
3041 conversion, by (in that case) loading the whole converted file into a | |
3042 separate memory area, then doing the comparison. I really don't see | |
3043 the point of this, and it will fail spectacularly if the file is many | |
3044 megabytes in size. To try to get around this, we could certainly read | |
3045 from the beginning and decode as necessary before comparing, but doing | |
3046 the same at the end gets very difficult because of the possibility of | |
3047 modal coding systems -- trying to decode data from any point forward | |
3048 without decoding previous data might always give you different results | |
3049 from starting at the beginning. We could try further tricks like | |
3050 keeping track of which coding systems are non-modal and providing some | |
3051 extra method for such coding systems to be given a chunk of data that | |
3052 came from a specified location in a specified file and ask the coding | |
3053 systems to return a "sync point" from which the data can be read | |
3054 forward and have results guaranteed to be the same as reading from the | |
3055 beginning to that point, but I really don't think it's worth it. If | |
3056 we implemented the FSF "brute-force" method, we would have to put a | |
3057 reasonable maximum file size on the files. Is any of this worth it? | |
3058 --ben | |
3059 | |
3638 | 3060 |
3061 It's probably not worth it, and despite what you might take from the | |
3062 above, we don't do it currently; that is, for non-"binary" coding | |
3063 systems, we don't try to implement replace-mode at all. See the | |
3064 do_speedy_insert variable above. The upside of this is that our API | |
3065 is consistent and not buggy. -- Aidan Kehoe, Fri Oct 27 21:02:30 CEST | |
3066 2006 | |
771 | 3067 */ |
3068 | |
428 | 3069 if (!NILP (replace)) |
3070 { | |
771 | 3071 if (!do_speedy_insert) |
3072 buffer_delete_range (buf, BUF_BEG (buf), BUF_Z (buf), | |
3073 !NILP (visit) ? INSDEL_NO_LOCKING : 0); | |
3074 else | |
428 | 3075 { |
771 | 3076 char buffer[1 << 14]; |
3077 Charbpos same_at_start = BUF_BEGV (buf); | |
3078 Charbpos same_at_end = BUF_ZV (buf); | |
3079 int overlap; | |
3080 | |
3081 /* Count how many chars at the start of the file | |
3082 match the text at the beginning of the buffer. */ | |
3083 while (1) | |
3084 { | |
3085 int nread; | |
3086 Charbpos charbpos; | |
3087 nread = read_allowing_quit (fd, buffer, sizeof (buffer)); | |
3088 if (nread < 0) | |
3089 report_file_error ("Reading", filename); | |
3090 else if (nread == 0) | |
3091 break; | |
3092 charbpos = 0; | |
3093 while (charbpos < nread && same_at_start < BUF_ZV (buf) | |
814 | 3094 && BUF_FETCH_CHAR (buf, same_at_start) == |
3095 buffer[charbpos]) | |
771 | 3096 same_at_start++, charbpos++; |
3097 /* If we found a discrepancy, stop the scan. | |
3098 Otherwise loop around and scan the next bufferful. */ | |
3099 if (charbpos != nread) | |
3100 break; | |
3101 } | |
3102 /* If the file matches the buffer completely, | |
3103 there's no need to replace anything. */ | |
3104 if (same_at_start - BUF_BEGV (buf) == st.st_size) | |
3105 { | |
3106 retry_close (fd); | |
3107 unbind_to (speccount); | |
3108 /* Truncate the buffer to the size of the file. */ | |
3109 buffer_delete_range (buf, same_at_start, same_at_end, | |
3110 !NILP (visit) ? INSDEL_NO_LOCKING : 0); | |
3111 goto handled; | |
3112 } | |
3113 /* Count how many chars at the end of the file | |
3114 match the text at the end of the buffer. */ | |
3115 while (1) | |
3116 { | |
3117 int total_read, nread; | |
814 | 3118 Charcount charbpos, curpos, trial; |
771 | 3119 |
3120 /* At what file position are we now scanning? */ | |
3121 curpos = st.st_size - (BUF_ZV (buf) - same_at_end); | |
3122 /* If the entire file matches the buffer tail, stop the scan. */ | |
3123 if (curpos == 0) | |
3124 break; | |
3125 /* How much can we scan in the next step? */ | |
3126 trial = min (curpos, (Charbpos) sizeof (buffer)); | |
3127 if (lseek (fd, curpos - trial, 0) < 0) | |
3128 report_file_error ("Setting file position", filename); | |
3129 | |
3130 total_read = 0; | |
3131 while (total_read < trial) | |
3132 { | |
3133 nread = read_allowing_quit (fd, buffer + total_read, | |
3134 trial - total_read); | |
3135 if (nread <= 0) | |
3136 report_file_error ("IO error reading file", filename); | |
3137 total_read += nread; | |
3138 } | |
3139 /* Scan this bufferful from the end, comparing with | |
3140 the Emacs buffer. */ | |
3141 charbpos = total_read; | |
3142 /* Compare with same_at_start to avoid counting some buffer text | |
3143 as matching both at the file's beginning and at the end. */ | |
3144 while (charbpos > 0 && same_at_end > same_at_start | |
3145 && BUF_FETCH_CHAR (buf, same_at_end - 1) == | |
3146 buffer[charbpos - 1]) | |
3147 same_at_end--, charbpos--; | |
3148 /* If we found a discrepancy, stop the scan. | |
3149 Otherwise loop around and scan the preceding bufferful. */ | |
3150 if (charbpos != 0) | |
3151 break; | |
3152 /* If display current starts at beginning of line, | |
3153 keep it that way. */ | |
3154 if (XBUFFER (XWINDOW (Fselected_window (Qnil))->buffer) == buf) | |
3155 XWINDOW (Fselected_window (Qnil))->start_at_line_beg = | |
3156 !NILP (Fbolp (wrap_buffer (buf))); | |
3157 } | |
3158 | |
3159 /* Don't try to reuse the same piece of text twice. */ | |
3160 overlap = same_at_start - BUF_BEGV (buf) - | |
3161 (same_at_end + st.st_size - BUF_ZV (buf)); | |
3162 if (overlap > 0) | |
3163 same_at_end += overlap; | |
3164 | |
3165 /* Arrange to read only the nonmatching middle part of the file. */ | |
3166 start = make_int (same_at_start - BUF_BEGV (buf)); | |
3167 end = make_int (st.st_size - (BUF_ZV (buf) - same_at_end)); | |
3168 | |
428 | 3169 buffer_delete_range (buf, same_at_start, same_at_end, |
3170 !NILP (visit) ? INSDEL_NO_LOCKING : 0); | |
771 | 3171 /* Insert from the file at the proper position. */ |
3172 BUF_SET_PT (buf, same_at_start); | |
428 | 3173 } |
3174 } | |
3175 | |
3176 if (!not_regular) | |
3177 { | |
444 | 3178 total = XINT (end) - XINT (start); |
428 | 3179 |
3180 /* Make sure point-max won't overflow after this insertion. */ | |
3181 if (total != XINT (make_int (total))) | |
563 | 3182 out_of_memory ("Maximum buffer size exceeded", Qunbound); |
428 | 3183 } |
3184 else | |
3185 /* For a special file, all we can do is guess. The value of -1 | |
3186 will make the stream functions read as much as possible. */ | |
3187 total = -1; | |
3188 | |
444 | 3189 if (XINT (start) != 0 |
428 | 3190 /* why was this here? asked jwz. The reason is that the replace-mode |
3191 connivings above will normally put the file pointer other than | |
3192 where it should be. */ | |
771 | 3193 || (!NILP (replace) && do_speedy_insert)) |
428 | 3194 { |
444 | 3195 if (lseek (fd, XINT (start), 0) < 0) |
563 | 3196 report_file_error ("Setting file position", filename); |
428 | 3197 } |
3198 | |
3199 { | |
665 | 3200 Charbpos cur_point = BUF_PT (buf); |
428 | 3201 struct gcpro ngcpro1; |
3202 Lisp_Object stream = make_filedesc_input_stream (fd, 0, total, | |
3203 LSTR_ALLOW_QUIT); | |
3204 | |
3205 NGCPRO1 (stream); | |
3206 Lstream_set_buffering (XLSTREAM (stream), LSTREAM_BLOCKN_BUFFERED, 65536); | |
771 | 3207 stream = make_coding_input_stream |
3208 (XLSTREAM (stream), get_coding_system_for_text_file (codesys, 1), | |
800 | 3209 CODING_DECODE, 0); |
428 | 3210 Lstream_set_buffering (XLSTREAM (stream), LSTREAM_BLOCKN_BUFFERED, 65536); |
3211 | |
3212 record_unwind_protect (delete_stream_unwind, stream); | |
3213 | |
3214 /* No need to limit the amount of stuff we attempt to read. (It would | |
3215 be incorrect, anyway, when Mule is enabled.) Instead, the limiting | |
3216 occurs inside of the filedesc stream. */ | |
3217 while (1) | |
3218 { | |
665 | 3219 Bytecount this_len; |
428 | 3220 Charcount cc_inserted; |
3221 | |
3222 QUIT; | |
3223 this_len = Lstream_read (XLSTREAM (stream), read_buf, | |
3224 sizeof (read_buf)); | |
3225 | |
3226 if (this_len <= 0) | |
3227 { | |
3228 if (this_len < 0) | |
3229 saverrno = errno; | |
3230 break; | |
3231 } | |
3232 | |
3233 cc_inserted = buffer_insert_raw_string_1 (buf, cur_point, read_buf, | |
3234 this_len, | |
3235 !NILP (visit) | |
3236 ? INSDEL_NO_LOCKING : 0); | |
3237 inserted += cc_inserted; | |
3238 cur_point += cc_inserted; | |
3239 } | |
3240 if (!NILP (used_codesys)) | |
3241 { | |
3242 Fset (used_codesys, | |
771 | 3243 XCODING_SYSTEM_NAME |
3244 (coding_stream_detected_coding_system (XLSTREAM (stream)))); | |
428 | 3245 } |
3246 NUNGCPRO; | |
3247 } | |
3248 | |
3249 /* Close the file/stream */ | |
771 | 3250 unbind_to (speccount); |
428 | 3251 |
3252 if (saverrno != 0) | |
3253 { | |
563 | 3254 errno = saverrno; |
3255 report_file_error ("Reading", filename); | |
428 | 3256 } |
3257 | |
3258 notfound: | |
3259 handled: | |
3260 | |
3261 end_multiple_change (buf, mc_count); | |
3262 | |
3263 if (!NILP (visit)) | |
3264 { | |
3265 if (!EQ (buf->undo_list, Qt)) | |
3266 buf->undo_list = Qnil; | |
3814 | 3267 buf->modtime = st.st_mtime; |
3268 buf->filename = filename; | |
3269 /* XEmacs addition: */ | |
3270 /* This function used to be in C, ostensibly so that | |
3271 it could be called here. But that's just silly. | |
3272 There's no reason C code can't call out to Lisp | |
3273 code, and it's a lot cleaner this way. */ | |
3274 /* Note: compute-buffer-file-truename is called for | |
3275 side-effect! Its return value is intentionally | |
3276 ignored. */ | |
3277 if (!NILP (Ffboundp (Qcompute_buffer_file_truename))) | |
3278 call1 (Qcompute_buffer_file_truename, wrap_buffer (buf)); | |
428 | 3279 BUF_SAVE_MODIFF (buf) = BUF_MODIFF (buf); |
3280 buf->auto_save_modified = BUF_MODIFF (buf); | |
3281 buf->saved_size = make_int (BUF_SIZE (buf)); | |
3282 #ifdef CLASH_DETECTION | |
3814 | 3283 if (!NILP (buf->file_truename)) |
3284 unlock_file (buf->file_truename); | |
3285 unlock_file (filename); | |
428 | 3286 #endif /* CLASH_DETECTION */ |
3287 if (not_regular) | |
3288 RETURN_UNGCPRO (Fsignal (Qfile_error, | |
771 | 3289 list2 (build_msg_string ("not a regular file"), |
428 | 3290 filename))); |
3291 | |
3292 /* If visiting nonexistent file, return nil. */ | |
3293 if (buf->modtime == -1) | |
3294 report_file_error ("Opening input file", | |
563 | 3295 filename); |
428 | 3296 } |
3297 | |
3298 /* Decode file format */ | |
3299 if (inserted > 0) | |
3300 { | |
3301 Lisp_Object insval = call3 (Qformat_decode, | |
3302 Qnil, make_int (inserted), visit); | |
3303 CHECK_INT (insval); | |
3304 inserted = XINT (insval); | |
3305 } | |
3306 | |
3307 if (inserted > 0) | |
3308 { | |
2367 | 3309 GC_EXTERNAL_LIST_LOOP_2 (p, Vafter_insert_file_functions) |
428 | 3310 { |
2367 | 3311 Lisp_Object insval = call1 (p, make_int (inserted)); |
428 | 3312 if (!NILP (insval)) |
3313 { | |
3314 CHECK_NATNUM (insval); | |
3315 inserted = XINT (insval); | |
3316 } | |
3317 } | |
2367 | 3318 END_GC_EXTERNAL_LIST_LOOP (p); |
428 | 3319 } |
3320 | |
3321 UNGCPRO; | |
3322 | |
3323 if (!NILP (val)) | |
3324 return (val); | |
3325 else | |
3326 return (list2 (filename, make_int (inserted))); | |
3327 } | |
3328 | |
3329 | |
3330 static int a_write (Lisp_Object outstream, Lisp_Object instream, int pos, | |
3331 Lisp_Object *annot); | |
3332 static Lisp_Object build_annotations (Lisp_Object start, Lisp_Object end); | |
3333 | |
3334 /* If build_annotations switched buffers, switch back to BUF. | |
3335 Kill the temporary buffer that was selected in the meantime. */ | |
3336 | |
3337 static Lisp_Object | |
3338 build_annotations_unwind (Lisp_Object buf) | |
3339 { | |
3340 Lisp_Object tembuf; | |
3341 | |
3342 if (XBUFFER (buf) == current_buffer) | |
3343 return Qnil; | |
3344 tembuf = Fcurrent_buffer (); | |
3345 Fset_buffer (buf); | |
3346 Fkill_buffer (tembuf); | |
3347 return Qnil; | |
3348 } | |
3349 | |
4266 | 3350 DEFUN ("write-region-internal", Fwrite_region_internal, 3, 8, |
428 | 3351 "r\nFWrite region to file: ", /* |
3352 Write current region into specified file; no coding-system frobbing. | |
4266 | 3353 |
3354 This function is almost identical to `write-region'; see that function for | |
3355 documentation of the START, END, FILENAME, APPEND, VISIT, and LOCKNAME | |
3356 arguments. CODESYS specifies the encoding to be used for the file; if it is | |
3357 nil, no code conversion occurs. (With `write-region' the coding system is | |
3358 determined automatically if not specified.) | |
3359 | |
3360 MUSTBENEW specifies that a check for an existing file of the same name | |
3361 should be made. If it is 'excl, XEmacs will error on detecting such a file | |
3362 and never write it. If it is some other non-nil value, the user will be | |
3363 prompted to confirm the overwriting of an existing file. If it is nil, | |
3364 existing files are silently overwritten when file system permissions allow | |
3365 this. | |
764 | 3366 |
3367 As a special kludge to support auto-saving, when START is nil START and | |
3368 END are set to the beginning and end, respectively, of the buffer, | |
3369 regardless of any restrictions. Don't use this feature. It is documented | |
3370 here because write-region handler writers need to be aware of it. | |
4266 | 3371 |
428 | 3372 */ |
4266 | 3373 (start, end, filename, append, visit, lockname, codesys, |
3374 mustbenew)) | |
428 | 3375 { |
442 | 3376 /* This function can call lisp. GC checked 2000-07-28 ben */ |
428 | 3377 int desc; |
3378 int failure; | |
3379 int save_errno = 0; | |
3380 struct stat st; | |
442 | 3381 Lisp_Object fn = Qnil; |
428 | 3382 int speccount = specpdl_depth (); |
3383 int visiting_other = STRINGP (visit); | |
3384 int visiting = (EQ (visit, Qt) || visiting_other); | |
3385 int quietly = (!visiting && !NILP (visit)); | |
3386 Lisp_Object visit_file = Qnil; | |
3387 Lisp_Object annotations = Qnil; | |
3388 struct buffer *given_buffer; | |
665 | 3389 Charbpos start1, end1; |
442 | 3390 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
3391 struct gcpro ngcpro1, ngcpro2; | |
793 | 3392 Lisp_Object curbuf = wrap_buffer (current_buffer); |
3393 | |
442 | 3394 |
3395 /* start, end, visit, and append are never modified in this fun | |
3396 so we don't protect them. */ | |
3397 GCPRO5 (visit_file, filename, codesys, lockname, annotations); | |
3398 NGCPRO2 (curbuf, fn); | |
3399 | |
3400 /* [[ dmoore - if Fexpand_file_name or handlers kill the buffer, | |
428 | 3401 we should signal an error rather than blissfully continuing |
3402 along. ARGH, this function is going to lose lose lose. We need | |
3403 to protect the current_buffer from being destroyed, but the | |
442 | 3404 multiple return points make this a pain in the butt. ]] we do |
3405 protect curbuf now. --ben */ | |
428 | 3406 |
771 | 3407 codesys = get_coding_system_for_text_file (codesys, 0); |
428 | 3408 |
3409 if (current_buffer->base_buffer && ! NILP (visit)) | |
442 | 3410 invalid_operation ("Cannot do file visiting in an indirect buffer", |
3411 curbuf); | |
428 | 3412 |
3413 if (!NILP (start) && !STRINGP (start)) | |
3414 get_buffer_range_char (current_buffer, start, end, &start1, &end1, 0); | |
3415 | |
3416 { | |
3417 Lisp_Object handler; | |
3418 | |
4266 | 3419 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl)) |
3420 barf_or_query_if_file_exists (filename, "overwrite", 1, NULL); | |
3421 | |
428 | 3422 if (visiting_other) |
3423 visit_file = Fexpand_file_name (visit, Qnil); | |
3424 else | |
3425 visit_file = filename; | |
3426 filename = Fexpand_file_name (filename, Qnil); | |
3427 | |
3428 if (NILP (lockname)) | |
3429 lockname = visit_file; | |
3430 | |
442 | 3431 /* We used to UNGCPRO here. BAD! visit_file is used below after |
3432 more Lisp calling. */ | |
428 | 3433 /* If the file name has special constructs in it, |
3434 call the corresponding file handler. */ | |
3435 handler = Ffind_file_name_handler (filename, Qwrite_region); | |
3436 /* If FILENAME has no handler, see if VISIT has one. */ | |
3437 if (NILP (handler) && STRINGP (visit)) | |
3438 handler = Ffind_file_name_handler (visit, Qwrite_region); | |
3439 | |
3440 if (!NILP (handler)) | |
3441 { | |
3442 Lisp_Object val = call8 (handler, Qwrite_region, start, end, | |
3443 filename, append, visit, lockname, codesys); | |
3444 if (visiting) | |
3445 { | |
3446 BUF_SAVE_MODIFF (current_buffer) = BUF_MODIFF (current_buffer); | |
3447 current_buffer->saved_size = make_int (BUF_SIZE (current_buffer)); | |
3448 current_buffer->filename = visit_file; | |
3449 MARK_MODELINE_CHANGED; | |
3450 } | |
442 | 3451 NUNGCPRO; |
3452 UNGCPRO; | |
428 | 3453 return val; |
3454 } | |
3455 } | |
3456 | |
3457 #ifdef CLASH_DETECTION | |
3458 if (!auto_saving) | |
442 | 3459 lock_file (lockname); |
428 | 3460 #endif /* CLASH_DETECTION */ |
3461 | |
3462 /* Special kludge to simplify auto-saving. */ | |
3463 if (NILP (start)) | |
3464 { | |
3465 start1 = BUF_BEG (current_buffer); | |
3466 end1 = BUF_Z (current_buffer); | |
3467 } | |
3468 | |
3469 record_unwind_protect (build_annotations_unwind, Fcurrent_buffer ()); | |
3470 | |
3471 given_buffer = current_buffer; | |
3472 annotations = build_annotations (start, end); | |
3473 if (current_buffer != given_buffer) | |
3474 { | |
3475 start1 = BUF_BEGV (current_buffer); | |
3476 end1 = BUF_ZV (current_buffer); | |
3477 } | |
3478 | |
3479 fn = filename; | |
3480 desc = -1; | |
3481 if (!NILP (append)) | |
3482 { | |
4266 | 3483 desc = qxe_open (XSTRING_DATA (fn), O_WRONLY | OPEN_BINARY |
3484 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0), 0); | |
428 | 3485 } |
3486 if (desc < 0) | |
3487 { | |
771 | 3488 desc = qxe_open (XSTRING_DATA (fn), |
4266 | 3489 O_WRONLY | (EQ (mustbenew, Qexcl) ? O_EXCL : O_TRUNC) |
3490 | O_CREAT | OPEN_BINARY, | |
771 | 3491 auto_saving ? auto_save_mode_bits : CREAT_MODE); |
428 | 3492 } |
3493 | |
3494 if (desc < 0) | |
3495 { | |
3496 #ifdef CLASH_DETECTION | |
3497 save_errno = errno; | |
3498 if (!auto_saving) unlock_file (lockname); | |
3499 errno = save_errno; | |
3500 #endif /* CLASH_DETECTION */ | |
563 | 3501 report_file_error ("Opening output file", filename); |
428 | 3502 } |
3503 | |
3504 { | |
3505 Lisp_Object desc_locative = Fcons (make_int (desc), Qnil); | |
3506 Lisp_Object instream = Qnil, outstream = Qnil; | |
442 | 3507 struct gcpro nngcpro1, nngcpro2; |
3508 NNGCPRO2 (instream, outstream); | |
428 | 3509 |
3510 record_unwind_protect (close_file_unwind, desc_locative); | |
3511 | |
3512 if (!NILP (append)) | |
3513 { | |
3514 if (lseek (desc, 0, 2) < 0) | |
3515 { | |
3516 #ifdef CLASH_DETECTION | |
3517 if (!auto_saving) unlock_file (lockname); | |
3518 #endif /* CLASH_DETECTION */ | |
3519 report_file_error ("Lseek error", | |
563 | 3520 filename); |
428 | 3521 } |
3522 } | |
3523 | |
3524 failure = 0; | |
3525 | |
3526 /* Note: I tried increasing the buffering size, along with | |
3527 various other tricks, but nothing seemed to make much of | |
3528 a difference in the time it took to save a large file. | |
3529 (Actually that's not true. With a local disk, changing | |
3530 the buffer size doesn't seem to make much difference. | |
3531 With an NFS-mounted disk, it could make a lot of difference | |
3532 because you're affecting the number of network requests | |
3533 that need to be made, and there could be a large latency | |
3534 for each request. So I've increased the buffer size | |
3535 to 64K.) */ | |
3536 outstream = make_filedesc_output_stream (desc, 0, -1, 0); | |
3537 Lstream_set_buffering (XLSTREAM (outstream), | |
3538 LSTREAM_BLOCKN_BUFFERED, 65536); | |
3539 outstream = | |
800 | 3540 make_coding_output_stream (XLSTREAM (outstream), codesys, |
3541 CODING_ENCODE, 0); | |
428 | 3542 Lstream_set_buffering (XLSTREAM (outstream), |
3543 LSTREAM_BLOCKN_BUFFERED, 65536); | |
3544 if (STRINGP (start)) | |
3545 { | |
3546 instream = make_lisp_string_input_stream (start, 0, -1); | |
3547 start1 = 0; | |
3548 } | |
3549 else | |
3550 instream = make_lisp_buffer_input_stream (current_buffer, start1, end1, | |
3551 LSTR_SELECTIVE | | |
3552 LSTR_IGNORE_ACCESSIBLE); | |
3553 failure = (0 > (a_write (outstream, instream, start1, | |
3554 &annotations))); | |
3555 save_errno = errno; | |
3556 /* Note that this doesn't close the desc since we created the | |
3557 stream without the LSTR_CLOSING flag, but it does | |
3558 flush out any buffered data. */ | |
3559 if (Lstream_close (XLSTREAM (outstream)) < 0) | |
3560 { | |
3561 failure = 1; | |
3562 save_errno = errno; | |
3563 } | |
3564 Lstream_close (XLSTREAM (instream)); | |
3565 | |
3566 #ifdef HAVE_FSYNC | |
3567 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun). | |
3568 Disk full in NFS may be reported here. */ | |
3569 /* mib says that closing the file will try to write as fast as NFS can do | |
3570 it, and that means the fsync here is not crucial for autosave files. */ | |
3571 if (!auto_saving && fsync (desc) < 0 | |
3572 /* If fsync fails with EINTR, don't treat that as serious. */ | |
3573 && errno != EINTR) | |
3574 { | |
3575 failure = 1; | |
3576 save_errno = errno; | |
3577 } | |
3578 #endif /* HAVE_FSYNC */ | |
3579 | |
440 | 3580 /* Spurious "file has changed on disk" warnings used to be seen on |
3581 systems where close() can change the modtime. This is known to | |
3582 happen on various NFS file systems, on Windows, and on Linux. | |
3583 Rather than handling this on a per-system basis, we | |
771 | 3584 unconditionally do the qxe_stat() after the retry_close(). */ |
428 | 3585 |
3586 /* NFS can report a write failure now. */ | |
771 | 3587 if (retry_close (desc) < 0) |
428 | 3588 { |
3589 failure = 1; | |
3590 save_errno = errno; | |
3591 } | |
3592 | |
3593 /* Discard the close unwind-protect. Execute the one for | |
3594 build_annotations (switches back to the original current buffer | |
3595 as necessary). */ | |
3596 XCAR (desc_locative) = Qnil; | |
771 | 3597 unbind_to (speccount); |
442 | 3598 |
3599 NNUNGCPRO; | |
428 | 3600 } |
3601 | |
771 | 3602 qxe_stat (XSTRING_DATA (fn), &st); |
428 | 3603 |
3604 #ifdef CLASH_DETECTION | |
3605 if (!auto_saving) | |
3606 unlock_file (lockname); | |
3607 #endif /* CLASH_DETECTION */ | |
3608 | |
3609 /* Do this before reporting IO error | |
3610 to avoid a "file has changed on disk" warning on | |
3611 next attempt to save. */ | |
3612 if (visiting) | |
3613 current_buffer->modtime = st.st_mtime; | |
3614 | |
3615 if (failure) | |
442 | 3616 { |
3617 errno = save_errno; | |
563 | 3618 report_file_error ("Writing file", fn); |
442 | 3619 } |
428 | 3620 |
3621 if (visiting) | |
3622 { | |
3623 BUF_SAVE_MODIFF (current_buffer) = BUF_MODIFF (current_buffer); | |
3624 current_buffer->saved_size = make_int (BUF_SIZE (current_buffer)); | |
3625 current_buffer->filename = visit_file; | |
3626 MARK_MODELINE_CHANGED; | |
3627 } | |
3628 else if (quietly) | |
3629 { | |
442 | 3630 NUNGCPRO; |
3631 UNGCPRO; | |
428 | 3632 return Qnil; |
3633 } | |
3634 | |
3635 if (!auto_saving) | |
3636 { | |
3637 if (visiting_other) | |
3638 message ("Wrote %s", XSTRING_DATA (visit_file)); | |
3639 else | |
3640 { | |
446 | 3641 Lisp_Object fsp = Qnil; |
442 | 3642 struct gcpro nngcpro1; |
3643 | |
3644 NNGCPRO1 (fsp); | |
428 | 3645 fsp = Ffile_symlink_p (fn); |
3646 if (NILP (fsp)) | |
3647 message ("Wrote %s", XSTRING_DATA (fn)); | |
3648 else | |
3649 message ("Wrote %s (symlink to %s)", | |
3650 XSTRING_DATA (fn), XSTRING_DATA (fsp)); | |
442 | 3651 NNUNGCPRO; |
428 | 3652 } |
3653 } | |
442 | 3654 NUNGCPRO; |
3655 UNGCPRO; | |
428 | 3656 return Qnil; |
3657 } | |
3658 | |
3659 /* #### This is such a load of shit!!!! There is no way we should define | |
3660 something so stupid as a subr, just sort the fucking list more | |
3661 intelligently. */ | |
3662 DEFUN ("car-less-than-car", Fcar_less_than_car, 2, 2, 0, /* | |
3663 Return t if (car A) is numerically less than (car B). | |
3664 */ | |
3665 (a, b)) | |
3666 { | |
3667 Lisp_Object objs[2]; | |
3668 objs[0] = Fcar (a); | |
3669 objs[1] = Fcar (b); | |
3670 return Flss (2, objs); | |
3671 } | |
3672 | |
3673 /* Heh heh heh, let's define this too, just to aggravate the person who | |
3674 wrote the above comment. */ | |
3675 DEFUN ("cdr-less-than-cdr", Fcdr_less_than_cdr, 2, 2, 0, /* | |
3676 Return t if (cdr A) is numerically less than (cdr B). | |
3677 */ | |
3678 (a, b)) | |
3679 { | |
3680 Lisp_Object objs[2]; | |
3681 objs[0] = Fcdr (a); | |
3682 objs[1] = Fcdr (b); | |
3683 return Flss (2, objs); | |
3684 } | |
3685 | |
3686 /* Build the complete list of annotations appropriate for writing out | |
3687 the text between START and END, by calling all the functions in | |
3688 write-region-annotate-functions and merging the lists they return. | |
3689 If one of these functions switches to a different buffer, we assume | |
3690 that buffer contains altered text. Therefore, the caller must | |
3691 make sure to restore the current buffer in all cases, | |
3692 as save-excursion would do. */ | |
3693 | |
3694 static Lisp_Object | |
3695 build_annotations (Lisp_Object start, Lisp_Object end) | |
3696 { | |
3697 /* This function can GC */ | |
3698 Lisp_Object annotations; | |
3699 Lisp_Object p, res; | |
3700 struct gcpro gcpro1, gcpro2; | |
793 | 3701 Lisp_Object original_buffer = wrap_buffer (current_buffer); |
3702 | |
428 | 3703 |
3704 annotations = Qnil; | |
3705 p = Vwrite_region_annotate_functions; | |
3706 GCPRO2 (annotations, p); | |
3707 while (!NILP (p)) | |
3708 { | |
3709 struct buffer *given_buffer = current_buffer; | |
3710 Vwrite_region_annotations_so_far = annotations; | |
3711 res = call2 (Fcar (p), start, end); | |
3712 /* If the function makes a different buffer current, | |
3713 assume that means this buffer contains altered text to be output. | |
3714 Reset START and END from the buffer bounds | |
3715 and discard all previous annotations because they should have | |
3716 been dealt with by this function. */ | |
3717 if (current_buffer != given_buffer) | |
3718 { | |
3719 start = make_int (BUF_BEGV (current_buffer)); | |
3720 end = make_int (BUF_ZV (current_buffer)); | |
3721 annotations = Qnil; | |
3722 } | |
3723 Flength (res); /* Check basic validity of return value */ | |
3724 annotations = merge (annotations, res, Qcar_less_than_car); | |
3725 p = Fcdr (p); | |
3726 } | |
3727 | |
3728 /* Now do the same for annotation functions implied by the file-format */ | |
3729 if (auto_saving && (!EQ (Vauto_save_file_format, Qt))) | |
3730 p = Vauto_save_file_format; | |
3731 else | |
3732 p = current_buffer->file_format; | |
3733 while (!NILP (p)) | |
3734 { | |
3735 struct buffer *given_buffer = current_buffer; | |
3736 Vwrite_region_annotations_so_far = annotations; | |
3737 res = call4 (Qformat_annotate_function, Fcar (p), start, end, | |
3738 original_buffer); | |
3739 if (current_buffer != given_buffer) | |
3740 { | |
3741 start = make_int (BUF_BEGV (current_buffer)); | |
3742 end = make_int (BUF_ZV (current_buffer)); | |
3743 annotations = Qnil; | |
3744 } | |
3745 Flength (res); | |
3746 annotations = merge (annotations, res, Qcar_less_than_car); | |
3747 p = Fcdr (p); | |
3748 } | |
3749 UNGCPRO; | |
3750 return annotations; | |
3751 } | |
3752 | |
3753 /* Write to stream OUTSTREAM the characters from INSTREAM (it is read until | |
3754 EOF is encountered), assuming they start at position POS in the buffer | |
3755 of string that STREAM refers to. Intersperse with them the annotations | |
3756 from *ANNOT that fall into the range of positions we are reading from, | |
3757 each at its appropriate position. | |
3758 | |
3759 Modify *ANNOT by discarding elements as we output them. | |
3760 The return value is negative in case of system call failure. */ | |
3761 | |
3762 /* 4K should probably be fine. We just need to reduce the number of | |
3763 function calls to reasonable level. The Lstream stuff itself will | |
3764 batch to 64K to reduce the number of system calls. */ | |
3765 | |
3766 #define A_WRITE_BATCH_SIZE 4096 | |
3767 | |
3768 static int | |
3769 a_write (Lisp_Object outstream, Lisp_Object instream, int pos, | |
3770 Lisp_Object *annot) | |
3771 { | |
3772 Lisp_Object tem; | |
3773 int nextpos; | |
3774 unsigned char largebuf[A_WRITE_BATCH_SIZE]; | |
3775 Lstream *instr = XLSTREAM (instream); | |
3776 Lstream *outstr = XLSTREAM (outstream); | |
3777 | |
3778 while (LISTP (*annot)) | |
3779 { | |
3780 tem = Fcar_safe (Fcar (*annot)); | |
3781 if (INTP (tem)) | |
3782 nextpos = XINT (tem); | |
3783 else | |
3784 nextpos = INT_MAX; | |
3785 #ifdef MULE | |
3786 /* If there are annotations left and we have Mule, then we | |
867 | 3787 have to do the I/O one ichar at a time so we can |
428 | 3788 determine when to insert the annotation. */ |
3789 if (!NILP (*annot)) | |
3790 { | |
867 | 3791 Ichar ch; |
3792 while (pos != nextpos && (ch = Lstream_get_ichar (instr)) != EOF) | |
428 | 3793 { |
867 | 3794 if (Lstream_put_ichar (outstr, ch) < 0) |
428 | 3795 return -1; |
3796 pos++; | |
3797 } | |
3798 } | |
3799 else | |
3800 #endif /* MULE */ | |
3801 { | |
3802 while (pos != nextpos) | |
3803 { | |
3804 /* Otherwise there is no point to that. Just go in batches. */ | |
3805 int chunk = min (nextpos - pos, A_WRITE_BATCH_SIZE); | |
3806 | |
3807 chunk = Lstream_read (instr, largebuf, chunk); | |
3808 if (chunk < 0) | |
3809 return -1; | |
3810 if (chunk == 0) /* EOF */ | |
3811 break; | |
771 | 3812 if (Lstream_write (outstr, largebuf, chunk) < 0) |
428 | 3813 return -1; |
3814 pos += chunk; | |
3815 } | |
3816 } | |
3817 if (pos == nextpos) | |
3818 { | |
3819 tem = Fcdr (Fcar (*annot)); | |
3820 if (STRINGP (tem)) | |
3821 { | |
3822 if (Lstream_write (outstr, XSTRING_DATA (tem), | |
3823 XSTRING_LENGTH (tem)) < 0) | |
3824 return -1; | |
3825 } | |
3826 *annot = Fcdr (*annot); | |
3827 } | |
3828 else | |
3829 return 0; | |
3830 } | |
3831 return -1; | |
3832 } | |
3833 | |
3834 | |
3835 | |
3836 #if 0 | |
3837 #include <des_crypt.h> | |
3838 | |
3839 #define CRYPT_BLOCK_SIZE 8 /* bytes */ | |
3840 #define CRYPT_KEY_SIZE 8 /* bytes */ | |
3841 | |
3842 DEFUN ("encrypt-string", Fencrypt_string, 2, 2, 0, /* | |
3843 Encrypt STRING using KEY. | |
3844 */ | |
3845 (string, key)) | |
3846 { | |
2367 | 3847 /* !!#### Needs work */ |
1333 | 3848 Extbyte *encrypted_string, *raw_key; |
3849 Extbyte *string_ext, *key_ext; | |
3850 Bytecount string_size_ext, key_size_ext, rounded_size, extra, key_size; | |
3851 | |
428 | 3852 CHECK_STRING (string); |
3853 CHECK_STRING (key); | |
3854 | |
1333 | 3855 LISP_STRING_TO_SIZED_EXTERNAL (string, string_ext, string_size_ext, Qbinary); |
3856 LISP_STRING_TO_SIZED_EXTERNAL (key, key_ext, key_size_ext, Qbinary); | |
3857 | |
3858 extra = string_size_ext % CRYPT_BLOCK_SIZE; | |
3859 rounded_size = string_size_ext + extra; | |
851 | 3860 encrypted_string = ALLOCA (rounded_size + 1); |
1333 | 3861 memcpy (encrypted_string, string_ext, string_size_ext); |
428 | 3862 memset (encrypted_string + rounded_size - extra, 0, extra + 1); |
3863 | |
1333 | 3864 key_size = min (CRYPT_KEY_SIZE, key_size_ext); |
428 | 3865 |
851 | 3866 raw_key = ALLOCA (CRYPT_KEY_SIZE + 1); |
1333 | 3867 memcpy (raw_key, key_ext, key_size); |
428 | 3868 memset (raw_key + key_size, 0, (CRYPT_KEY_SIZE + 1) - key_size); |
3869 | |
3870 ecb_crypt (raw_key, encrypted_string, rounded_size, | |
3871 DES_ENCRYPT | DES_SW); | |
1333 | 3872 return make_ext_string (encrypted_string, rounded_size, Qbinary); |
428 | 3873 } |
3874 | |
3875 DEFUN ("decrypt-string", Fdecrypt_string, 2, 2, 0, /* | |
3876 Decrypt STRING using KEY. | |
3877 */ | |
3878 (string, key)) | |
3879 { | |
1333 | 3880 Extbyte *decrypted_string, *raw_key; |
3881 Extbyte *string_ext, *key_ext; | |
3882 Bytecount string_size_ext, key_size_ext, string_size, key_size; | |
428 | 3883 |
3884 CHECK_STRING (string); | |
3885 CHECK_STRING (key); | |
3886 | |
1333 | 3887 LISP_STRING_TO_SIZED_EXTERNAL (string, string_ext, string_size_ext, Qbinary); |
3888 LISP_STRING_TO_SIZED_EXTERNAL (key, key_ext, key_size_ext, Qbinary); | |
3889 | |
3890 string_size = string_size_ext + 1; | |
851 | 3891 decrypted_string = ALLOCA (string_size); |
1333 | 3892 memcpy (decrypted_string, string_ext, string_size); |
428 | 3893 decrypted_string[string_size - 1] = '\0'; |
3894 | |
1333 | 3895 key_size = min (CRYPT_KEY_SIZE, key_size_ext); |
428 | 3896 |
851 | 3897 raw_key = ALLOCA (CRYPT_KEY_SIZE + 1); |
1333 | 3898 memcpy (raw_key, key_ext, key_size); |
428 | 3899 memset (raw_key + key_size, 0, (CRYPT_KEY_SIZE + 1) - key_size); |
3900 | |
3901 | |
3902 ecb_crypt (raw_key, decrypted_string, string_size, D | DES_SW); | |
1333 | 3903 return make_ext_string (decrypted_string, string_size - 1, Qbinary); |
428 | 3904 } |
3905 #endif /* 0 */ | |
3906 | |
3907 | |
3908 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime, 1, 1, 0, /* | |
444 | 3909 Return t if last mod time of BUFFER's visited file matches what BUFFER records. |
428 | 3910 This means that the file has not been changed since it was visited or saved. |
3911 */ | |
444 | 3912 (buffer)) |
428 | 3913 { |
442 | 3914 /* This function can call lisp; GC checked 2000-07-11 ben */ |
428 | 3915 struct buffer *b; |
3916 struct stat st; | |
3917 Lisp_Object handler; | |
3918 | |
444 | 3919 CHECK_BUFFER (buffer); |
3920 b = XBUFFER (buffer); | |
428 | 3921 |
3922 if (!STRINGP (b->filename)) return Qt; | |
3923 if (b->modtime == 0) return Qt; | |
3924 | |
3925 /* If the file name has special constructs in it, | |
3926 call the corresponding file handler. */ | |
3927 handler = Ffind_file_name_handler (b->filename, | |
3928 Qverify_visited_file_modtime); | |
3929 if (!NILP (handler)) | |
444 | 3930 return call2 (handler, Qverify_visited_file_modtime, buffer); |
428 | 3931 |
771 | 3932 if (qxe_stat (XSTRING_DATA (b->filename), &st) < 0) |
428 | 3933 { |
3934 /* If the file doesn't exist now and didn't exist before, | |
3935 we say that it isn't modified, provided the error is a tame one. */ | |
3936 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR) | |
3937 st.st_mtime = -1; | |
3938 else | |
3939 st.st_mtime = 0; | |
3940 } | |
3941 if (st.st_mtime == b->modtime | |
3942 /* If both are positive, accept them if they are off by one second. */ | |
3943 || (st.st_mtime > 0 && b->modtime > 0 | |
3944 && (st.st_mtime == b->modtime + 1 | |
3945 || st.st_mtime == b->modtime - 1))) | |
3946 return Qt; | |
3947 return Qnil; | |
3948 } | |
3949 | |
3950 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime, 0, 0, 0, /* | |
3951 Clear out records of last mod time of visited file. | |
3952 Next attempt to save will certainly not complain of a discrepancy. | |
3953 */ | |
3954 ()) | |
3955 { | |
3956 current_buffer->modtime = 0; | |
3957 return Qnil; | |
3958 } | |
3959 | |
3960 DEFUN ("visited-file-modtime", Fvisited_file_modtime, 0, 0, 0, /* | |
3961 Return the current buffer's recorded visited file modification time. | |
3962 The value is a list of the form (HIGH . LOW), like the time values | |
3963 that `file-attributes' returns. | |
3964 */ | |
3965 ()) | |
3966 { | |
3967 return time_to_lisp ((time_t) current_buffer->modtime); | |
3968 } | |
3969 | |
3970 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime, 0, 1, 0, /* | |
3971 Update buffer's recorded modification time from the visited file's time. | |
3972 Useful if the buffer was not read from the file normally | |
3973 or if the file itself has been changed for some known benign reason. | |
3974 An argument specifies the modification time value to use | |
3975 \(instead of that of the visited file), in the form of a list | |
3976 \(HIGH . LOW) or (HIGH LOW). | |
3977 */ | |
3978 (time_list)) | |
3979 { | |
3980 /* This function can call lisp */ | |
3981 if (!NILP (time_list)) | |
3982 { | |
3983 time_t the_time; | |
3984 lisp_to_time (time_list, &the_time); | |
3985 current_buffer->modtime = (int) the_time; | |
3986 } | |
3987 else | |
3988 { | |
446 | 3989 Lisp_Object filename = Qnil; |
428 | 3990 struct stat st; |
3991 Lisp_Object handler; | |
3992 struct gcpro gcpro1, gcpro2, gcpro3; | |
3993 | |
3994 GCPRO3 (filename, time_list, current_buffer->filename); | |
3995 filename = Fexpand_file_name (current_buffer->filename, Qnil); | |
3996 | |
3997 /* If the file name has special constructs in it, | |
3998 call the corresponding file handler. */ | |
3999 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime); | |
4000 UNGCPRO; | |
4001 if (!NILP (handler)) | |
4002 /* The handler can find the file name the same way we did. */ | |
4003 return call2 (handler, Qset_visited_file_modtime, Qnil); | |
771 | 4004 else if (qxe_stat (XSTRING_DATA (filename), &st) >= 0) |
428 | 4005 current_buffer->modtime = st.st_mtime; |
4006 } | |
4007 | |
4008 return Qnil; | |
4009 } | |
4010 | |
4011 static Lisp_Object | |
2286 | 4012 auto_save_error (Lisp_Object UNUSED (condition_object), |
4013 Lisp_Object UNUSED (ignored)) | |
428 | 4014 { |
4015 /* This function can call lisp */ | |
4016 if (gc_in_progress) | |
4017 return Qnil; | |
4018 /* Don't try printing an error message after everything is gone! */ | |
4019 if (preparing_for_armageddon) | |
4020 return Qnil; | |
4021 clear_echo_area (selected_frame (), Qauto_saving, 1); | |
4022 Fding (Qt, Qauto_save_error, Qnil); | |
4023 message ("Auto-saving...error for %s", XSTRING_DATA (current_buffer->name)); | |
4024 Fsleep_for (make_int (1)); | |
4025 message ("Auto-saving...error!for %s", XSTRING_DATA (current_buffer->name)); | |
4026 Fsleep_for (make_int (1)); | |
4027 message ("Auto-saving...error for %s", XSTRING_DATA (current_buffer->name)); | |
4028 Fsleep_for (make_int (1)); | |
4029 return Qnil; | |
4030 } | |
4031 | |
4032 static Lisp_Object | |
2286 | 4033 auto_save_1 (Lisp_Object UNUSED (ignored)) |
428 | 4034 { |
4035 /* This function can call lisp */ | |
4036 /* #### I think caller is protecting current_buffer? */ | |
4037 struct stat st; | |
4038 Lisp_Object fn = current_buffer->filename; | |
4039 Lisp_Object a = current_buffer->auto_save_file_name; | |
4040 | |
4041 if (!STRINGP (a)) | |
4042 return (Qnil); | |
4043 | |
4044 /* Get visited file's mode to become the auto save file's mode. */ | |
4045 if (STRINGP (fn) && | |
771 | 4046 qxe_stat (XSTRING_DATA (fn), &st) >= 0) |
428 | 4047 /* But make sure we can overwrite it later! */ |
4048 auto_save_mode_bits = st.st_mode | 0600; | |
4049 else | |
4050 /* default mode for auto-save files of buffers with no file is | |
4051 readable by owner only. This may annoy some small number of | |
4052 people, but the alternative removes all privacy from email. */ | |
4053 auto_save_mode_bits = 0600; | |
4054 | |
4055 return | |
4056 Fwrite_region_internal (Qnil, Qnil, a, Qnil, Qlambda, Qnil, | |
771 | 4057 #if 1 /* #### Kyle wants it changed to not use escape-quoted. Think |
4058 carefully about how this works. */ | |
4266 | 4059 Qescape_quoted, |
771 | 4060 #else |
4266 | 4061 current_buffer->buffer_file_coding_system, |
428 | 4062 #endif |
4266 | 4063 Qnil); |
428 | 4064 } |
4065 | |
4066 static Lisp_Object | |
2286 | 4067 auto_save_expand_name_error (Lisp_Object condition_object, |
4068 Lisp_Object UNUSED (ignored)) | |
428 | 4069 { |
771 | 4070 warn_when_safe_lispobj |
793 | 4071 (Qfile, Qerror, |
771 | 4072 Fcons (build_msg_string ("Invalid auto-save list-file"), |
4073 Fcons (Vauto_save_list_file_name, | |
4074 condition_object))); | |
428 | 4075 return Qnil; |
4076 } | |
4077 | |
4078 static Lisp_Object | |
4079 auto_save_expand_name (Lisp_Object name) | |
4080 { | |
4081 struct gcpro gcpro1; | |
4082 | |
4083 /* note that caller did NOT gc protect name, so we do it. */ | |
771 | 4084 /* [[dmoore - this might not be necessary, if condition_case_1 |
4085 protects it. but I don't think it does.]] indeed it doesn't. --ben */ | |
428 | 4086 GCPRO1 (name); |
4087 RETURN_UNGCPRO (Fexpand_file_name (name, Qnil)); | |
4088 } | |
4089 | |
4090 | |
4091 static Lisp_Object | |
4092 do_auto_save_unwind (Lisp_Object fd) | |
4093 { | |
771 | 4094 retry_close (XINT (fd)); |
428 | 4095 return (fd); |
4096 } | |
4097 | |
4098 /* Fdo_auto_save() checks whether a GC is in progress when it is called, | |
4099 and if so, tries to avoid touching lisp objects. | |
4100 | |
4101 The only time that Fdo_auto_save() is called while GC is in progress | |
2500 | 4102 is if we're going down, as a result of an ABORT() or a kill signal. |
428 | 4103 It's fairly important that we generate autosave files in that case! |
4104 */ | |
4105 | |
4106 DEFUN ("do-auto-save", Fdo_auto_save, 0, 2, "", /* | |
4107 Auto-save all buffers that need it. | |
4108 This is all buffers that have auto-saving enabled | |
4109 and are changed since last auto-saved. | |
4110 Auto-saving writes the buffer into a file | |
4111 so that your editing is not lost if the system crashes. | |
4112 This file is not the file you visited; that changes only when you save. | |
4113 Normally we run the normal hook `auto-save-hook' before saving. | |
4114 | |
4115 Non-nil first argument means do not print any message if successful. | |
4116 Non-nil second argument means save only current buffer. | |
4117 */ | |
4118 (no_message, current_only)) | |
4119 { | |
4120 /* This function can call lisp */ | |
4121 struct buffer *b; | |
4122 Lisp_Object tail, buf; | |
4123 int auto_saved = 0; | |
4124 int do_handled_files; | |
4125 Lisp_Object oquit = Qnil; | |
4126 Lisp_Object listfile = Qnil; | |
4127 Lisp_Object old; | |
4128 int listdesc = -1; | |
4129 int speccount = specpdl_depth (); | |
4130 struct gcpro gcpro1, gcpro2, gcpro3; | |
4131 | |
793 | 4132 old = wrap_buffer (current_buffer); |
428 | 4133 GCPRO3 (oquit, listfile, old); |
4134 check_quit (); /* make Vquit_flag accurate */ | |
4135 /* Ordinarily don't quit within this function, | |
4136 but don't make it impossible to quit (in case we get hung in I/O). */ | |
4137 oquit = Vquit_flag; | |
4138 Vquit_flag = Qnil; | |
4139 | |
4140 /* No further GCPRO needed, because (when it matters) all Lisp_Object | |
4141 variables point to non-strings reached from Vbuffer_alist. */ | |
4142 | |
4143 if (minibuf_level != 0 || preparing_for_armageddon) | |
4144 no_message = Qt; | |
4145 | |
4146 run_hook (Qauto_save_hook); | |
4147 | |
4148 if (STRINGP (Vauto_save_list_file_name)) | |
4149 listfile = condition_case_1 (Qt, | |
4150 auto_save_expand_name, | |
4151 Vauto_save_list_file_name, | |
4152 auto_save_expand_name_error, Qnil); | |
4153 | |
853 | 4154 internal_bind_int (&auto_saving, 1); |
428 | 4155 |
4156 /* First, save all files which don't have handlers. If Emacs is | |
4157 crashing, the handlers may tweak what is causing Emacs to crash | |
4158 in the first place, and it would be a shame if Emacs failed to | |
4159 autosave perfectly ordinary files because it couldn't handle some | |
4160 ange-ftp'd file. */ | |
4161 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++) | |
4162 { | |
4163 for (tail = Vbuffer_alist; | |
4164 CONSP (tail); | |
4165 tail = XCDR (tail)) | |
4166 { | |
4167 buf = XCDR (XCAR (tail)); | |
4168 b = XBUFFER (buf); | |
4169 | |
4170 if (!NILP (current_only) | |
4171 && b != current_buffer) | |
4172 continue; | |
4173 | |
4174 /* Don't auto-save indirect buffers. | |
4175 The base buffer takes care of it. */ | |
4176 if (b->base_buffer) | |
4177 continue; | |
4178 | |
4179 /* Check for auto save enabled | |
4180 and file changed since last auto save | |
4181 and file changed since last real save. */ | |
4182 if (STRINGP (b->auto_save_file_name) | |
4183 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b) | |
4184 && b->auto_save_modified < BUF_MODIFF (b) | |
4185 /* -1 means we've turned off autosaving for a while--see below. */ | |
4186 && XINT (b->saved_size) >= 0 | |
4187 && (do_handled_files | |
4188 || NILP (Ffind_file_name_handler (b->auto_save_file_name, | |
4189 Qwrite_region)))) | |
4190 { | |
4191 EMACS_TIME before_time, after_time; | |
4192 | |
4193 EMACS_GET_TIME (before_time); | |
4194 /* If we had a failure, don't try again for 20 minutes. */ | |
4195 if (!preparing_for_armageddon | |
4196 && b->auto_save_failure_time >= 0 | |
4197 && (EMACS_SECS (before_time) - b->auto_save_failure_time < | |
4198 1200)) | |
4199 continue; | |
4200 | |
4201 if (!preparing_for_armageddon && | |
4202 (XINT (b->saved_size) * 10 | |
4203 > (BUF_Z (b) - BUF_BEG (b)) * 13) | |
4204 /* A short file is likely to change a large fraction; | |
4205 spare the user annoying messages. */ | |
4206 && XINT (b->saved_size) > 5000 | |
4207 /* These messages are frequent and annoying for `*mail*'. */ | |
4208 && !NILP (b->filename) | |
4209 && NILP (no_message) | |
4210 && disable_auto_save_when_buffer_shrinks) | |
4211 { | |
4212 /* It has shrunk too much; turn off auto-saving here. | |
4213 Unless we're about to crash, in which case auto-save it | |
4214 anyway. | |
4215 */ | |
4216 message | |
4217 ("Buffer %s has shrunk a lot; auto save turned off there", | |
4218 XSTRING_DATA (b->name)); | |
4219 /* Turn off auto-saving until there's a real save, | |
4220 and prevent any more warnings. */ | |
4221 b->saved_size = make_int (-1); | |
4222 if (!gc_in_progress) | |
4223 Fsleep_for (make_int (1)); | |
4224 continue; | |
4225 } | |
4226 set_buffer_internal (b); | |
4227 if (!auto_saved && NILP (no_message)) | |
4228 { | |
1333 | 4229 static const Ibyte *msg = (const Ibyte *) "Auto-saving..."; |
428 | 4230 echo_area_message (selected_frame (), msg, Qnil, |
1333 | 4231 0, qxestrlen (msg), |
428 | 4232 Qauto_saving); |
4233 } | |
4234 | |
4235 /* Open the auto-save list file, if necessary. | |
4236 We only do this now so that the file only exists | |
4237 if we actually auto-saved any files. */ | |
444 | 4238 if (!auto_saved && !inhibit_auto_save_session |
4239 && !NILP (Vauto_save_list_file_prefix) | |
4240 && STRINGP (listfile) && listdesc < 0) | |
428 | 4241 { |
771 | 4242 listdesc = |
4243 qxe_open (XSTRING_DATA (listfile), | |
4244 O_WRONLY | O_TRUNC | O_CREAT | OPEN_BINARY, | |
4245 CREAT_MODE); | |
428 | 4246 |
4247 /* Arrange to close that file whether or not we get | |
4248 an error. */ | |
4249 if (listdesc >= 0) | |
4250 record_unwind_protect (do_auto_save_unwind, | |
4251 make_int (listdesc)); | |
4252 } | |
4253 | |
4254 /* Record all the buffers that we are auto-saving in | |
4255 the special file that lists them. For each of | |
4256 these buffers, record visited name (if any) and | |
4257 auto save name. */ | |
4258 if (listdesc >= 0) | |
4259 { | |
442 | 4260 const Extbyte *auto_save_file_name_ext; |
665 | 4261 Bytecount auto_save_file_name_ext_len; |
428 | 4262 |
440 | 4263 TO_EXTERNAL_FORMAT (LISP_STRING, b->auto_save_file_name, |
4264 ALLOCA, (auto_save_file_name_ext, | |
4265 auto_save_file_name_ext_len), | |
771 | 4266 Qescape_quoted); |
428 | 4267 if (!NILP (b->filename)) |
4268 { | |
442 | 4269 const Extbyte *filename_ext; |
665 | 4270 Bytecount filename_ext_len; |
428 | 4271 |
440 | 4272 TO_EXTERNAL_FORMAT (LISP_STRING, b->filename, |
4273 ALLOCA, (filename_ext, | |
4274 filename_ext_len), | |
771 | 4275 Qescape_quoted); |
4276 retry_write (listdesc, filename_ext, filename_ext_len); | |
428 | 4277 } |
771 | 4278 retry_write (listdesc, "\n", 1); |
4279 retry_write (listdesc, auto_save_file_name_ext, | |
428 | 4280 auto_save_file_name_ext_len); |
771 | 4281 retry_write (listdesc, "\n", 1); |
428 | 4282 } |
4283 | |
4284 /* dmoore - In a bad scenario we've set b=XBUFFER(buf) | |
4285 based on values in Vbuffer_alist. auto_save_1 may | |
4286 cause lisp handlers to run. Those handlers may kill | |
4287 the buffer and then GC. Since the buffer is killed, | |
4288 it's no longer in Vbuffer_alist so it might get reaped | |
4289 by the GC. We also need to protect tail. */ | |
4290 /* #### There is probably a lot of other code which has | |
4291 pointers into buffers which may get blown away by | |
4292 handlers. */ | |
4293 { | |
4294 struct gcpro ngcpro1, ngcpro2; | |
4295 NGCPRO2 (buf, tail); | |
4296 condition_case_1 (Qt, | |
4297 auto_save_1, Qnil, | |
4298 auto_save_error, Qnil); | |
4299 NUNGCPRO; | |
4300 } | |
4301 /* Handler killed our saved current-buffer! Pick any. */ | |
4302 if (!BUFFER_LIVE_P (XBUFFER (old))) | |
793 | 4303 old = wrap_buffer (current_buffer); |
428 | 4304 |
4305 set_buffer_internal (XBUFFER (old)); | |
4306 auto_saved++; | |
4307 | |
4308 /* Handler killed their own buffer! */ | |
4309 if (!BUFFER_LIVE_P(b)) | |
4310 continue; | |
4311 | |
4312 b->auto_save_modified = BUF_MODIFF (b); | |
4313 b->saved_size = make_int (BUF_SIZE (b)); | |
4314 EMACS_GET_TIME (after_time); | |
4315 /* If auto-save took more than 60 seconds, | |
4316 assume it was an NFS failure that got a timeout. */ | |
4317 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60) | |
4318 b->auto_save_failure_time = EMACS_SECS (after_time); | |
4319 } | |
4320 } | |
4321 } | |
4322 | |
4323 /* Prevent another auto save till enough input events come in. */ | |
4324 if (auto_saved) | |
4325 record_auto_save (); | |
4326 | |
4327 /* If we didn't save anything into the listfile, remove the old | |
4328 one because nothing needed to be auto-saved. Do this afterwards | |
4329 rather than before in case we get a crash attempting to autosave | |
4330 (in that case we'd still want the old one around). */ | |
4331 if (listdesc < 0 && !auto_saved && STRINGP (listfile)) | |
771 | 4332 qxe_unlink (XSTRING_DATA (listfile)); |
428 | 4333 |
4334 /* Show "...done" only if the echo area would otherwise be empty. */ | |
4335 if (auto_saved && NILP (no_message) | |
4336 && NILP (clear_echo_area (selected_frame (), Qauto_saving, 0))) | |
4337 { | |
1333 | 4338 static const Ibyte *msg = (const Ibyte *)"Auto-saving...done"; |
428 | 4339 echo_area_message (selected_frame (), msg, Qnil, 0, |
1333 | 4340 qxestrlen (msg), Qauto_saving); |
428 | 4341 } |
4342 | |
4343 Vquit_flag = oquit; | |
4344 | |
771 | 4345 RETURN_UNGCPRO (unbind_to (speccount)); |
428 | 4346 } |
4347 | |
4348 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved, 0, 0, 0, /* | |
4349 Mark current buffer as auto-saved with its current text. | |
4350 No auto-save file will be written until the buffer changes again. | |
4351 */ | |
4352 ()) | |
4353 { | |
4354 current_buffer->auto_save_modified = BUF_MODIFF (current_buffer); | |
4355 current_buffer->saved_size = make_int (BUF_SIZE (current_buffer)); | |
4356 current_buffer->auto_save_failure_time = -1; | |
4357 return Qnil; | |
4358 } | |
4359 | |
4360 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure, 0, 0, 0, /* | |
4361 Clear any record of a recent auto-save failure in the current buffer. | |
4362 */ | |
4363 ()) | |
4364 { | |
4365 current_buffer->auto_save_failure_time = -1; | |
4366 return Qnil; | |
4367 } | |
4368 | |
4369 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, 0, 0, 0, /* | |
4370 Return t if buffer has been auto-saved since last read in or saved. | |
4371 */ | |
4372 ()) | |
4373 { | |
4374 return (BUF_SAVE_MODIFF (current_buffer) < | |
4375 current_buffer->auto_save_modified) ? Qt : Qnil; | |
4376 } | |
4377 | |
4378 | |
4379 /************************************************************************/ | |
4380 /* initialization */ | |
4381 /************************************************************************/ | |
4382 | |
4383 void | |
4384 syms_of_fileio (void) | |
4385 { | |
563 | 4386 DEFSYMBOL (Qexpand_file_name); |
4387 DEFSYMBOL (Qfile_truename); | |
4388 DEFSYMBOL (Qsubstitute_in_file_name); | |
4389 DEFSYMBOL (Qdirectory_file_name); | |
4390 DEFSYMBOL (Qfile_name_directory); | |
4391 DEFSYMBOL (Qfile_name_nondirectory); | |
996 | 4392 DEFSYMBOL (Qfile_name_sans_extension); |
563 | 4393 DEFSYMBOL (Qunhandled_file_name_directory); |
4394 DEFSYMBOL (Qfile_name_as_directory); | |
4395 DEFSYMBOL (Qcopy_file); | |
4396 DEFSYMBOL (Qmake_directory_internal); | |
4397 DEFSYMBOL (Qdelete_directory); | |
4398 DEFSYMBOL (Qdelete_file); | |
4399 DEFSYMBOL (Qrename_file); | |
4400 DEFSYMBOL (Qadd_name_to_file); | |
4401 DEFSYMBOL (Qmake_symbolic_link); | |
844 | 4402 DEFSYMBOL (Qmake_temp_name); |
563 | 4403 DEFSYMBOL (Qfile_exists_p); |
4404 DEFSYMBOL (Qfile_executable_p); | |
4405 DEFSYMBOL (Qfile_readable_p); | |
4406 DEFSYMBOL (Qfile_symlink_p); | |
4407 DEFSYMBOL (Qfile_writable_p); | |
4408 DEFSYMBOL (Qfile_directory_p); | |
4409 DEFSYMBOL (Qfile_regular_p); | |
4410 DEFSYMBOL (Qfile_accessible_directory_p); | |
4411 DEFSYMBOL (Qfile_modes); | |
4412 DEFSYMBOL (Qset_file_modes); | |
4413 DEFSYMBOL (Qfile_newer_than_file_p); | |
4414 DEFSYMBOL (Qinsert_file_contents); | |
4415 DEFSYMBOL (Qwrite_region); | |
4416 DEFSYMBOL (Qverify_visited_file_modtime); | |
4417 DEFSYMBOL (Qset_visited_file_modtime); | |
4418 DEFSYMBOL (Qcar_less_than_car); /* Vomitous! */ | |
4266 | 4419 DEFSYMBOL (Qexcl); |
563 | 4420 |
4421 DEFSYMBOL (Qauto_save_hook); | |
4422 DEFSYMBOL (Qauto_save_error); | |
4423 DEFSYMBOL (Qauto_saving); | |
4424 | |
4425 DEFSYMBOL (Qformat_decode); | |
4426 DEFSYMBOL (Qformat_annotate_function); | |
4427 | |
4428 DEFSYMBOL (Qcompute_buffer_file_truename); | |
4429 | |
442 | 4430 DEFERROR_STANDARD (Qfile_already_exists, Qfile_error); |
428 | 4431 |
4432 DEFSUBR (Ffind_file_name_handler); | |
4433 | |
4434 DEFSUBR (Ffile_name_directory); | |
4435 DEFSUBR (Ffile_name_nondirectory); | |
4436 DEFSUBR (Funhandled_file_name_directory); | |
4437 DEFSUBR (Ffile_name_as_directory); | |
4438 DEFSUBR (Fdirectory_file_name); | |
4439 DEFSUBR (Fmake_temp_name); | |
4440 DEFSUBR (Fexpand_file_name); | |
4441 DEFSUBR (Ffile_truename); | |
4442 DEFSUBR (Fsubstitute_in_file_name); | |
4443 DEFSUBR (Fcopy_file); | |
4444 DEFSUBR (Fmake_directory_internal); | |
4445 DEFSUBR (Fdelete_directory); | |
4446 DEFSUBR (Fdelete_file); | |
4447 DEFSUBR (Frename_file); | |
4448 DEFSUBR (Fadd_name_to_file); | |
4449 DEFSUBR (Fmake_symbolic_link); | |
4450 #ifdef HPUX_NET | |
4451 DEFSUBR (Fsysnetunam); | |
4452 #endif /* HPUX_NET */ | |
4453 DEFSUBR (Ffile_name_absolute_p); | |
4454 DEFSUBR (Ffile_exists_p); | |
4455 DEFSUBR (Ffile_executable_p); | |
4456 DEFSUBR (Ffile_readable_p); | |
4457 DEFSUBR (Ffile_writable_p); | |
4458 DEFSUBR (Ffile_symlink_p); | |
4459 DEFSUBR (Ffile_directory_p); | |
4460 DEFSUBR (Ffile_accessible_directory_p); | |
4461 DEFSUBR (Ffile_regular_p); | |
4462 DEFSUBR (Ffile_modes); | |
4463 DEFSUBR (Fset_file_modes); | |
4464 DEFSUBR (Fset_default_file_modes); | |
4465 DEFSUBR (Fdefault_file_modes); | |
4466 DEFSUBR (Funix_sync); | |
4467 DEFSUBR (Ffile_newer_than_file_p); | |
4468 DEFSUBR (Finsert_file_contents_internal); | |
4469 DEFSUBR (Fwrite_region_internal); | |
4470 DEFSUBR (Fcar_less_than_car); /* Vomitous! */ | |
4471 DEFSUBR (Fcdr_less_than_cdr); /* Yeah oh yeah bucko .... */ | |
4472 #if 0 | |
4473 DEFSUBR (Fencrypt_string); | |
4474 DEFSUBR (Fdecrypt_string); | |
4475 #endif | |
4476 DEFSUBR (Fverify_visited_file_modtime); | |
4477 DEFSUBR (Fclear_visited_file_modtime); | |
4478 DEFSUBR (Fvisited_file_modtime); | |
4479 DEFSUBR (Fset_visited_file_modtime); | |
4480 | |
4481 DEFSUBR (Fdo_auto_save); | |
4482 DEFSUBR (Fset_buffer_auto_saved); | |
4483 DEFSUBR (Fclear_buffer_auto_save_failure); | |
4484 DEFSUBR (Frecent_auto_save_p); | |
4485 } | |
4486 | |
4487 void | |
4488 vars_of_fileio (void) | |
4489 { | |
2526 | 4490 QSin_expand_file_name = |
4491 build_msg_string ("(in expand-file-name)"); | |
4492 staticpro (&QSin_expand_file_name); | |
4493 | |
428 | 4494 DEFVAR_LISP ("auto-save-file-format", &Vauto_save_file_format /* |
4495 *Format in which to write auto-save files. | |
4496 Should be a list of symbols naming formats that are defined in `format-alist'. | |
4497 If it is t, which is the default, auto-save files are written in the | |
4498 same format as a regular save would use. | |
4499 */ ); | |
4500 Vauto_save_file_format = Qt; | |
4501 | |
4502 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist /* | |
4503 *Alist of elements (REGEXP . HANDLER) for file names handled specially. | |
4504 If a file name matches REGEXP, then all I/O on that file is done by calling | |
4505 HANDLER. | |
4506 | |
4507 The first argument given to HANDLER is the name of the I/O primitive | |
4508 to be handled; the remaining arguments are the arguments that were | |
4509 passed to that primitive. For example, if you do | |
4510 (file-exists-p FILENAME) | |
4511 and FILENAME is handled by HANDLER, then HANDLER is called like this: | |
4512 (funcall HANDLER 'file-exists-p FILENAME) | |
4513 The function `find-file-name-handler' checks this list for a handler | |
4514 for its argument. | |
4515 */ ); | |
4516 Vfile_name_handler_alist = Qnil; | |
4517 | |
4518 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions /* | |
4519 A list of functions to be called at the end of `insert-file-contents'. | |
4520 Each is passed one argument, the number of bytes inserted. It should return | |
4521 the new byte count, and leave point the same. If `insert-file-contents' is | |
4522 intercepted by a handler from `file-name-handler-alist', that handler is | |
4523 responsible for calling the after-insert-file-functions if appropriate. | |
4524 */ ); | |
4525 Vafter_insert_file_functions = Qnil; | |
4526 | |
4527 DEFVAR_LISP ("write-region-annotate-functions", | |
4528 &Vwrite_region_annotate_functions /* | |
4529 A list of functions to be called at the start of `write-region'. | |
4530 Each is passed two arguments, START and END, as for `write-region'. | |
4531 It should return a list of pairs (POSITION . STRING) of strings to be | |
4532 effectively inserted at the specified positions of the file being written | |
4533 \(1 means to insert before the first byte written). The POSITIONs must be | |
4534 sorted into increasing order. If there are several functions in the list, | |
4535 the several lists are merged destructively. | |
4536 */ ); | |
4537 Vwrite_region_annotate_functions = Qnil; | |
4538 | |
4539 DEFVAR_LISP ("write-region-annotations-so-far", | |
4540 &Vwrite_region_annotations_so_far /* | |
4541 When an annotation function is called, this holds the previous annotations. | |
4542 These are the annotations made by other annotation functions | |
4543 that were already called. See also `write-region-annotate-functions'. | |
4544 */ ); | |
4545 Vwrite_region_annotations_so_far = Qnil; | |
4546 | |
4547 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers /* | |
4548 A list of file name handlers that temporarily should not be used. | |
4549 This applies only to the operation `inhibit-file-name-operation'. | |
4550 */ ); | |
4551 Vinhibit_file_name_handlers = Qnil; | |
4552 | |
4553 DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation /* | |
4554 The operation for which `inhibit-file-name-handlers' is applicable. | |
4555 */ ); | |
4556 Vinhibit_file_name_operation = Qnil; | |
4557 | |
4558 DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name /* | |
4559 File name in which we write a list of all auto save file names. | |
4560 */ ); | |
4561 Vauto_save_list_file_name = Qnil; | |
4562 | |
444 | 4563 DEFVAR_LISP ("auto-save-list-file-prefix", &Vauto_save_list_file_prefix /* |
4564 Prefix for generating auto-save-list-file-name. | |
4565 Emacs's pid and the system name will be appended to | |
4566 this prefix to create a unique file name. | |
4567 */ ); | |
4568 Vauto_save_list_file_prefix = build_string ("~/.saves-"); | |
4569 | |
4570 DEFVAR_BOOL ("inhibit-auto-save-session", &inhibit_auto_save_session /* | |
4571 When non-nil, inhibit auto save list file creation. | |
4572 */ ); | |
4573 inhibit_auto_save_session = 0; | |
4574 | |
428 | 4575 DEFVAR_BOOL ("disable-auto-save-when-buffer-shrinks", |
4576 &disable_auto_save_when_buffer_shrinks /* | |
4577 If non-nil, auto-saving is disabled when a buffer shrinks too much. | |
4578 This is to prevent you from losing your edits if you accidentally | |
4579 delete a large chunk of the buffer and don't notice it until too late. | |
4580 Saving the buffer normally turns auto-save back on. | |
4581 */ ); | |
4582 disable_auto_save_when_buffer_shrinks = 1; | |
4583 | |
4584 DEFVAR_LISP ("directory-sep-char", &Vdirectory_sep_char /* | |
4585 Directory separator character for built-in functions that return file names. | |
4586 The value should be either ?/ or ?\\ (any other value is treated as ?\\). | |
4587 This variable affects the built-in functions only on Windows, | |
4588 on other platforms, it is initialized so that Lisp code can find out | |
4589 what the normal separator is. | |
4590 */ ); | |
771 | 4591 Vdirectory_sep_char = make_char (DEFAULT_DIRECTORY_SEP); |
428 | 4592 } |
442 | 4593 |
4594 void | |
4595 reinit_vars_of_fileio (void) | |
4596 { | |
4597 /* We want temp_name_rand to be initialized to a value likely to be | |
4598 unique to the process, not to the executable. The danger is that | |
4599 two different XEmacs processes using the same binary on different | |
4600 machines creating temp files in the same directory will be | |
4601 unlucky enough to have the same pid. If we randomize using | |
4602 process startup time, then in practice they will be unlikely to | |
4603 collide. We use the microseconds field so that scripts that start | |
4604 simultaneous XEmacs processes on multiple machines will have less | |
4605 chance of collision. */ | |
4606 { | |
4607 EMACS_TIME thyme; | |
4608 | |
4609 EMACS_GET_TIME (thyme); | |
4610 temp_name_rand = (unsigned int) (EMACS_SECS (thyme) ^ EMACS_USECS (thyme)); | |
4611 } | |
4612 } |