1 ;;; jka-compr.el --- reading/writing/loading compressed files
3 ;; Copyright (C) 1993-1995, 1997, 1999-2013 Free Software Foundation,
6 ;; Author: jka@ece.cmu.edu (Jay K. Adams)
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; This package implements low-level support for reading, writing,
28 ;; and loading compressed files. It hooks into the low-level file
29 ;; I/O functions (including write-region and insert-file-contents) so
30 ;; that they automatically compress or uncompress a file if the file
31 ;; appears to need it (based on the extension of the file name).
32 ;; Packages like Rmail, VM, GNUS, and Info should be able to work
33 ;; with compressed files without modification.
38 ;; To use jka-compr, invoke the command `auto-compression-mode' (which
39 ;; see), or customize the variable of the same name. Its operation
40 ;; should be transparent to the user (except for messages appearing when
41 ;; a file is being compressed or uncompressed).
43 ;; The variable, jka-compr-compression-info-list can be used to
44 ;; customize jka-compr to work with other compression programs.
45 ;; The default value of this variable allows jka-compr to work with
46 ;; Unix compress and gzip.
48 ;; If you don't want messages about compressing and decompressing
49 ;; to show up in the echo area, you can set the compress-msg and
50 ;; decompress-msg fields of the jka-compr-compression-info-list to
57 ;; jka-compr can coexist with crypt++ if you take all the decompression
58 ;; entries out of the crypt-encoding-list. Clearly problems will arise if
59 ;; you have two programs trying to compress/decompress files. jka-compr
60 ;; will not "work with" crypt++ in the following sense: you won't be able to
61 ;; decode encrypted compressed files--that is, files that have been
62 ;; compressed then encrypted (in that order). Theoretically, crypt++ and
63 ;; jka-compr could properly handle a file that has been encrypted then
64 ;; compressed, but there is little point in trying to compress an encrypted
71 ;; jka-compr is a V19 adaptation of jka-compr for V18 of Emacs. Many people
72 ;; have made helpful suggestions, reported bugs, and even fixed bugs in
73 ;; jka-compr. I recall the following people as being particularly helpful.
82 ;; Andy Norman's ange-ftp was the inspiration for the original jka-compr for
83 ;; Version 18 of Emacs.
85 ;; After I had made progress on the original jka-compr for V18, I learned of a
86 ;; package written by Kazushi Jam Marukawa, called jam-zcat, that did exactly
87 ;; what I was trying to do. I looked over the jam-zcat source code and
88 ;; probably got some ideas from it.
93 (require 'jka-cmpr-hook
)
95 (defcustom jka-compr-shell
"sh"
96 "Shell to be used for calling compression programs.
97 NOTE: Not used in MS-DOS and Windows systems."
101 (defvar jka-compr-use-shell
102 (not (memq system-type
'(ms-dos windows-nt
))))
104 (defvar jka-compr-really-do-compress nil
105 "Non-nil in a buffer whose visited file was uncompressed on visiting it.
106 This means compress the data on writing the file, even if the
107 data appears to be compressed already.")
108 (make-variable-buffer-local 'jka-compr-really-do-compress
)
109 (put 'jka-compr-really-do-compress
'permanent-local t
)
112 (put 'compression-error
'error-conditions
'(compression-error file-error error
))
115 (defvar jka-compr-acceptable-retval-list
'(0 2 141))
118 (defun jka-compr-error (prog args infile message
&optional errfile
)
120 (let ((errbuf (get-buffer-create " *jka-compr-error*")))
121 (with-current-buffer errbuf
122 (widen) (erase-buffer)
123 (insert (format "Error while executing \"%s %s < %s\"\n\n"
125 (mapconcat 'identity args
" ")
129 (insert-file-contents errfile
)))
130 (display-buffer errbuf
))
132 (signal 'compression-error
133 (list "Opening input file" (format "error %s" message
) infile
)))
136 (defcustom jka-compr-dd-program
"/bin/dd"
137 "How to invoke `dd'."
142 (defvar jka-compr-dd-blocksize
256)
145 (defun jka-compr-partial-uncompress (prog message args infile beg len
)
146 "Call program PROG with ARGS args taking input from INFILE.
147 Fourth and fifth args, BEG and LEN, specify which part of the output
148 to keep: LEN chars starting BEG chars from the beginning."
149 (let ((start (point))
151 (if (and jka-compr-use-shell jka-compr-dd-program
)
152 ;; Put the uncompression output through dd
153 ;; to discard the part we don't want.
154 (let ((skip (/ beg jka-compr-dd-blocksize
))
155 (err-file (jka-compr-make-temp-name))
156 ;; call-process barfs if default-directory is inaccessible.
158 (if (and default-directory
159 (file-accessible-directory-p default-directory
))
161 (file-name-directory infile
)))
163 ;; Update PREFIX based on the text that we won't read in.
164 (setq prefix
(- beg
(* skip jka-compr-dd-blocksize
))
165 count
(and len
(1+ (/ (+ len prefix
) jka-compr-dd-blocksize
))))
167 (or (memq (call-process
168 jka-compr-shell infile t nil
"-c"
169 ;; Windows shells need the program file name
170 ;; after the pipe symbol be quoted if they use
171 ;; forward slashes as directory separators.
173 "%s %s 2> %s | \"%s\" bs=%d skip=%d %s 2> %s"
175 (mapconcat 'identity args
" ")
178 jka-compr-dd-blocksize
180 ;; dd seems to be unreliable about
181 ;; providing the last block. So, always
182 ;; read one more than you think you need.
183 (if count
(format "count=%d" (1+ count
)) "")
185 jka-compr-acceptable-retval-list
)
186 (jka-compr-error prog args infile message err-file
))
187 (delete-file err-file
)))
189 ;; Run the uncompression program directly.
190 ;; We get the whole file and must delete what we don't want.
191 (jka-compr-call-process prog message infile t nil args
))
193 ;; Delete the stuff after what we want, if there is any.
196 (< (+ start prefix len
) (point))
197 (delete-region (+ start prefix len
) (point)))
199 ;; Delete the stuff before what we want.
200 (delete-region start
(+ start prefix
))))
203 (defun jka-compr-call-process (prog message infile output temp args
)
204 ;; call-process barfs if default-directory is inaccessible.
205 (let ((default-directory
206 (if (and default-directory
207 (not (file-remote-p default-directory
))
208 (file-accessible-directory-p default-directory
))
210 (file-name-directory infile
))))
211 (if jka-compr-use-shell
212 (let ((err-file (jka-compr-make-temp-name))
213 (coding-system-for-read (or coding-system-for-read
'undecided
))
214 (coding-system-for-write 'no-conversion
))
217 (call-process jka-compr-shell infile
218 (if (stringp output
) nil output
)
221 (format "%s %s 2> %s %s"
223 (mapconcat 'identity args
" ")
228 jka-compr-acceptable-retval-list
)
229 (jka-compr-error prog args infile message err-file
))
230 (delete-file err-file
)))
233 prog infile
(if (stringp output
) temp output
)
235 (jka-compr-error prog args infile message
))
236 (and (stringp output
)
237 (with-current-buffer temp
238 (write-region (point-min) (point-max) output
)
242 ;; Support for temp files. Much of this was inspired if not lifted
245 (defcustom jka-compr-temp-name-template
246 (expand-file-name "jka-com" temporary-file-directory
)
247 "Prefix added to all temp files created by jka-compr.
248 There should be no more than seven characters after the final `/'."
252 (defun jka-compr-make-temp-name (&optional _local-copy
)
253 "This routine will return the name of a new file."
254 (make-temp-file jka-compr-temp-name-template
))
256 (defun jka-compr-write-region (start end file
&optional append visit
)
257 (let* ((filename (expand-file-name file
))
258 (visit-file (if (stringp visit
) (expand-file-name visit
) filename
))
259 (info (jka-compr-get-compression-info visit-file
))
260 (magic (and info
(jka-compr-info-file-magic-bytes info
))))
262 ;; If we uncompressed this file when visiting it,
263 ;; then recompress it when writing it
264 ;; even if the contents look compressed already.
265 (if (and jka-compr-really-do-compress
267 (= (- end start
) (buffer-size))))
271 ;; If the contents to be written out
272 ;; are properly compressed already,
273 ;; don't try to compress them over again.
275 (equal (if (stringp start
)
276 (substring start
0 (min (length start
)
278 (let* ((from (or start
(point-min)))
279 (to (min (or end
(point-max))
280 (+ from
(length magic
)))))
281 (buffer-substring from to
)))
283 (let ((can-append (jka-compr-info-can-append info
))
284 (compress-program (jka-compr-info-compress-program info
))
285 (compress-message (jka-compr-info-compress-message info
))
286 (compress-args (jka-compr-info-compress-args info
))
287 (base-name (file-name-nondirectory visit-file
))
288 temp-file temp-buffer
289 ;; we need to leave `last-coding-system-used' set to its
290 ;; value after calling write-region the first time, so
291 ;; that `basic-save-buffer' sees the right value.
292 (coding-system-used last-coding-system-used
))
295 (error "No compression program defined"))
297 (setq temp-buffer
(get-buffer-create " *jka-compr-wr-temp*"))
298 (with-current-buffer temp-buffer
299 (widen) (erase-buffer))
303 (file-exists-p filename
))
305 (let* ((local-copy (file-local-copy filename
))
306 (local-file (or local-copy filename
)))
308 (setq temp-file local-file
))
310 (setq temp-file
(jka-compr-make-temp-name)))
315 (message "%s %s..." compress-message base-name
))
317 (jka-compr-run-real-handler 'write-region
318 (list start end temp-file t
'dont
))
319 ;; save value used by the real write-region
320 (setq coding-system-used last-coding-system-used
)
322 ;; Here we must read the output of compress program as is
323 ;; without any code conversion.
324 (let ((coding-system-for-read 'no-conversion
))
325 (jka-compr-call-process compress-program
326 (concat compress-message
333 (with-current-buffer temp-buffer
334 (let ((coding-system-for-write 'no-conversion
))
335 (if (memq system-type
'(ms-dos windows-nt
))
336 (setq buffer-file-type t
) )
337 (jka-compr-run-real-handler 'write-region
338 (list (point-min) (point-max)
340 (and append can-append
) 'dont
))
343 (delete-file temp-file
)
348 (message "%s %s...done" compress-message base-name
))
352 (setq buffer-file-name filename
)
353 (setq jka-compr-really-do-compress t
)
354 (set-visited-file-modtime))
356 (setq buffer-file-name visit
)
357 (let ((buffer-file-name filename
))
358 (set-visited-file-modtime))))
360 (and (or (eq visit t
)
363 (message "Wrote %s" visit-file
))
365 ;; ensure `last-coding-system-used' has an appropriate value
366 (setq last-coding-system-used coding-system-used
)
370 (jka-compr-run-real-handler 'write-region
371 (list start end filename append visit
)))))
374 (defun jka-compr-insert-file-contents (file &optional visit beg end replace
)
375 (barf-if-buffer-read-only)
379 (error "Attempt to visit less than an entire file"))
381 (let* ((filename (expand-file-name file
))
382 (info (jka-compr-get-compression-info filename
)))
386 (jka-compr-run-real-handler 'insert-file-contents
387 (list file visit beg end replace
))
389 (let ((uncompress-message (jka-compr-info-uncompress-message info
))
390 (uncompress-program (jka-compr-info-uncompress-program info
))
391 (uncompress-args (jka-compr-info-uncompress-args info
))
392 (base-name (file-name-nondirectory filename
))
395 (jka-compr-run-real-handler 'file-local-copy
(list filename
)))
399 (setq local-file
(or local-copy filename
))
403 (setq buffer-file-name filename
))
405 (unwind-protect ; to make sure local-copy gets deleted
412 (message "%s %s..." uncompress-message base-name
))
414 (condition-case error-code
416 (let ((coding-system-for-read 'no-conversion
))
418 (goto-char (point-min)))
421 (jka-compr-partial-uncompress uncompress-program
422 (concat uncompress-message
430 ;; If visiting, bind off buffer-file-name so that
431 ;; file-locking will not ask whether we should
432 ;; really edit the buffer.
433 (let ((buffer-file-name
434 (if visit nil buffer-file-name
)))
435 (jka-compr-call-process uncompress-program
436 (concat uncompress-message
442 (setq size
(- (point) start
))
444 (delete-region (point) (point-max)))
447 ;; If the file we wanted to uncompress does not exist,
448 ;; handle that according to VISIT as `insert-file-contents'
449 ;; would, maybe signaling the same error it normally would.
450 (if (and (eq (car error-code
) 'file-error
)
451 (eq (nth 3 error-code
) local-file
))
453 (setq notfound error-code
)
455 (cons "Opening input file"
456 (nthcdr 2 error-code
))))
457 ;; If the uncompression program can't be found,
458 ;; signal that as a non-file error
459 ;; so that find-file-noselect-1 won't handle it.
460 (if (and (eq (car error-code
) 'file-error
)
461 (equal (cadr error-code
) "Searching for program"))
462 (error "Uncompression program `%s' not found"
464 (signal (car error-code
) (cdr error-code
))))))
468 (file-exists-p local-copy
)
469 (delete-file local-copy
)))
472 (decode-coding-inserted-region
473 (point) (+ (point) size
)
474 (jka-compr-byte-compiler-base-file-name file
)
475 visit beg end replace
))
481 (setq buffer-file-name filename
)
482 (setq jka-compr-really-do-compress t
)
483 (set-visited-file-modtime)))
488 (message "%s %s...done" uncompress-message base-name
))
494 (cons "Opening input file" (nth 2 notfound
))))
496 ;; This is done in insert-file-contents after we return.
497 ;; That is a little weird, but better to go along with it now
498 ;; than to change it now.
500 ;; ;; Run the functions that insert-file-contents would.
501 ;; (let ((p after-insert-file-functions)
504 ;; (setq insval (funcall (car p) size))
507 ;; (or (integerp insval)
508 ;; (signal 'wrong-type-argument
509 ;; (list 'integerp insval)))
510 ;; (setq size insval)))
511 ;; (setq p (cdr p))))
513 (or (jka-compr-info-compress-program info
)
514 (message "You can't save this buffer because compression program is not defined"))
516 (list filename size
)))))
519 (defun jka-compr-file-local-copy (file)
520 (let* ((filename (expand-file-name file
))
521 (info (jka-compr-get-compression-info filename
)))
525 (let ((uncompress-message (jka-compr-info-uncompress-message info
))
526 (uncompress-program (jka-compr-info-uncompress-program info
))
527 (uncompress-args (jka-compr-info-uncompress-args info
))
528 (base-name (file-name-nondirectory filename
))
530 (jka-compr-run-real-handler 'file-local-copy
(list filename
)))
531 (temp-file (jka-compr-make-temp-name t
))
532 (temp-buffer (get-buffer-create " *jka-compr-flc-temp*"))
535 (setq local-file
(or local-copy filename
))
539 (with-current-buffer temp-buffer
544 (message "%s %s..." uncompress-message base-name
))
546 ;; Here we must read the output of uncompress program
547 ;; and write it to TEMP-FILE without any code
548 ;; conversion. An appropriate code conversion (if
549 ;; necessary) is done by the later I/O operation
551 (let ((coding-system-for-read 'no-conversion
)
552 (coding-system-for-write 'no-conversion
))
554 (jka-compr-call-process uncompress-program
555 (concat uncompress-message
565 (message "%s %s...done" uncompress-message base-name
))
568 (point-min) (point-max) temp-file nil
'dont
)))
572 (file-exists-p local-copy
)
573 (delete-file local-copy
))
575 (kill-buffer temp-buffer
))
579 (jka-compr-run-real-handler 'file-local-copy
(list filename
)))))
582 ;; Support for loading compressed files.
583 (defun jka-compr-load (file &optional noerror nomessage _nosuffix
)
584 "Documented as original."
586 (let* ((local-copy (jka-compr-file-local-copy file
))
587 (load-file (or local-copy file
)))
591 (let (inhibit-file-name-operation
592 inhibit-file-name-handlers
)
594 (message "Loading %s..." file
))
596 (let ((load-force-doc-strings t
))
597 (load load-file noerror t t
))
599 (message "Loading %s...done." file
))
600 ;; Fix up the load history to point at the right library.
601 (let ((l (or (assoc load-file load-history
)
602 ;; On MS-Windows, if load-file is in
603 ;; temporary-file-directory, it will look like
604 ;; "c:/DOCUME~1/USER/LOCALS~1/foo", whereas
605 ;; readevalloop will record its truename in
606 ;; load-history. Therefore try truename if the
607 ;; original name is not in load-history.
608 (assoc (file-truename load-file
) load-history
))))
609 ;; Remove .gz and .elc?.
610 (while (file-name-extension file
)
611 (setq file
(file-name-sans-extension file
)))
614 (delete-file local-copy
))
618 (defun jka-compr-byte-compiler-base-file-name (file)
619 (let ((info (jka-compr-get-compression-info file
)))
620 (if (and info
(jka-compr-info-strip-extension info
))
622 (substring file
0 (string-match (jka-compr-info-regexp info
) file
)))
625 (put 'write-region
'jka-compr
'jka-compr-write-region
)
626 (put 'insert-file-contents
'jka-compr
'jka-compr-insert-file-contents
)
627 (put 'file-local-copy
'jka-compr
'jka-compr-file-local-copy
)
628 (put 'load
'jka-compr
'jka-compr-load
)
629 (put 'byte-compiler-base-file-name
'jka-compr
630 'jka-compr-byte-compiler-base-file-name
)
633 (defvar jka-compr-inhibit nil
634 "Non-nil means inhibit automatic uncompression temporarily.
635 Lisp programs can bind this to t to do that.
636 It is not recommended to set this variable permanently to anything but nil.")
639 (defun jka-compr-handler (operation &rest args
)
641 (let ((jka-op (get operation
'jka-compr
)))
642 (if (and jka-op
(not jka-compr-inhibit
))
644 (jka-compr-run-real-handler operation args
)))))
646 ;; If we are given an operation that we don't handle,
647 ;; call the Emacs primitive for that operation,
648 ;; and manipulate the inhibit variables
649 ;; to prevent the primitive from calling our handler again.
650 (defun jka-compr-run-real-handler (operation args
)
651 (let ((inhibit-file-name-handlers
652 (cons 'jka-compr-handler
653 (and (eq inhibit-file-name-operation operation
)
654 inhibit-file-name-handlers
)))
655 (inhibit-file-name-operation operation
))
656 (apply operation args
)))
659 (defun jka-compr-uninstall ()
660 "Uninstall jka-compr.
661 This removes the entries in `file-name-handler-alist' and `auto-mode-alist'
662 and `inhibit-local-variables-suffixes' that were added
663 by `jka-compr-installed'."
664 ;; Delete from inhibit-local-variables-suffixes what jka-compr-install added.
666 (function (lambda (x)
667 (and (jka-compr-info-strip-extension x
)
668 (setq inhibit-local-variables-suffixes
669 (delete (jka-compr-info-regexp x
)
670 inhibit-local-variables-suffixes
)))))
671 jka-compr-compression-info-list--internal
)
673 (let* ((fnha (cons nil file-name-handler-alist
))
677 (if (eq (cdr (car (cdr last
))) 'jka-compr-handler
)
678 (setcdr last
(cdr (cdr last
)))
679 (setq last
(cdr last
))))
681 (setq file-name-handler-alist
(cdr fnha
)))
683 (let* ((ama (cons nil auto-mode-alist
))
688 (setq entry
(car (cdr last
)))
689 (if (or (member entry jka-compr-mode-alist-additions--internal
)
690 (and (consp (cdr entry
))
691 (eq (nth 2 entry
) 'jka-compr
)))
692 (setcdr last
(cdr (cdr last
)))
693 (setq last
(cdr last
))))
695 (setq auto-mode-alist
(cdr ama
)))
697 (while jka-compr-added-to-file-coding-system-alist
698 (setq file-coding-system-alist
699 (delq (car (member (pop jka-compr-added-to-file-coding-system-alist
)
700 file-coding-system-alist
))
701 file-coding-system-alist
)))
703 ;; Remove the suffixes that were added by jka-compr.
704 (dolist (suff jka-compr-load-suffixes--internal
)
705 (setq load-file-rep-suffixes
(delete suff load-file-rep-suffixes
)))
707 (setq jka-compr-compression-info-list--internal nil
708 jka-compr-mode-alist-additions--internal nil
709 jka-compr-load-suffixes--internal nil
))
713 ;;; jka-compr.el ends here