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