annotate lisp/packages/jka-compr.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children ac2d302a0011
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; jka-compr.el - reading/writing/loading compressed files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Author: jka@ece.cmu.edu (Jay K. Adams)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Keywords: data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;;; Synched up with: Very close to the version supplied with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;;; FSF 19.29 but not quite synched.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;;; This package implements low-level support for reading, writing,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;;; and loading compressed files. It hooks into the low-level file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;;; I/O functions (including write-region and insert-file-contents) so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;;; that they automatically compress or uncompress a file if the file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;;; appears to need it (based on the extension of the file name).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;;; Packages like Rmail, VM, GNUS, and Info should be able to work
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;;; with compressed files without modification.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;;; INSTRUCTIONS:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;;; To use jka-compr, simply load this package, and edit as usual.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Its operation should be transparent to the user (except for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;;; messages appearing when a file is being compressed or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; uncompressed).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;;; The variable, jka-compr-compression-info-list can be used to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;;; customize jka-compr to work with other compression programs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;;; The default value of this variable allows jka-compr to work with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;;; Unix compress and gzip.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;;; If you are concerned about the stderr output of gzip and other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;;; compression/decompression programs showing up in your buffers, you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;;; should set the discard-error flag in the compression-info-list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;;; This will cause the stderr of all programs to be discarded.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;;; However, it also causes emacs to call compression/uncompression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;;; programs through a shell (which is specified by jka-compr-shell).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;;; This may be a drag if, on your system, starting up a shell is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;;; slow.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;;; If you don't want messages about compressing and decompressing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;;; to show up in the echo area, you can set the compress-name and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;;; decompress-name fields of the jka-compr-compression-info-list to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ;;; nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 ;;; APPLICATION NOTES:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ;;; crypt++
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ;;; jka-compr can coexist with crpyt++ if you take all the decompression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;;; entries out of the crypt-encoding-list. Clearly problems will arise if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ;;; you have two programs trying to compress/decompress files. jka-compr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 ;;; will not "work with" crypt++ in the following sense: you won't be able to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 ;;; decode encrypted compressed files--that is, files that have been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 ;;; compressed then encrypted (in that order). Theoretically, crypt++ and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 ;;; jka-compr could properly handle a file that has been encrypted then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 ;;; compressed, but there is little point in trying to compress an encrypted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;;; file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 ;;; ACKNOWLEDGMENTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 ;;; jka-compr is a V19 adaptation of jka-compr for V18 of Emacs. Many people
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 ;;; have made helpful suggestions, reported bugs, and even fixed bugs in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ;;; jka-compr. I recall the following people as being particularly helpful.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 ;;; Jean-loup Gailly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 ;;; David Hughes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 ;;; Richard Pieri
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 ;;; Daniel Quinlan
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 ;;; Chris P. Ross
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 ;;; Rick Sladkey
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 ;;; Andy Norman's ange-ftp was the inspiration for the original jka-compr for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 ;;; Version 18 of Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 ;;; After I had made progress on the original jka-compr for V18, I learned of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 ;;; package written by Kazushi Jam Marukawa, called jam-zcat, that did exactly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 ;;; what I was trying to do. I looked over the jam-zcat source code and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 ;;; probably got some ideas from it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (defvar jka-compr-shell "sh"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 "*Shell to be used for calling compression programs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 The value of this variable only matters if you want to discard the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 stderr of a compression/decompression program (see the documentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 for `jka-compr-compression-info-list').")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (defvar jka-compr-use-shell t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 ;;; I have this defined so that .Z files are assumed to be in unix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 ;;; compress format; and .gz files, in gzip format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (defvar jka-compr-compression-info-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 ;;[regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 ;; compr-message compr-prog compr-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 ;; uncomp-message uncomp-prog uncomp-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 ;; can-append auto-mode-flag]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 '(["\\.Z\\(~\\|\\.~[0-9]+~\\)?\\'"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 "compressing" "compress" ("-c")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 "uncompressing" "uncompress" ("-c")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 nil t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 ["\\.tgz\\'"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 "zipping" "gzip" ("-c" "-q")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 "unzipping" "gzip" ("-c" "-q" "-d")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 t nil]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 ["\\.gz\\(~\\|\\.~[0-9]+~\\)?\\'"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 "zipping" "gzip" ("-c" "-q")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 "unzipping" "gzip" ("-c" "-q" "-d")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 t t])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 "List of vectors that describe available compression techniques.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 Each element, which describes a compression technique, is a vector of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 the form [REGEXP COMPRESS-MSG COMPRESS-PROGRAM COMPRESS-ARGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 UNCOMPRESS-MSG UNCOMPRESS-PROGRAM UNCOMPRESS-ARGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 APPEND-FLAG EXTENSION], where:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 regexp is a regexp that matches filenames that are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 compressed with this format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 compress-msg is the message to issue to the user when doing this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 type of compression (nil means no message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 compress-program is a program that performs this compression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 compress-args is a list of args to pass to the compress program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 uncompress-msg is the message to issue to the user when doing this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 type of uncompression (nil means no message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 uncompress-program is a program that performs this compression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 uncompress-args is a list of args to pass to the uncompress program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 append-flag is non-nil if this compression technique can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 appended
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 auto-mode flag non-nil means strip the regexp from file names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 before attempting to set the mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 Because of the way `call-process' is defined, discarding the stderr output of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 a program adds the overhead of starting a shell each time the program is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 invoked.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (defvar jka-compr-mode-alist-additions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (list (cons "\\.tgz\\'" 'tar-mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 "A list of pairs to add to auto-mode-alist when jka-compr is installed.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (defvar jka-compr-file-name-handler-entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 "The entry in `file-name-handler-alist' used by the jka-compr I/O functions.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 ;;; Functions for accessing the return value of jka-get-compression-info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (defun jka-compr-info-regexp (info) (aref info 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (defun jka-compr-info-compress-message (info) (aref info 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (defun jka-compr-info-compress-program (info) (aref info 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (defun jka-compr-info-compress-args (info) (aref info 3))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (defun jka-compr-info-uncompress-message (info) (aref info 4))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (defun jka-compr-info-uncompress-program (info) (aref info 5))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (defun jka-compr-info-uncompress-args (info) (aref info 6))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (defun jka-compr-info-can-append (info) (aref info 7))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (defun jka-compr-info-strip-extension (info) (aref info 8))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (defun jka-compr-get-compression-info (filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 "Return information about the compression scheme of FILENAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 The determination as to which compression scheme, if any, to use is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 based on the filename itself and `jka-compr-compression-info-list'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (catch 'compression-info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (let ((case-fold-search nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (mapcar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (function (lambda (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (and (string-match (jka-compr-info-regexp x) filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (throw 'compression-info x))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 jka-compr-compression-info-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 ;; XEmacs change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (define-error 'compression-error "Compression error" 'file-error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (defvar jka-compr-acceptable-retval-list '(0 2 141))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (defun jka-compr-error (prog args infile message &optional errfile)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (let ((errbuf (get-buffer-create " *jka-compr-error*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (curbuf (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (set-buffer errbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (widen) (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (insert (format "Error while executing \"%s %s < %s\"\n\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 prog
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (mapconcat 'identity args " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 infile))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 (and errfile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 (insert-file-contents errfile))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (set-buffer curbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (display-buffer errbuf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (signal 'compression-error (list "Opening input file" (format "error %s" message) infile)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (defvar jka-compr-dd-program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 "/bin/dd")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (defvar jka-compr-dd-blocksize 256)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 (defun jka-compr-partial-uncompress (prog message args infile beg len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 "Call program PROG with ARGS args taking input from INFILE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 Fourth and fifth args, BEG and LEN, specify which part of the output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 to keep: LEN chars starting BEG chars from the beginning."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (let* ((skip (/ beg jka-compr-dd-blocksize))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 (prefix (- beg (* skip jka-compr-dd-blocksize)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (count (and len (1+ (/ (+ len prefix) jka-compr-dd-blocksize))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 (start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (err-file (jka-compr-make-temp-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (run-string (format "%s %s 2> %s | %s bs=%d skip=%d %s 2> /dev/null"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 prog
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (mapconcat 'identity args " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 err-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 jka-compr-dd-program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 jka-compr-dd-blocksize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 skip
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 ;; dd seems to be unreliable about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 ;; providing the last block. So, always
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 ;; read one more than you think you need.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (if count (concat "count=" (1+ count)) ""))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (or (memq (call-process jka-compr-shell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 infile t nil "-c"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 run-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 jka-compr-acceptable-retval-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (jka-compr-error prog args infile message err-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (jka-compr-delete-temp-file err-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 ;; Delete the stuff after what we want, if there is any.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 len
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (< (+ start prefix len) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (delete-region (+ start prefix len) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 ;; Delete the stuff before what we want.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 (delete-region start (+ start prefix))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (defun jka-compr-call-process (prog message infile output temp args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (if jka-compr-use-shell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 (let ((err-file (jka-compr-make-temp-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 (or (memq
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (call-process jka-compr-shell infile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 (if (stringp output) nil output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 "-c"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (format "%s %s 2> %s %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 prog
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (mapconcat 'identity args " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 err-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (if (stringp output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (concat "> " output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 jka-compr-acceptable-retval-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (jka-compr-error prog args infile message err-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (jka-compr-delete-temp-file err-file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 (or (zerop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (apply 'call-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 prog
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 infile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (if (stringp output) temp output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (jka-compr-error prog args infile message))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (and (stringp output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (let ((cbuf (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (set-buffer temp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 (write-region (point-min) (point-max) output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (set-buffer cbuf)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 ;;; Support for temp files. Much of this was inspired if not lifted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 ;;; from ange-ftp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 (defvar jka-compr-temp-name-template
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 "/tmp/jka-com"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 "Prefix added to all temp files created by jka-compr.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 There should be no more than seven characters after the final `/'")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (defvar jka-compr-temp-name-table (make-vector 31 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (defun jka-compr-make-temp-name (&optional local-copy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 "This routine will return the name of a new file."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 (let* ((lastchar ?a)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (prevchar ?a)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 (template (concat jka-compr-temp-name-template "aa"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 (lastpos (1- (length template)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (not-done t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 entry)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 (while not-done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 (aset template lastpos lastchar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 (setq file (concat (make-temp-name template) "#"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 (setq entry (intern file jka-compr-temp-name-table))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (if (or (get entry 'active)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (file-exists-p file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (setq lastchar (1+ lastchar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 (if (> lastchar ?z)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 (setq prevchar (1+ prevchar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 (setq lastchar ?a)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (if (> prevchar ?z)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (error "Can't allocate temp file.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (aset template (1- lastpos) prevchar)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 (put entry 'active (not local-copy))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (setq not-done nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 (defun jka-compr-delete-temp-file (temp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 (put (intern temp jka-compr-temp-name-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 'active nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 (condition-case ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (delete-file temp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (error nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (defun jka-compr-write-region (start end file &optional append visit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 (let* ((filename (expand-file-name file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (visit-file (if (stringp visit) (expand-file-name visit) filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (info (jka-compr-get-compression-info visit-file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (if info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (let ((can-append (jka-compr-info-can-append info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (compress-program (jka-compr-info-compress-program info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (compress-message (jka-compr-info-compress-message info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (uncompress-program (jka-compr-info-uncompress-program info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 (uncompress-message (jka-compr-info-uncompress-message info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 (compress-args (jka-compr-info-compress-args info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (uncompress-args (jka-compr-info-uncompress-args info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (base-name (file-name-nondirectory visit-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 temp-file cbuf temp-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (setq cbuf (current-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 temp-buffer (get-buffer-create " *jka-compr-wr-temp*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 (set-buffer temp-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 (widen) (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 (set-buffer cbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 (if (and append
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (not can-append)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (file-exists-p filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 (let* ((local-copy (file-local-copy filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (local-file (or local-copy filename)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (setq temp-file local-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (setq temp-file (jka-compr-make-temp-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 compress-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (message "%s %s..." compress-message base-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 (jka-compr-run-real-handler 'write-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 (list start end temp-file t 'dont))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 (jka-compr-call-process compress-program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (concat compress-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 " " base-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 temp-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 temp-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 compress-args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 (set-buffer temp-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (jka-compr-run-real-handler 'write-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (list (point-min) (point-max)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (and append can-append) 'dont))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (set-buffer cbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (jka-compr-delete-temp-file temp-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 compress-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (message "%s %s...done" compress-message base-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 ((eq visit t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (setq buffer-file-name filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 (set-visited-file-modtime))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 ((stringp visit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 (setq buffer-file-name visit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 (let ((buffer-file-name filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 (set-visited-file-modtime))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 (and (or (eq visit t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (eq visit nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (stringp visit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 (message "Wrote %s" visit-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 (jka-compr-run-real-handler 'write-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 (list start end filename append visit)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 (defun jka-compr-insert-file-contents (file &optional visit beg end replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 (barf-if-buffer-read-only)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (and (or beg end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 visit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (error "Attempt to visit less than an entire file"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 (let* ((filename (expand-file-name file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (info (jka-compr-get-compression-info filename)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 (if info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (let ((uncompress-message (jka-compr-info-uncompress-message info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 (uncompress-program (jka-compr-info-uncompress-program info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (uncompress-args (jka-compr-info-uncompress-args info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (base-name (file-name-nondirectory filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 (notfound nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (local-copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 (jka-compr-run-real-handler 'file-local-copy (list filename)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 local-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 size start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (setq local-file (or local-copy filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 visit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 (setq buffer-file-name filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 (unwind-protect ; to make sure local-copy gets deleted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 uncompress-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (message "%s %s..." uncompress-message base-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 (condition-case error-code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (if replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (goto-char (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 (setq start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 (if (or beg end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (jka-compr-partial-uncompress uncompress-program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (concat uncompress-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 " " base-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 uncompress-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 local-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (or beg 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 (if (and beg end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (- end beg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 (jka-compr-call-process uncompress-program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 (concat uncompress-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 " " base-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 local-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 uncompress-args))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 (setq size (- (point) start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (if replace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 (let* ((del-beg (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 (del-end (+ del-beg size)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 (delete-region del-beg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (min del-end (point-max)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 (goto-char start))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 (error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 (if (and (eq (car error-code) 'file-error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 (eq (nth 3 error-code) local-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 (if visit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 (setq notfound error-code)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 (signal 'file-error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (cons "Opening input file"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (nthcdr 2 error-code))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 (signal (car error-code) (cdr error-code))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 local-copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 (file-exists-p local-copy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 (delete-file local-copy)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 visit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (unlock-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (setq buffer-file-name filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (set-visited-file-modtime)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 uncompress-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (message "%s %s...done" uncompress-message base-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 visit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 notfound
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 (signal 'file-error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (cons "Opening input file" (nth 2 notfound))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 ;; Run the functions that insert-file-contents would.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 (let ((p after-insert-file-functions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 (insval size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 (while p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 (setq insval (funcall (car p) size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 (if insval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 (or (integerp insval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 (signal 'wrong-type-argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 (list 'integerp insval)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (setq size insval)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 (setq p (cdr p))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 (list filename size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 (jka-compr-run-real-handler 'insert-file-contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 (list file visit beg end replace)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 (defun jka-compr-file-local-copy (file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 (let* ((filename (expand-file-name file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 (info (jka-compr-get-compression-info filename)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 (if info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 (let ((uncompress-message (jka-compr-info-uncompress-message info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 (uncompress-program (jka-compr-info-uncompress-program info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 (uncompress-args (jka-compr-info-uncompress-args info))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 (base-name (file-name-nondirectory filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 (local-copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 (jka-compr-run-real-handler 'file-local-copy (list filename)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 (temp-file (jka-compr-make-temp-name t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 (temp-buffer (get-buffer-create " *jka-compr-flc-temp*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 (notfound nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 (cbuf (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 local-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 (setq local-file (or local-copy filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 uncompress-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 (message "%s %s..." uncompress-message base-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 (set-buffer temp-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 (jka-compr-call-process uncompress-program
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 (concat uncompress-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 " " base-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 local-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 uncompress-args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 uncompress-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 (message "%s %s...done" uncompress-message base-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 (write-region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 (point-min) (point-max) temp-file nil 'dont))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 local-copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 (file-exists-p local-copy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (delete-file local-copy))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 (set-buffer cbuf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 (kill-buffer temp-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 temp-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 (jka-compr-run-real-handler 'file-local-copy (list filename)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 ;;; Support for loading compressed files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 (defun jka-compr-load (file &optional noerror nomessage nosuffix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 "Documented as original."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 (let* ((local-copy (jka-compr-file-local-copy file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 (load-file (or local-copy file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (let (inhibit-file-name-operation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 inhibit-file-name-handlers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (or nomessage
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (message "Loading %s..." file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 (load load-file noerror t t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 (or nomessage
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 (message "Loading %s...done." file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 (jka-compr-delete-temp-file local-copy))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 (put 'write-region 'jka-compr 'jka-compr-write-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (put 'insert-file-contents 'jka-compr 'jka-compr-insert-file-contents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (put 'file-local-copy 'jka-compr 'jka-compr-file-local-copy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 (put 'load 'jka-compr 'jka-compr-load)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 (defun jka-compr-handler (operation &rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 (save-match-data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 (let ((jka-op (get operation 'jka-compr)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 (if jka-op
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 (apply jka-op args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 (jka-compr-run-real-handler operation args)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 ;; If we are given an operation that we don't handle,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 ;; call the Emacs primitive for that operation,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 ;; and manipulate the inhibit variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 ;; to prevent the primitive from calling our handler again.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (defun jka-compr-run-real-handler (operation args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 (let ((inhibit-file-name-handlers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 (cons 'jka-compr-handler
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 (and (eq inhibit-file-name-operation operation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 inhibit-file-name-handlers)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 (inhibit-file-name-operation operation))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 (apply operation args)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (defun toggle-auto-compression (arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 "Toggle automatic file compression and decompression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 With prefix argument ARG, turn auto compression on if positive, else off.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 Returns the new status of auto compression (non-nil means on)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 (let* ((installed (jka-compr-installed-p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 (flag (if (null arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (not installed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 ((and flag installed) t) ; already installed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 ((and (not flag) (not installed)) nil) ; already not installed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 (flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 (jka-compr-install))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 (jka-compr-uninstall)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 (and (interactive-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 (if flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 (message "Automatic file (de)compression is now ON.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (message "Automatic file (de)compression is now OFF.")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 flag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (defun jka-compr-build-file-regexp ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 "\\("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 (mapconcat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 'jka-compr-info-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 jka-compr-compression-info-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 "\\)\\|\\(")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 "\\)"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 (defun jka-compr-install ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 "Install jka-compr.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 This adds entries to `file-name-handler-alist' and `auto-mode-alist'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 and `inhibit-first-line-modes-suffixes'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 (setq jka-compr-file-name-handler-entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 (cons (jka-compr-build-file-regexp) 'jka-compr-handler))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 (setq file-name-handler-alist (cons jka-compr-file-name-handler-entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 file-name-handler-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 (mapcar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 (function (lambda (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (and (jka-compr-info-strip-extension x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 ;; Make entries in auto-mode-alist so that modes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 ;; are chosen right according to the file names
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 ;; sans `.gz'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (setq auto-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 (cons (list (jka-compr-info-regexp x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 nil 'jka-compr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 auto-mode-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 ;; Also add these regexps to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 ;; inhibit-first-line-modes-suffixes, so that a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 ;; -*- line in the first file of a compressed tar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 ;; file doesn't override tar-mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 (and (boundp 'inhibit-first-line-modes-suffixes)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 (setq inhibit-first-line-modes-suffixes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 (cons (jka-compr-info-regexp x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 inhibit-first-line-modes-suffixes))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 jka-compr-compression-info-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 (setq auto-mode-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 (append auto-mode-alist jka-compr-mode-alist-additions)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 (defun jka-compr-uninstall ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 "Uninstall jka-compr.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 This removes the entries in `file-name-handler-alist' and `auto-mode-alist'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 and `inhibit-first-line-modes-suffixes' that were added
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 by `jka-compr-installed'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 ;; Delete from inhibit-first-line-modes-suffixes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 ;; what jka-compr-install added.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 (mapcar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 (function (lambda (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 (and (jka-compr-info-strip-extension x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 (and (boundp 'inhibit-first-line-modes-suffixes)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 (setq inhibit-first-line-modes-suffixes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 (delete (jka-compr-info-regexp x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 inhibit-first-line-modes-suffixes)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 jka-compr-compression-info-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 (let* ((fnha (cons nil file-name-handler-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 (last fnha))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 (while (cdr last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 (if (eq (cdr (car (cdr last))) 'jka-compr-handler)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 (setcdr last (cdr (cdr last)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 (setq last (cdr last))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (setq file-name-handler-alist (cdr fnha)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 (let* ((ama (cons nil auto-mode-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 (last ama)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 entry)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 (while (cdr last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 (setq entry (car (cdr last)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 (if (or (member entry jka-compr-mode-alist-additions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 (and (consp (cdr entry))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 (eq (nth 2 entry) 'jka-compr)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 (setcdr last (cdr (cdr last)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 (setq last (cdr last))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 (setq auto-mode-alist (cdr ama))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 (defun jka-compr-installed-p ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 "Return non-nil if jka-compr is installed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 The return value is the entry in `file-name-handler-alist' for jka-compr."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 (let ((fnha file-name-handler-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 (installed nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 (while (and fnha (not installed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 (and (eq (cdr (car fnha)) 'jka-compr-handler)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 (setq installed (car fnha)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 (setq fnha (cdr fnha)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 installed))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 ;;; Add the file I/O hook if it does not already exist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 ;;; Make sure that jka-compr-file-name-handler-entry is eq to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 ;;; entry for jka-compr in file-name-handler-alist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 (and (jka-compr-installed-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (jka-compr-uninstall))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 (jka-compr-install)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 (provide 'jka-compr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 ;; jka-compr.el ends here.