(pop.o): Depend on config.h.
[bpt/emacs.git] / lisp / jka-compr.el
CommitLineData
be010748
RS
1;;; jka-compr.el --- reading/writing/loading compressed files
2
e5e5ef24 3;; Copyright (C) 1993, 1994, 1995, 1997, 1999 Free Software Foundation, Inc.
acd622cc
RS
4
5;; Author: jka@ece.cmu.edu (Jay K. Adams)
4228277d 6;; Maintainer: FSF
acd622cc
RS
7;; Keywords: data
8
f4454a14
RS
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
f4454a14 25
acd622cc
RS
26;;; Commentary:
27
b578f267
EN
28;; This package implements low-level support for reading, writing,
29;; and loading compressed files. It hooks into the low-level file
30;; I/O functions (including write-region and insert-file-contents) so
31;; that they automatically compress or uncompress a file if the file
32;; appears to need it (based on the extension of the file name).
33;; Packages like Rmail, VM, GNUS, and Info should be able to work
34;; with compressed files without modification.
35
36
37;; INSTRUCTIONS:
38;;
39;; To use jka-compr, simply load this package, and edit as usual.
40;; Its operation should be transparent to the user (except for
41;; messages appearing when a file is being compressed or
42;; uncompressed).
43;;
44;; The variable, jka-compr-compression-info-list can be used to
45;; customize jka-compr to work with other compression programs.
46;; The default value of this variable allows jka-compr to work with
47;; Unix compress and gzip.
48;;
49;; If you are concerned about the stderr output of gzip and other
50;; compression/decompression programs showing up in your buffers, you
51;; should set the discard-error flag in the compression-info-list.
52;; This will cause the stderr of all programs to be discarded.
53;; However, it also causes emacs to call compression/uncompression
54;; programs through a shell (which is specified by jka-compr-shell).
55;; This may be a drag if, on your system, starting up a shell is
56;; slow.
57;;
58;; If you don't want messages about compressing and decompressing
59;; to show up in the echo area, you can set the compress-name and
60;; decompress-name fields of the jka-compr-compression-info-list to
61;; nil.
62
63
64;; APPLICATION NOTES:
65;;
66;; crypt++
67;; jka-compr can coexist with crpyt++ if you take all the decompression
68;; entries out of the crypt-encoding-list. Clearly problems will arise if
69;; you have two programs trying to compress/decompress files. jka-compr
70;; will not "work with" crypt++ in the following sense: you won't be able to
71;; decode encrypted compressed files--that is, files that have been
72;; compressed then encrypted (in that order). Theoretically, crypt++ and
73;; jka-compr could properly handle a file that has been encrypted then
74;; compressed, but there is little point in trying to compress an encrypted
75;; file.
76;;
77
78
79;; ACKNOWLEDGMENTS
80;;
81;; jka-compr is a V19 adaptation of jka-compr for V18 of Emacs. Many people
82;; have made helpful suggestions, reported bugs, and even fixed bugs in
83;; jka-compr. I recall the following people as being particularly helpful.
84;;
85;; Jean-loup Gailly
86;; David Hughes
87;; Richard Pieri
88;; Daniel Quinlan
89;; Chris P. Ross
90;; Rick Sladkey
91;;
92;; Andy Norman's ange-ftp was the inspiration for the original jka-compr for
93;; Version 18 of Emacs.
94;;
95;; After I had made progress on the original jka-compr for V18, I learned of a
96;; package written by Kazushi Jam Marukawa, called jam-zcat, that did exactly
97;; what I was trying to do. I looked over the jam-zcat source code and
98;; probably got some ideas from it.
99;;
acd622cc
RS
100
101;;; Code:
102
bbf5eb28
RS
103(defgroup compression nil
104 "Data compression utilities"
105 :group 'data)
106
107(defgroup jka-compr nil
108 "jka-compr customization"
109 :group 'compression)
110
111
112(defcustom jka-compr-shell "sh"
acd622cc
RS
113 "*Shell to be used for calling compression programs.
114The value of this variable only matters if you want to discard the
115stderr of a compression/decompression program (see the documentation
bbf5eb28
RS
116for `jka-compr-compression-info-list')."
117 :type 'string
118 :group 'jka-compr)
acd622cc 119
eb915452
RS
120(defvar jka-compr-use-shell
121 (not (memq system-type '(ms-dos windows-nt))))
acd622cc
RS
122
123;;; I have this defined so that .Z files are assumed to be in unix
060c3cc9 124;;; compress format; and .gz files, in gzip format, and .bz2 files in bzip fmt.
bbf5eb28 125(defcustom jka-compr-compression-info-list
acd622cc 126 ;;[regexp
ede9c6a8
RS
127 ;; compr-message compr-prog compr-args
128 ;; uncomp-message uncomp-prog uncomp-args
acd622cc 129 ;; can-append auto-mode-flag]
094cf604 130 '(["\\.Z\\(~\\|\\.~[0-9]+~\\)?\\'"
acd622cc
RS
131 "compressing" "compress" ("-c")
132 "uncompressing" "uncompress" ("-c")
133 nil t]
df312987
DL
134 ;; Formerly, these had an additional arg "-c", but that fails with
135 ;; "Version 0.1pl2, 29-Aug-97." (RedHat 5.1 GNU/Linux) and
136 ;; "Version 0.9.0b, 9-Sept-98".
060c3cc9 137 ["\\.bz2\\'"
df312987
DL
138 "bzip2ing" "bzip2" nil
139 "bunzip2ing" "bzip2" ("-d")
6b10a521 140 nil t]
74b2c737
RS
141 ["\\.tgz\\'"
142 "zipping" "gzip" ("-c" "-q")
143 "unzipping" "gzip" ("-c" "-q" "-d")
144 t nil]
094cf604 145 ["\\.gz\\(~\\|\\.~[0-9]+~\\)?\\'"
acd622cc
RS
146 "zipping" "gzip" ("-c" "-q")
147 "unzipping" "gzip" ("-c" "-q" "-d")
148 t t])
149
150 "List of vectors that describe available compression techniques.
151Each element, which describes a compression technique, is a vector of
ede9c6a8
RS
152the form [REGEXP COMPRESS-MSG COMPRESS-PROGRAM COMPRESS-ARGS
153UNCOMPRESS-MSG UNCOMPRESS-PROGRAM UNCOMPRESS-ARGS
154APPEND-FLAG EXTENSION], where:
acd622cc
RS
155
156 regexp is a regexp that matches filenames that are
157 compressed with this format
158
ede9c6a8
RS
159 compress-msg is the message to issue to the user when doing this
160 type of compression (nil means no message)
161
acd622cc
RS
162 compress-program is a program that performs this compression
163
164 compress-args is a list of args to pass to the compress program
165
ede9c6a8
RS
166 uncompress-msg is the message to issue to the user when doing this
167 type of uncompression (nil means no message)
acd622cc
RS
168
169 uncompress-program is a program that performs this compression
170
171 uncompress-args is a list of args to pass to the uncompress program
172
173 append-flag is non-nil if this compression technique can be
174 appended
175
176 auto-mode flag non-nil means strip the regexp from file names
177 before attempting to set the mode.
178
8fb1a583 179Because of the way `call-process' is defined, discarding the stderr output of
acd622cc 180a program adds the overhead of starting a shell each time the program is
bbf5eb28
RS
181invoked."
182 :type '(repeat (vector regexp
183 (choice :tag "Compress Message"
184 (string :format "%v")
185 (const :tag "No Message" nil))
186 (string :tag "Compress Program")
187 (repeat :tag "Compress Arguments" string)
188 (choice :tag "Uncompress Message"
189 (string :format "%v")
190 (const :tag "No Message" nil))
191 (string :tag "Uncompress Program")
192 (repeat :tag "Uncompress Arguments" string)
193 (boolean :tag "Append")
194 (boolean :tag "Auto Mode")))
195 :group 'jka-compr)
acd622cc 196
74b2c737
RS
197(defvar jka-compr-mode-alist-additions
198 (list (cons "\\.tgz\\'" 'tar-mode))
4eec33ae
RS
199 "A list of pairs to add to `auto-mode-alist' when jka-compr is installed.")
200
201;; List of all the elements we actually added to file-coding-system-alist.
202(defvar jka-compr-added-to-file-coding-system-alist nil)
acd622cc 203
555235e6
RS
204(defvar jka-compr-file-name-handler-entry
205 nil
206 "The entry in `file-name-handler-alist' used by the jka-compr I/O functions.")
555235e6 207\f
43a3bdcc 208;;; Functions for accessing the return value of jka-compr-get-compression-info
acd622cc
RS
209(defun jka-compr-info-regexp (info) (aref info 0))
210(defun jka-compr-info-compress-message (info) (aref info 1))
211(defun jka-compr-info-compress-program (info) (aref info 2))
212(defun jka-compr-info-compress-args (info) (aref info 3))
213(defun jka-compr-info-uncompress-message (info) (aref info 4))
214(defun jka-compr-info-uncompress-program (info) (aref info 5))
215(defun jka-compr-info-uncompress-args (info) (aref info 6))
216(defun jka-compr-info-can-append (info) (aref info 7))
217(defun jka-compr-info-strip-extension (info) (aref info 8))
218
219
220(defun jka-compr-get-compression-info (filename)
221 "Return information about the compression scheme of FILENAME.
222The determination as to which compression scheme, if any, to use is
99bee6a4 223based on the filename itself and `jka-compr-compression-info-list'."
acd622cc
RS
224 (catch 'compression-info
225 (let ((case-fold-search nil))
226 (mapcar
227 (function (lambda (x)
228 (and (string-match (jka-compr-info-regexp x) filename)
229 (throw 'compression-info x))))
230 jka-compr-compression-info-list)
231 nil)))
232
233
234(put 'compression-error 'error-conditions '(compression-error file-error error))
235
236
30c78e11 237(defvar jka-compr-acceptable-retval-list '(0 2 141))
acd622cc
RS
238
239
240(defun jka-compr-error (prog args infile message &optional errfile)
241
242 (let ((errbuf (get-buffer-create " *jka-compr-error*"))
243 (curbuf (current-buffer)))
75e9c107
RS
244 (with-current-buffer errbuf
245 (widen) (erase-buffer)
246 (insert (format "Error while executing \"%s %s < %s\"\n\n"
247 prog
248 (mapconcat 'identity args " ")
249 infile))
250
251 (and errfile
252 (insert-file-contents errfile)))
acd622cc
RS
253 (display-buffer errbuf))
254
75e9c107
RS
255 (signal 'compression-error
256 (list "Opening input file" (format "error %s" message) infile)))
acd622cc
RS
257
258
259(defvar jka-compr-dd-program
260 "/bin/dd")
261
262
dfe05fac 263(defvar jka-compr-dd-blocksize 256)
acd622cc
RS
264
265
266(defun jka-compr-partial-uncompress (prog message args infile beg len)
267 "Call program PROG with ARGS args taking input from INFILE.
268Fourth and fifth args, BEG and LEN, specify which part of the output
ee139ed3 269to keep: LEN chars starting BEG chars from the beginning."
acd622cc
RS
270 (let* ((skip (/ beg jka-compr-dd-blocksize))
271 (prefix (- beg (* skip jka-compr-dd-blocksize)))
272 (count (and len (1+ (/ (+ len prefix) jka-compr-dd-blocksize))))
273 (start (point))
acd622cc
RS
274 (err-file (jka-compr-make-temp-name))
275 (run-string (format "%s %s 2> %s | %s bs=%d skip=%d %s 2> /dev/null"
276 prog
277 (mapconcat 'identity args " ")
278 err-file
279 jka-compr-dd-program
280 jka-compr-dd-blocksize
281 skip
dfe05fac
RS
282 ;; dd seems to be unreliable about
283 ;; providing the last block. So, always
284 ;; read one more than you think you need.
285 (if count (concat "count=" (1+ count)) ""))))
acd622cc
RS
286
287 (unwind-protect
288 (or (memq (call-process jka-compr-shell
289 infile t nil "-c"
290 run-string)
291 jka-compr-acceptable-retval-list)
292
293 (jka-compr-error prog args infile message err-file))
294
295 (jka-compr-delete-temp-file err-file))
296
ee139ed3 297 ;; Delete the stuff after what we want, if there is any.
acd622cc 298 (and
dfe05fac 299 len
ee139ed3 300 (< (+ start prefix len) (point))
dfe05fac 301 (delete-region (+ start prefix len) (point)))
acd622cc 302
ee139ed3 303 ;; Delete the stuff before what we want.
acd622cc
RS
304 (delete-region start (+ start prefix))))
305
306
307(defun jka-compr-call-process (prog message infile output temp args)
308 (if jka-compr-use-shell
309
a81635fc 310 (let ((err-file (jka-compr-make-temp-name))
baefb016 311 (coding-system-for-read (or coding-system-for-read 'undecided))
70c7850e 312 (coding-system-for-write 'no-conversion))
a81635fc 313
acd622cc
RS
314 (unwind-protect
315
316 (or (memq
317 (call-process jka-compr-shell infile
318 (if (stringp output) nil output)
319 nil
320 "-c"
321 (format "%s %s 2> %s %s"
322 prog
323 (mapconcat 'identity args " ")
324 err-file
325 (if (stringp output)
326 (concat "> " output)
327 "")))
328 jka-compr-acceptable-retval-list)
329
330 (jka-compr-error prog args infile message err-file))
331
332 (jka-compr-delete-temp-file err-file)))
333
334 (or (zerop
335 (apply 'call-process
336 prog
337 infile
338 (if (stringp output) temp output)
339 nil
340 args))
341 (jka-compr-error prog args infile message))
342
343 (and (stringp output)
75e9c107 344 (with-current-buffer temp
acd622cc 345 (write-region (point-min) (point-max) output)
75e9c107 346 (erase-buffer)))))
acd622cc
RS
347
348
349;;; Support for temp files. Much of this was inspired if not lifted
350;;; from ange-ftp.
351
bbf5eb28 352(defcustom jka-compr-temp-name-template
11757e2f 353 (expand-file-name "jka-com" temporary-file-directory)
362b539a 354 "Prefix added to all temp files created by jka-compr.
bbf5eb28
RS
355There should be no more than seven characters after the final `/'."
356 :type 'string
357 :group 'jka-compr)
acd622cc
RS
358
359(defvar jka-compr-temp-name-table (make-vector 31 nil))
360
361(defun jka-compr-make-temp-name (&optional local-copy)
362 "This routine will return the name of a new file."
363 (let* ((lastchar ?a)
364 (prevchar ?a)
365 (template (concat jka-compr-temp-name-template "aa"))
366 (lastpos (1- (length template)))
367 (not-done t)
368 file
369 entry)
370
371 (while not-done
372 (aset template lastpos lastchar)
373 (setq file (concat (make-temp-name template) "#"))
374 (setq entry (intern file jka-compr-temp-name-table))
375 (if (or (get entry 'active)
376 (file-exists-p file))
377
378 (progn
379 (setq lastchar (1+ lastchar))
380 (if (> lastchar ?z)
381 (progn
382 (setq prevchar (1+ prevchar))
383 (setq lastchar ?a)
384 (if (> prevchar ?z)
385 (error "Can't allocate temp file.")
386 (aset template (1- lastpos) prevchar)))))
387
388 (put entry 'active (not local-copy))
389 (setq not-done nil)))
390
391 file))
392
393
394(defun jka-compr-delete-temp-file (temp)
395
396 (put (intern temp jka-compr-temp-name-table)
397 'active nil)
398
399 (condition-case ()
400 (delete-file temp)
401 (error nil)))
402
403
404(defun jka-compr-write-region (start end file &optional append visit)
acd622cc
RS
405 (let* ((filename (expand-file-name file))
406 (visit-file (if (stringp visit) (expand-file-name visit) filename))
407 (info (jka-compr-get-compression-info visit-file)))
408
409 (if info
410
411 (let ((can-append (jka-compr-info-can-append info))
412 (compress-program (jka-compr-info-compress-program info))
413 (compress-message (jka-compr-info-compress-message info))
414 (uncompress-program (jka-compr-info-uncompress-program info))
415 (uncompress-message (jka-compr-info-uncompress-message info))
416 (compress-args (jka-compr-info-compress-args info))
417 (uncompress-args (jka-compr-info-uncompress-args info))
acd622cc 418 (base-name (file-name-nondirectory visit-file))
70c7850e
KH
419 temp-file temp-buffer
420 ;; we need to leave `last-coding-system-used' set to its
421 ;; value after calling write-region the first time, so
422 ;; that `basic-save-buffer' sees the right value.
423 (coding-system-used last-coding-system-used))
acd622cc 424
75e9c107
RS
425 (setq temp-buffer (get-buffer-create " *jka-compr-wr-temp*"))
426 (with-current-buffer temp-buffer
427 (widen) (erase-buffer))
acd622cc 428
30c78e11
RS
429 (if (and append
430 (not can-append)
431 (file-exists-p filename))
432
433 (let* ((local-copy (file-local-copy filename))
434 (local-file (or local-copy filename)))
435
436 (setq temp-file local-file))
437
438 (setq temp-file (jka-compr-make-temp-name)))
acd622cc
RS
439
440 (and
441 compress-message
442 (message "%s %s..." compress-message base-name))
30c78e11 443
8fb1a583
RS
444 (jka-compr-run-real-handler 'write-region
445 (list start end temp-file t 'dont))
70c7850e
KH
446 ;; save value used by the real write-region
447 (setq coding-system-used last-coding-system-used)
acd622cc 448
baefb016
KH
449 ;; Here we must read the output of compress program as is
450 ;; without any code conversion.
451 (let ((coding-system-for-read 'no-conversion))
452 (jka-compr-call-process compress-program
453 (concat compress-message
454 " " base-name)
455 temp-file
456 temp-buffer
457 nil
458 compress-args))
acd622cc 459
75e9c107 460 (with-current-buffer temp-buffer
a81635fc
RS
461 (let ((coding-system-for-write 'no-conversion))
462 (if (memq system-type '(ms-dos windows-nt))
463 (setq buffer-file-type t) )
464 (jka-compr-run-real-handler 'write-region
465 (list (point-min) (point-max)
466 filename
467 (and append can-append) 'dont))
468 (erase-buffer)) )
acd622cc
RS
469
470 (jka-compr-delete-temp-file temp-file)
471
472 (and
473 compress-message
474 (message "%s %s...done" compress-message base-name))
475
476 (cond
477 ((eq visit t)
478 (setq buffer-file-name filename)
479 (set-visited-file-modtime))
480 ((stringp visit)
481 (setq buffer-file-name visit)
482 (let ((buffer-file-name filename))
483 (set-visited-file-modtime))))
484
485 (and (or (eq visit t)
486 (eq visit nil)
487 (stringp visit))
488 (message "Wrote %s" visit-file))
489
70c7850e
KH
490 ;; ensure `last-coding-system-used' has an appropriate value
491 (setq last-coding-system-used coding-system-used)
492
acd622cc
RS
493 nil)
494
8fb1a583
RS
495 (jka-compr-run-real-handler 'write-region
496 (list start end filename append visit)))))
acd622cc
RS
497
498
54b2aa5c 499(defun jka-compr-insert-file-contents (file &optional visit beg end replace)
acd622cc
RS
500 (barf-if-buffer-read-only)
501
502 (and (or beg end)
503 visit
504 (error "Attempt to visit less than an entire file"))
505
506 (let* ((filename (expand-file-name file))
507 (info (jka-compr-get-compression-info filename)))
508
509 (if info
510
511 (let ((uncompress-message (jka-compr-info-uncompress-message info))
512 (uncompress-program (jka-compr-info-uncompress-program info))
513 (uncompress-args (jka-compr-info-uncompress-args info))
514 (base-name (file-name-nondirectory filename))
515 (notfound nil)
8fb1a583
RS
516 (local-copy
517 (jka-compr-run-real-handler 'file-local-copy (list filename)))
acd622cc 518 local-file
a81635fc 519 size start
4eec33ae
RS
520 (coding-system-for-read
521 (or coding-system-for-read
bab00368
RS
522 ;; If multibyte characters are disabled,
523 ;; don't do that conversion.
524 (and (null enable-multibyte-characters)
c352d959 525 (or (auto-coding-alist-lookup
f8d8f627 526 (jka-compr-byte-compiler-base-file-name file))
c352d959 527 'raw-text))
7ec4806e
RS
528 (let ((coding (find-operation-coding-system
529 'insert-file-contents
530 (jka-compr-byte-compiler-base-file-name file))))
531 (and (consp coding) (car coding)))
4eec33ae 532 'undecided)) )
acd622cc
RS
533
534 (setq local-file (or local-copy filename))
535
536 (and
537 visit
538 (setq buffer-file-name filename))
539
540 (unwind-protect ; to make sure local-copy gets deleted
541
542 (progn
543
544 (and
545 uncompress-message
546 (message "%s %s..." uncompress-message base-name))
547
548 (condition-case error-code
549
550 (progn
094cf604
RS
551 (if replace
552 (goto-char (point-min)))
acd622cc
RS
553 (setq start (point))
554 (if (or beg end)
555 (jka-compr-partial-uncompress uncompress-program
556 (concat uncompress-message
557 " " base-name)
558 uncompress-args
559 local-file
560 (or beg 0)
561 (if (and beg end)
562 (- end beg)
563 end))
ae849784
RS
564 ;; If visiting, bind off buffer-file-name so that
565 ;; file-locking will not ask whether we should
566 ;; really edit the buffer.
567 (let ((buffer-file-name
568 (if visit nil buffer-file-name)))
569 (jka-compr-call-process uncompress-program
570 (concat uncompress-message
571 " " base-name)
572 local-file
573 t
574 nil
575 uncompress-args)))
acd622cc 576 (setq size (- (point) start))
094cf604
RS
577 (if replace
578 (let* ((del-beg (point))
579 (del-end (+ del-beg size)))
580 (delete-region del-beg
581 (min del-end (point-max)))))
582 (goto-char start))
acd622cc
RS
583 (error
584 (if (and (eq (car error-code) 'file-error)
585 (eq (nth 3 error-code) local-file))
586 (if visit
587 (setq notfound error-code)
588 (signal 'file-error
589 (cons "Opening input file"
590 (nthcdr 2 error-code))))
591 (signal (car error-code) (cdr error-code))))))
592
593 (and
594 local-copy
595 (file-exists-p local-copy)
596 (delete-file local-copy)))
597
598 (and
599 visit
600 (progn
8fb1a583 601 (unlock-buffer)
acd622cc
RS
602 (setq buffer-file-name filename)
603 (set-visited-file-modtime)))
604
605 (and
606 uncompress-message
607 (message "%s %s...done" uncompress-message base-name))
608
609 (and
610 visit
611 notfound
612 (signal 'file-error
613 (cons "Opening input file" (nth 2 notfound))))
614
5c6f2f2a
RS
615 ;; This is done in insert-file-contents after we return.
616 ;; That is a little weird, but better to go along with it now
617 ;; than to change it now.
618
619;;; ;; Run the functions that insert-file-contents would.
620;;; (let ((p after-insert-file-functions)
621;;; (insval size))
622;;; (while p
623;;; (setq insval (funcall (car p) size))
624;;; (if insval
625;;; (progn
626;;; (or (integerp insval)
627;;; (signal 'wrong-type-argument
628;;; (list 'integerp insval)))
629;;; (setq size insval)))
630;;; (setq p (cdr p))))
094cf604 631
acd622cc
RS
632 (list filename size))
633
8fb1a583
RS
634 (jka-compr-run-real-handler 'insert-file-contents
635 (list file visit beg end replace)))))
acd622cc
RS
636
637
638(defun jka-compr-file-local-copy (file)
acd622cc
RS
639 (let* ((filename (expand-file-name file))
640 (info (jka-compr-get-compression-info filename)))
641
642 (if info
643
644 (let ((uncompress-message (jka-compr-info-uncompress-message info))
645 (uncompress-program (jka-compr-info-uncompress-program info))
646 (uncompress-args (jka-compr-info-uncompress-args info))
647 (base-name (file-name-nondirectory filename))
8fb1a583
RS
648 (local-copy
649 (jka-compr-run-real-handler 'file-local-copy (list filename)))
acd622cc 650 (temp-file (jka-compr-make-temp-name t))
30c78e11 651 (temp-buffer (get-buffer-create " *jka-compr-flc-temp*"))
acd622cc 652 (notfound nil)
acd622cc
RS
653 local-file)
654
655 (setq local-file (or local-copy filename))
656
657 (unwind-protect
658
75e9c107 659 (with-current-buffer temp-buffer
acd622cc
RS
660
661 (and
662 uncompress-message
663 (message "%s %s..." uncompress-message base-name))
acd622cc 664
baefb016
KH
665 ;; Here we must read the output of uncompress program
666 ;; and write it to TEMP-FILE without any code
667 ;; conversion. An appropriate code conversion (if
668 ;; necessary) is done by the later I/O operation
669 ;; (e.g. load).
670 (let ((coding-system-for-read 'no-conversion)
671 (coding-system-for-write 'no-conversion))
672
673 (jka-compr-call-process uncompress-program
674 (concat uncompress-message
675 " " base-name)
676 local-file
677 t
678 nil
679 uncompress-args)
680
681 (and
682 uncompress-message
683 (message "%s %s...done" uncompress-message base-name))
684
685 (write-region
686 (point-min) (point-max) temp-file nil 'dont)))
acd622cc
RS
687
688 (and
689 local-copy
690 (file-exists-p local-copy)
691 (delete-file local-copy))
692
acd622cc
RS
693 (kill-buffer temp-buffer))
694
695 temp-file)
696
8fb1a583 697 (jka-compr-run-real-handler 'file-local-copy (list filename)))))
acd622cc
RS
698
699
700;;; Support for loading compressed files.
701(defun jka-compr-load (file &optional noerror nomessage nosuffix)
702 "Documented as original."
703
704 (let* ((local-copy (jka-compr-file-local-copy file))
705 (load-file (or local-copy file)))
706
707 (unwind-protect
708
8fb1a583
RS
709 (let (inhibit-file-name-operation
710 inhibit-file-name-handlers)
acd622cc
RS
711 (or nomessage
712 (message "Loading %s..." file))
713
9b37d8a9
RS
714 (let ((load-force-doc-strings t))
715 (load load-file noerror t t))
acd622cc
RS
716
717 (or nomessage
718 (message "Loading %s...done." file)))
719
acd622cc
RS
720 (jka-compr-delete-temp-file local-copy))
721
722 t))
3068998d
RS
723
724(defun jka-compr-byte-compiler-base-file-name (file)
725 (let ((info (jka-compr-get-compression-info file)))
726 (if (and info (jka-compr-info-strip-extension info))
727 (save-match-data
728 (substring file 0 (string-match (jka-compr-info-regexp info) file)))
729 file)))
8fb1a583
RS
730\f
731(put 'write-region 'jka-compr 'jka-compr-write-region)
732(put 'insert-file-contents 'jka-compr 'jka-compr-insert-file-contents)
733(put 'file-local-copy 'jka-compr 'jka-compr-file-local-copy)
734(put 'load 'jka-compr 'jka-compr-load)
3068998d
RS
735(put 'byte-compiler-base-file-name 'jka-compr
736 'jka-compr-byte-compiler-base-file-name)
acd622cc 737
9fdf055b
KH
738(defvar jka-compr-inhibit nil
739 "Non-nil means inhibit automatic uncompression temporarily.
740Lisp programs can bind this to t to do that.
741It is not recommended to set this variable permanently to anything but nil.")
742
acd622cc 743(defun jka-compr-handler (operation &rest args)
8fb1a583
RS
744 (save-match-data
745 (let ((jka-op (get operation 'jka-compr)))
9fdf055b 746 (if (and jka-op (not jka-compr-inhibit))
8fb1a583
RS
747 (apply jka-op args)
748 (jka-compr-run-real-handler operation args)))))
acd622cc 749
99bee6a4
RS
750;; If we are given an operation that we don't handle,
751;; call the Emacs primitive for that operation,
752;; and manipulate the inhibit variables
753;; to prevent the primitive from calling our handler again.
754(defun jka-compr-run-real-handler (operation args)
755 (let ((inhibit-file-name-handlers
756 (cons 'jka-compr-handler
757 (and (eq inhibit-file-name-operation operation)
758 inhibit-file-name-handlers)))
759 (inhibit-file-name-operation operation))
760 (apply operation args)))
761
9699776c
DL
762;;;###autoload
763(defcustom auto-compression-mode nil
764 "Toggle automatic file compression and uncompression.
765Setting this variable directly does not take effect;
766use either \\[customize] or the function `auto-compression-mode'."
767 :set (lambda (symbol value)
768 (auto-compression-mode (or value 0)))
769 :initialize 'custom-initialize-default
770 :group 'jka-compr
771 :version "21.1"
772 :type 'boolean
773 :require 'jka-compr)
774
b6dca218 775;;;###autoload(defun auto-compression-mode (&optional arg)
e5220563
RS
776;;;###autoload "\
777;;;###autoloadToggle automatic file compression and uncompression.
b6dca218
RS
778;;;###autoloadWith prefix argument ARG, turn auto compression on if positive, else off.
779;;;###autoloadReturns the new status of auto compression (non-nil means on)."
e5220563 780;;;###autoload (interactive "P")
b6dca218
RS
781;;;###autoload (if (not (fboundp 'jka-compr-installed-p))
782;;;###autoload (progn
783;;;###autoload (require 'jka-compr)
784;;;###autoload ;; That turned the mode on, so make it initially off.
785;;;###autoload (toggle-auto-compression)))
e5220563 786;;;###autoload (toggle-auto-compression arg t))
b6dca218 787
e5220563 788(defun toggle-auto-compression (&optional arg message)
61793fbf 789 "Toggle automatic file compression and uncompression.
acd622cc 790With prefix argument ARG, turn auto compression on if positive, else off.
e5220563
RS
791Returns the new status of auto compression (non-nil means on).
792If the argument MESSAGE is non-nil, it means to print a message
793saying whether the mode is now on or off."
794 (interactive "P\np")
acd622cc
RS
795 (let* ((installed (jka-compr-installed-p))
796 (flag (if (null arg)
797 (not installed)
798 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0))))))
799
800 (cond
801 ((and flag installed) t) ; already installed
802
803 ((and (not flag) (not installed)) nil) ; already not installed
804
805 (flag
806 (jka-compr-install))
807
808 (t
809 (jka-compr-uninstall)))
810
811
e5220563 812 (and message
acd622cc
RS
813 (if flag
814 (message "Automatic file (de)compression is now ON.")
815 (message "Automatic file (de)compression is now OFF.")))
816
817 flag))
acd622cc
RS
818
819(defun jka-compr-build-file-regexp ()
820 (concat
821 "\\("
822 (mapconcat
823 'jka-compr-info-regexp
824 jka-compr-compression-info-list
825 "\\)\\|\\(")
826 "\\)"))
827
828
829(defun jka-compr-install ()
830 "Install jka-compr.
919a07bb
RS
831This adds entries to `file-name-handler-alist' and `auto-mode-alist'
832and `inhibit-first-line-modes-suffixes'."
acd622cc
RS
833
834 (setq jka-compr-file-name-handler-entry
835 (cons (jka-compr-build-file-regexp) 'jka-compr-handler))
836
837 (setq file-name-handler-alist (cons jka-compr-file-name-handler-entry
838 file-name-handler-alist))
839
4eec33ae
RS
840 (setq jka-compr-added-to-file-coding-system-alist nil)
841
acd622cc
RS
842 (mapcar
843 (function (lambda (x)
4eec33ae
RS
844 ;; Don't do multibyte encoding on the compressed files.
845 (let ((elt (cons (jka-compr-info-regexp x)
846 '(no-conversion . no-conversion))))
847 (setq file-coding-system-alist
848 (cons elt file-coding-system-alist))
849 (setq jka-compr-added-to-file-coding-system-alist
850 (cons elt jka-compr-added-to-file-coding-system-alist)))
851
469f4e8c
RS
852 (and (jka-compr-info-strip-extension x)
853 ;; Make entries in auto-mode-alist so that modes
854 ;; are chosen right according to the file names
855 ;; sans `.gz'.
856 (setq auto-mode-alist
857 (cons (list (jka-compr-info-regexp x)
858 nil 'jka-compr)
859 auto-mode-alist))
860 ;; Also add these regexps to
861 ;; inhibit-first-line-modes-suffixes, so that a
862 ;; -*- line in the first file of a compressed tar
863 ;; file doesn't override tar-mode.
864 (setq inhibit-first-line-modes-suffixes
865 (cons (jka-compr-info-regexp x)
866 inhibit-first-line-modes-suffixes)))))
74b2c737
RS
867 jka-compr-compression-info-list)
868 (setq auto-mode-alist
869 (append auto-mode-alist jka-compr-mode-alist-additions)))
acd622cc
RS
870
871
872(defun jka-compr-uninstall ()
873 "Uninstall jka-compr.
99bee6a4 874This removes the entries in `file-name-handler-alist' and `auto-mode-alist'
919a07bb
RS
875and `inhibit-first-line-modes-suffixes' that were added
876by `jka-compr-installed'."
877 ;; Delete from inhibit-first-line-modes-suffixes
878 ;; what jka-compr-install added.
879 (mapcar
880 (function (lambda (x)
881 (and (jka-compr-info-strip-extension x)
882 (setq inhibit-first-line-modes-suffixes
883 (delete (jka-compr-info-regexp x)
884 inhibit-first-line-modes-suffixes)))))
885 jka-compr-compression-info-list)
acd622cc
RS
886
887 (let* ((fnha (cons nil file-name-handler-alist))
888 (last fnha))
889
890 (while (cdr last)
891 (if (eq (cdr (car (cdr last))) 'jka-compr-handler)
892 (setcdr last (cdr (cdr last)))
893 (setq last (cdr last))))
894
895 (setq file-name-handler-alist (cdr fnha)))
896
897 (let* ((ama (cons nil auto-mode-alist))
898 (last ama)
899 entry)
900
901 (while (cdr last)
902 (setq entry (car (cdr last)))
74b2c737
RS
903 (if (or (member entry jka-compr-mode-alist-additions)
904 (and (consp (cdr entry))
905 (eq (nth 2 entry) 'jka-compr)))
acd622cc
RS
906 (setcdr last (cdr (cdr last)))
907 (setq last (cdr last))))
908
4eec33ae
RS
909 (setq auto-mode-alist (cdr ama)))
910
911 (let* ((ama (cons nil file-coding-system-alist))
912 (last ama)
913 entry)
914
915 (while (cdr last)
916 (setq entry (car (cdr last)))
917 (if (member entry jka-compr-added-to-file-coding-system-alist)
918 (setcdr last (cdr (cdr last)))
919 (setq last (cdr last))))
920
921 (setq file-coding-system-alist (cdr ama))))
acd622cc
RS
922
923
924(defun jka-compr-installed-p ()
925 "Return non-nil if jka-compr is installed.
99bee6a4 926The return value is the entry in `file-name-handler-alist' for jka-compr."
acd622cc
RS
927
928 (let ((fnha file-name-handler-alist)
929 (installed nil))
930
931 (while (and fnha (not installed))
932 (and (eq (cdr (car fnha)) 'jka-compr-handler)
933 (setq installed (car fnha)))
934 (setq fnha (cdr fnha)))
935
936 installed))
937
938
939;;; Add the file I/O hook if it does not already exist.
940;;; Make sure that jka-compr-file-name-handler-entry is eq to the
941;;; entry for jka-compr in file-name-handler-alist.
942(and (jka-compr-installed-p)
943 (jka-compr-uninstall))
944
945(jka-compr-install)
946
947
948(provide 'jka-compr)
949
950;; jka-compr.el ends here.