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