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