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