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