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