1 ;;; jka-compr.el --- reading/writing/loading compressed files
3 ;; Copyright (C) 1993-1995, 1997, 1999-2011 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 3 of the License, or
14 ;; (at your option) any later version.
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. If not, see <http://www.gnu.org/licenses/>.
26 ;; This package implements low-level support for reading, writing,
27 ;; and loading compressed files. It hooks into the low-level file
28 ;; I/O functions (including write-region and insert-file-contents) so
29 ;; that they automatically compress or uncompress a file if the file
30 ;; appears to need it (based on the extension of the file name).
31 ;; Packages like Rmail, VM, GNUS, and Info should be able to work
32 ;; with compressed files without modification.
37 ;; To use jka-compr, invoke the command `auto-compression-mode' (which
38 ;; see), or customize the variable of the same name. Its operation
39 ;; should be transparent to the user (except for messages appearing when
40 ;; a file is being compressed or uncompressed).
42 ;; The variable, jka-compr-compression-info-list can be used to
43 ;; customize jka-compr to work with other compression programs.
44 ;; The default value of this variable allows jka-compr to work with
45 ;; Unix compress and gzip.
47 ;; If you don't want messages about compressing and decompressing
48 ;; to show up in the echo area, you can set the compress-msg and
49 ;; decompress-msg fields of the jka-compr-compression-info-list to
56 ;; jka-compr can coexist with crypt++ if you take all the decompression
57 ;; entries out of the crypt-encoding-list. Clearly problems will arise if
58 ;; you have two programs trying to compress/decompress files. jka-compr
59 ;; will not "work with" crypt++ in the following sense: you won't be able to
60 ;; decode encrypted compressed files--that is, files that have been
61 ;; compressed then encrypted (in that order). Theoretically, crypt++ and
62 ;; jka-compr could properly handle a file that has been encrypted then
63 ;; compressed, but there is little point in trying to compress an encrypted
70 ;; jka-compr is a V19 adaptation of jka-compr for V18 of Emacs. Many people
71 ;; have made helpful suggestions, reported bugs, and even fixed bugs in
72 ;; jka-compr. I recall the following people as being particularly helpful.
81 ;; Andy Norman's ange-ftp was the inspiration for the original jka-compr for
82 ;; Version 18 of Emacs.
84 ;; After I had made progress on the original jka-compr for V18, I learned of a
85 ;; package written by Kazushi Jam Marukawa, called jam-zcat, that did exactly
86 ;; what I was trying to do. I looked over the jam-zcat source code and
87 ;; probably got some ideas from it.
92 (require 'jka-cmpr-hook
)
94 (defcustom jka-compr-shell
"sh"
95 "Shell to be used for calling compression programs.
96 NOTE: Not used in MS-DOS and Windows systems."
100 (defvar jka-compr-use-shell
101 (not (memq system-type
'(ms-dos windows-nt
))))
103 (defvar jka-compr-really-do-compress nil
104 "Non-nil in a buffer whose visited file was uncompressed on visiting it.
105 This means compress the data on writing the file, even if the
106 data appears to be compressed already.")
107 (make-variable-buffer-local 'jka-compr-really-do-compress
)
108 (put 'jka-compr-really-do-compress
'permanent-local t
)
111 (put 'compression-error
'error-conditions
'(compression-error file-error error
))
114 (defvar jka-compr-acceptable-retval-list
'(0 2 141))
117 (defun jka-compr-error (prog args infile message
&optional errfile
)
119 (let ((errbuf (get-buffer-create " *jka-compr-error*")))
120 (with-current-buffer errbuf
121 (widen) (erase-buffer)
122 (insert (format "Error while executing \"%s %s < %s\"\n\n"
124 (mapconcat 'identity args
" ")
128 (insert-file-contents errfile
)))
129 (display-buffer errbuf
))
131 (signal 'compression-error
132 (list "Opening input file" (format "error %s" message
) infile
)))
135 (defcustom jka-compr-dd-program
"/bin/dd"
136 "How to invoke `dd'."
141 (defvar jka-compr-dd-blocksize
256)
144 (defun jka-compr-partial-uncompress (prog message args infile beg len
)
145 "Call program PROG with ARGS args taking input from INFILE.
146 Fourth and fifth args, BEG and LEN, specify which part of the output
147 to keep: LEN chars starting BEG chars from the beginning."
148 (let ((start (point))
150 (if (and jka-compr-use-shell jka-compr-dd-program
)
151 ;; Put the uncompression output through dd
152 ;; to discard the part we don't want.
153 (let ((skip (/ beg jka-compr-dd-blocksize
))
154 (err-file (jka-compr-make-temp-name))
155 ;; call-process barfs if default-directory is inaccessible.
157 (if (and default-directory
158 (file-accessible-directory-p default-directory
))
160 (file-name-directory infile
)))
162 ;; Update PREFIX based on the text that we won't read in.
163 (setq prefix
(- beg
(* skip jka-compr-dd-blocksize
))
164 count
(and len
(1+ (/ (+ len prefix
) jka-compr-dd-blocksize
))))
166 (or (memq (call-process
167 jka-compr-shell infile t nil
"-c"
168 ;; Windows shells need the program file name
169 ;; after the pipe symbol be quoted if they use
170 ;; forward slashes as directory separators.
172 "%s %s 2> %s | \"%s\" bs=%d skip=%d %s 2> %s"
174 (mapconcat 'identity args
" ")
177 jka-compr-dd-blocksize
179 ;; dd seems to be unreliable about
180 ;; providing the last block. So, always
181 ;; read one more than you think you need.
182 (if count
(format "count=%d" (1+ count
)) "")
184 jka-compr-acceptable-retval-list
)
185 (jka-compr-error prog args infile message err-file
))
186 (delete-file err-file
)))
188 ;; Run the uncompression program directly.
189 ;; We get the whole file and must delete what we don't want.
190 (jka-compr-call-process prog message infile t nil args
))
192 ;; Delete the stuff after what we want, if there is any.
195 (< (+ start prefix len
) (point))
196 (delete-region (+ start prefix len
) (point)))
198 ;; Delete the stuff before what we want.
199 (delete-region start
(+ start prefix
))))
202 (defun jka-compr-call-process (prog message infile output temp args
)
203 ;; call-process barfs if default-directory is inaccessible.
204 (let ((default-directory
205 (if (and default-directory
206 (file-accessible-directory-p default-directory
))
208 (file-name-directory infile
))))
209 (if jka-compr-use-shell
210 (let ((err-file (jka-compr-make-temp-name))
211 (coding-system-for-read (or coding-system-for-read
'undecided
))
212 (coding-system-for-write 'no-conversion
))
215 (call-process jka-compr-shell infile
216 (if (stringp output
) nil output
)
219 (format "%s %s 2> %s %s"
221 (mapconcat 'identity args
" ")
226 jka-compr-acceptable-retval-list
)
227 (jka-compr-error prog args infile message err-file
))
228 (delete-file err-file
)))
231 prog infile
(if (stringp output
) temp output
)
233 (jka-compr-error prog args infile message
))
234 (and (stringp output
)
235 (with-current-buffer temp
236 (write-region (point-min) (point-max) output
)
240 ;; Support for temp files. Much of this was inspired if not lifted
243 (defcustom jka-compr-temp-name-template
244 (expand-file-name "jka-com" temporary-file-directory
)
245 "Prefix added to all temp files created by jka-compr.
246 There should be no more than seven characters after the final `/'."
250 (defun jka-compr-make-temp-name (&optional local-copy
)
251 "This routine will return the name of a new file."
252 (make-temp-file jka-compr-temp-name-template
))
254 (defun jka-compr-write-region (start end file
&optional append visit
)
255 (let* ((filename (expand-file-name file
))
256 (visit-file (if (stringp visit
) (expand-file-name visit
) filename
))
257 (info (jka-compr-get-compression-info visit-file
))
258 (magic (and info
(jka-compr-info-file-magic-bytes info
))))
260 ;; If we uncompressed this file when visiting it,
261 ;; then recompress it when writing it
262 ;; even if the contents look compressed already.
263 (if (and jka-compr-really-do-compress
265 (= (- end start
) (buffer-size))))
269 ;; If the contents to be written out
270 ;; are properly compressed already,
271 ;; don't try to compress them over again.
273 (equal (if (stringp start
)
274 (substring start
0 (min (length start
)
276 (let* ((from (or start
(point-min)))
277 (to (min (or end
(point-max))
278 (+ from
(length magic
)))))
279 (buffer-substring from to
)))
281 (let ((can-append (jka-compr-info-can-append info
))
282 (compress-program (jka-compr-info-compress-program info
))
283 (compress-message (jka-compr-info-compress-message info
))
284 (compress-args (jka-compr-info-compress-args info
))
285 (base-name (file-name-nondirectory visit-file
))
286 temp-file temp-buffer
287 ;; we need to leave `last-coding-system-used' set to its
288 ;; value after calling write-region the first time, so
289 ;; that `basic-save-buffer' sees the right value.
290 (coding-system-used last-coding-system-used
))
293 (error "No compression program defined"))
295 (setq temp-buffer
(get-buffer-create " *jka-compr-wr-temp*"))
296 (with-current-buffer temp-buffer
297 (widen) (erase-buffer))
301 (file-exists-p filename
))
303 (let* ((local-copy (file-local-copy filename
))
304 (local-file (or local-copy filename
)))
306 (setq temp-file local-file
))
308 (setq temp-file
(jka-compr-make-temp-name)))
312 (message "%s %s..." compress-message base-name
))
314 (jka-compr-run-real-handler 'write-region
315 (list start end temp-file t
'dont
))
316 ;; save value used by the real write-region
317 (setq coding-system-used last-coding-system-used
)
319 ;; Here we must read the output of compress program as is
320 ;; without any code conversion.
321 (let ((coding-system-for-read 'no-conversion
))
322 (jka-compr-call-process compress-program
323 (concat compress-message
330 (with-current-buffer temp-buffer
331 (let ((coding-system-for-write 'no-conversion
))
332 (if (memq system-type
'(ms-dos windows-nt
))
333 (setq buffer-file-type t
) )
334 (jka-compr-run-real-handler 'write-region
335 (list (point-min) (point-max)
337 (and append can-append
) 'dont
))
340 (delete-file temp-file
)
344 (message "%s %s...done" compress-message base-name
))
348 (setq buffer-file-name filename
)
349 (setq jka-compr-really-do-compress t
)
350 (set-visited-file-modtime))
352 (setq buffer-file-name visit
)
353 (let ((buffer-file-name filename
))
354 (set-visited-file-modtime))))
356 (and (or (eq visit t
)
359 (message "Wrote %s" visit-file
))
361 ;; ensure `last-coding-system-used' has an appropriate value
362 (setq last-coding-system-used coding-system-used
)
366 (jka-compr-run-real-handler 'write-region
367 (list start end filename append visit
)))))
370 (defun jka-compr-insert-file-contents (file &optional visit beg end replace
)
371 (barf-if-buffer-read-only)
375 (error "Attempt to visit less than an entire file"))
377 (let* ((filename (expand-file-name file
))
378 (info (jka-compr-get-compression-info filename
)))
382 (jka-compr-run-real-handler 'insert-file-contents
383 (list file visit beg end replace
))
385 (let ((uncompress-message (jka-compr-info-uncompress-message info
))
386 (uncompress-program (jka-compr-info-uncompress-program info
))
387 (uncompress-args (jka-compr-info-uncompress-args info
))
388 (base-name (file-name-nondirectory filename
))
391 (jka-compr-run-real-handler 'file-local-copy
(list filename
)))
395 (setq local-file
(or local-copy filename
))
399 (setq buffer-file-name filename
))
401 (unwind-protect ; to make sure local-copy gets deleted
407 (message "%s %s..." uncompress-message base-name
))
409 (condition-case error-code
411 (let ((coding-system-for-read 'no-conversion
))
413 (goto-char (point-min)))
416 (jka-compr-partial-uncompress uncompress-program
417 (concat uncompress-message
425 ;; If visiting, bind off buffer-file-name so that
426 ;; file-locking will not ask whether we should
427 ;; really edit the buffer.
428 (let ((buffer-file-name
429 (if visit nil buffer-file-name
)))
430 (jka-compr-call-process uncompress-program
431 (concat uncompress-message
437 (setq size
(- (point) start
))
439 (delete-region (point) (point-max)))
442 ;; If the file we wanted to uncompress does not exist,
443 ;; handle that according to VISIT as `insert-file-contents'
444 ;; would, maybe signaling the same error it normally would.
445 (if (and (eq (car error-code
) 'file-error
)
446 (eq (nth 3 error-code
) local-file
))
448 (setq notfound error-code
)
450 (cons "Opening input file"
451 (nthcdr 2 error-code
))))
452 ;; If the uncompression program can't be found,
453 ;; signal that as a non-file error
454 ;; so that find-file-noselect-1 won't handle it.
455 (if (and (eq (car error-code
) 'file-error
)
456 (equal (cadr error-code
) "Searching for program"))
457 (error "Uncompression program `%s' not found"
459 (signal (car error-code
) (cdr error-code
))))))
463 (file-exists-p local-copy
)
464 (delete-file local-copy
)))
467 (decode-coding-inserted-region
468 (point) (+ (point) size
)
469 (jka-compr-byte-compiler-base-file-name file
)
470 visit beg end replace
))
476 (setq buffer-file-name filename
)
477 (setq jka-compr-really-do-compress t
)
478 (set-visited-file-modtime)))
482 (message "%s %s...done" uncompress-message base-name
))
488 (cons "Opening input file" (nth 2 notfound
))))
490 ;; This is done in insert-file-contents after we return.
491 ;; That is a little weird, but better to go along with it now
492 ;; than to change it now.
494 ;; ;; Run the functions that insert-file-contents would.
495 ;; (let ((p after-insert-file-functions)
498 ;; (setq insval (funcall (car p) size))
501 ;; (or (integerp insval)
502 ;; (signal 'wrong-type-argument
503 ;; (list 'integerp insval)))
504 ;; (setq size insval)))
505 ;; (setq p (cdr p))))
507 (or (jka-compr-info-compress-program info
)
508 (message "You can't save this buffer because compression program is not defined"))
510 (list filename size
)))))
513 (defun jka-compr-file-local-copy (file)
514 (let* ((filename (expand-file-name file
))
515 (info (jka-compr-get-compression-info filename
)))
519 (let ((uncompress-message (jka-compr-info-uncompress-message info
))
520 (uncompress-program (jka-compr-info-uncompress-program info
))
521 (uncompress-args (jka-compr-info-uncompress-args info
))
522 (base-name (file-name-nondirectory filename
))
524 (jka-compr-run-real-handler 'file-local-copy
(list filename
)))
525 (temp-file (jka-compr-make-temp-name t
))
526 (temp-buffer (get-buffer-create " *jka-compr-flc-temp*"))
529 (setq local-file
(or local-copy filename
))
533 (with-current-buffer temp-buffer
537 (message "%s %s..." uncompress-message base-name
))
539 ;; Here we must read the output of uncompress program
540 ;; and write it to TEMP-FILE without any code
541 ;; conversion. An appropriate code conversion (if
542 ;; necessary) is done by the later I/O operation
544 (let ((coding-system-for-read 'no-conversion
)
545 (coding-system-for-write 'no-conversion
))
547 (jka-compr-call-process uncompress-program
548 (concat uncompress-message
557 (message "%s %s...done" uncompress-message base-name
))
560 (point-min) (point-max) temp-file nil
'dont
)))
564 (file-exists-p local-copy
)
565 (delete-file local-copy
))
567 (kill-buffer temp-buffer
))
571 (jka-compr-run-real-handler 'file-local-copy
(list filename
)))))
574 ;; Support for loading compressed files.
575 (defun jka-compr-load (file &optional noerror nomessage nosuffix
)
576 "Documented as original."
578 (let* ((local-copy (jka-compr-file-local-copy file
))
579 (load-file (or local-copy file
)))
583 (let (inhibit-file-name-operation
584 inhibit-file-name-handlers
)
586 (message "Loading %s..." file
))
588 (let ((load-force-doc-strings t
))
589 (load load-file noerror t t
))
591 (message "Loading %s...done." file
))
592 ;; Fix up the load history to point at the right library.
593 (let ((l (or (assoc load-file load-history
)
594 ;; On MS-Windows, if load-file is in
595 ;; temporary-file-directory, it will look like
596 ;; "c:/DOCUME~1/USER/LOCALS~1/foo", whereas
597 ;; readevalloop will record its truename in
598 ;; load-history. Therefore try truename if the
599 ;; original name is not in load-history.
600 (assoc (file-truename load-file
) load-history
))))
601 ;; Remove .gz and .elc?.
602 (while (file-name-extension file
)
603 (setq file
(file-name-sans-extension file
)))
606 (delete-file local-copy
))
610 (defun jka-compr-byte-compiler-base-file-name (file)
611 (let ((info (jka-compr-get-compression-info file
)))
612 (if (and info
(jka-compr-info-strip-extension info
))
614 (substring file
0 (string-match (jka-compr-info-regexp info
) file
)))
617 (put 'write-region
'jka-compr
'jka-compr-write-region
)
618 (put 'insert-file-contents
'jka-compr
'jka-compr-insert-file-contents
)
619 (put 'file-local-copy
'jka-compr
'jka-compr-file-local-copy
)
620 (put 'load
'jka-compr
'jka-compr-load
)
621 (put 'byte-compiler-base-file-name
'jka-compr
622 'jka-compr-byte-compiler-base-file-name
)
625 (defvar jka-compr-inhibit nil
626 "Non-nil means inhibit automatic uncompression temporarily.
627 Lisp programs can bind this to t to do that.
628 It is not recommended to set this variable permanently to anything but nil.")
631 (defun jka-compr-handler (operation &rest args
)
633 (let ((jka-op (get operation
'jka-compr
)))
634 (if (and jka-op
(not jka-compr-inhibit
))
636 (jka-compr-run-real-handler operation args
)))))
638 ;; If we are given an operation that we don't handle,
639 ;; call the Emacs primitive for that operation,
640 ;; and manipulate the inhibit variables
641 ;; to prevent the primitive from calling our handler again.
642 (defun jka-compr-run-real-handler (operation args
)
643 (let ((inhibit-file-name-handlers
644 (cons 'jka-compr-handler
645 (and (eq inhibit-file-name-operation operation
)
646 inhibit-file-name-handlers
)))
647 (inhibit-file-name-operation operation
))
648 (apply operation args
)))
651 (defun jka-compr-uninstall ()
652 "Uninstall jka-compr.
653 This removes the entries in `file-name-handler-alist' and `auto-mode-alist'
654 and `inhibit-first-line-modes-suffixes' that were added
655 by `jka-compr-installed'."
656 ;; Delete from inhibit-first-line-modes-suffixes
657 ;; what jka-compr-install added.
659 (function (lambda (x)
660 (and (jka-compr-info-strip-extension x
)
661 (setq inhibit-first-line-modes-suffixes
662 (delete (jka-compr-info-regexp x
)
663 inhibit-first-line-modes-suffixes
)))))
664 jka-compr-compression-info-list--internal
)
666 (let* ((fnha (cons nil file-name-handler-alist
))
670 (if (eq (cdr (car (cdr last
))) 'jka-compr-handler
)
671 (setcdr last
(cdr (cdr last
)))
672 (setq last
(cdr last
))))
674 (setq file-name-handler-alist
(cdr fnha
)))
676 (let* ((ama (cons nil auto-mode-alist
))
681 (setq entry
(car (cdr last
)))
682 (if (or (member entry jka-compr-mode-alist-additions--internal
)
683 (and (consp (cdr entry
))
684 (eq (nth 2 entry
) 'jka-compr
)))
685 (setcdr last
(cdr (cdr last
)))
686 (setq last
(cdr last
))))
688 (setq auto-mode-alist
(cdr ama
)))
690 (while jka-compr-added-to-file-coding-system-alist
691 (setq file-coding-system-alist
692 (delq (car (member (pop jka-compr-added-to-file-coding-system-alist
)
693 file-coding-system-alist
))
694 file-coding-system-alist
)))
696 ;; Remove the suffixes that were added by jka-compr.
697 (dolist (suff jka-compr-load-suffixes--internal
)
698 (setq load-file-rep-suffixes
(delete suff load-file-rep-suffixes
)))
700 (setq jka-compr-compression-info-list--internal nil
701 jka-compr-mode-alist-additions--internal nil
702 jka-compr-load-suffixes--internal nil
))
706 ;;; jka-compr.el ends here