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