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