428
|
1 /* File IO for XEmacs.
|
|
2 Copyright (C) 1985-1988, 1992-1995 Free Software Foundation, Inc.
|
771
|
3 Copyright (C) 1996, 2001, 2002 Ben Wing.
|
428
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: Mule 2.0, FSF 19.30. */
|
771
|
23 /* More syncing: FSF Emacs 19.34.6 by Marc Paquette <marcpa@cam.org>
|
|
24 (Note: Sync messages from Marc Paquette may indicate
|
|
25 incomplete synching, so beware.) */
|
|
26 /* Mule-ized completely except for the #if 0-code including decrypt-string
|
|
27 and encrypt-string. --ben 7-2-00 */
|
|
28
|
428
|
29
|
|
30 #include <config.h>
|
|
31 #include "lisp.h"
|
|
32
|
|
33 #include "buffer.h"
|
800
|
34 #include "device.h"
|
428
|
35 #include "events.h"
|
800
|
36 #include "file-coding.h"
|
428
|
37 #include "frame.h"
|
|
38 #include "insdel.h"
|
|
39 #include "lstream.h"
|
|
40 #include "redisplay.h"
|
|
41 #include "sysdep.h"
|
|
42 #include "window.h" /* minibuf_level */
|
771
|
43
|
428
|
44 #include "sysfile.h"
|
|
45 #include "sysproc.h"
|
|
46 #include "syspwd.h"
|
|
47 #include "systime.h"
|
|
48 #include "sysdir.h"
|
|
49
|
|
50 #ifdef HPUX
|
|
51 #include <netio.h>
|
|
52 #ifdef HPUX_PRE_8_0
|
|
53 #include <errnet.h>
|
|
54 #endif /* HPUX_PRE_8_0 */
|
|
55 #endif /* HPUX */
|
|
56
|
771
|
57 #if defined (WIN32_NATIVE) || defined (CYGWIN)
|
657
|
58 #define WIN32_FILENAMES
|
771
|
59 #include "syswindows.h"
|
428
|
60 #define IS_DRIVE(x) isalpha (x)
|
|
61 /* Need to lower-case the drive letter, or else expanded
|
|
62 filenames will sometimes compare inequal, because
|
|
63 `expand-file-name' doesn't always down-case the drive letter. */
|
|
64 #define DRIVE_LETTER(x) tolower (x)
|
657
|
65 #endif /* WIN32_NATIVE || CYGWIN */
|
428
|
66
|
|
67 int lisp_to_time (Lisp_Object, time_t *);
|
|
68 Lisp_Object time_to_lisp (time_t);
|
|
69
|
|
70 /* Nonzero during writing of auto-save files */
|
|
71 static int auto_saving;
|
|
72
|
|
73 /* Set by auto_save_1 to mode of original file so Fwrite_region_internal
|
|
74 will create a new file with the same mode as the original */
|
|
75 static int auto_save_mode_bits;
|
|
76
|
|
77 /* Alist of elements (REGEXP . HANDLER) for file names
|
|
78 whose I/O is done with a special handler. */
|
|
79 Lisp_Object Vfile_name_handler_alist;
|
|
80
|
|
81 /* Format for auto-save files */
|
|
82 Lisp_Object Vauto_save_file_format;
|
|
83
|
|
84 /* Lisp functions for translating file formats */
|
|
85 Lisp_Object Qformat_decode, Qformat_annotate_function;
|
|
86
|
|
87 /* Functions to be called to process text properties in inserted file. */
|
|
88 Lisp_Object Vafter_insert_file_functions;
|
|
89
|
|
90 /* Functions to be called to create text property annotations for file. */
|
|
91 Lisp_Object Vwrite_region_annotate_functions;
|
|
92
|
|
93 /* During build_annotations, each time an annotation function is called,
|
|
94 this holds the annotations made by the previous functions. */
|
|
95 Lisp_Object Vwrite_region_annotations_so_far;
|
|
96
|
|
97 /* File name in which we write a list of all our auto save files. */
|
|
98 Lisp_Object Vauto_save_list_file_name;
|
|
99
|
444
|
100 /* Prefix used to construct Vauto_save_list_file_name. */
|
|
101 Lisp_Object Vauto_save_list_file_prefix;
|
|
102
|
|
103 /* When non-nil, it prevents auto-save list file creation. */
|
|
104 int inhibit_auto_save_session;
|
|
105
|
428
|
106 int disable_auto_save_when_buffer_shrinks;
|
|
107
|
|
108 Lisp_Object Vdirectory_sep_char;
|
|
109
|
|
110 /* These variables describe handlers that have "already" had a chance
|
|
111 to handle the current operation.
|
|
112
|
|
113 Vinhibit_file_name_handlers is a list of file name handlers.
|
|
114 Vinhibit_file_name_operation is the operation being handled.
|
|
115 If we try to handle that operation, we ignore those handlers. */
|
|
116
|
|
117 static Lisp_Object Vinhibit_file_name_handlers;
|
|
118 static Lisp_Object Vinhibit_file_name_operation;
|
|
119
|
563
|
120 Lisp_Object Qfile_already_exists;
|
428
|
121
|
|
122 Lisp_Object Qauto_save_hook;
|
|
123 Lisp_Object Qauto_save_error;
|
|
124 Lisp_Object Qauto_saving;
|
|
125
|
|
126 Lisp_Object Qcar_less_than_car;
|
|
127
|
|
128 Lisp_Object Qcompute_buffer_file_truename;
|
|
129
|
|
130 EXFUN (Frunning_temacs_p, 0);
|
|
131
|
563
|
132 /* DATA can be anything acceptable to signal_error ().
|
|
133 */
|
|
134
|
|
135 DOESNT_RETURN
|
|
136 report_file_type_error (Lisp_Object errtype, Lisp_Object oserrmess,
|
665
|
137 const CIntbyte *string, Lisp_Object data)
|
563
|
138 {
|
|
139 struct gcpro gcpro1;
|
|
140 Lisp_Object errdata = build_error_data (NULL, data);
|
|
141
|
|
142 GCPRO1 (errdata);
|
771
|
143 errdata = Fcons (build_msg_string (string),
|
563
|
144 Fcons (oserrmess, errdata));
|
|
145 signal_error_1 (errtype, errdata);
|
801
|
146 /* UNGCPRO; not reached */
|
563
|
147 }
|
|
148
|
|
149 DOESNT_RETURN
|
|
150 report_error_with_errno (Lisp_Object errtype,
|
665
|
151 const CIntbyte *string, Lisp_Object data)
|
563
|
152 {
|
|
153 report_file_type_error (errtype, lisp_strerror (errno), string, data);
|
|
154 }
|
|
155
|
428
|
156 /* signal a file error when errno contains a meaningful value. */
|
|
157
|
|
158 DOESNT_RETURN
|
665
|
159 report_file_error (const CIntbyte *string, Lisp_Object data)
|
428
|
160 {
|
563
|
161 report_error_with_errno (Qfile_error, string, data);
|
428
|
162 }
|
|
163
|
|
164
|
|
165 /* Just like strerror(3), except return a lisp string instead of char *.
|
|
166 The string needs to be converted since it may be localized.
|
771
|
167 */
|
428
|
168 Lisp_Object
|
|
169 lisp_strerror (int errnum)
|
|
170 {
|
771
|
171 Extbyte *ret = strerror (errnum);
|
|
172 if (!ret)
|
|
173 {
|
|
174 Intbyte ffff[99];
|
|
175 qxesprintf (ffff, "Unknown error %d", errnum);
|
|
176 return build_intstring (ffff);
|
|
177 }
|
|
178 return build_ext_string (ret, Qstrerror_encoding);
|
428
|
179 }
|
|
180
|
|
181 static Lisp_Object
|
|
182 close_file_unwind (Lisp_Object fd)
|
|
183 {
|
|
184 if (CONSP (fd))
|
|
185 {
|
|
186 if (INTP (XCAR (fd)))
|
771
|
187 retry_close (XINT (XCAR (fd)));
|
428
|
188
|
|
189 free_cons (XCONS (fd));
|
|
190 }
|
|
191 else
|
771
|
192 retry_close (XINT (fd));
|
428
|
193
|
|
194 return Qnil;
|
|
195 }
|
|
196
|
|
197 static Lisp_Object
|
|
198 delete_stream_unwind (Lisp_Object stream)
|
|
199 {
|
|
200 Lstream_delete (XLSTREAM (stream));
|
|
201 return Qnil;
|
|
202 }
|
|
203
|
|
204 /* Restore point, having saved it as a marker. */
|
|
205
|
|
206 static Lisp_Object
|
|
207 restore_point_unwind (Lisp_Object point_marker)
|
|
208 {
|
|
209 BUF_SET_PT (current_buffer, marker_position (point_marker));
|
|
210 return Fset_marker (point_marker, Qnil, Qnil);
|
|
211 }
|
|
212
|
|
213
|
|
214 Lisp_Object Qexpand_file_name;
|
|
215 Lisp_Object Qfile_truename;
|
|
216 Lisp_Object Qsubstitute_in_file_name;
|
|
217 Lisp_Object Qdirectory_file_name;
|
|
218 Lisp_Object Qfile_name_directory;
|
|
219 Lisp_Object Qfile_name_nondirectory;
|
|
220 Lisp_Object Qunhandled_file_name_directory;
|
|
221 Lisp_Object Qfile_name_as_directory;
|
|
222 Lisp_Object Qcopy_file;
|
|
223 Lisp_Object Qmake_directory_internal;
|
|
224 Lisp_Object Qdelete_directory;
|
|
225 Lisp_Object Qdelete_file;
|
|
226 Lisp_Object Qrename_file;
|
|
227 Lisp_Object Qadd_name_to_file;
|
|
228 Lisp_Object Qmake_symbolic_link;
|
|
229 Lisp_Object Qfile_exists_p;
|
|
230 Lisp_Object Qfile_executable_p;
|
|
231 Lisp_Object Qfile_readable_p;
|
|
232 Lisp_Object Qfile_symlink_p;
|
|
233 Lisp_Object Qfile_writable_p;
|
|
234 Lisp_Object Qfile_directory_p;
|
|
235 Lisp_Object Qfile_regular_p;
|
|
236 Lisp_Object Qfile_accessible_directory_p;
|
|
237 Lisp_Object Qfile_modes;
|
|
238 Lisp_Object Qset_file_modes;
|
|
239 Lisp_Object Qfile_newer_than_file_p;
|
|
240 Lisp_Object Qinsert_file_contents;
|
|
241 Lisp_Object Qwrite_region;
|
|
242 Lisp_Object Qverify_visited_file_modtime;
|
|
243 Lisp_Object Qset_visited_file_modtime;
|
|
244
|
|
245 /* If FILENAME is handled specially on account of its syntax,
|
|
246 return its handler function. Otherwise, return nil. */
|
|
247
|
|
248 DEFUN ("find-file-name-handler", Ffind_file_name_handler, 1, 2, 0, /*
|
|
249 Return FILENAME's handler function for OPERATION, if it has one.
|
|
250 Otherwise, return nil.
|
|
251 A file name is handled if one of the regular expressions in
|
|
252 `file-name-handler-alist' matches it.
|
|
253
|
|
254 If OPERATION equals `inhibit-file-name-operation', then we ignore
|
|
255 any handlers that are members of `inhibit-file-name-handlers',
|
|
256 but we still do run any other handlers. This lets handlers
|
|
257 use the standard functions without calling themselves recursively.
|
751
|
258
|
|
259 Otherwise, OPERATION is the name of a funcall'able function.
|
428
|
260 */
|
|
261 (filename, operation))
|
|
262 {
|
|
263 /* This function does not GC */
|
|
264 /* This function can be called during GC */
|
|
265 /* This function must not munge the match data. */
|
|
266 Lisp_Object chain, inhibited_handlers;
|
|
267
|
|
268 CHECK_STRING (filename);
|
|
269
|
|
270 if (EQ (operation, Vinhibit_file_name_operation))
|
|
271 inhibited_handlers = Vinhibit_file_name_handlers;
|
|
272 else
|
|
273 inhibited_handlers = Qnil;
|
|
274
|
|
275 EXTERNAL_LIST_LOOP (chain, Vfile_name_handler_alist)
|
|
276 {
|
|
277 Lisp_Object elt = XCAR (chain);
|
|
278 if (CONSP (elt))
|
|
279 {
|
|
280 Lisp_Object string = XCAR (elt);
|
|
281 if (STRINGP (string)
|
|
282 && (fast_lisp_string_match (string, filename) >= 0))
|
|
283 {
|
|
284 Lisp_Object handler = XCDR (elt);
|
|
285 if (NILP (Fmemq (handler, inhibited_handlers)))
|
|
286 return handler;
|
|
287 }
|
|
288 }
|
|
289 QUIT;
|
|
290 }
|
|
291 return Qnil;
|
|
292 }
|
|
293
|
|
294 static Lisp_Object
|
|
295 call2_check_string (Lisp_Object fn, Lisp_Object arg0, Lisp_Object arg1)
|
|
296 {
|
|
297 /* This function can call lisp */
|
|
298 Lisp_Object result = call2 (fn, arg0, arg1);
|
|
299 CHECK_STRING (result);
|
|
300 return result;
|
|
301 }
|
|
302
|
|
303 static Lisp_Object
|
|
304 call2_check_string_or_nil (Lisp_Object fn, Lisp_Object arg0, Lisp_Object arg1)
|
|
305 {
|
|
306 /* This function can call lisp */
|
|
307 Lisp_Object result = call2 (fn, arg0, arg1);
|
|
308 if (!NILP (result))
|
|
309 CHECK_STRING (result);
|
|
310 return result;
|
|
311 }
|
|
312
|
|
313 static Lisp_Object
|
|
314 call3_check_string (Lisp_Object fn, Lisp_Object arg0,
|
|
315 Lisp_Object arg1, Lisp_Object arg2)
|
|
316 {
|
|
317 /* This function can call lisp */
|
|
318 Lisp_Object result = call3 (fn, arg0, arg1, arg2);
|
|
319 CHECK_STRING (result);
|
|
320 return result;
|
|
321 }
|
|
322
|
|
323
|
|
324 DEFUN ("file-name-directory", Ffile_name_directory, 1, 1, 0, /*
|
444
|
325 Return the directory component in file name FILENAME.
|
|
326 Return nil if FILENAME does not include a directory.
|
428
|
327 Otherwise return a directory spec.
|
|
328 Given a Unix syntax file name, returns a string ending in slash.
|
|
329 */
|
444
|
330 (filename))
|
428
|
331 {
|
442
|
332 /* This function can GC. GC checked 2000-07-28 ben */
|
771
|
333 /* This function synched with Emacs 21.0.103. */
|
665
|
334 Intbyte *beg;
|
|
335 Intbyte *p;
|
428
|
336 Lisp_Object handler;
|
|
337
|
444
|
338 CHECK_STRING (filename);
|
428
|
339
|
|
340 /* If the file name has special constructs in it,
|
|
341 call the corresponding file handler. */
|
444
|
342 handler = Ffind_file_name_handler (filename, Qfile_name_directory);
|
428
|
343 if (!NILP (handler))
|
444
|
344 return call2_check_string_or_nil (handler, Qfile_name_directory, filename);
|
428
|
345
|
|
346 #ifdef FILE_SYSTEM_CASE
|
444
|
347 filename = FILE_SYSTEM_CASE (filename);
|
428
|
348 #endif
|
444
|
349 beg = XSTRING_DATA (filename);
|
771
|
350 /* XEmacs: no need to alloca-copy here */
|
444
|
351 p = beg + XSTRING_LENGTH (filename);
|
428
|
352
|
771
|
353 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
|
657
|
354 #ifdef WIN32_FILENAMES
|
771
|
355 /* only recognise drive specifier at the beginning */
|
|
356 && !(p[-1] == ':'
|
|
357 /* handle the "/:d:foo" and "/:foo" cases correctly */
|
|
358 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg))
|
|
359 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
|
428
|
360 #endif
|
771
|
361 ) p--;
|
428
|
362
|
|
363 if (p == beg)
|
|
364 return Qnil;
|
442
|
365 #ifdef WIN32_NATIVE
|
428
|
366 /* Expansion of "c:" to drive and default directory. */
|
771
|
367 if (p[-1] == ':')
|
428
|
368 {
|
771
|
369 Intbyte *res;
|
|
370 Intbyte *wd = mswindows_getdcwd (toupper (*beg) - 'A' + 1);
|
|
371
|
|
372 res = alloca_array (Intbyte,
|
|
373 (wd ? qxestrlen (wd) : 0) + 10); /* go overboard */
|
|
374 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':')
|
|
375 {
|
|
376 qxestrncpy (res, beg, 2);
|
|
377 beg += 2;
|
|
378 }
|
|
379
|
|
380 if (wd)
|
428
|
381 {
|
771
|
382 qxestrcat (res, wd);
|
|
383 if (!IS_DIRECTORY_SEP (res[qxestrlen (res) - 1]))
|
|
384 qxestrcat (res, (Intbyte *) "/");
|
428
|
385 beg = res;
|
771
|
386 p = beg + qxestrlen (beg);
|
428
|
387 }
|
771
|
388 if (wd)
|
|
389 xfree (wd);
|
428
|
390 }
|
771
|
391
|
|
392 #if 0 /* No! This screws up efs, which calls file-name-directory on URL's
|
|
393 and expects the slashes to be left alone. This is here because of
|
|
394 an analogous call in FSF 21. */
|
|
395 {
|
|
396 Bytecount len = p - beg;
|
|
397 Intbyte *newbeg = alloca_intbytes (len + 1);
|
|
398 Lisp_Object return_me;
|
|
399
|
|
400 qxestrncpy (newbeg, beg, len);
|
|
401 newbeg[len] = '\0';
|
|
402 newbeg = mswindows_canonicalize_filename (newbeg);
|
|
403 return_me = build_intstring (newbeg);
|
|
404 xfree (newbeg);
|
|
405 return return_me;
|
|
406 }
|
|
407 #endif
|
|
408 #endif /* not WIN32_NATIVE */
|
428
|
409 return make_string (beg, p - beg);
|
|
410 }
|
|
411
|
|
412 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory, 1, 1, 0, /*
|
444
|
413 Return file name FILENAME sans its directory.
|
428
|
414 For example, in a Unix-syntax file name,
|
|
415 this is everything after the last slash,
|
|
416 or the entire name if it contains no slash.
|
|
417 */
|
444
|
418 (filename))
|
428
|
419 {
|
442
|
420 /* This function can GC. GC checked 2000-07-28 ben */
|
771
|
421 /* This function synched with Emacs 21.0.103. */
|
665
|
422 Intbyte *beg, *p, *end;
|
428
|
423 Lisp_Object handler;
|
|
424
|
444
|
425 CHECK_STRING (filename);
|
428
|
426
|
|
427 /* If the file name has special constructs in it,
|
|
428 call the corresponding file handler. */
|
444
|
429 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory);
|
428
|
430 if (!NILP (handler))
|
444
|
431 return call2_check_string (handler, Qfile_name_nondirectory, filename);
|
|
432
|
|
433 beg = XSTRING_DATA (filename);
|
|
434 end = p = beg + XSTRING_LENGTH (filename);
|
428
|
435
|
771
|
436 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
|
657
|
437 #ifdef WIN32_FILENAMES
|
771
|
438 /* only recognise drive specifier at beginning */
|
|
439 && !(p[-1] == ':'
|
|
440 /* handle the "/:d:foo" case correctly */
|
|
441 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
|
428
|
442 #endif
|
771
|
443 )
|
|
444 p--;
|
428
|
445
|
|
446 return make_string (p, end - p);
|
|
447 }
|
|
448
|
|
449 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory, 1, 1, 0, /*
|
|
450 Return a directly usable directory name somehow associated with FILENAME.
|
|
451 A `directly usable' directory name is one that may be used without the
|
|
452 intervention of any file handler.
|
|
453 If FILENAME is a directly usable file itself, return
|
|
454 \(file-name-directory FILENAME).
|
|
455 The `call-process' and `start-process' functions use this function to
|
|
456 get a current directory to run processes in.
|
|
457 */
|
444
|
458 (filename))
|
428
|
459 {
|
442
|
460 /* This function can GC. GC checked 2000-07-28 ben */
|
428
|
461 Lisp_Object handler;
|
|
462
|
|
463 /* If the file name has special constructs in it,
|
|
464 call the corresponding file handler. */
|
|
465 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
|
|
466 if (!NILP (handler))
|
|
467 return call2 (handler, Qunhandled_file_name_directory,
|
|
468 filename);
|
|
469
|
|
470 return Ffile_name_directory (filename);
|
|
471 }
|
|
472
|
|
473
|
771
|
474 static Intbyte *
|
|
475 file_name_as_directory (Intbyte *out, Intbyte *in)
|
428
|
476 {
|
442
|
477 /* This function cannot GC */
|
771
|
478 int size = qxestrlen (in);
|
428
|
479
|
|
480 if (size == 0)
|
|
481 {
|
|
482 out[0] = '.';
|
|
483 out[1] = DIRECTORY_SEP;
|
|
484 out[2] = '\0';
|
|
485 }
|
|
486 else
|
|
487 {
|
771
|
488 qxestrcpy (out, in);
|
428
|
489 /* Append a slash if necessary */
|
|
490 if (!IS_ANY_SEP (out[size-1]))
|
|
491 {
|
|
492 out[size] = DIRECTORY_SEP;
|
|
493 out[size + 1] = '\0';
|
|
494 }
|
|
495 }
|
|
496 return out;
|
|
497 }
|
|
498
|
|
499 DEFUN ("file-name-as-directory", Ffile_name_as_directory, 1, 1, 0, /*
|
|
500 Return a string representing file FILENAME interpreted as a directory.
|
|
501 This operation exists because a directory is also a file, but its name as
|
|
502 a directory is different from its name as a file.
|
|
503 The result can be used as the value of `default-directory'
|
|
504 or passed as second argument to `expand-file-name'.
|
|
505 For a Unix-syntax file name, just appends a slash,
|
|
506 except for (file-name-as-directory \"\") => \"./\".
|
|
507 */
|
444
|
508 (filename))
|
428
|
509 {
|
442
|
510 /* This function can GC. GC checked 2000-07-28 ben */
|
771
|
511 Intbyte *buf;
|
428
|
512 Lisp_Object handler;
|
|
513
|
444
|
514 CHECK_STRING (filename);
|
428
|
515
|
|
516 /* If the file name has special constructs in it,
|
|
517 call the corresponding file handler. */
|
444
|
518 handler = Ffind_file_name_handler (filename, Qfile_name_as_directory);
|
428
|
519 if (!NILP (handler))
|
444
|
520 return call2_check_string (handler, Qfile_name_as_directory, filename);
|
|
521
|
771
|
522 buf = alloca_intbytes (XSTRING_LENGTH (filename) + 10);
|
|
523 return build_intstring (file_name_as_directory (buf, XSTRING_DATA (filename)));
|
428
|
524 }
|
|
525
|
|
526 /*
|
|
527 * Convert from directory name to filename.
|
|
528 * On UNIX, it's simple: just make sure there isn't a terminating /
|
|
529 *
|
|
530 * Value is nonzero if the string output is different from the input.
|
|
531 */
|
|
532
|
|
533 static int
|
771
|
534 directory_file_name (const Intbyte *src, Intbyte *dst)
|
428
|
535 {
|
442
|
536 /* This function cannot GC */
|
771
|
537 long slen = qxestrlen (src);
|
428
|
538 /* Process as Unix format: just remove any final slash.
|
|
539 But leave "/" unchanged; do not change it to "". */
|
771
|
540 qxestrcpy (dst, src);
|
428
|
541 if (slen > 1
|
|
542 && IS_DIRECTORY_SEP (dst[slen - 1])
|
657
|
543 #ifdef WIN32_FILENAMES
|
428
|
544 && !IS_ANY_SEP (dst[slen - 2])
|
657
|
545 #endif /* WIN32_FILENAMES */
|
428
|
546 )
|
|
547 dst[slen - 1] = 0;
|
|
548 return 1;
|
|
549 }
|
|
550
|
|
551 DEFUN ("directory-file-name", Fdirectory_file_name, 1, 1, 0, /*
|
444
|
552 Return the file name of the directory named DIRECTORY.
|
|
553 This is the name of the file that holds the data for the directory.
|
428
|
554 This operation exists because a directory is also a file, but its name as
|
|
555 a directory is different from its name as a file.
|
|
556 In Unix-syntax, this function just removes the final slash.
|
|
557 */
|
|
558 (directory))
|
|
559 {
|
442
|
560 /* This function can GC. GC checked 2000-07-28 ben */
|
771
|
561 Intbyte *buf;
|
428
|
562 Lisp_Object handler;
|
|
563
|
|
564 CHECK_STRING (directory);
|
|
565
|
|
566 #if 0 /* #### WTF? */
|
|
567 if (NILP (directory))
|
|
568 return Qnil;
|
|
569 #endif
|
|
570
|
|
571 /* If the file name has special constructs in it,
|
|
572 call the corresponding file handler. */
|
|
573 handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
|
|
574 if (!NILP (handler))
|
|
575 return call2_check_string (handler, Qdirectory_file_name, directory);
|
771
|
576 buf = (Intbyte *) alloca (XSTRING_LENGTH (directory) + 20);
|
|
577 directory_file_name (XSTRING_DATA (directory), buf);
|
|
578 return build_intstring (buf);
|
428
|
579 }
|
|
580
|
|
581 /* Fmake_temp_name used to be a simple wrapper around mktemp(), but it
|
|
582 proved too broken for our purposes (it supported only 26 or 62
|
|
583 unique names under some implementations). For example, this
|
|
584 arbitrary limit broke generation of Gnus Incoming* files.
|
|
585
|
|
586 This implementation is better than what one usually finds in libc.
|
|
587 --hniksic */
|
|
588
|
442
|
589 static unsigned int temp_name_rand;
|
|
590
|
428
|
591 DEFUN ("make-temp-name", Fmake_temp_name, 1, 1, 0, /*
|
442
|
592 Generate a temporary file name starting with PREFIX.
|
428
|
593 The Emacs process number forms part of the result, so there is no
|
|
594 danger of generating a name being used by another process.
|
|
595
|
|
596 In addition, this function makes an attempt to choose a name that
|
|
597 does not specify an existing file. To make this work, PREFIX should
|
|
598 be an absolute file name.
|
|
599 */
|
|
600 (prefix))
|
|
601 {
|
442
|
602 static const char tbl[64] =
|
|
603 {
|
428
|
604 'A','B','C','D','E','F','G','H',
|
|
605 'I','J','K','L','M','N','O','P',
|
|
606 'Q','R','S','T','U','V','W','X',
|
|
607 'Y','Z','a','b','c','d','e','f',
|
|
608 'g','h','i','j','k','l','m','n',
|
|
609 'o','p','q','r','s','t','u','v',
|
|
610 'w','x','y','z','0','1','2','3',
|
442
|
611 '4','5','6','7','8','9','-','_'
|
|
612 };
|
428
|
613
|
|
614 Bytecount len;
|
665
|
615 Intbyte *p, *data;
|
428
|
616
|
|
617 CHECK_STRING (prefix);
|
|
618
|
|
619 /* I was tempted to apply Fexpand_file_name on PREFIX here, but it's
|
|
620 a bad idea because:
|
|
621
|
|
622 1) It might change the prefix, so the resulting string might not
|
|
623 begin with PREFIX. This violates the principle of least
|
|
624 surprise.
|
|
625
|
|
626 2) It breaks under many unforeseeable circumstances, such as with
|
|
627 the code that uses (make-temp-name "") instead of
|
|
628 (make-temp-name "./").
|
|
629
|
|
630 3) It might yield unexpected (to stat(2)) results in the presence
|
|
631 of EFS and file name handlers. */
|
|
632
|
|
633 len = XSTRING_LENGTH (prefix);
|
771
|
634 data = alloca_intbytes (len + 7);
|
428
|
635 memcpy (data, XSTRING_DATA (prefix), len);
|
|
636 p = data + len;
|
771
|
637 p[6] = '\0';
|
428
|
638
|
|
639 /* VAL is created by adding 6 characters to PREFIX. The first three
|
|
640 are the PID of this process, in base 64, and the second three are
|
442
|
641 a pseudo-random number seeded from process startup time. This
|
|
642 ensures 262144 unique file names per PID per PREFIX per machine. */
|
|
643
|
|
644 {
|
771
|
645 unsigned int pid = (unsigned int) qxe_getpid ();
|
442
|
646 *p++ = tbl[(pid >> 0) & 63];
|
|
647 *p++ = tbl[(pid >> 6) & 63];
|
|
648 *p++ = tbl[(pid >> 12) & 63];
|
|
649 }
|
428
|
650
|
|
651 /* Here we try to minimize useless stat'ing when this function is
|
|
652 invoked many times successively with the same PREFIX. We achieve
|
442
|
653 this by using a very pseudo-random number generator to generate
|
|
654 file names unique to this process, with a very long cycle. */
|
428
|
655
|
|
656 while (1)
|
|
657 {
|
|
658 struct stat ignored;
|
442
|
659
|
|
660 p[0] = tbl[(temp_name_rand >> 0) & 63];
|
|
661 p[1] = tbl[(temp_name_rand >> 6) & 63];
|
|
662 p[2] = tbl[(temp_name_rand >> 12) & 63];
|
428
|
663
|
|
664 /* Poor man's congruential RN generator. Replace with ++count
|
|
665 for debugging. */
|
442
|
666 temp_name_rand += 25229;
|
|
667 temp_name_rand %= 225307;
|
428
|
668
|
|
669 QUIT;
|
|
670
|
771
|
671 if (qxe_stat (data, &ignored) < 0)
|
428
|
672 {
|
|
673 /* We want to return only if errno is ENOENT. */
|
|
674 if (errno == ENOENT)
|
771
|
675 return make_string (data, len + 6);
|
428
|
676
|
|
677 /* The error here is dubious, but there is little else we
|
|
678 can do. The alternatives are to return nil, which is
|
|
679 as bad as (and in many cases worse than) throwing the
|
|
680 error, or to ignore the error, which will likely result
|
|
681 in inflooping. */
|
|
682 report_file_error ("Cannot create temporary name for prefix",
|
563
|
683 prefix);
|
428
|
684 return Qnil; /* not reached */
|
|
685 }
|
|
686 }
|
|
687 }
|
|
688
|
|
689
|
771
|
690
|
428
|
691 DEFUN ("expand-file-name", Fexpand_file_name, 1, 2, 0, /*
|
|
692 Convert filename NAME to absolute, and canonicalize it.
|
|
693 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
|
|
694 (does not start with slash); if DEFAULT-DIRECTORY is nil or missing,
|
444
|
695 the current buffer's value of `default-directory' is used.
|
428
|
696 File name components that are `.' are removed, and
|
|
697 so are file name components followed by `..', along with the `..' itself;
|
|
698 note that these simplifications are done without checking the resulting
|
|
699 file names in the file system.
|
|
700 An initial `~/' expands to your home directory.
|
|
701 An initial `~USER/' expands to USER's home directory.
|
|
702 See also the function `substitute-in-file-name'.
|
|
703 */
|
|
704 (name, default_directory))
|
|
705 {
|
771
|
706 /* This function can GC. GC-checked 2000-11-18.
|
|
707 This function synched with Emacs 21.0.103. */
|
665
|
708 Intbyte *nm;
|
|
709
|
|
710 Intbyte *newdir, *p, *o;
|
428
|
711 int tlen;
|
665
|
712 Intbyte *target;
|
657
|
713 #ifdef WIN32_FILENAMES
|
428
|
714 int drive = 0;
|
|
715 int collapse_newdir = 1;
|
771
|
716 /* XEmacs note: This concerns the special '/:' syntax for preventing
|
|
717 wildcards and such. We don't support this currently but I'm
|
|
718 keeping the code here in case we do. */
|
|
719 int is_escaped = 0;
|
657
|
720 #endif
|
|
721 #ifndef WIN32_NATIVE
|
428
|
722 struct passwd *pw;
|
771
|
723 #endif
|
428
|
724 int length;
|
446
|
725 Lisp_Object handler = Qnil;
|
|
726 struct gcpro gcpro1, gcpro2, gcpro3;
|
442
|
727
|
|
728 /* both of these get set below */
|
446
|
729 GCPRO3 (name, default_directory, handler);
|
428
|
730
|
|
731 CHECK_STRING (name);
|
|
732
|
|
733 /* If the file name has special constructs in it,
|
|
734 call the corresponding file handler. */
|
|
735 handler = Ffind_file_name_handler (name, Qexpand_file_name);
|
|
736 if (!NILP (handler))
|
446
|
737 RETURN_UNGCPRO (call3_check_string (handler, Qexpand_file_name,
|
|
738 name, default_directory));
|
428
|
739
|
|
740 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
|
|
741 if (NILP (default_directory))
|
|
742 default_directory = current_buffer->directory;
|
|
743 if (! STRINGP (default_directory))
|
771
|
744 #ifdef WIN32_NATIVE
|
|
745 default_directory = build_string ("C:\\");
|
|
746 #else
|
428
|
747 default_directory = build_string ("/");
|
771
|
748 #endif
|
428
|
749
|
|
750 if (!NILP (default_directory))
|
|
751 {
|
|
752 handler = Ffind_file_name_handler (default_directory, Qexpand_file_name);
|
|
753 if (!NILP (handler))
|
446
|
754 RETURN_UNGCPRO (call3 (handler, Qexpand_file_name,
|
|
755 name, default_directory));
|
428
|
756 }
|
|
757
|
|
758 o = XSTRING_DATA (default_directory);
|
|
759
|
|
760 /* Make sure DEFAULT_DIRECTORY is properly expanded.
|
|
761 It would be better to do this down below where we actually use
|
|
762 default_directory. Unfortunately, calling Fexpand_file_name recursively
|
|
763 could invoke GC, and the strings might be relocated. This would
|
|
764 be annoying because we have pointers into strings lying around
|
|
765 that would need adjusting, and people would add new pointers to
|
|
766 the code and forget to adjust them, resulting in intermittent bugs.
|
|
767 Putting this call here avoids all that crud.
|
|
768
|
|
769 The EQ test avoids infinite recursion. */
|
|
770 if (! NILP (default_directory) && !EQ (default_directory, name)
|
|
771 /* Save time in some common cases - as long as default_directory
|
|
772 is not relative, it can be canonicalized with name below (if it
|
|
773 is needed at all) without requiring it to be expanded now. */
|
657
|
774 #ifdef WIN32_FILENAMES
|
442
|
775 /* Detect Windows file names with drive specifiers. */
|
428
|
776 && ! (IS_DRIVE (o[0]) && (IS_DEVICE_SEP (o[1]) && IS_DIRECTORY_SEP (o[2])))
|
|
777 /* Detect Windows file names in UNC format. */
|
|
778 && ! (IS_DIRECTORY_SEP (o[0]) && IS_DIRECTORY_SEP (o[1]))
|
657
|
779 #endif /* not WIN32_FILENAMES */
|
|
780 #ifndef WIN32_NATIVE
|
428
|
781 /* Detect Unix absolute file names (/... alone is not absolute on
|
442
|
782 Windows). */
|
428
|
783 && ! (IS_DIRECTORY_SEP (o[0]))
|
442
|
784 #endif /* not WIN32_NATIVE */
|
428
|
785 )
|
442
|
786
|
|
787 default_directory = Fexpand_file_name (default_directory, Qnil);
|
428
|
788
|
|
789 #ifdef FILE_SYSTEM_CASE
|
|
790 name = FILE_SYSTEM_CASE (name);
|
|
791 #endif
|
|
792
|
|
793 /* #### dmoore - this is ugly, clean this up. Looks like nm pointing
|
|
794 into name should be safe during all of this, though. */
|
|
795 nm = XSTRING_DATA (name);
|
|
796
|
657
|
797 #ifdef WIN32_FILENAMES
|
428
|
798 /* We will force directory separators to be either all \ or /, so make
|
|
799 a local copy to modify, even if there ends up being no change. */
|
771
|
800 nm = qxestrcpy (alloca_intbytes (qxestrlen (nm) + 1), nm);
|
|
801
|
|
802 /* Note if special escape prefix is present, but remove for now. */
|
|
803 if (nm[0] == '/' && nm[1] == ':')
|
|
804 {
|
|
805 is_escaped = 1;
|
|
806 nm += 2;
|
|
807 }
|
428
|
808
|
|
809 /* Find and remove drive specifier if present; this makes nm absolute
|
|
810 even if the rest of the name appears to be relative. */
|
|
811 {
|
771
|
812 Intbyte *colon = qxestrrchr (nm, ':');
|
428
|
813
|
|
814 if (colon)
|
657
|
815 {
|
428
|
816 /* Only recognize colon as part of drive specifier if there is a
|
|
817 single alphabetic character preceding the colon (and if the
|
|
818 character before the drive letter, if present, is a directory
|
|
819 separator); this is to support the remote system syntax used by
|
|
820 ange-ftp, and the "po:username" syntax for POP mailboxes. */
|
|
821 look_again:
|
|
822 if (nm == colon)
|
|
823 nm++;
|
|
824 else if (IS_DRIVE (colon[-1])
|
|
825 && (colon == nm + 1 || IS_DIRECTORY_SEP (colon[-2])))
|
|
826 {
|
|
827 drive = colon[-1];
|
|
828 nm = colon + 1;
|
|
829 }
|
|
830 else
|
|
831 {
|
|
832 while (--colon >= nm)
|
|
833 if (colon[0] == ':')
|
|
834 goto look_again;
|
|
835 }
|
657
|
836 }
|
428
|
837 }
|
|
838
|
|
839 /* If we see "c://somedir", we want to strip the first slash after the
|
|
840 colon when stripping the drive letter. Otherwise, this expands to
|
|
841 "//somedir". */
|
|
842 if (drive && IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
|
|
843 nm++;
|
657
|
844 #endif /* WIN32_FILENAMES */
|
428
|
845
|
771
|
846 #ifdef WIN32_FILENAMES
|
|
847 /* Discard any previous drive specifier if nm is now in UNC format. */
|
|
848 if (IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
|
|
849 {
|
|
850 drive = 0;
|
|
851 }
|
|
852 #endif
|
|
853
|
428
|
854 /* If nm is absolute, look for /./ or /../ sequences; if none are
|
|
855 found, we can probably return right away. We will avoid allocating
|
|
856 a new string if name is already fully expanded. */
|
|
857 if (
|
|
858 IS_DIRECTORY_SEP (nm[0])
|
442
|
859 #ifdef WIN32_NATIVE
|
771
|
860 && (drive || IS_DIRECTORY_SEP (nm[1])) && !is_escaped
|
428
|
861 #endif
|
|
862 )
|
|
863 {
|
|
864 /* If it turns out that the filename we want to return is just a
|
|
865 suffix of FILENAME, we don't need to go through and edit
|
|
866 things; we just need to construct a new string using data
|
|
867 starting at the middle of FILENAME. If we set lose to a
|
|
868 non-zero value, that means we've discovered that we can't do
|
|
869 that cool trick. */
|
|
870 int lose = 0;
|
|
871
|
|
872 p = nm;
|
|
873 while (*p)
|
|
874 {
|
|
875 /* Since we know the name is absolute, we can assume that each
|
|
876 element starts with a "/". */
|
|
877
|
|
878 /* "." and ".." are hairy. */
|
|
879 if (IS_DIRECTORY_SEP (p[0])
|
|
880 && p[1] == '.'
|
|
881 && (IS_DIRECTORY_SEP (p[2])
|
|
882 || p[2] == 0
|
|
883 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3])
|
|
884 || p[3] == 0))))
|
|
885 lose = 1;
|
771
|
886 /* We want to replace multiple `/' in a row with a single
|
|
887 slash. */
|
|
888 else if (p > nm
|
|
889 && IS_DIRECTORY_SEP (p[0])
|
|
890 && IS_DIRECTORY_SEP (p[1]))
|
|
891 lose = 1;
|
428
|
892 p++;
|
|
893 }
|
|
894 if (!lose)
|
|
895 {
|
657
|
896 #ifdef WIN32_FILENAMES
|
|
897 if (drive || IS_DIRECTORY_SEP (nm[1]))
|
428
|
898 {
|
771
|
899 Intbyte *newnm;
|
|
900
|
657
|
901 if (IS_DIRECTORY_SEP (nm[1]))
|
|
902 {
|
771
|
903 newnm = mswindows_canonicalize_filename (nm);
|
|
904 if (qxestrcmp (newnm, XSTRING_DATA (name)) != 0)
|
|
905 name = build_intstring (newnm);
|
657
|
906 }
|
771
|
907 else
|
657
|
908 {
|
771
|
909 /* drive must be set, so this is okay */
|
|
910 newnm = mswindows_canonicalize_filename (nm - 2);
|
|
911 if (qxestrcmp (newnm, XSTRING_DATA (name)) != 0)
|
|
912 {
|
|
913 name = build_intstring (newnm);
|
|
914 XSTRING_DATA (name)[0] = DRIVE_LETTER (drive);
|
|
915 XSTRING_DATA (name)[1] = ':';
|
|
916 }
|
657
|
917 }
|
771
|
918 xfree (newnm);
|
657
|
919 RETURN_UNGCPRO (name);
|
428
|
920 }
|
771
|
921 #endif /* WIN32_FILENAMES */
|
657
|
922 #ifndef WIN32_NATIVE
|
428
|
923 if (nm == XSTRING_DATA (name))
|
442
|
924 RETURN_UNGCPRO (name);
|
771
|
925 RETURN_UNGCPRO (build_intstring (nm));
|
442
|
926 #endif /* not WIN32_NATIVE */
|
428
|
927 }
|
|
928 }
|
|
929
|
|
930 /* At this point, nm might or might not be an absolute file name. We
|
|
931 need to expand ~ or ~user if present, otherwise prefix nm with
|
|
932 default_directory if nm is not absolute, and finally collapse /./
|
|
933 and /foo/../ sequences.
|
|
934
|
|
935 We set newdir to be the appropriate prefix if one is needed:
|
|
936 - the relevant user directory if nm starts with ~ or ~user
|
|
937 - the specified drive's working dir (DOS/NT only) if nm does not
|
|
938 start with /
|
|
939 - the value of default_directory.
|
|
940
|
|
941 Note that these prefixes are not guaranteed to be absolute (except
|
|
942 for the working dir of a drive). Therefore, to ensure we always
|
|
943 return an absolute name, if the final prefix is not absolute we
|
|
944 append it to the current working directory. */
|
|
945
|
|
946 newdir = 0;
|
|
947
|
|
948 if (nm[0] == '~') /* prefix ~ */
|
|
949 {
|
|
950 if (IS_DIRECTORY_SEP (nm[1])
|
|
951 || nm[1] == 0) /* ~ by itself */
|
|
952 {
|
771
|
953 Intbyte *homedir = get_home_directory ();
|
|
954
|
|
955 if (!homedir)
|
665
|
956 newdir = (Intbyte *) "";
|
428
|
957 else
|
771
|
958 newdir = homedir;
|
428
|
959
|
|
960 nm++;
|
657
|
961 #ifdef WIN32_FILENAMES
|
428
|
962 collapse_newdir = 0;
|
|
963 #endif
|
|
964 }
|
|
965 else /* ~user/filename */
|
|
966 {
|
|
967 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p)); p++)
|
|
968 DO_NOTHING;
|
665
|
969 o = (Intbyte *) alloca (p - nm + 1);
|
771
|
970 memcpy (o, nm, p - nm);
|
428
|
971 o [p - nm] = 0;
|
|
972
|
558
|
973 /* #### While NT is single-user (for the moment) you still
|
|
974 can have multiple user profiles users defined, each with
|
|
975 its HOME. So maybe possibly we should think about handling
|
|
976 ~user. --ben */
|
|
977 #ifndef WIN32_NATIVE
|
442
|
978 #ifdef CYGWIN
|
771
|
979 {
|
|
980 Intbyte *user;
|
|
981
|
|
982 if ((user = user_login_name (NULL)) != NULL)
|
|
983 {
|
|
984 /* Does the user login name match the ~name? */
|
|
985 if (qxestrcmp (user, o + 1) == 0)
|
|
986 {
|
|
987 newdir = get_home_directory ();
|
|
988 nm = p;
|
|
989 }
|
|
990 }
|
|
991 }
|
|
992 if (!newdir)
|
428
|
993 {
|
442
|
994 #endif /* CYGWIN */
|
428
|
995 /* Jamie reports that getpwnam() can get wedged by SIGIO/SIGALARM
|
|
996 occurring in it. (It can call select()). */
|
|
997 slow_down_interrupts ();
|
771
|
998 pw = (struct passwd *) qxe_getpwnam (o + 1);
|
428
|
999 speed_up_interrupts ();
|
|
1000 if (pw)
|
|
1001 {
|
771
|
1002 newdir = (Intbyte *) pw->pw_dir;
|
428
|
1003 nm = p;
|
771
|
1004 /* FSF: if WIN32_NATIVE, collapse_newdir = 0;
|
|
1005 not possible here. */
|
428
|
1006 }
|
442
|
1007 #ifdef CYGWIN
|
428
|
1008 }
|
|
1009 #endif
|
442
|
1010 #endif /* not WIN32_NATIVE */
|
428
|
1011
|
|
1012 /* If we don't find a user of that name, leave the name
|
|
1013 unchanged; don't move nm forward to p. */
|
|
1014 }
|
|
1015 }
|
|
1016
|
657
|
1017 #ifdef WIN32_FILENAMES
|
428
|
1018 /* On DOS and Windows, nm is absolute if a drive name was specified;
|
|
1019 use the drive's current directory as the prefix if needed. */
|
|
1020 if (!newdir && drive)
|
|
1021 {
|
657
|
1022 #ifdef WIN32_NATIVE
|
428
|
1023 /* Get default directory if needed to make nm absolute. */
|
|
1024 if (!IS_DIRECTORY_SEP (nm[0]))
|
|
1025 {
|
771
|
1026 Intbyte *newcwd = mswindows_getdcwd (toupper (drive) - 'A' + 1);
|
|
1027 if (newcwd)
|
|
1028 {
|
|
1029 INTBYTE_STRING_TO_ALLOCA (newcwd, newdir);
|
|
1030 xfree (newcwd);
|
|
1031 }
|
|
1032 else
|
428
|
1033 newdir = NULL;
|
|
1034 }
|
657
|
1035 #endif /* WIN32_NATIVE */
|
428
|
1036 if (!newdir)
|
|
1037 {
|
|
1038 /* Either nm starts with /, or drive isn't mounted. */
|
665
|
1039 newdir = (Intbyte *) alloca (4);
|
428
|
1040 newdir[0] = DRIVE_LETTER (drive);
|
|
1041 newdir[1] = ':';
|
|
1042 newdir[2] = '/';
|
|
1043 newdir[3] = 0;
|
|
1044 }
|
|
1045 }
|
657
|
1046 #endif /* WIN32_FILENAMES */
|
428
|
1047
|
|
1048 /* Finally, if no prefix has been specified and nm is not absolute,
|
|
1049 then it must be expanded relative to default_directory. */
|
|
1050
|
|
1051 if (1
|
442
|
1052 #ifndef WIN32_NATIVE
|
428
|
1053 /* /... alone is not absolute on DOS and Windows. */
|
|
1054 && !IS_DIRECTORY_SEP (nm[0])
|
657
|
1055 #endif
|
|
1056 #ifdef WIN32_FILENAMES
|
428
|
1057 && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
|
|
1058 #endif
|
|
1059 && !newdir)
|
|
1060 {
|
|
1061 newdir = XSTRING_DATA (default_directory);
|
771
|
1062 #ifdef WIN32_FILENAMES
|
|
1063 /* Note if special escape prefix is present, but remove for now. */
|
|
1064 if (newdir[0] == '/' && newdir[1] == ':')
|
|
1065 {
|
|
1066 is_escaped = 1;
|
|
1067 newdir += 2;
|
|
1068 }
|
|
1069 #endif
|
428
|
1070 }
|
|
1071
|
657
|
1072 #ifdef WIN32_FILENAMES
|
428
|
1073 if (newdir)
|
|
1074 {
|
|
1075 /* First ensure newdir is an absolute name. */
|
|
1076 if (
|
442
|
1077 /* Detect Windows file names with drive specifiers. */
|
428
|
1078 ! (IS_DRIVE (newdir[0])
|
|
1079 && IS_DEVICE_SEP (newdir[1]) && IS_DIRECTORY_SEP (newdir[2]))
|
|
1080 /* Detect Windows file names in UNC format. */
|
|
1081 && ! (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
|
771
|
1082 /* XEmacs: added these two lines: Detect drive spec by itself */
|
428
|
1083 && ! (IS_DEVICE_SEP (newdir[1]) && newdir[2] == 0)
|
657
|
1084 /* Detect unix format. */
|
|
1085 #ifndef WIN32_NATIVE
|
|
1086 && ! (IS_DIRECTORY_SEP (newdir[0]))
|
|
1087 #endif
|
428
|
1088 )
|
|
1089 {
|
|
1090 /* Effectively, let newdir be (expand-file-name newdir cwd).
|
|
1091 Because of the admonition against calling expand-file-name
|
|
1092 when we have pointers into lisp strings, we accomplish this
|
|
1093 indirectly by prepending newdir to nm if necessary, and using
|
|
1094 cwd (or the wd of newdir's drive) as the new newdir. */
|
|
1095
|
|
1096 if (IS_DRIVE (newdir[0]) && newdir[1] == ':')
|
|
1097 {
|
|
1098 drive = newdir[0];
|
|
1099 newdir += 2;
|
|
1100 }
|
|
1101 if (!IS_DIRECTORY_SEP (nm[0]))
|
|
1102 {
|
771
|
1103 Intbyte *tmp = (Intbyte *) alloca (qxestrlen (newdir) +
|
|
1104 qxestrlen (nm) + 2);
|
|
1105 file_name_as_directory (tmp, newdir);
|
|
1106 qxestrcat (tmp, nm);
|
428
|
1107 nm = tmp;
|
|
1108 }
|
|
1109 if (drive)
|
|
1110 {
|
657
|
1111 #ifdef WIN32_NATIVE
|
771
|
1112 Intbyte *newcwd = mswindows_getdcwd (toupper (drive) - 'A' + 1);
|
|
1113 if (newcwd)
|
|
1114 {
|
|
1115 INTBYTE_STRING_TO_ALLOCA (newcwd, newdir);
|
|
1116 xfree (newcwd);
|
|
1117 }
|
|
1118 else
|
657
|
1119 #endif
|
771
|
1120 INTBYTE_STRING_TO_ALLOCA ((Intbyte *) "/", newdir);
|
428
|
1121 }
|
|
1122 else
|
771
|
1123 INTBYTE_STRING_TO_ALLOCA (get_initial_directory (0, 0), newdir);
|
428
|
1124 }
|
|
1125
|
|
1126 /* Strip off drive name from prefix, if present. */
|
|
1127 if (IS_DRIVE (newdir[0]) && newdir[1] == ':')
|
|
1128 {
|
|
1129 drive = newdir[0];
|
|
1130 newdir += 2;
|
|
1131 }
|
|
1132
|
|
1133 /* Keep only a prefix from newdir if nm starts with slash
|
771
|
1134 (//server/share for UNC, nothing otherwise). */
|
657
|
1135 if (IS_DIRECTORY_SEP (nm[0])
|
|
1136 #ifndef WIN32_NATIVE
|
|
1137 && IS_DIRECTORY_SEP (nm[1])
|
|
1138 #endif
|
|
1139 && collapse_newdir)
|
428
|
1140 {
|
|
1141 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
|
|
1142 {
|
664
|
1143 newdir =
|
665
|
1144 (Intbyte *)
|
771
|
1145 qxestrcpy ((Intbyte *) alloca (qxestrlen (newdir) + 1),
|
|
1146 newdir);
|
428
|
1147 p = newdir + 2;
|
|
1148 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
|
|
1149 p++;
|
|
1150 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
|
|
1151 *p = 0;
|
|
1152 }
|
|
1153 else
|
665
|
1154 newdir = (Intbyte *) "";
|
428
|
1155 }
|
|
1156 }
|
657
|
1157 #endif /* WIN32_FILENAMES */
|
428
|
1158
|
|
1159 if (newdir)
|
|
1160 {
|
|
1161 /* Get rid of any slash at the end of newdir, unless newdir is
|
771
|
1162 just / or // (an incomplete UNC name). */
|
|
1163 length = qxestrlen (newdir);
|
428
|
1164 if (length > 1 && IS_DIRECTORY_SEP (newdir[length - 1])
|
657
|
1165 #ifdef WIN32_FILENAMES
|
428
|
1166 && !(length == 2 && IS_DIRECTORY_SEP (newdir[0]))
|
|
1167 #endif
|
|
1168 )
|
|
1169 {
|
665
|
1170 Intbyte *temp = (Intbyte *) alloca (length);
|
428
|
1171 memcpy (temp, newdir, length - 1);
|
|
1172 temp[length - 1] = 0;
|
|
1173 newdir = temp;
|
|
1174 }
|
|
1175 tlen = length + 1;
|
|
1176 }
|
|
1177 else
|
|
1178 tlen = 0;
|
|
1179
|
|
1180 /* Now concatenate the directory and name to new space in the stack frame */
|
771
|
1181 tlen += qxestrlen (nm) + 1;
|
657
|
1182 #ifdef WIN32_FILENAMES
|
771
|
1183 /* Reserve space for drive specifier and escape prefix, since either
|
|
1184 or both may need to be inserted. (The Microsoft x86 compiler
|
428
|
1185 produces incorrect code if the following two lines are combined.) */
|
771
|
1186 target = (Intbyte *) alloca (tlen + 4);
|
|
1187 target += 4;
|
657
|
1188 #else /* not WIN32_FILENAMES */
|
665
|
1189 target = (Intbyte *) alloca (tlen);
|
657
|
1190 #endif /* not WIN32_FILENAMES */
|
428
|
1191 *target = 0;
|
|
1192
|
|
1193 if (newdir)
|
|
1194 {
|
|
1195 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0]))
|
771
|
1196 {
|
|
1197 #ifdef WIN32_FILENAMES
|
|
1198 /* If newdir is effectively "C:/", then the drive letter will have
|
|
1199 been stripped and newdir will be "/". Concatenating with an
|
|
1200 absolute directory in nm produces "//", which will then be
|
|
1201 incorrectly treated as a network share. Ignore newdir in
|
|
1202 this case (keeping the drive letter). */
|
|
1203 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0])
|
|
1204 && newdir[1] == '\0'))
|
|
1205 #endif
|
|
1206 qxestrcpy (target, newdir);
|
|
1207 }
|
428
|
1208 else
|
771
|
1209 file_name_as_directory (target, newdir);
|
428
|
1210 }
|
|
1211
|
771
|
1212 qxestrcat (target, nm);
|
428
|
1213
|
|
1214 /* ASSERT (IS_DIRECTORY_SEP (target[0])) if not VMS */
|
|
1215
|
771
|
1216 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they
|
|
1217 appear. */
|
428
|
1218
|
|
1219 p = target;
|
|
1220 o = target;
|
|
1221
|
|
1222 while (*p)
|
|
1223 {
|
|
1224 if (!IS_DIRECTORY_SEP (*p))
|
|
1225 {
|
|
1226 *o++ = *p++;
|
|
1227 }
|
|
1228 else if (IS_DIRECTORY_SEP (p[0])
|
|
1229 && p[1] == '.'
|
|
1230 && (IS_DIRECTORY_SEP (p[2])
|
|
1231 || p[2] == 0))
|
|
1232 {
|
|
1233 /* If "/." is the entire filename, keep the "/". Otherwise,
|
|
1234 just delete the whole "/.". */
|
|
1235 if (o == target && p[2] == '\0')
|
|
1236 *o++ = *p;
|
|
1237 p += 2;
|
|
1238 }
|
|
1239 else if (IS_DIRECTORY_SEP (p[0]) && p[1] == '.' && p[2] == '.'
|
|
1240 /* `/../' is the "superroot" on certain file systems. */
|
|
1241 && o != target
|
|
1242 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0))
|
|
1243 {
|
|
1244 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o))
|
|
1245 ;
|
|
1246 /* Keep initial / only if this is the whole name. */
|
|
1247 if (o == target && IS_ANY_SEP (*o) && p[3] == 0)
|
|
1248 ++o;
|
|
1249 p += 3;
|
|
1250 }
|
771
|
1251 else if (p > target
|
|
1252 && IS_DIRECTORY_SEP (p[0]) && IS_DIRECTORY_SEP (p[1]))
|
|
1253 {
|
|
1254 /* Collapse multiple `/' in a row. */
|
|
1255 *o++ = *p++;
|
|
1256 while (IS_DIRECTORY_SEP (*p))
|
|
1257 ++p;
|
|
1258 }
|
428
|
1259 else
|
|
1260 {
|
|
1261 *o++ = *p++;
|
|
1262 }
|
|
1263 }
|
|
1264
|
657
|
1265 #ifdef WIN32_FILENAMES
|
428
|
1266 /* At last, set drive name, except for network file name. */
|
|
1267 if (drive)
|
|
1268 {
|
|
1269 target -= 2;
|
|
1270 target[0] = DRIVE_LETTER (drive);
|
|
1271 target[1] = ':';
|
|
1272 }
|
657
|
1273 #ifdef WIN32_NATIVE
|
428
|
1274 else
|
|
1275 {
|
|
1276 assert (IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1]));
|
|
1277 }
|
657
|
1278 #endif
|
771
|
1279 /* Reinsert the escape prefix if required. */
|
|
1280 if (is_escaped)
|
|
1281 {
|
|
1282 target -= 2;
|
|
1283 target[0] = '/';
|
|
1284 target[1] = ':';
|
|
1285 }
|
|
1286
|
|
1287 *o = '\0';
|
|
1288
|
|
1289 {
|
|
1290 Intbyte *newtarget = mswindows_canonicalize_filename (target);
|
|
1291 Lisp_Object result = build_intstring (newtarget);
|
|
1292 xfree (newtarget);
|
|
1293
|
|
1294 RETURN_UNGCPRO (result);
|
|
1295 }
|
|
1296 #else /* not WIN32_FILENAMES */
|
442
|
1297 RETURN_UNGCPRO (make_string (target, o - target));
|
771
|
1298 #endif /* not WIN32_FILENAMES */
|
428
|
1299 }
|
|
1300
|
|
1301 DEFUN ("file-truename", Ffile_truename, 1, 2, 0, /*
|
444
|
1302 Return the canonical name of FILENAME.
|
|
1303 Second arg DEFAULT is directory to start with if FILENAME is relative
|
428
|
1304 (does not start with slash); if DEFAULT is nil or missing,
|
444
|
1305 the current buffer's value of `default-directory' is used.
|
428
|
1306 No component of the resulting pathname will be a symbolic link, as
|
|
1307 in the realpath() function.
|
|
1308 */
|
|
1309 (filename, default_))
|
|
1310 {
|
442
|
1311 /* This function can GC. GC checked 2000-07-28 ben. */
|
428
|
1312 Lisp_Object expanded_name;
|
|
1313 struct gcpro gcpro1;
|
|
1314
|
|
1315 CHECK_STRING (filename);
|
|
1316
|
|
1317 expanded_name = Fexpand_file_name (filename, default_);
|
|
1318
|
|
1319 if (!STRINGP (expanded_name))
|
|
1320 return Qnil;
|
|
1321
|
|
1322 GCPRO1 (expanded_name);
|
442
|
1323
|
|
1324 {
|
|
1325 Lisp_Object handler =
|
|
1326 Ffind_file_name_handler (expanded_name, Qfile_truename);
|
|
1327
|
|
1328 if (!NILP (handler))
|
|
1329 RETURN_UNGCPRO
|
|
1330 (call2_check_string (handler, Qfile_truename, expanded_name));
|
|
1331 }
|
428
|
1332
|
|
1333 {
|
771
|
1334 Intbyte resolved_path[PATH_MAX];
|
|
1335 Bytecount elen = XSTRING_LENGTH (expanded_name);
|
|
1336 Intbyte *path;
|
|
1337 Intbyte *p;
|
|
1338
|
|
1339 LISP_STRING_TO_ALLOCA (expanded_name, path);
|
428
|
1340 p = path;
|
442
|
1341
|
428
|
1342 /* Try doing it all at once. */
|
771
|
1343 if (!qxe_realpath (path, resolved_path))
|
428
|
1344 {
|
|
1345 /* Didn't resolve it -- have to do it one component at a time. */
|
|
1346 /* "realpath" is a typically useless, stupid un*x piece of crap.
|
|
1347 It claims to return a useful value in the "error" case, but since
|
|
1348 there is no indication provided of how far along the pathname
|
|
1349 the function went before erring, there is no way to use the
|
442
|
1350 partial result returned. What a piece of junk.
|
|
1351
|
|
1352 The above comment refers to historical versions of
|
|
1353 realpath(). The Unix98 specs state:
|
|
1354
|
|
1355 "On successful completion, realpath() returns a
|
|
1356 pointer to the resolved name. Otherwise, realpath()
|
|
1357 returns a null pointer and sets errno to indicate the
|
|
1358 error, and the contents of the buffer pointed to by
|
|
1359 resolved_name are undefined."
|
|
1360
|
771
|
1361 Since we depend on undocumented semantics of various system
|
|
1362 realpath()s, we just use our own version in realpath.c. */
|
428
|
1363 for (;;)
|
|
1364 {
|
771
|
1365 Intbyte *pos;
|
446
|
1366
|
657
|
1367 #ifdef WIN32_FILENAMES
|
446
|
1368 if (IS_DRIVE (p[0]) && IS_DEVICE_SEP (p[1])
|
|
1369 && IS_DIRECTORY_SEP (p[2]))
|
|
1370 /* don't test c: on windows */
|
|
1371 p = p+2;
|
|
1372 else if (IS_DIRECTORY_SEP (p[0]) && IS_DIRECTORY_SEP (p[1]))
|
|
1373 /* start after // */
|
|
1374 p = p+1;
|
|
1375 #endif
|
|
1376 for (pos = p + 1; pos < path + elen; pos++)
|
|
1377 if (IS_DIRECTORY_SEP (*pos))
|
|
1378 {
|
|
1379 *(p = pos) = 0;
|
|
1380 break;
|
|
1381 }
|
|
1382 if (p != pos)
|
|
1383 p = 0;
|
428
|
1384
|
771
|
1385 if (qxe_realpath (path, resolved_path))
|
428
|
1386 {
|
|
1387 if (p)
|
446
|
1388 *p = DIRECTORY_SEP;
|
428
|
1389 else
|
|
1390 break;
|
|
1391
|
|
1392 }
|
|
1393 else if (errno == ENOENT || errno == EACCES)
|
|
1394 {
|
|
1395 /* Failed on this component. Just tack on the rest of
|
|
1396 the string and we are done. */
|
771
|
1397 int rlen = qxestrlen (resolved_path);
|
428
|
1398
|
|
1399 /* "On failure, it returns NULL, sets errno to indicate
|
|
1400 the error, and places in resolved_path the absolute pathname
|
|
1401 of the path component which could not be resolved." */
|
442
|
1402
|
|
1403 if (p)
|
428
|
1404 {
|
|
1405 int plen = elen - (p - path);
|
|
1406
|
446
|
1407 if (rlen > 1 && IS_DIRECTORY_SEP (resolved_path[rlen - 1]))
|
428
|
1408 rlen = rlen - 1;
|
|
1409
|
|
1410 if (plen + rlen + 1 > countof (resolved_path))
|
|
1411 goto toolong;
|
|
1412
|
446
|
1413 resolved_path[rlen] = DIRECTORY_SEP;
|
428
|
1414 memcpy (resolved_path + rlen + 1, p + 1, plen + 1 - 1);
|
|
1415 }
|
|
1416 break;
|
|
1417 }
|
|
1418 else
|
|
1419 goto lose;
|
|
1420 }
|
|
1421 }
|
|
1422
|
|
1423 {
|
442
|
1424 Lisp_Object resolved_name;
|
771
|
1425 int rlen = qxestrlen (resolved_path);
|
446
|
1426 if (elen > 0 && IS_DIRECTORY_SEP (XSTRING_BYTE (expanded_name, elen - 1))
|
|
1427 && !(rlen > 0 && IS_DIRECTORY_SEP (resolved_path[rlen - 1])))
|
428
|
1428 {
|
|
1429 if (rlen + 1 > countof (resolved_path))
|
|
1430 goto toolong;
|
446
|
1431 resolved_path[rlen++] = DIRECTORY_SEP;
|
442
|
1432 resolved_path[rlen] = '\0';
|
428
|
1433 }
|
771
|
1434 resolved_name = make_string (resolved_path, rlen);
|
442
|
1435 RETURN_UNGCPRO (resolved_name);
|
428
|
1436 }
|
|
1437
|
|
1438 toolong:
|
|
1439 errno = ENAMETOOLONG;
|
|
1440 goto lose;
|
|
1441 lose:
|
563
|
1442 report_file_error ("Finding truename", expanded_name);
|
428
|
1443 }
|
442
|
1444 RETURN_UNGCPRO (Qnil);
|
428
|
1445 }
|
|
1446
|
|
1447
|
|
1448 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name, 1, 1, 0, /*
|
|
1449 Substitute environment variables referred to in FILENAME.
|
|
1450 `$FOO' where FOO is an environment variable name means to substitute
|
|
1451 the value of that variable. The variable name should be terminated
|
444
|
1452 with a character, not a letter, digit or underscore; otherwise, enclose
|
428
|
1453 the entire variable name in braces.
|
|
1454 If `/~' appears, all of FILENAME through that `/' is discarded.
|
|
1455 */
|
444
|
1456 (filename))
|
428
|
1457 {
|
442
|
1458 /* This function can GC. GC checked 2000-07-28 ben. */
|
665
|
1459 Intbyte *nm;
|
|
1460
|
|
1461 Intbyte *s, *p, *o, *x, *endp;
|
|
1462 Intbyte *target = 0;
|
428
|
1463 int total = 0;
|
|
1464 int substituted = 0;
|
665
|
1465 Intbyte *xnm;
|
428
|
1466 Lisp_Object handler;
|
|
1467
|
444
|
1468 CHECK_STRING (filename);
|
428
|
1469
|
|
1470 /* If the file name has special constructs in it,
|
|
1471 call the corresponding file handler. */
|
444
|
1472 handler = Ffind_file_name_handler (filename, Qsubstitute_in_file_name);
|
428
|
1473 if (!NILP (handler))
|
|
1474 return call2_check_string_or_nil (handler, Qsubstitute_in_file_name,
|
444
|
1475 filename);
|
|
1476
|
|
1477 nm = XSTRING_DATA (filename);
|
|
1478 endp = nm + XSTRING_LENGTH (filename);
|
428
|
1479
|
|
1480 /* If /~ or // appears, discard everything through first slash. */
|
|
1481
|
|
1482 for (p = nm; p != endp; p++)
|
|
1483 {
|
|
1484 if ((p[0] == '~'
|
657
|
1485 #if defined (WIN32_FILENAMES)
|
440
|
1486 /* // at start of file name is meaningful in WindowsNT systems */
|
428
|
1487 || (IS_DIRECTORY_SEP (p[0]) && p - 1 != nm)
|
657
|
1488 #else /* not (WIN32_FILENAMES) */
|
428
|
1489 || IS_DIRECTORY_SEP (p[0])
|
657
|
1490 #endif /* not (WIN32_FILENAMES) */
|
428
|
1491 )
|
|
1492 && p != nm
|
|
1493 && (IS_DIRECTORY_SEP (p[-1])))
|
|
1494 {
|
|
1495 nm = p;
|
|
1496 substituted = 1;
|
|
1497 }
|
657
|
1498 #ifdef WIN32_FILENAMES
|
428
|
1499 /* see comment in expand-file-name about drive specifiers */
|
|
1500 else if (IS_DRIVE (p[0]) && p[1] == ':'
|
|
1501 && p > nm && IS_DIRECTORY_SEP (p[-1]))
|
|
1502 {
|
|
1503 nm = p;
|
|
1504 substituted = 1;
|
|
1505 }
|
657
|
1506 #endif /* WIN32_FILENAMES */
|
428
|
1507 }
|
|
1508
|
|
1509 /* See if any variables are substituted into the string
|
|
1510 and find the total length of their values in `total' */
|
|
1511
|
|
1512 for (p = nm; p != endp;)
|
|
1513 if (*p != '$')
|
|
1514 p++;
|
|
1515 else
|
|
1516 {
|
|
1517 p++;
|
|
1518 if (p == endp)
|
|
1519 goto badsubst;
|
|
1520 else if (*p == '$')
|
|
1521 {
|
|
1522 /* "$$" means a single "$" */
|
|
1523 p++;
|
|
1524 total -= 1;
|
|
1525 substituted = 1;
|
|
1526 continue;
|
|
1527 }
|
|
1528 else if (*p == '{')
|
|
1529 {
|
|
1530 o = ++p;
|
|
1531 while (p != endp && *p != '}') p++;
|
|
1532 if (*p != '}') goto missingclose;
|
|
1533 s = p;
|
|
1534 }
|
|
1535 else
|
|
1536 {
|
|
1537 o = p;
|
|
1538 while (p != endp && (isalnum (*p) || *p == '_')) p++;
|
|
1539 s = p;
|
|
1540 }
|
|
1541
|
|
1542 /* Copy out the variable name */
|
665
|
1543 target = (Intbyte *) alloca (s - o + 1);
|
771
|
1544 qxestrncpy (target, o, s - o);
|
428
|
1545 target[s - o] = 0;
|
442
|
1546 #ifdef WIN32_NATIVE
|
428
|
1547 strupr (target); /* $home == $HOME etc. */
|
442
|
1548 #endif /* WIN32_NATIVE */
|
428
|
1549
|
|
1550 /* Get variable value */
|
771
|
1551 o = egetenv ((CIntbyte *) target);
|
428
|
1552 if (!o) goto badvar;
|
771
|
1553 total += qxestrlen (o);
|
428
|
1554 substituted = 1;
|
|
1555 }
|
|
1556
|
|
1557 if (!substituted)
|
444
|
1558 return filename;
|
|
1559
|
|
1560 /* If substitution required, recopy the filename and do it */
|
428
|
1561 /* Make space in stack frame for the new copy */
|
665
|
1562 xnm = (Intbyte *) alloca (XSTRING_LENGTH (filename) + total + 1);
|
428
|
1563 x = xnm;
|
|
1564
|
|
1565 /* Copy the rest of the name through, replacing $ constructs with values */
|
|
1566 for (p = nm; *p;)
|
|
1567 if (*p != '$')
|
|
1568 *x++ = *p++;
|
|
1569 else
|
|
1570 {
|
|
1571 p++;
|
|
1572 if (p == endp)
|
|
1573 goto badsubst;
|
|
1574 else if (*p == '$')
|
|
1575 {
|
|
1576 *x++ = *p++;
|
|
1577 continue;
|
|
1578 }
|
|
1579 else if (*p == '{')
|
|
1580 {
|
|
1581 o = ++p;
|
|
1582 while (p != endp && *p != '}') p++;
|
|
1583 if (*p != '}') goto missingclose;
|
|
1584 s = p++;
|
|
1585 }
|
|
1586 else
|
|
1587 {
|
|
1588 o = p;
|
|
1589 while (p != endp && (isalnum (*p) || *p == '_')) p++;
|
|
1590 s = p;
|
|
1591 }
|
|
1592
|
|
1593 /* Copy out the variable name */
|
665
|
1594 target = (Intbyte *) alloca (s - o + 1);
|
771
|
1595 qxestrncpy (target, o, s - o);
|
428
|
1596 target[s - o] = 0;
|
442
|
1597 #ifdef WIN32_NATIVE
|
428
|
1598 strupr (target); /* $home == $HOME etc. */
|
442
|
1599 #endif /* WIN32_NATIVE */
|
428
|
1600
|
|
1601 /* Get variable value */
|
771
|
1602 o = egetenv ((CIntbyte *) target);
|
428
|
1603 if (!o)
|
|
1604 goto badvar;
|
|
1605
|
771
|
1606 qxestrcpy (x, o);
|
|
1607 x += qxestrlen (o);
|
428
|
1608 }
|
|
1609
|
|
1610 *x = 0;
|
|
1611
|
|
1612 /* If /~ or // appears, discard everything through first slash. */
|
|
1613
|
|
1614 for (p = xnm; p != x; p++)
|
|
1615 if ((p[0] == '~'
|
657
|
1616 #if defined (WIN32_FILENAMES)
|
428
|
1617 || (IS_DIRECTORY_SEP (p[0]) && p - 1 != xnm)
|
657
|
1618 #else /* not WIN32_FILENAMES */
|
428
|
1619 || IS_DIRECTORY_SEP (p[0])
|
657
|
1620 #endif /* not WIN32_FILENAMES */
|
428
|
1621 )
|
|
1622 /* don't do p[-1] if that would go off the beginning --jwz */
|
|
1623 && p != nm && p > xnm && IS_DIRECTORY_SEP (p[-1]))
|
|
1624 xnm = p;
|
657
|
1625 #ifdef WIN32_FILENAMES
|
428
|
1626 else if (IS_DRIVE (p[0]) && p[1] == ':'
|
|
1627 && p > nm && IS_DIRECTORY_SEP (p[-1]))
|
|
1628 xnm = p;
|
|
1629 #endif
|
|
1630
|
|
1631 return make_string (xnm, x - xnm);
|
|
1632
|
|
1633 badsubst:
|
444
|
1634 syntax_error ("Bad format environment-variable substitution", filename);
|
428
|
1635 missingclose:
|
442
|
1636 syntax_error ("Missing \"}\" in environment-variable substitution",
|
444
|
1637 filename);
|
428
|
1638 badvar:
|
442
|
1639 syntax_error_2 ("Substituting nonexistent environment variable",
|
771
|
1640 filename, build_intstring (target));
|
428
|
1641
|
801
|
1642 RETURN_NOT_REACHED (Qnil)
|
428
|
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
|
793
|
2742 curbuf = wrap_buffer (buf);
|
428
|
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),
|
800
|
3010 CODING_DECODE, 0);
|
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;
|
793
|
3196 Lisp_Object curbuf = wrap_buffer (current_buffer);
|
|
3197
|
442
|
3198
|
|
3199 /* start, end, visit, and append are never modified in this fun
|
|
3200 so we don't protect them. */
|
|
3201 GCPRO5 (visit_file, filename, codesys, lockname, annotations);
|
|
3202 NGCPRO2 (curbuf, fn);
|
|
3203
|
|
3204 /* [[ dmoore - if Fexpand_file_name or handlers kill the buffer,
|
428
|
3205 we should signal an error rather than blissfully continuing
|
|
3206 along. ARGH, this function is going to lose lose lose. We need
|
|
3207 to protect the current_buffer from being destroyed, but the
|
442
|
3208 multiple return points make this a pain in the butt. ]] we do
|
|
3209 protect curbuf now. --ben */
|
428
|
3210
|
771
|
3211 codesys = get_coding_system_for_text_file (codesys, 0);
|
428
|
3212
|
|
3213 if (current_buffer->base_buffer && ! NILP (visit))
|
442
|
3214 invalid_operation ("Cannot do file visiting in an indirect buffer",
|
|
3215 curbuf);
|
428
|
3216
|
|
3217 if (!NILP (start) && !STRINGP (start))
|
|
3218 get_buffer_range_char (current_buffer, start, end, &start1, &end1, 0);
|
|
3219
|
|
3220 {
|
|
3221 Lisp_Object handler;
|
|
3222
|
|
3223 if (visiting_other)
|
|
3224 visit_file = Fexpand_file_name (visit, Qnil);
|
|
3225 else
|
|
3226 visit_file = filename;
|
|
3227 filename = Fexpand_file_name (filename, Qnil);
|
|
3228
|
|
3229 if (NILP (lockname))
|
|
3230 lockname = visit_file;
|
|
3231
|
442
|
3232 /* We used to UNGCPRO here. BAD! visit_file is used below after
|
|
3233 more Lisp calling. */
|
428
|
3234 /* If the file name has special constructs in it,
|
|
3235 call the corresponding file handler. */
|
|
3236 handler = Ffind_file_name_handler (filename, Qwrite_region);
|
|
3237 /* If FILENAME has no handler, see if VISIT has one. */
|
|
3238 if (NILP (handler) && STRINGP (visit))
|
|
3239 handler = Ffind_file_name_handler (visit, Qwrite_region);
|
|
3240
|
|
3241 if (!NILP (handler))
|
|
3242 {
|
|
3243 Lisp_Object val = call8 (handler, Qwrite_region, start, end,
|
|
3244 filename, append, visit, lockname, codesys);
|
|
3245 if (visiting)
|
|
3246 {
|
|
3247 BUF_SAVE_MODIFF (current_buffer) = BUF_MODIFF (current_buffer);
|
|
3248 current_buffer->saved_size = make_int (BUF_SIZE (current_buffer));
|
|
3249 current_buffer->filename = visit_file;
|
|
3250 MARK_MODELINE_CHANGED;
|
|
3251 }
|
442
|
3252 NUNGCPRO;
|
|
3253 UNGCPRO;
|
428
|
3254 return val;
|
|
3255 }
|
|
3256 }
|
|
3257
|
|
3258 #ifdef CLASH_DETECTION
|
|
3259 if (!auto_saving)
|
442
|
3260 lock_file (lockname);
|
428
|
3261 #endif /* CLASH_DETECTION */
|
|
3262
|
|
3263 /* Special kludge to simplify auto-saving. */
|
|
3264 if (NILP (start))
|
|
3265 {
|
|
3266 start1 = BUF_BEG (current_buffer);
|
|
3267 end1 = BUF_Z (current_buffer);
|
|
3268 }
|
|
3269
|
|
3270 record_unwind_protect (build_annotations_unwind, Fcurrent_buffer ());
|
|
3271
|
|
3272 given_buffer = current_buffer;
|
|
3273 annotations = build_annotations (start, end);
|
|
3274 if (current_buffer != given_buffer)
|
|
3275 {
|
|
3276 start1 = BUF_BEGV (current_buffer);
|
|
3277 end1 = BUF_ZV (current_buffer);
|
|
3278 }
|
|
3279
|
|
3280 fn = filename;
|
|
3281 desc = -1;
|
|
3282 if (!NILP (append))
|
|
3283 {
|
771
|
3284 desc = qxe_open (XSTRING_DATA (fn), O_WRONLY | OPEN_BINARY, 0);
|
428
|
3285 }
|
|
3286 if (desc < 0)
|
|
3287 {
|
771
|
3288 desc = qxe_open (XSTRING_DATA (fn),
|
|
3289 O_WRONLY | O_TRUNC | O_CREAT | OPEN_BINARY,
|
|
3290 auto_saving ? auto_save_mode_bits : CREAT_MODE);
|
428
|
3291 }
|
|
3292
|
|
3293 if (desc < 0)
|
|
3294 {
|
|
3295 #ifdef CLASH_DETECTION
|
|
3296 save_errno = errno;
|
|
3297 if (!auto_saving) unlock_file (lockname);
|
|
3298 errno = save_errno;
|
|
3299 #endif /* CLASH_DETECTION */
|
563
|
3300 report_file_error ("Opening output file", filename);
|
428
|
3301 }
|
|
3302
|
|
3303 {
|
|
3304 Lisp_Object desc_locative = Fcons (make_int (desc), Qnil);
|
|
3305 Lisp_Object instream = Qnil, outstream = Qnil;
|
442
|
3306 struct gcpro nngcpro1, nngcpro2;
|
771
|
3307 /* need to gcpro; QUIT could happen out of call to retry_write() */
|
442
|
3308 NNGCPRO2 (instream, outstream);
|
428
|
3309
|
|
3310 record_unwind_protect (close_file_unwind, desc_locative);
|
|
3311
|
|
3312 if (!NILP (append))
|
|
3313 {
|
|
3314 if (lseek (desc, 0, 2) < 0)
|
|
3315 {
|
|
3316 #ifdef CLASH_DETECTION
|
|
3317 if (!auto_saving) unlock_file (lockname);
|
|
3318 #endif /* CLASH_DETECTION */
|
|
3319 report_file_error ("Lseek error",
|
563
|
3320 filename);
|
428
|
3321 }
|
|
3322 }
|
|
3323
|
|
3324 failure = 0;
|
|
3325
|
|
3326 /* Note: I tried increasing the buffering size, along with
|
|
3327 various other tricks, but nothing seemed to make much of
|
|
3328 a difference in the time it took to save a large file.
|
|
3329 (Actually that's not true. With a local disk, changing
|
|
3330 the buffer size doesn't seem to make much difference.
|
|
3331 With an NFS-mounted disk, it could make a lot of difference
|
|
3332 because you're affecting the number of network requests
|
|
3333 that need to be made, and there could be a large latency
|
|
3334 for each request. So I've increased the buffer size
|
|
3335 to 64K.) */
|
|
3336 outstream = make_filedesc_output_stream (desc, 0, -1, 0);
|
|
3337 Lstream_set_buffering (XLSTREAM (outstream),
|
|
3338 LSTREAM_BLOCKN_BUFFERED, 65536);
|
|
3339 outstream =
|
800
|
3340 make_coding_output_stream (XLSTREAM (outstream), codesys,
|
|
3341 CODING_ENCODE, 0);
|
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;
|
793
|
3501 Lisp_Object original_buffer = wrap_buffer (current_buffer);
|
|
3502
|
428
|
3503
|
|
3504 annotations = Qnil;
|
|
3505 p = Vwrite_region_annotate_functions;
|
|
3506 GCPRO2 (annotations, p);
|
|
3507 while (!NILP (p))
|
|
3508 {
|
|
3509 struct buffer *given_buffer = current_buffer;
|
|
3510 Vwrite_region_annotations_so_far = annotations;
|
|
3511 res = call2 (Fcar (p), start, end);
|
|
3512 /* If the function makes a different buffer current,
|
|
3513 assume that means this buffer contains altered text to be output.
|
|
3514 Reset START and END from the buffer bounds
|
|
3515 and discard all previous annotations because they should have
|
|
3516 been dealt with by this function. */
|
|
3517 if (current_buffer != given_buffer)
|
|
3518 {
|
|
3519 start = make_int (BUF_BEGV (current_buffer));
|
|
3520 end = make_int (BUF_ZV (current_buffer));
|
|
3521 annotations = Qnil;
|
|
3522 }
|
|
3523 Flength (res); /* Check basic validity of return value */
|
|
3524 annotations = merge (annotations, res, Qcar_less_than_car);
|
|
3525 p = Fcdr (p);
|
|
3526 }
|
|
3527
|
|
3528 /* Now do the same for annotation functions implied by the file-format */
|
|
3529 if (auto_saving && (!EQ (Vauto_save_file_format, Qt)))
|
|
3530 p = Vauto_save_file_format;
|
|
3531 else
|
|
3532 p = current_buffer->file_format;
|
|
3533 while (!NILP (p))
|
|
3534 {
|
|
3535 struct buffer *given_buffer = current_buffer;
|
|
3536 Vwrite_region_annotations_so_far = annotations;
|
|
3537 res = call4 (Qformat_annotate_function, Fcar (p), start, end,
|
|
3538 original_buffer);
|
|
3539 if (current_buffer != given_buffer)
|
|
3540 {
|
|
3541 start = make_int (BUF_BEGV (current_buffer));
|
|
3542 end = make_int (BUF_ZV (current_buffer));
|
|
3543 annotations = Qnil;
|
|
3544 }
|
|
3545 Flength (res);
|
|
3546 annotations = merge (annotations, res, Qcar_less_than_car);
|
|
3547 p = Fcdr (p);
|
|
3548 }
|
|
3549 UNGCPRO;
|
|
3550 return annotations;
|
|
3551 }
|
|
3552
|
|
3553 /* Write to stream OUTSTREAM the characters from INSTREAM (it is read until
|
|
3554 EOF is encountered), assuming they start at position POS in the buffer
|
|
3555 of string that STREAM refers to. Intersperse with them the annotations
|
|
3556 from *ANNOT that fall into the range of positions we are reading from,
|
|
3557 each at its appropriate position.
|
|
3558
|
|
3559 Modify *ANNOT by discarding elements as we output them.
|
|
3560 The return value is negative in case of system call failure. */
|
|
3561
|
|
3562 /* 4K should probably be fine. We just need to reduce the number of
|
|
3563 function calls to reasonable level. The Lstream stuff itself will
|
|
3564 batch to 64K to reduce the number of system calls. */
|
|
3565
|
|
3566 #define A_WRITE_BATCH_SIZE 4096
|
|
3567
|
|
3568 static int
|
|
3569 a_write (Lisp_Object outstream, Lisp_Object instream, int pos,
|
|
3570 Lisp_Object *annot)
|
|
3571 {
|
|
3572 Lisp_Object tem;
|
|
3573 int nextpos;
|
|
3574 unsigned char largebuf[A_WRITE_BATCH_SIZE];
|
|
3575 Lstream *instr = XLSTREAM (instream);
|
|
3576 Lstream *outstr = XLSTREAM (outstream);
|
|
3577
|
|
3578 while (LISTP (*annot))
|
|
3579 {
|
|
3580 tem = Fcar_safe (Fcar (*annot));
|
|
3581 if (INTP (tem))
|
|
3582 nextpos = XINT (tem);
|
|
3583 else
|
|
3584 nextpos = INT_MAX;
|
|
3585 #ifdef MULE
|
|
3586 /* If there are annotations left and we have Mule, then we
|
|
3587 have to do the I/O one emchar at a time so we can
|
|
3588 determine when to insert the annotation. */
|
|
3589 if (!NILP (*annot))
|
|
3590 {
|
|
3591 Emchar ch;
|
|
3592 while (pos != nextpos && (ch = Lstream_get_emchar (instr)) != EOF)
|
|
3593 {
|
|
3594 if (Lstream_put_emchar (outstr, ch) < 0)
|
|
3595 return -1;
|
|
3596 pos++;
|
|
3597 }
|
|
3598 }
|
|
3599 else
|
|
3600 #endif /* MULE */
|
|
3601 {
|
|
3602 while (pos != nextpos)
|
|
3603 {
|
|
3604 /* Otherwise there is no point to that. Just go in batches. */
|
|
3605 int chunk = min (nextpos - pos, A_WRITE_BATCH_SIZE);
|
|
3606
|
|
3607 chunk = Lstream_read (instr, largebuf, chunk);
|
|
3608 if (chunk < 0)
|
|
3609 return -1;
|
|
3610 if (chunk == 0) /* EOF */
|
|
3611 break;
|
771
|
3612 if (Lstream_write (outstr, largebuf, chunk) < 0)
|
428
|
3613 return -1;
|
|
3614 pos += chunk;
|
|
3615 }
|
|
3616 }
|
|
3617 if (pos == nextpos)
|
|
3618 {
|
|
3619 tem = Fcdr (Fcar (*annot));
|
|
3620 if (STRINGP (tem))
|
|
3621 {
|
|
3622 if (Lstream_write (outstr, XSTRING_DATA (tem),
|
|
3623 XSTRING_LENGTH (tem)) < 0)
|
|
3624 return -1;
|
|
3625 }
|
|
3626 *annot = Fcdr (*annot);
|
|
3627 }
|
|
3628 else
|
|
3629 return 0;
|
|
3630 }
|
|
3631 return -1;
|
|
3632 }
|
|
3633
|
|
3634
|
|
3635
|
|
3636 #if 0
|
|
3637 #include <des_crypt.h>
|
|
3638
|
|
3639 #define CRYPT_BLOCK_SIZE 8 /* bytes */
|
|
3640 #define CRYPT_KEY_SIZE 8 /* bytes */
|
|
3641
|
|
3642 DEFUN ("encrypt-string", Fencrypt_string, 2, 2, 0, /*
|
|
3643 Encrypt STRING using KEY.
|
|
3644 */
|
|
3645 (string, key))
|
|
3646 {
|
|
3647 char *encrypted_string, *raw_key;
|
|
3648 int rounded_size, extra, key_size;
|
|
3649
|
|
3650 /* !!#### May produce bogus data under Mule. */
|
|
3651 CHECK_STRING (string);
|
|
3652 CHECK_STRING (key);
|
|
3653
|
|
3654 extra = XSTRING_LENGTH (string) % CRYPT_BLOCK_SIZE;
|
|
3655 rounded_size = XSTRING_LENGTH (string) + extra;
|
|
3656 encrypted_string = alloca (rounded_size + 1);
|
|
3657 memcpy (encrypted_string, XSTRING_DATA (string), XSTRING_LENGTH (string));
|
|
3658 memset (encrypted_string + rounded_size - extra, 0, extra + 1);
|
|
3659
|
|
3660 key_size = min (CRYPT_KEY_SIZE, XSTRING_LENGTH (key))
|
|
3661
|
|
3662 raw_key = alloca (CRYPT_KEY_SIZE + 1);
|
|
3663 memcpy (raw_key, XSTRING_DATA (key), key_size);
|
|
3664 memset (raw_key + key_size, 0, (CRYPT_KEY_SIZE + 1) - key_size);
|
|
3665
|
|
3666 ecb_crypt (raw_key, encrypted_string, rounded_size,
|
|
3667 DES_ENCRYPT | DES_SW);
|
|
3668 return make_string (encrypted_string, rounded_size);
|
|
3669 }
|
|
3670
|
|
3671 DEFUN ("decrypt-string", Fdecrypt_string, 2, 2, 0, /*
|
|
3672 Decrypt STRING using KEY.
|
|
3673 */
|
|
3674 (string, key))
|
|
3675 {
|
771
|
3676 /* !!#### May produce bogus data under Mule. */
|
428
|
3677 char *decrypted_string, *raw_key;
|
|
3678 int string_size, key_size;
|
|
3679
|
|
3680 CHECK_STRING (string);
|
|
3681 CHECK_STRING (key);
|
|
3682
|
|
3683 string_size = XSTRING_LENGTH (string) + 1;
|
|
3684 decrypted_string = alloca (string_size);
|
|
3685 memcpy (decrypted_string, XSTRING_DATA (string), string_size);
|
|
3686 decrypted_string[string_size - 1] = '\0';
|
|
3687
|
|
3688 key_size = min (CRYPT_KEY_SIZE, XSTRING_LENGTH (key))
|
|
3689
|
|
3690 raw_key = alloca (CRYPT_KEY_SIZE + 1);
|
|
3691 memcpy (raw_key, XSTRING_DATA (key), key_size);
|
|
3692 memset (raw_key + key_size, 0, (CRYPT_KEY_SIZE + 1) - key_size);
|
|
3693
|
|
3694
|
|
3695 ecb_crypt (raw_key, decrypted_string, string_size, D | DES_SW);
|
|
3696 return make_string (decrypted_string, string_size - 1);
|
|
3697 }
|
|
3698 #endif /* 0 */
|
|
3699
|
|
3700
|
|
3701 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime, 1, 1, 0, /*
|
444
|
3702 Return t if last mod time of BUFFER's visited file matches what BUFFER records.
|
428
|
3703 This means that the file has not been changed since it was visited or saved.
|
|
3704 */
|
444
|
3705 (buffer))
|
428
|
3706 {
|
442
|
3707 /* This function can call lisp; GC checked 2000-07-11 ben */
|
428
|
3708 struct buffer *b;
|
|
3709 struct stat st;
|
|
3710 Lisp_Object handler;
|
|
3711
|
444
|
3712 CHECK_BUFFER (buffer);
|
|
3713 b = XBUFFER (buffer);
|
428
|
3714
|
|
3715 if (!STRINGP (b->filename)) return Qt;
|
|
3716 if (b->modtime == 0) return Qt;
|
|
3717
|
|
3718 /* If the file name has special constructs in it,
|
|
3719 call the corresponding file handler. */
|
|
3720 handler = Ffind_file_name_handler (b->filename,
|
|
3721 Qverify_visited_file_modtime);
|
|
3722 if (!NILP (handler))
|
444
|
3723 return call2 (handler, Qverify_visited_file_modtime, buffer);
|
428
|
3724
|
771
|
3725 if (qxe_stat (XSTRING_DATA (b->filename), &st) < 0)
|
428
|
3726 {
|
|
3727 /* If the file doesn't exist now and didn't exist before,
|
|
3728 we say that it isn't modified, provided the error is a tame one. */
|
|
3729 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
|
|
3730 st.st_mtime = -1;
|
|
3731 else
|
|
3732 st.st_mtime = 0;
|
|
3733 }
|
|
3734 if (st.st_mtime == b->modtime
|
|
3735 /* If both are positive, accept them if they are off by one second. */
|
|
3736 || (st.st_mtime > 0 && b->modtime > 0
|
|
3737 && (st.st_mtime == b->modtime + 1
|
|
3738 || st.st_mtime == b->modtime - 1)))
|
|
3739 return Qt;
|
|
3740 return Qnil;
|
|
3741 }
|
|
3742
|
|
3743 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime, 0, 0, 0, /*
|
|
3744 Clear out records of last mod time of visited file.
|
|
3745 Next attempt to save will certainly not complain of a discrepancy.
|
|
3746 */
|
|
3747 ())
|
|
3748 {
|
|
3749 current_buffer->modtime = 0;
|
|
3750 return Qnil;
|
|
3751 }
|
|
3752
|
|
3753 DEFUN ("visited-file-modtime", Fvisited_file_modtime, 0, 0, 0, /*
|
|
3754 Return the current buffer's recorded visited file modification time.
|
|
3755 The value is a list of the form (HIGH . LOW), like the time values
|
|
3756 that `file-attributes' returns.
|
|
3757 */
|
|
3758 ())
|
|
3759 {
|
|
3760 return time_to_lisp ((time_t) current_buffer->modtime);
|
|
3761 }
|
|
3762
|
|
3763 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime, 0, 1, 0, /*
|
|
3764 Update buffer's recorded modification time from the visited file's time.
|
|
3765 Useful if the buffer was not read from the file normally
|
|
3766 or if the file itself has been changed for some known benign reason.
|
|
3767 An argument specifies the modification time value to use
|
|
3768 \(instead of that of the visited file), in the form of a list
|
|
3769 \(HIGH . LOW) or (HIGH LOW).
|
|
3770 */
|
|
3771 (time_list))
|
|
3772 {
|
|
3773 /* This function can call lisp */
|
|
3774 if (!NILP (time_list))
|
|
3775 {
|
|
3776 time_t the_time;
|
|
3777 lisp_to_time (time_list, &the_time);
|
|
3778 current_buffer->modtime = (int) the_time;
|
|
3779 }
|
|
3780 else
|
|
3781 {
|
446
|
3782 Lisp_Object filename = Qnil;
|
428
|
3783 struct stat st;
|
|
3784 Lisp_Object handler;
|
|
3785 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
3786
|
|
3787 GCPRO3 (filename, time_list, current_buffer->filename);
|
|
3788 filename = Fexpand_file_name (current_buffer->filename, Qnil);
|
|
3789
|
|
3790 /* If the file name has special constructs in it,
|
|
3791 call the corresponding file handler. */
|
|
3792 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
|
|
3793 UNGCPRO;
|
|
3794 if (!NILP (handler))
|
|
3795 /* The handler can find the file name the same way we did. */
|
|
3796 return call2 (handler, Qset_visited_file_modtime, Qnil);
|
771
|
3797 else if (qxe_stat (XSTRING_DATA (filename), &st) >= 0)
|
428
|
3798 current_buffer->modtime = st.st_mtime;
|
|
3799 }
|
|
3800
|
|
3801 return Qnil;
|
|
3802 }
|
|
3803
|
|
3804 static Lisp_Object
|
|
3805 auto_save_error (Lisp_Object condition_object, Lisp_Object ignored)
|
|
3806 {
|
|
3807 /* This function can call lisp */
|
|
3808 if (gc_in_progress)
|
|
3809 return Qnil;
|
|
3810 /* Don't try printing an error message after everything is gone! */
|
|
3811 if (preparing_for_armageddon)
|
|
3812 return Qnil;
|
|
3813 clear_echo_area (selected_frame (), Qauto_saving, 1);
|
|
3814 Fding (Qt, Qauto_save_error, Qnil);
|
|
3815 message ("Auto-saving...error for %s", XSTRING_DATA (current_buffer->name));
|
|
3816 Fsleep_for (make_int (1));
|
|
3817 message ("Auto-saving...error!for %s", XSTRING_DATA (current_buffer->name));
|
|
3818 Fsleep_for (make_int (1));
|
|
3819 message ("Auto-saving...error for %s", XSTRING_DATA (current_buffer->name));
|
|
3820 Fsleep_for (make_int (1));
|
|
3821 return Qnil;
|
|
3822 }
|
|
3823
|
|
3824 static Lisp_Object
|
|
3825 auto_save_1 (Lisp_Object ignored)
|
|
3826 {
|
|
3827 /* This function can call lisp */
|
|
3828 /* #### I think caller is protecting current_buffer? */
|
|
3829 struct stat st;
|
|
3830 Lisp_Object fn = current_buffer->filename;
|
|
3831 Lisp_Object a = current_buffer->auto_save_file_name;
|
|
3832
|
|
3833 if (!STRINGP (a))
|
|
3834 return (Qnil);
|
|
3835
|
|
3836 /* Get visited file's mode to become the auto save file's mode. */
|
|
3837 if (STRINGP (fn) &&
|
771
|
3838 qxe_stat (XSTRING_DATA (fn), &st) >= 0)
|
428
|
3839 /* But make sure we can overwrite it later! */
|
|
3840 auto_save_mode_bits = st.st_mode | 0600;
|
|
3841 else
|
|
3842 /* default mode for auto-save files of buffers with no file is
|
|
3843 readable by owner only. This may annoy some small number of
|
|
3844 people, but the alternative removes all privacy from email. */
|
|
3845 auto_save_mode_bits = 0600;
|
|
3846
|
|
3847 return
|
|
3848 Fwrite_region_internal (Qnil, Qnil, a, Qnil, Qlambda, Qnil,
|
771
|
3849 #if 1 /* #### Kyle wants it changed to not use escape-quoted. Think
|
|
3850 carefully about how this works. */
|
|
3851 Qescape_quoted
|
|
3852 #else
|
707
|
3853 current_buffer->buffer_file_coding_system
|
428
|
3854 #endif
|
|
3855 );
|
|
3856 }
|
|
3857
|
|
3858 static Lisp_Object
|
|
3859 auto_save_expand_name_error (Lisp_Object condition_object, Lisp_Object ignored)
|
|
3860 {
|
771
|
3861 warn_when_safe_lispobj
|
793
|
3862 (Qfile, Qerror,
|
771
|
3863 Fcons (build_msg_string ("Invalid auto-save list-file"),
|
|
3864 Fcons (Vauto_save_list_file_name,
|
|
3865 condition_object)));
|
428
|
3866 return Qnil;
|
|
3867 }
|
|
3868
|
|
3869 static Lisp_Object
|
|
3870 auto_save_expand_name (Lisp_Object name)
|
|
3871 {
|
|
3872 struct gcpro gcpro1;
|
|
3873
|
|
3874 /* note that caller did NOT gc protect name, so we do it. */
|
771
|
3875 /* [[dmoore - this might not be necessary, if condition_case_1
|
|
3876 protects it. but I don't think it does.]] indeed it doesn't. --ben */
|
428
|
3877 GCPRO1 (name);
|
|
3878 RETURN_UNGCPRO (Fexpand_file_name (name, Qnil));
|
|
3879 }
|
|
3880
|
|
3881
|
|
3882 static Lisp_Object
|
|
3883 do_auto_save_unwind (Lisp_Object fd)
|
|
3884 {
|
771
|
3885 retry_close (XINT (fd));
|
428
|
3886 return (fd);
|
|
3887 }
|
|
3888
|
|
3889 static Lisp_Object
|
|
3890 do_auto_save_unwind_2 (Lisp_Object old_auto_saving)
|
|
3891 {
|
|
3892 auto_saving = XINT (old_auto_saving);
|
|
3893 return Qnil;
|
|
3894 }
|
|
3895
|
|
3896 /* Fdo_auto_save() checks whether a GC is in progress when it is called,
|
|
3897 and if so, tries to avoid touching lisp objects.
|
|
3898
|
|
3899 The only time that Fdo_auto_save() is called while GC is in progress
|
|
3900 is if we're going down, as a result of an abort() or a kill signal.
|
|
3901 It's fairly important that we generate autosave files in that case!
|
|
3902 */
|
|
3903
|
|
3904 DEFUN ("do-auto-save", Fdo_auto_save, 0, 2, "", /*
|
|
3905 Auto-save all buffers that need it.
|
|
3906 This is all buffers that have auto-saving enabled
|
|
3907 and are changed since last auto-saved.
|
|
3908 Auto-saving writes the buffer into a file
|
|
3909 so that your editing is not lost if the system crashes.
|
|
3910 This file is not the file you visited; that changes only when you save.
|
|
3911 Normally we run the normal hook `auto-save-hook' before saving.
|
|
3912
|
|
3913 Non-nil first argument means do not print any message if successful.
|
|
3914 Non-nil second argument means save only current buffer.
|
|
3915 */
|
|
3916 (no_message, current_only))
|
|
3917 {
|
|
3918 /* This function can call lisp */
|
|
3919 struct buffer *b;
|
|
3920 Lisp_Object tail, buf;
|
|
3921 int auto_saved = 0;
|
|
3922 int do_handled_files;
|
|
3923 Lisp_Object oquit = Qnil;
|
|
3924 Lisp_Object listfile = Qnil;
|
|
3925 Lisp_Object old;
|
|
3926 int listdesc = -1;
|
|
3927 int speccount = specpdl_depth ();
|
|
3928 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
3929
|
793
|
3930 old = wrap_buffer (current_buffer);
|
428
|
3931 GCPRO3 (oquit, listfile, old);
|
|
3932 check_quit (); /* make Vquit_flag accurate */
|
|
3933 /* Ordinarily don't quit within this function,
|
|
3934 but don't make it impossible to quit (in case we get hung in I/O). */
|
|
3935 oquit = Vquit_flag;
|
|
3936 Vquit_flag = Qnil;
|
|
3937
|
|
3938 /* No further GCPRO needed, because (when it matters) all Lisp_Object
|
|
3939 variables point to non-strings reached from Vbuffer_alist. */
|
|
3940
|
|
3941 if (minibuf_level != 0 || preparing_for_armageddon)
|
|
3942 no_message = Qt;
|
|
3943
|
|
3944 run_hook (Qauto_save_hook);
|
|
3945
|
|
3946 if (STRINGP (Vauto_save_list_file_name))
|
|
3947 listfile = condition_case_1 (Qt,
|
|
3948 auto_save_expand_name,
|
|
3949 Vauto_save_list_file_name,
|
|
3950 auto_save_expand_name_error, Qnil);
|
|
3951
|
|
3952 /* Make sure auto_saving is reset. */
|
|
3953 record_unwind_protect (do_auto_save_unwind_2, make_int (auto_saving));
|
|
3954
|
|
3955 auto_saving = 1;
|
|
3956
|
|
3957 /* First, save all files which don't have handlers. If Emacs is
|
|
3958 crashing, the handlers may tweak what is causing Emacs to crash
|
|
3959 in the first place, and it would be a shame if Emacs failed to
|
|
3960 autosave perfectly ordinary files because it couldn't handle some
|
|
3961 ange-ftp'd file. */
|
|
3962 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
|
|
3963 {
|
|
3964 for (tail = Vbuffer_alist;
|
|
3965 CONSP (tail);
|
|
3966 tail = XCDR (tail))
|
|
3967 {
|
|
3968 buf = XCDR (XCAR (tail));
|
|
3969 b = XBUFFER (buf);
|
|
3970
|
|
3971 if (!NILP (current_only)
|
|
3972 && b != current_buffer)
|
|
3973 continue;
|
|
3974
|
|
3975 /* Don't auto-save indirect buffers.
|
|
3976 The base buffer takes care of it. */
|
|
3977 if (b->base_buffer)
|
|
3978 continue;
|
|
3979
|
|
3980 /* Check for auto save enabled
|
|
3981 and file changed since last auto save
|
|
3982 and file changed since last real save. */
|
|
3983 if (STRINGP (b->auto_save_file_name)
|
|
3984 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
|
|
3985 && b->auto_save_modified < BUF_MODIFF (b)
|
|
3986 /* -1 means we've turned off autosaving for a while--see below. */
|
|
3987 && XINT (b->saved_size) >= 0
|
|
3988 && (do_handled_files
|
|
3989 || NILP (Ffind_file_name_handler (b->auto_save_file_name,
|
|
3990 Qwrite_region))))
|
|
3991 {
|
|
3992 EMACS_TIME before_time, after_time;
|
|
3993
|
|
3994 EMACS_GET_TIME (before_time);
|
|
3995 /* If we had a failure, don't try again for 20 minutes. */
|
|
3996 if (!preparing_for_armageddon
|
|
3997 && b->auto_save_failure_time >= 0
|
|
3998 && (EMACS_SECS (before_time) - b->auto_save_failure_time <
|
|
3999 1200))
|
|
4000 continue;
|
|
4001
|
|
4002 if (!preparing_for_armageddon &&
|
|
4003 (XINT (b->saved_size) * 10
|
|
4004 > (BUF_Z (b) - BUF_BEG (b)) * 13)
|
|
4005 /* A short file is likely to change a large fraction;
|
|
4006 spare the user annoying messages. */
|
|
4007 && XINT (b->saved_size) > 5000
|
|
4008 /* These messages are frequent and annoying for `*mail*'. */
|
|
4009 && !NILP (b->filename)
|
|
4010 && NILP (no_message)
|
|
4011 && disable_auto_save_when_buffer_shrinks)
|
|
4012 {
|
|
4013 /* It has shrunk too much; turn off auto-saving here.
|
|
4014 Unless we're about to crash, in which case auto-save it
|
|
4015 anyway.
|
|
4016 */
|
|
4017 message
|
|
4018 ("Buffer %s has shrunk a lot; auto save turned off there",
|
|
4019 XSTRING_DATA (b->name));
|
|
4020 /* Turn off auto-saving until there's a real save,
|
|
4021 and prevent any more warnings. */
|
|
4022 b->saved_size = make_int (-1);
|
|
4023 if (!gc_in_progress)
|
|
4024 Fsleep_for (make_int (1));
|
|
4025 continue;
|
|
4026 }
|
|
4027 set_buffer_internal (b);
|
|
4028 if (!auto_saved && NILP (no_message))
|
|
4029 {
|
442
|
4030 static const unsigned char *msg
|
|
4031 = (const unsigned char *) "Auto-saving...";
|
428
|
4032 echo_area_message (selected_frame (), msg, Qnil,
|
442
|
4033 0, strlen ((const char *) msg),
|
428
|
4034 Qauto_saving);
|
|
4035 }
|
|
4036
|
|
4037 /* Open the auto-save list file, if necessary.
|
|
4038 We only do this now so that the file only exists
|
|
4039 if we actually auto-saved any files. */
|
444
|
4040 if (!auto_saved && !inhibit_auto_save_session
|
|
4041 && !NILP (Vauto_save_list_file_prefix)
|
|
4042 && STRINGP (listfile) && listdesc < 0)
|
428
|
4043 {
|
771
|
4044 listdesc =
|
|
4045 qxe_open (XSTRING_DATA (listfile),
|
|
4046 O_WRONLY | O_TRUNC | O_CREAT | OPEN_BINARY,
|
|
4047 CREAT_MODE);
|
428
|
4048
|
|
4049 /* Arrange to close that file whether or not we get
|
|
4050 an error. */
|
|
4051 if (listdesc >= 0)
|
|
4052 record_unwind_protect (do_auto_save_unwind,
|
|
4053 make_int (listdesc));
|
|
4054 }
|
|
4055
|
|
4056 /* Record all the buffers that we are auto-saving in
|
|
4057 the special file that lists them. For each of
|
|
4058 these buffers, record visited name (if any) and
|
|
4059 auto save name. */
|
|
4060 if (listdesc >= 0)
|
|
4061 {
|
442
|
4062 const Extbyte *auto_save_file_name_ext;
|
665
|
4063 Bytecount auto_save_file_name_ext_len;
|
428
|
4064
|
440
|
4065 TO_EXTERNAL_FORMAT (LISP_STRING, b->auto_save_file_name,
|
|
4066 ALLOCA, (auto_save_file_name_ext,
|
|
4067 auto_save_file_name_ext_len),
|
771
|
4068 Qescape_quoted);
|
428
|
4069 if (!NILP (b->filename))
|
|
4070 {
|
442
|
4071 const Extbyte *filename_ext;
|
665
|
4072 Bytecount filename_ext_len;
|
428
|
4073
|
440
|
4074 TO_EXTERNAL_FORMAT (LISP_STRING, b->filename,
|
|
4075 ALLOCA, (filename_ext,
|
|
4076 filename_ext_len),
|
771
|
4077 Qescape_quoted);
|
|
4078 retry_write (listdesc, filename_ext, filename_ext_len);
|
428
|
4079 }
|
771
|
4080 retry_write (listdesc, "\n", 1);
|
|
4081 retry_write (listdesc, auto_save_file_name_ext,
|
428
|
4082 auto_save_file_name_ext_len);
|
771
|
4083 retry_write (listdesc, "\n", 1);
|
428
|
4084 }
|
|
4085
|
|
4086 /* dmoore - In a bad scenario we've set b=XBUFFER(buf)
|
|
4087 based on values in Vbuffer_alist. auto_save_1 may
|
|
4088 cause lisp handlers to run. Those handlers may kill
|
|
4089 the buffer and then GC. Since the buffer is killed,
|
|
4090 it's no longer in Vbuffer_alist so it might get reaped
|
|
4091 by the GC. We also need to protect tail. */
|
|
4092 /* #### There is probably a lot of other code which has
|
|
4093 pointers into buffers which may get blown away by
|
|
4094 handlers. */
|
|
4095 {
|
|
4096 struct gcpro ngcpro1, ngcpro2;
|
|
4097 NGCPRO2 (buf, tail);
|
|
4098 condition_case_1 (Qt,
|
|
4099 auto_save_1, Qnil,
|
|
4100 auto_save_error, Qnil);
|
|
4101 NUNGCPRO;
|
|
4102 }
|
|
4103 /* Handler killed our saved current-buffer! Pick any. */
|
|
4104 if (!BUFFER_LIVE_P (XBUFFER (old)))
|
793
|
4105 old = wrap_buffer (current_buffer);
|
428
|
4106
|
|
4107 set_buffer_internal (XBUFFER (old));
|
|
4108 auto_saved++;
|
|
4109
|
|
4110 /* Handler killed their own buffer! */
|
|
4111 if (!BUFFER_LIVE_P(b))
|
|
4112 continue;
|
|
4113
|
|
4114 b->auto_save_modified = BUF_MODIFF (b);
|
|
4115 b->saved_size = make_int (BUF_SIZE (b));
|
|
4116 EMACS_GET_TIME (after_time);
|
|
4117 /* If auto-save took more than 60 seconds,
|
|
4118 assume it was an NFS failure that got a timeout. */
|
|
4119 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
|
|
4120 b->auto_save_failure_time = EMACS_SECS (after_time);
|
|
4121 }
|
|
4122 }
|
|
4123 }
|
|
4124
|
|
4125 /* Prevent another auto save till enough input events come in. */
|
|
4126 if (auto_saved)
|
|
4127 record_auto_save ();
|
|
4128
|
|
4129 /* If we didn't save anything into the listfile, remove the old
|
|
4130 one because nothing needed to be auto-saved. Do this afterwards
|
|
4131 rather than before in case we get a crash attempting to autosave
|
|
4132 (in that case we'd still want the old one around). */
|
|
4133 if (listdesc < 0 && !auto_saved && STRINGP (listfile))
|
771
|
4134 qxe_unlink (XSTRING_DATA (listfile));
|
428
|
4135
|
|
4136 /* Show "...done" only if the echo area would otherwise be empty. */
|
|
4137 if (auto_saved && NILP (no_message)
|
|
4138 && NILP (clear_echo_area (selected_frame (), Qauto_saving, 0)))
|
|
4139 {
|
442
|
4140 static const unsigned char *msg
|
|
4141 = (const unsigned char *)"Auto-saving...done";
|
428
|
4142 echo_area_message (selected_frame (), msg, Qnil, 0,
|
442
|
4143 strlen ((const char *) msg), Qauto_saving);
|
428
|
4144 }
|
|
4145
|
|
4146 Vquit_flag = oquit;
|
|
4147
|
771
|
4148 RETURN_UNGCPRO (unbind_to (speccount));
|
428
|
4149 }
|
|
4150
|
|
4151 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved, 0, 0, 0, /*
|
|
4152 Mark current buffer as auto-saved with its current text.
|
|
4153 No auto-save file will be written until the buffer changes again.
|
|
4154 */
|
|
4155 ())
|
|
4156 {
|
|
4157 current_buffer->auto_save_modified = BUF_MODIFF (current_buffer);
|
|
4158 current_buffer->saved_size = make_int (BUF_SIZE (current_buffer));
|
|
4159 current_buffer->auto_save_failure_time = -1;
|
|
4160 return Qnil;
|
|
4161 }
|
|
4162
|
|
4163 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure, 0, 0, 0, /*
|
|
4164 Clear any record of a recent auto-save failure in the current buffer.
|
|
4165 */
|
|
4166 ())
|
|
4167 {
|
|
4168 current_buffer->auto_save_failure_time = -1;
|
|
4169 return Qnil;
|
|
4170 }
|
|
4171
|
|
4172 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, 0, 0, 0, /*
|
|
4173 Return t if buffer has been auto-saved since last read in or saved.
|
|
4174 */
|
|
4175 ())
|
|
4176 {
|
|
4177 return (BUF_SAVE_MODIFF (current_buffer) <
|
|
4178 current_buffer->auto_save_modified) ? Qt : Qnil;
|
|
4179 }
|
|
4180
|
|
4181
|
|
4182 /************************************************************************/
|
|
4183 /* initialization */
|
|
4184 /************************************************************************/
|
|
4185
|
|
4186 void
|
|
4187 syms_of_fileio (void)
|
|
4188 {
|
563
|
4189 DEFSYMBOL (Qexpand_file_name);
|
|
4190 DEFSYMBOL (Qfile_truename);
|
|
4191 DEFSYMBOL (Qsubstitute_in_file_name);
|
|
4192 DEFSYMBOL (Qdirectory_file_name);
|
|
4193 DEFSYMBOL (Qfile_name_directory);
|
|
4194 DEFSYMBOL (Qfile_name_nondirectory);
|
|
4195 DEFSYMBOL (Qunhandled_file_name_directory);
|
|
4196 DEFSYMBOL (Qfile_name_as_directory);
|
|
4197 DEFSYMBOL (Qcopy_file);
|
|
4198 DEFSYMBOL (Qmake_directory_internal);
|
|
4199 DEFSYMBOL (Qdelete_directory);
|
|
4200 DEFSYMBOL (Qdelete_file);
|
|
4201 DEFSYMBOL (Qrename_file);
|
|
4202 DEFSYMBOL (Qadd_name_to_file);
|
|
4203 DEFSYMBOL (Qmake_symbolic_link);
|
|
4204 DEFSYMBOL (Qfile_exists_p);
|
|
4205 DEFSYMBOL (Qfile_executable_p);
|
|
4206 DEFSYMBOL (Qfile_readable_p);
|
|
4207 DEFSYMBOL (Qfile_symlink_p);
|
|
4208 DEFSYMBOL (Qfile_writable_p);
|
|
4209 DEFSYMBOL (Qfile_directory_p);
|
|
4210 DEFSYMBOL (Qfile_regular_p);
|
|
4211 DEFSYMBOL (Qfile_accessible_directory_p);
|
|
4212 DEFSYMBOL (Qfile_modes);
|
|
4213 DEFSYMBOL (Qset_file_modes);
|
|
4214 DEFSYMBOL (Qfile_newer_than_file_p);
|
|
4215 DEFSYMBOL (Qinsert_file_contents);
|
|
4216 DEFSYMBOL (Qwrite_region);
|
|
4217 DEFSYMBOL (Qverify_visited_file_modtime);
|
|
4218 DEFSYMBOL (Qset_visited_file_modtime);
|
|
4219 DEFSYMBOL (Qcar_less_than_car); /* Vomitous! */
|
|
4220
|
|
4221 DEFSYMBOL (Qauto_save_hook);
|
|
4222 DEFSYMBOL (Qauto_save_error);
|
|
4223 DEFSYMBOL (Qauto_saving);
|
|
4224
|
|
4225 DEFSYMBOL (Qformat_decode);
|
|
4226 DEFSYMBOL (Qformat_annotate_function);
|
|
4227
|
|
4228 DEFSYMBOL (Qcompute_buffer_file_truename);
|
|
4229
|
442
|
4230 DEFERROR_STANDARD (Qfile_already_exists, Qfile_error);
|
428
|
4231
|
|
4232 DEFSUBR (Ffind_file_name_handler);
|
|
4233
|
|
4234 DEFSUBR (Ffile_name_directory);
|
|
4235 DEFSUBR (Ffile_name_nondirectory);
|
|
4236 DEFSUBR (Funhandled_file_name_directory);
|
|
4237 DEFSUBR (Ffile_name_as_directory);
|
|
4238 DEFSUBR (Fdirectory_file_name);
|
|
4239 DEFSUBR (Fmake_temp_name);
|
|
4240 DEFSUBR (Fexpand_file_name);
|
|
4241 DEFSUBR (Ffile_truename);
|
|
4242 DEFSUBR (Fsubstitute_in_file_name);
|
|
4243 DEFSUBR (Fcopy_file);
|
|
4244 DEFSUBR (Fmake_directory_internal);
|
|
4245 DEFSUBR (Fdelete_directory);
|
|
4246 DEFSUBR (Fdelete_file);
|
|
4247 DEFSUBR (Frename_file);
|
|
4248 DEFSUBR (Fadd_name_to_file);
|
|
4249 DEFSUBR (Fmake_symbolic_link);
|
|
4250 #ifdef HPUX_NET
|
|
4251 DEFSUBR (Fsysnetunam);
|
|
4252 #endif /* HPUX_NET */
|
|
4253 DEFSUBR (Ffile_name_absolute_p);
|
|
4254 DEFSUBR (Ffile_exists_p);
|
|
4255 DEFSUBR (Ffile_executable_p);
|
|
4256 DEFSUBR (Ffile_readable_p);
|
|
4257 DEFSUBR (Ffile_writable_p);
|
|
4258 DEFSUBR (Ffile_symlink_p);
|
|
4259 DEFSUBR (Ffile_directory_p);
|
|
4260 DEFSUBR (Ffile_accessible_directory_p);
|
|
4261 DEFSUBR (Ffile_regular_p);
|
|
4262 DEFSUBR (Ffile_modes);
|
|
4263 DEFSUBR (Fset_file_modes);
|
|
4264 DEFSUBR (Fset_default_file_modes);
|
|
4265 DEFSUBR (Fdefault_file_modes);
|
|
4266 DEFSUBR (Funix_sync);
|
|
4267 DEFSUBR (Ffile_newer_than_file_p);
|
|
4268 DEFSUBR (Finsert_file_contents_internal);
|
|
4269 DEFSUBR (Fwrite_region_internal);
|
|
4270 DEFSUBR (Fcar_less_than_car); /* Vomitous! */
|
|
4271 DEFSUBR (Fcdr_less_than_cdr); /* Yeah oh yeah bucko .... */
|
|
4272 #if 0
|
|
4273 DEFSUBR (Fencrypt_string);
|
|
4274 DEFSUBR (Fdecrypt_string);
|
|
4275 #endif
|
|
4276 DEFSUBR (Fverify_visited_file_modtime);
|
|
4277 DEFSUBR (Fclear_visited_file_modtime);
|
|
4278 DEFSUBR (Fvisited_file_modtime);
|
|
4279 DEFSUBR (Fset_visited_file_modtime);
|
|
4280
|
|
4281 DEFSUBR (Fdo_auto_save);
|
|
4282 DEFSUBR (Fset_buffer_auto_saved);
|
|
4283 DEFSUBR (Fclear_buffer_auto_save_failure);
|
|
4284 DEFSUBR (Frecent_auto_save_p);
|
|
4285 }
|
|
4286
|
|
4287 void
|
|
4288 vars_of_fileio (void)
|
|
4289 {
|
|
4290 DEFVAR_LISP ("auto-save-file-format", &Vauto_save_file_format /*
|
|
4291 *Format in which to write auto-save files.
|
|
4292 Should be a list of symbols naming formats that are defined in `format-alist'.
|
|
4293 If it is t, which is the default, auto-save files are written in the
|
|
4294 same format as a regular save would use.
|
|
4295 */ );
|
|
4296 Vauto_save_file_format = Qt;
|
|
4297
|
|
4298 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist /*
|
|
4299 *Alist of elements (REGEXP . HANDLER) for file names handled specially.
|
|
4300 If a file name matches REGEXP, then all I/O on that file is done by calling
|
|
4301 HANDLER.
|
|
4302
|
|
4303 The first argument given to HANDLER is the name of the I/O primitive
|
|
4304 to be handled; the remaining arguments are the arguments that were
|
|
4305 passed to that primitive. For example, if you do
|
|
4306 (file-exists-p FILENAME)
|
|
4307 and FILENAME is handled by HANDLER, then HANDLER is called like this:
|
|
4308 (funcall HANDLER 'file-exists-p FILENAME)
|
|
4309 The function `find-file-name-handler' checks this list for a handler
|
|
4310 for its argument.
|
|
4311 */ );
|
|
4312 Vfile_name_handler_alist = Qnil;
|
|
4313
|
|
4314 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions /*
|
|
4315 A list of functions to be called at the end of `insert-file-contents'.
|
|
4316 Each is passed one argument, the number of bytes inserted. It should return
|
|
4317 the new byte count, and leave point the same. If `insert-file-contents' is
|
|
4318 intercepted by a handler from `file-name-handler-alist', that handler is
|
|
4319 responsible for calling the after-insert-file-functions if appropriate.
|
|
4320 */ );
|
|
4321 Vafter_insert_file_functions = Qnil;
|
|
4322
|
|
4323 DEFVAR_LISP ("write-region-annotate-functions",
|
|
4324 &Vwrite_region_annotate_functions /*
|
|
4325 A list of functions to be called at the start of `write-region'.
|
|
4326 Each is passed two arguments, START and END, as for `write-region'.
|
|
4327 It should return a list of pairs (POSITION . STRING) of strings to be
|
|
4328 effectively inserted at the specified positions of the file being written
|
|
4329 \(1 means to insert before the first byte written). The POSITIONs must be
|
|
4330 sorted into increasing order. If there are several functions in the list,
|
|
4331 the several lists are merged destructively.
|
|
4332 */ );
|
|
4333 Vwrite_region_annotate_functions = Qnil;
|
|
4334
|
|
4335 DEFVAR_LISP ("write-region-annotations-so-far",
|
|
4336 &Vwrite_region_annotations_so_far /*
|
|
4337 When an annotation function is called, this holds the previous annotations.
|
|
4338 These are the annotations made by other annotation functions
|
|
4339 that were already called. See also `write-region-annotate-functions'.
|
|
4340 */ );
|
|
4341 Vwrite_region_annotations_so_far = Qnil;
|
|
4342
|
|
4343 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers /*
|
|
4344 A list of file name handlers that temporarily should not be used.
|
|
4345 This applies only to the operation `inhibit-file-name-operation'.
|
|
4346 */ );
|
|
4347 Vinhibit_file_name_handlers = Qnil;
|
|
4348
|
|
4349 DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation /*
|
|
4350 The operation for which `inhibit-file-name-handlers' is applicable.
|
|
4351 */ );
|
|
4352 Vinhibit_file_name_operation = Qnil;
|
|
4353
|
|
4354 DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name /*
|
|
4355 File name in which we write a list of all auto save file names.
|
|
4356 */ );
|
|
4357 Vauto_save_list_file_name = Qnil;
|
|
4358
|
444
|
4359 DEFVAR_LISP ("auto-save-list-file-prefix", &Vauto_save_list_file_prefix /*
|
|
4360 Prefix for generating auto-save-list-file-name.
|
|
4361 Emacs's pid and the system name will be appended to
|
|
4362 this prefix to create a unique file name.
|
|
4363 */ );
|
|
4364 Vauto_save_list_file_prefix = build_string ("~/.saves-");
|
|
4365
|
|
4366 DEFVAR_BOOL ("inhibit-auto-save-session", &inhibit_auto_save_session /*
|
|
4367 When non-nil, inhibit auto save list file creation.
|
|
4368 */ );
|
|
4369 inhibit_auto_save_session = 0;
|
|
4370
|
428
|
4371 DEFVAR_BOOL ("disable-auto-save-when-buffer-shrinks",
|
|
4372 &disable_auto_save_when_buffer_shrinks /*
|
|
4373 If non-nil, auto-saving is disabled when a buffer shrinks too much.
|
|
4374 This is to prevent you from losing your edits if you accidentally
|
|
4375 delete a large chunk of the buffer and don't notice it until too late.
|
|
4376 Saving the buffer normally turns auto-save back on.
|
|
4377 */ );
|
|
4378 disable_auto_save_when_buffer_shrinks = 1;
|
|
4379
|
|
4380 DEFVAR_LISP ("directory-sep-char", &Vdirectory_sep_char /*
|
|
4381 Directory separator character for built-in functions that return file names.
|
|
4382 The value should be either ?/ or ?\\ (any other value is treated as ?\\).
|
|
4383 This variable affects the built-in functions only on Windows,
|
|
4384 on other platforms, it is initialized so that Lisp code can find out
|
|
4385 what the normal separator is.
|
|
4386 */ );
|
771
|
4387 Vdirectory_sep_char = make_char (DEFAULT_DIRECTORY_SEP);
|
442
|
4388
|
|
4389 reinit_vars_of_fileio ();
|
428
|
4390 }
|
442
|
4391
|
|
4392 void
|
|
4393 reinit_vars_of_fileio (void)
|
|
4394 {
|
|
4395 /* We want temp_name_rand to be initialized to a value likely to be
|
|
4396 unique to the process, not to the executable. The danger is that
|
|
4397 two different XEmacs processes using the same binary on different
|
|
4398 machines creating temp files in the same directory will be
|
|
4399 unlucky enough to have the same pid. If we randomize using
|
|
4400 process startup time, then in practice they will be unlikely to
|
|
4401 collide. We use the microseconds field so that scripts that start
|
|
4402 simultaneous XEmacs processes on multiple machines will have less
|
|
4403 chance of collision. */
|
|
4404 {
|
|
4405 EMACS_TIME thyme;
|
|
4406
|
|
4407 EMACS_GET_TIME (thyme);
|
|
4408 temp_name_rand = (unsigned int) (EMACS_SECS (thyme) ^ EMACS_USECS (thyme));
|
|
4409 }
|
|
4410 }
|