1 ;;; jka-compr.el --- reading/writing/loading compressed files
3 ;; Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2003 Free Software Foundation, Inc.
5 ;; Author: jka@ece.cmu.edu (Jay K. Adams)
9 ;; This file is part of GNU Emacs.
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)
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.
21 ;; You should have received a copy of the GNU General Public License
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.
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.
39 ;; To use jka-compr, invoke the command `auto-compression-mode' (which
40 ;; see), or customize the variable of the same name. Its operation
41 ;; should be transparent to the user (except for messages appearing when
42 ;; a file is being compressed or uncompressed).
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.
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
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
67 ;; jka-compr can coexist with crypt++ 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
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.
92 ;; Andy Norman's ange-ftp was the inspiration for the original jka-compr for
93 ;; Version 18 of Emacs.
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.
103 (defgroup compression nil
104 "Data compression utilities"
107 (defgroup jka-compr nil
108 "jka-compr customization"
112 (defcustom jka-compr-shell
"sh"
113 "*Shell to be used for calling compression programs.
114 The value of this variable only matters if you want to discard the
115 stderr of a compression/decompression program (see the documentation
116 for `jka-compr-compression-info-list')."
120 (defvar jka-compr-use-shell
121 (not (memq system-type
'(ms-dos windows-nt
))))
123 ;;; I have this defined so that .Z files are assumed to be in unix
124 ;;; compress format; and .gz files, in gzip format, and .bz2 files in bzip fmt.
125 (defcustom jka-compr-compression-info-list
127 ;; compr-message compr-prog compr-args
128 ;; uncomp-message uncomp-prog uncomp-args
129 ;; can-append auto-mode-flag strip-extension-flag file-magic-bytes]
130 '(["\\.Z\\(~\\|\\.~[0-9]+~\\)?\\'"
131 "compressing" "compress" ("-c")
132 "uncompressing" "uncompress" ("-c")
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".
138 "bzip2ing" "bzip2" nil
139 "bunzip2ing" "bzip2" ("-d")
142 "zipping" "gzip" ("-c" "-q")
143 "unzipping" "gzip" ("-c" "-q" "-d")
145 ["\\.g?z\\(~\\|\\.~[0-9]+~\\)?\\'"
146 "zipping" "gzip" ("-c" "-q")
147 "unzipping" "gzip" ("-c" "-q" "-d")
150 "List of vectors that describe available compression techniques.
151 Each element, which describes a compression technique, is a vector of
152 the form [REGEXP COMPRESS-MSG COMPRESS-PROGRAM COMPRESS-ARGS
153 UNCOMPRESS-MSG UNCOMPRESS-PROGRAM UNCOMPRESS-ARGS
154 APPEND-FLAG STRIP-EXTENSION-FLAG FILE-MAGIC-CHARS], where:
156 regexp is a regexp that matches filenames that are
157 compressed with this format
159 compress-msg is the message to issue to the user when doing this
160 type of compression (nil means no message)
162 compress-program is a program that performs this compression
164 compress-args is a list of args to pass to the compress program
166 uncompress-msg is the message to issue to the user when doing this
167 type of uncompression (nil means no message)
169 uncompress-program is a program that performs this compression
171 uncompress-args is a list of args to pass to the uncompress program
173 append-flag is non-nil if this compression technique can be
176 strip-extension-flag non-nil means strip the regexp from file names
177 before attempting to set the mode.
179 file-magic-chars is a string of characters that you would find
180 at the beginning of a file compressed in this way.
182 Because of the way `call-process' is defined, discarding the stderr output of
183 a program adds the overhead of starting a shell each time the program is
185 :type
'(repeat (vector regexp
186 (choice :tag
"Compress Message"
187 (string :format
"%v")
188 (const :tag
"No Message" nil
))
189 (string :tag
"Compress Program")
190 (repeat :tag
"Compress Arguments" string
)
191 (choice :tag
"Uncompress Message"
192 (string :format
"%v")
193 (const :tag
"No Message" nil
))
194 (string :tag
"Uncompress Program")
195 (repeat :tag
"Uncompress Arguments" string
)
196 (boolean :tag
"Append")
197 (boolean :tag
"Strip Extension")
198 (string :tag
"Magic Bytes")))
201 (defcustom jka-compr-mode-alist-additions
202 (list (cons "\\.tgz\\'" 'tar-mode
))
203 "A list of pairs to add to `auto-mode-alist' when jka-compr is installed."
204 :type
'(repeat (cons string symbol
))
207 (defcustom jka-compr-load-suffixes
'(".gz")
208 "List of suffixes to try when loading files."
209 :type
'(repeat string
)
212 ;; List of all the elements we actually added to file-coding-system-alist.
213 (defvar jka-compr-added-to-file-coding-system-alist nil
)
215 (defvar jka-compr-file-name-handler-entry
217 "The entry in `file-name-handler-alist' used by the jka-compr I/O functions.")
219 (defvar jka-compr-really-do-compress nil
220 "Non-nil in a buffer whose visited file was uncompressed on visiting it.")
221 (put 'jka-compr-really-do-compress
'permanent-local t
)
223 ;;; Functions for accessing the return value of jka-compr-get-compression-info
224 (defun jka-compr-info-regexp (info) (aref info
0))
225 (defun jka-compr-info-compress-message (info) (aref info
1))
226 (defun jka-compr-info-compress-program (info) (aref info
2))
227 (defun jka-compr-info-compress-args (info) (aref info
3))
228 (defun jka-compr-info-uncompress-message (info) (aref info
4))
229 (defun jka-compr-info-uncompress-program (info) (aref info
5))
230 (defun jka-compr-info-uncompress-args (info) (aref info
6))
231 (defun jka-compr-info-can-append (info) (aref info
7))
232 (defun jka-compr-info-strip-extension (info) (aref info
8))
233 (defun jka-compr-info-file-magic-bytes (info) (aref info
9))
236 (defun jka-compr-get-compression-info (filename)
237 "Return information about the compression scheme of FILENAME.
238 The determination as to which compression scheme, if any, to use is
239 based on the filename itself and `jka-compr-compression-info-list'."
240 (catch 'compression-info
241 (let ((case-fold-search nil
))
243 (function (lambda (x)
244 (and (string-match (jka-compr-info-regexp x
) filename
)
245 (throw 'compression-info x
))))
246 jka-compr-compression-info-list
)
250 (put 'compression-error
'error-conditions
'(compression-error file-error error
))
253 (defvar jka-compr-acceptable-retval-list
'(0 2 141))
256 (defun jka-compr-error (prog args infile message
&optional errfile
)
258 (let ((errbuf (get-buffer-create " *jka-compr-error*"))
259 (curbuf (current-buffer)))
260 (with-current-buffer errbuf
261 (widen) (erase-buffer)
262 (insert (format "Error while executing \"%s %s < %s\"\n\n"
264 (mapconcat 'identity args
" ")
268 (insert-file-contents errfile
)))
269 (display-buffer errbuf
))
271 (signal 'compression-error
272 (list "Opening input file" (format "error %s" message
) infile
)))
275 (defcustom jka-compr-dd-program
"/bin/dd"
276 "How to invoke `dd'."
281 (defvar jka-compr-dd-blocksize
256)
284 (defun jka-compr-partial-uncompress (prog message args infile beg len
)
285 "Call program PROG with ARGS args taking input from INFILE.
286 Fourth and fifth args, BEG and LEN, specify which part of the output
287 to keep: LEN chars starting BEG chars from the beginning."
288 (let ((start (point))
290 (if (and jka-compr-use-shell jka-compr-dd-program
)
291 ;; Put the uncompression output through dd
292 ;; to discard the part we don't want.
293 (let ((skip (/ beg jka-compr-dd-blocksize
))
294 (err-file (jka-compr-make-temp-name))
296 ;; Update PREFIX based on the text that we won't read in.
297 (setq prefix
(- beg
(* skip jka-compr-dd-blocksize
))
298 count
(and len
(1+ (/ (+ len prefix
) jka-compr-dd-blocksize
))))
300 (or (memq (call-process
301 jka-compr-shell infile t nil
"-c"
303 "%s %s 2> %s | %s bs=%d skip=%d %s 2> %s"
305 (mapconcat 'identity args
" ")
308 jka-compr-dd-blocksize
310 ;; dd seems to be unreliable about
311 ;; providing the last block. So, always
312 ;; read one more than you think you need.
313 (if count
(format "count=%d" (1+ count
)) "")
315 jka-compr-acceptable-retval-list
)
316 (jka-compr-error prog args infile message err-file
))
317 (jka-compr-delete-temp-file err-file
)))
318 ;; Run the uncompression program directly.
319 ;; We get the whole file and must delete what we don't want.
320 (jka-compr-call-process prog message infile t nil args
))
322 ;; Delete the stuff after what we want, if there is any.
325 (< (+ start prefix len
) (point))
326 (delete-region (+ start prefix len
) (point)))
328 ;; Delete the stuff before what we want.
329 (delete-region start
(+ start prefix
))))
332 (defun jka-compr-call-process (prog message infile output temp args
)
333 (if jka-compr-use-shell
335 (let ((err-file (jka-compr-make-temp-name))
336 (coding-system-for-read (or coding-system-for-read
'undecided
))
337 (coding-system-for-write 'no-conversion
))
342 (call-process jka-compr-shell infile
343 (if (stringp output
) nil output
)
346 (format "%s %s 2> %s %s"
348 (mapconcat 'identity args
" ")
353 jka-compr-acceptable-retval-list
)
355 (jka-compr-error prog args infile message err-file
))
357 (jka-compr-delete-temp-file err-file
)))
363 (if (stringp output
) temp output
)
366 (jka-compr-error prog args infile message
))
368 (and (stringp output
)
369 (with-current-buffer temp
370 (write-region (point-min) (point-max) output
)
374 ;;; Support for temp files. Much of this was inspired if not lifted
377 (defcustom jka-compr-temp-name-template
378 (expand-file-name "jka-com" temporary-file-directory
)
379 "Prefix added to all temp files created by jka-compr.
380 There should be no more than seven characters after the final `/'."
384 (defun jka-compr-make-temp-name (&optional local-copy
)
385 "This routine will return the name of a new file."
386 (make-temp-file jka-compr-temp-name-template
))
388 (defalias 'jka-compr-delete-temp-file
'delete-file
)
391 (defun jka-compr-write-region (start end file
&optional append visit
)
392 (let* ((filename (expand-file-name file
))
393 (visit-file (if (stringp visit
) (expand-file-name visit
) filename
))
394 (info (jka-compr-get-compression-info visit-file
))
395 (magic (and info
(jka-compr-info-file-magic-bytes info
))))
397 ;; If START is nil, use the whole buffer.
399 (setq start
1 end
(1+ (buffer-size))))
401 ;; If we uncompressed this file when visiting it,
402 ;; then recompress it when writing it
403 ;; even if the contents look compressed already.
404 (if (and jka-compr-really-do-compress
406 (eq end
(1+ (buffer-size))))
410 ;; If the contents to be written out
411 ;; are properly compressed already,
412 ;; don't try to compress them over again.
414 (equal (if (stringp start
)
415 (substring start
0 (min (length start
)
417 (buffer-substring start
419 (+ start
(length magic
)))))
421 (let ((can-append (jka-compr-info-can-append info
))
422 (compress-program (jka-compr-info-compress-program info
))
423 (compress-message (jka-compr-info-compress-message info
))
424 (uncompress-program (jka-compr-info-uncompress-program info
))
425 (uncompress-message (jka-compr-info-uncompress-message info
))
426 (compress-args (jka-compr-info-compress-args info
))
427 (uncompress-args (jka-compr-info-uncompress-args info
))
428 (base-name (file-name-nondirectory visit-file
))
429 temp-file temp-buffer
430 ;; we need to leave `last-coding-system-used' set to its
431 ;; value after calling write-region the first time, so
432 ;; that `basic-save-buffer' sees the right value.
433 (coding-system-used last-coding-system-used
))
435 (setq temp-buffer
(get-buffer-create " *jka-compr-wr-temp*"))
436 (with-current-buffer temp-buffer
437 (widen) (erase-buffer))
441 (file-exists-p filename
))
443 (let* ((local-copy (file-local-copy filename
))
444 (local-file (or local-copy filename
)))
446 (setq temp-file local-file
))
448 (setq temp-file
(jka-compr-make-temp-name)))
452 (message "%s %s..." compress-message base-name
))
454 (jka-compr-run-real-handler 'write-region
455 (list start end temp-file t
'dont
))
456 ;; save value used by the real write-region
457 (setq coding-system-used last-coding-system-used
)
459 ;; Here we must read the output of compress program as is
460 ;; without any code conversion.
461 (let ((coding-system-for-read 'no-conversion
))
462 (jka-compr-call-process compress-program
463 (concat compress-message
470 (with-current-buffer temp-buffer
471 (let ((coding-system-for-write 'no-conversion
))
472 (if (memq system-type
'(ms-dos windows-nt
))
473 (setq buffer-file-type t
) )
474 (jka-compr-run-real-handler 'write-region
475 (list (point-min) (point-max)
477 (and append can-append
) 'dont
))
480 (jka-compr-delete-temp-file temp-file
)
484 (message "%s %s...done" compress-message base-name
))
488 (setq buffer-file-name filename
)
489 (setq jka-compr-really-do-compress t
)
490 (set-visited-file-modtime))
492 (setq buffer-file-name visit
)
493 (let ((buffer-file-name filename
))
494 (set-visited-file-modtime))))
496 (and (or (eq visit t
)
499 (message "Wrote %s" visit-file
))
501 ;; ensure `last-coding-system-used' has an appropriate value
502 (setq last-coding-system-used coding-system-used
)
506 (jka-compr-run-real-handler 'write-region
507 (list start end filename append visit
)))))
510 (defun jka-compr-insert-file-contents (file &optional visit beg end replace
)
511 (barf-if-buffer-read-only)
515 (error "Attempt to visit less than an entire file"))
517 (let* ((filename (expand-file-name file
))
518 (info (jka-compr-get-compression-info filename
)))
522 (let ((uncompress-message (jka-compr-info-uncompress-message info
))
523 (uncompress-program (jka-compr-info-uncompress-program info
))
524 (uncompress-args (jka-compr-info-uncompress-args info
))
525 (base-name (file-name-nondirectory filename
))
528 (jka-compr-run-real-handler 'file-local-copy
(list filename
)))
532 (setq local-file
(or local-copy filename
))
536 (setq buffer-file-name filename
))
538 (unwind-protect ; to make sure local-copy gets deleted
544 (message "%s %s..." uncompress-message base-name
))
546 (condition-case error-code
548 (let ((coding-system-for-read 'no-conversion
))
550 (goto-char (point-min)))
553 (jka-compr-partial-uncompress uncompress-program
554 (concat uncompress-message
562 ;; If visiting, bind off buffer-file-name so that
563 ;; file-locking will not ask whether we should
564 ;; really edit the buffer.
565 (let ((buffer-file-name
566 (if visit nil buffer-file-name
)))
567 (jka-compr-call-process uncompress-program
568 (concat uncompress-message
574 (setq size
(- (point) start
))
576 (let* ((del-beg (point))
577 (del-end (+ del-beg size
)))
578 (delete-region del-beg
579 (min del-end
(point-max)))))
582 (if (and (eq (car error-code
) 'file-error
)
583 (eq (nth 3 error-code
) local-file
))
585 (setq notfound error-code
)
587 (cons "Opening input file"
588 (nthcdr 2 error-code
))))
589 (signal (car error-code
) (cdr error-code
))))))
593 (file-exists-p local-copy
)
594 (delete-file local-copy
)))
596 (decode-coding-inserted-region
597 (point) (+ (point) size
)
598 (jka-compr-byte-compiler-base-file-name file
)
599 visit beg end replace
)
605 (setq buffer-file-name filename
)
606 (setq jka-compr-really-do-compress t
)
607 (set-visited-file-modtime)))
611 (message "%s %s...done" uncompress-message base-name
))
617 (cons "Opening input file" (nth 2 notfound
))))
619 ;; This is done in insert-file-contents after we return.
620 ;; That is a little weird, but better to go along with it now
621 ;; than to change it now.
623 ;;; ;; Run the functions that insert-file-contents would.
624 ;;; (let ((p after-insert-file-functions)
627 ;;; (setq insval (funcall (car p) size))
630 ;;; (or (integerp insval)
631 ;;; (signal 'wrong-type-argument
632 ;;; (list 'integerp insval)))
633 ;;; (setq size insval)))
634 ;;; (setq p (cdr p))))
636 (list filename size
))
638 (jka-compr-run-real-handler 'insert-file-contents
639 (list file visit beg end replace
)))))
642 (defun jka-compr-file-local-copy (file)
643 (let* ((filename (expand-file-name file
))
644 (info (jka-compr-get-compression-info filename
)))
648 (let ((uncompress-message (jka-compr-info-uncompress-message info
))
649 (uncompress-program (jka-compr-info-uncompress-program info
))
650 (uncompress-args (jka-compr-info-uncompress-args info
))
651 (base-name (file-name-nondirectory filename
))
653 (jka-compr-run-real-handler 'file-local-copy
(list filename
)))
654 (temp-file (jka-compr-make-temp-name t
))
655 (temp-buffer (get-buffer-create " *jka-compr-flc-temp*"))
659 (setq local-file
(or local-copy filename
))
663 (with-current-buffer temp-buffer
667 (message "%s %s..." uncompress-message base-name
))
669 ;; Here we must read the output of uncompress program
670 ;; and write it to TEMP-FILE without any code
671 ;; conversion. An appropriate code conversion (if
672 ;; necessary) is done by the later I/O operation
674 (let ((coding-system-for-read 'no-conversion
)
675 (coding-system-for-write 'no-conversion
))
677 (jka-compr-call-process uncompress-program
678 (concat uncompress-message
687 (message "%s %s...done" uncompress-message base-name
))
690 (point-min) (point-max) temp-file nil
'dont
)))
694 (file-exists-p local-copy
)
695 (delete-file local-copy
))
697 (kill-buffer temp-buffer
))
701 (jka-compr-run-real-handler 'file-local-copy
(list filename
)))))
704 ;;; Support for loading compressed files.
705 (defun jka-compr-load (file &optional noerror nomessage nosuffix
)
706 "Documented as original."
708 (let* ((local-copy (jka-compr-file-local-copy file
))
709 (load-file (or local-copy file
)))
713 (let (inhibit-file-name-operation
714 inhibit-file-name-handlers
)
716 (message "Loading %s..." file
))
718 (let ((load-force-doc-strings t
))
719 (load load-file noerror t t
))
721 (message "Loading %s...done." file
))
722 ;; Fix up the load history to point at the right library.
723 (let ((l (assoc load-file load-history
)))
724 ;; Remove .gz and .elc?.
725 (while (file-name-extension file
)
726 (setq file
(file-name-sans-extension file
)))
729 (jka-compr-delete-temp-file local-copy
))
733 (defun jka-compr-byte-compiler-base-file-name (file)
734 (let ((info (jka-compr-get-compression-info file
)))
735 (if (and info
(jka-compr-info-strip-extension info
))
737 (substring file
0 (string-match (jka-compr-info-regexp info
) file
)))
740 (put 'write-region
'jka-compr
'jka-compr-write-region
)
741 (put 'insert-file-contents
'jka-compr
'jka-compr-insert-file-contents
)
742 (put 'file-local-copy
'jka-compr
'jka-compr-file-local-copy
)
743 (put 'load
'jka-compr
'jka-compr-load
)
744 (put 'byte-compiler-base-file-name
'jka-compr
745 'jka-compr-byte-compiler-base-file-name
)
747 (defvar jka-compr-inhibit nil
748 "Non-nil means inhibit automatic uncompression temporarily.
749 Lisp programs can bind this to t to do that.
750 It is not recommended to set this variable permanently to anything but nil.")
752 (put 'jka-compr-handler
'safe-magic t
)
753 (defun jka-compr-handler (operation &rest args
)
755 (let ((jka-op (get operation
'jka-compr
)))
756 (if (and jka-op
(not jka-compr-inhibit
))
758 (jka-compr-run-real-handler operation args
)))))
760 ;; If we are given an operation that we don't handle,
761 ;; call the Emacs primitive for that operation,
762 ;; and manipulate the inhibit variables
763 ;; to prevent the primitive from calling our handler again.
764 (defun jka-compr-run-real-handler (operation args
)
765 (let ((inhibit-file-name-handlers
766 (cons 'jka-compr-handler
767 (and (eq inhibit-file-name-operation operation
)
768 inhibit-file-name-handlers
)))
769 (inhibit-file-name-operation operation
))
770 (apply operation args
)))
773 (defun jka-compr-build-file-regexp ()
775 'jka-compr-info-regexp
776 jka-compr-compression-info-list
780 (defun jka-compr-install ()
782 This adds entries to `file-name-handler-alist' and `auto-mode-alist'
783 and `inhibit-first-line-modes-suffixes'."
785 (setq jka-compr-file-name-handler-entry
786 (cons (jka-compr-build-file-regexp) 'jka-compr-handler
))
788 (setq file-name-handler-alist
(cons jka-compr-file-name-handler-entry
789 file-name-handler-alist
))
791 (setq jka-compr-added-to-file-coding-system-alist nil
)
794 (function (lambda (x)
795 ;; Don't do multibyte encoding on the compressed files.
796 (let ((elt (cons (jka-compr-info-regexp x
)
797 '(no-conversion . no-conversion
))))
798 (setq file-coding-system-alist
799 (cons elt file-coding-system-alist
))
800 (setq jka-compr-added-to-file-coding-system-alist
801 (cons elt jka-compr-added-to-file-coding-system-alist
)))
803 (and (jka-compr-info-strip-extension x
)
804 ;; Make entries in auto-mode-alist so that modes
805 ;; are chosen right according to the file names
807 (setq auto-mode-alist
808 (cons (list (jka-compr-info-regexp x
)
811 ;; Also add these regexps to
812 ;; inhibit-first-line-modes-suffixes, so that a
813 ;; -*- line in the first file of a compressed tar
814 ;; file doesn't override tar-mode.
815 (setq inhibit-first-line-modes-suffixes
816 (cons (jka-compr-info-regexp x
)
817 inhibit-first-line-modes-suffixes
)))))
818 jka-compr-compression-info-list
)
819 (setq auto-mode-alist
820 (append auto-mode-alist jka-compr-mode-alist-additions
))
822 ;; Make sure that (load "foo") will find /bla/foo.el.gz.
825 (mapcar (lambda (suffix)
827 (mapcar (lambda (ext) (concat suffix ext
))
828 jka-compr-load-suffixes
)))
832 (defun jka-compr-uninstall ()
833 "Uninstall jka-compr.
834 This removes the entries in `file-name-handler-alist' and `auto-mode-alist'
835 and `inhibit-first-line-modes-suffixes' that were added
836 by `jka-compr-installed'."
837 ;; Delete from inhibit-first-line-modes-suffixes
838 ;; what jka-compr-install added.
840 (function (lambda (x)
841 (and (jka-compr-info-strip-extension x
)
842 (setq inhibit-first-line-modes-suffixes
843 (delete (jka-compr-info-regexp x
)
844 inhibit-first-line-modes-suffixes
)))))
845 jka-compr-compression-info-list
)
847 (let* ((fnha (cons nil file-name-handler-alist
))
851 (if (eq (cdr (car (cdr last
))) 'jka-compr-handler
)
852 (setcdr last
(cdr (cdr last
)))
853 (setq last
(cdr last
))))
855 (setq file-name-handler-alist
(cdr fnha
)))
857 (let* ((ama (cons nil auto-mode-alist
))
862 (setq entry
(car (cdr last
)))
863 (if (or (member entry jka-compr-mode-alist-additions
)
864 (and (consp (cdr entry
))
865 (eq (nth 2 entry
) 'jka-compr
)))
866 (setcdr last
(cdr (cdr last
)))
867 (setq last
(cdr last
))))
869 (setq auto-mode-alist
(cdr ama
)))
871 (let* ((ama (cons nil file-coding-system-alist
))
876 (setq entry
(car (cdr last
)))
877 (if (member entry jka-compr-added-to-file-coding-system-alist
)
878 (setcdr last
(cdr (cdr last
)))
879 (setq last
(cdr last
))))
881 (setq file-coding-system-alist
(cdr ama
)))
883 ;; Remove the suffixes that were added by jka-compr.
885 (re (jka-compr-build-file-regexp)))
886 (dolist (suffix load-suffixes
)
887 (unless (string-match re suffix
)
888 (push suffix suffixes
)))
889 (setq load-suffixes
(nreverse suffixes
))))
892 (defun jka-compr-installed-p ()
893 "Return non-nil if jka-compr is installed.
894 The return value is the entry in `file-name-handler-alist' for jka-compr."
896 (let ((fnha file-name-handler-alist
)
899 (while (and fnha
(not installed
))
900 (and (eq (cdr (car fnha
)) 'jka-compr-handler
)
901 (setq installed
(car fnha
)))
902 (setq fnha
(cdr fnha
)))
907 ;;; Add the file I/O hook if it does not already exist.
908 ;;; Make sure that jka-compr-file-name-handler-entry is eq to the
909 ;;; entry for jka-compr in file-name-handler-alist.
910 (and (jka-compr-installed-p)
911 (jka-compr-uninstall))
915 (define-minor-mode auto-compression-mode
916 "Toggle automatic file compression and uncompression.
917 With prefix argument ARG, turn auto compression on if positive, else off.
918 Returns the new status of auto compression (non-nil means on)."
919 :global t
:group
'jka-compr
920 (let* ((installed (jka-compr-installed-p))
921 (flag auto-compression-mode
))
923 ((and flag installed
) t
) ; already installed
924 ((and (not flag
) (not installed
)) nil
) ; already not installed
925 (flag (jka-compr-install))
926 (t (jka-compr-uninstall)))))
930 (defmacro with-auto-compression-mode
(&rest body
)
931 "Evalute BODY with automatic file compression and uncompression enabled."
932 (let ((already-installed (make-symbol "already-installed")))
933 `(let ((,already-installed
(jka-compr-installed-p)))
936 (unless ,already-installed
939 (unless ,already-installed
940 (jka-compr-uninstall))))))
941 (put 'with-auto-compression-mode
'lisp-indent-function
0)
946 ;;; jka-compr.el ends here