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