Mercurial > emacs
annotate lisp/jka-compr.el @ 15083:285482e8df41
Comment change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 26 Apr 1996 19:31:40 +0000 |
parents | 83f275dcd93a |
children | b337bd642856 |
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 | |
319 "/tmp/jka-com" | |
320 "Prefix added to all temp files created by jka-compr. | |
7066 | 321 There should be no more than seven characters after the final `/'") |
6002 | 322 |
323 (defvar jka-compr-temp-name-table (make-vector 31 nil)) | |
324 | |
325 (defun jka-compr-make-temp-name (&optional local-copy) | |
326 "This routine will return the name of a new file." | |
327 (let* ((lastchar ?a) | |
328 (prevchar ?a) | |
329 (template (concat jka-compr-temp-name-template "aa")) | |
330 (lastpos (1- (length template))) | |
331 (not-done t) | |
332 file | |
333 entry) | |
334 | |
335 (while not-done | |
336 (aset template lastpos lastchar) | |
337 (setq file (concat (make-temp-name template) "#")) | |
338 (setq entry (intern file jka-compr-temp-name-table)) | |
339 (if (or (get entry 'active) | |
340 (file-exists-p file)) | |
341 | |
342 (progn | |
343 (setq lastchar (1+ lastchar)) | |
344 (if (> lastchar ?z) | |
345 (progn | |
346 (setq prevchar (1+ prevchar)) | |
347 (setq lastchar ?a) | |
348 (if (> prevchar ?z) | |
349 (error "Can't allocate temp file.") | |
350 (aset template (1- lastpos) prevchar))))) | |
351 | |
352 (put entry 'active (not local-copy)) | |
353 (setq not-done nil))) | |
354 | |
355 file)) | |
356 | |
357 | |
358 (defun jka-compr-delete-temp-file (temp) | |
359 | |
360 (put (intern temp jka-compr-temp-name-table) | |
361 'active nil) | |
362 | |
363 (condition-case () | |
364 (delete-file temp) | |
365 (error nil))) | |
366 | |
367 | |
368 (defun jka-compr-write-region (start end file &optional append visit) | |
369 (let* ((filename (expand-file-name file)) | |
370 (visit-file (if (stringp visit) (expand-file-name visit) filename)) | |
371 (info (jka-compr-get-compression-info visit-file))) | |
372 | |
373 (if info | |
374 | |
375 (let ((can-append (jka-compr-info-can-append info)) | |
376 (compress-program (jka-compr-info-compress-program info)) | |
377 (compress-message (jka-compr-info-compress-message info)) | |
378 (uncompress-program (jka-compr-info-uncompress-program info)) | |
379 (uncompress-message (jka-compr-info-uncompress-message info)) | |
380 (compress-args (jka-compr-info-compress-args info)) | |
381 (uncompress-args (jka-compr-info-uncompress-args info)) | |
382 (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
|
383 temp-file cbuf temp-buffer) |
6002 | 384 |
385 (setq cbuf (current-buffer) | |
11635
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
386 temp-buffer (get-buffer-create " *jka-compr-wr-temp*")) |
6002 | 387 (set-buffer temp-buffer) |
388 (widen) (erase-buffer) | |
389 (set-buffer cbuf) | |
390 | |
11635
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
391 (if (and append |
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
392 (not can-append) |
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
393 (file-exists-p filename)) |
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
394 |
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
395 (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
|
396 (local-file (or local-copy filename))) |
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
397 |
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
398 (setq temp-file local-file)) |
6002 | 399 |
11635
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
400 (setq temp-file (jka-compr-make-temp-name))) |
6002 | 401 |
402 (and | |
403 compress-message | |
404 (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
|
405 |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
406 (jka-compr-run-real-handler 'write-region |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
407 (list start end temp-file t 'dont)) |
6002 | 408 |
409 (jka-compr-call-process compress-program | |
410 (concat compress-message | |
411 " " base-name) | |
412 temp-file | |
413 temp-buffer | |
414 nil | |
415 compress-args) | |
416 | |
417 (set-buffer temp-buffer) | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
418 (jka-compr-run-real-handler 'write-region |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
419 (list (point-min) (point-max) |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
420 filename |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
421 (and append can-append) 'dont)) |
6002 | 422 (erase-buffer) |
423 (set-buffer cbuf) | |
424 | |
425 (jka-compr-delete-temp-file temp-file) | |
426 | |
427 (and | |
428 compress-message | |
429 (message "%s %s...done" compress-message base-name)) | |
430 | |
431 (cond | |
432 ((eq visit t) | |
433 (setq buffer-file-name filename) | |
434 (set-visited-file-modtime)) | |
435 ((stringp visit) | |
436 (setq buffer-file-name visit) | |
437 (let ((buffer-file-name filename)) | |
438 (set-visited-file-modtime)))) | |
439 | |
440 (and (or (eq visit t) | |
441 (eq visit nil) | |
442 (stringp visit)) | |
443 (message "Wrote %s" visit-file)) | |
444 | |
445 nil) | |
446 | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
447 (jka-compr-run-real-handler 'write-region |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
448 (list start end filename append visit))))) |
6002 | 449 |
450 | |
6218
f4d5338c2142
(jka-compr-insert-file-contents): Handle 5th arg.
Richard M. Stallman <rms@gnu.org>
parents:
6041
diff
changeset
|
451 (defun jka-compr-insert-file-contents (file &optional visit beg end replace) |
6002 | 452 (barf-if-buffer-read-only) |
453 | |
454 (and (or beg end) | |
455 visit | |
456 (error "Attempt to visit less than an entire file")) | |
457 | |
458 (let* ((filename (expand-file-name file)) | |
459 (info (jka-compr-get-compression-info filename))) | |
460 | |
461 (if info | |
462 | |
463 (let ((uncompress-message (jka-compr-info-uncompress-message info)) | |
464 (uncompress-program (jka-compr-info-uncompress-program info)) | |
465 (uncompress-args (jka-compr-info-uncompress-args info)) | |
466 (base-name (file-name-nondirectory filename)) | |
467 (notfound nil) | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
468 (local-copy |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
469 (jka-compr-run-real-handler 'file-local-copy (list filename))) |
6002 | 470 local-file |
471 size start) | |
472 | |
473 (setq local-file (or local-copy filename)) | |
474 | |
475 (and | |
476 visit | |
477 (setq buffer-file-name filename)) | |
478 | |
479 (unwind-protect ; to make sure local-copy gets deleted | |
480 | |
481 (progn | |
482 | |
483 (and | |
484 uncompress-message | |
485 (message "%s %s..." uncompress-message base-name)) | |
486 | |
487 (condition-case error-code | |
488 | |
489 (progn | |
8774
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
490 (if replace |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
491 (goto-char (point-min))) |
6002 | 492 (setq start (point)) |
493 (if (or beg end) | |
494 (jka-compr-partial-uncompress uncompress-program | |
495 (concat uncompress-message | |
496 " " base-name) | |
497 uncompress-args | |
498 local-file | |
499 (or beg 0) | |
500 (if (and beg end) | |
501 (- end beg) | |
502 end)) | |
11621
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
503 ;; 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
|
504 ;; 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
|
505 ;; really edit the buffer. |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
506 (let ((buffer-file-name |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
507 (if visit nil buffer-file-name))) |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
508 (jka-compr-call-process uncompress-program |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
509 (concat uncompress-message |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
510 " " base-name) |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
511 local-file |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
512 t |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
513 nil |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
514 uncompress-args))) |
6002 | 515 (setq size (- (point) start)) |
8774
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
516 (if replace |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
517 (let* ((del-beg (point)) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
518 (del-end (+ del-beg size))) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
519 (delete-region del-beg |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
520 (min del-end (point-max))))) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
521 (goto-char start)) |
6002 | 522 (error |
523 (if (and (eq (car error-code) 'file-error) | |
524 (eq (nth 3 error-code) local-file)) | |
525 (if visit | |
526 (setq notfound error-code) | |
527 (signal 'file-error | |
528 (cons "Opening input file" | |
529 (nthcdr 2 error-code)))) | |
530 (signal (car error-code) (cdr error-code)))))) | |
531 | |
532 (and | |
533 local-copy | |
534 (file-exists-p local-copy) | |
535 (delete-file local-copy))) | |
536 | |
537 (and | |
538 visit | |
539 (progn | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
540 (unlock-buffer) |
6002 | 541 (setq buffer-file-name filename) |
542 (set-visited-file-modtime))) | |
543 | |
544 (and | |
545 uncompress-message | |
546 (message "%s %s...done" uncompress-message base-name)) | |
547 | |
548 (and | |
549 visit | |
550 notfound | |
551 (signal 'file-error | |
552 (cons "Opening input file" (nth 2 notfound)))) | |
553 | |
8774
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
554 ;; 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
|
555 (let ((p after-insert-file-functions) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
556 (insval size)) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
557 (while p |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
558 (setq insval (funcall (car p) size)) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
559 (if insval |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
560 (progn |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
561 (or (integerp insval) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
562 (signal 'wrong-type-argument |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
563 (list 'integerp insval))) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
564 (setq size insval))) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
565 (setq p (cdr p)))) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
566 |
6002 | 567 (list filename size)) |
568 | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
569 (jka-compr-run-real-handler 'insert-file-contents |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
570 (list file visit beg end replace))))) |
6002 | 571 |
572 | |
573 (defun jka-compr-file-local-copy (file) | |
574 (let* ((filename (expand-file-name file)) | |
575 (info (jka-compr-get-compression-info filename))) | |
576 | |
577 (if info | |
578 | |
579 (let ((uncompress-message (jka-compr-info-uncompress-message info)) | |
580 (uncompress-program (jka-compr-info-uncompress-program info)) | |
581 (uncompress-args (jka-compr-info-uncompress-args info)) | |
582 (base-name (file-name-nondirectory filename)) | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
583 (local-copy |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
584 (jka-compr-run-real-handler 'file-local-copy (list filename))) |
6002 | 585 (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
|
586 (temp-buffer (get-buffer-create " *jka-compr-flc-temp*")) |
6002 | 587 (notfound nil) |
588 (cbuf (current-buffer)) | |
589 local-file) | |
590 | |
591 (setq local-file (or local-copy filename)) | |
592 | |
593 (unwind-protect | |
594 | |
595 (progn | |
596 | |
597 (and | |
598 uncompress-message | |
599 (message "%s %s..." uncompress-message base-name)) | |
600 | |
601 (set-buffer temp-buffer) | |
602 | |
603 (jka-compr-call-process uncompress-program | |
604 (concat uncompress-message | |
605 " " base-name) | |
606 local-file | |
607 t | |
608 nil | |
609 uncompress-args) | |
610 | |
611 (and | |
612 uncompress-message | |
613 (message "%s %s...done" uncompress-message base-name)) | |
614 | |
615 (write-region | |
616 (point-min) (point-max) temp-file nil 'dont)) | |
617 | |
618 (and | |
619 local-copy | |
620 (file-exists-p local-copy) | |
621 (delete-file local-copy)) | |
622 | |
623 (set-buffer cbuf) | |
624 (kill-buffer temp-buffer)) | |
625 | |
626 temp-file) | |
627 | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
628 (jka-compr-run-real-handler 'file-local-copy (list filename))))) |
6002 | 629 |
630 | |
631 ;;; Support for loading compressed files. | |
632 (defun jka-compr-load (file &optional noerror nomessage nosuffix) | |
633 "Documented as original." | |
634 | |
635 (let* ((local-copy (jka-compr-file-local-copy file)) | |
636 (load-file (or local-copy file))) | |
637 | |
638 (unwind-protect | |
639 | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
640 (let (inhibit-file-name-operation |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
641 inhibit-file-name-handlers) |
6002 | 642 (or nomessage |
643 (message "Loading %s..." file)) | |
644 | |
12758
a285eaa710ac
(jka-compr-load): Bind load-force-doc-strings.
Richard M. Stallman <rms@gnu.org>
parents:
11635
diff
changeset
|
645 (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
|
646 (load load-file noerror t t)) |
6002 | 647 |
648 (or nomessage | |
649 (message "Loading %s...done." file))) | |
650 | |
651 (jka-compr-delete-temp-file local-copy)) | |
652 | |
653 t)) | |
12922
e171a85fd6b0
(jka-compr-byte-compiler-base-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12758
diff
changeset
|
654 |
e171a85fd6b0
(jka-compr-byte-compiler-base-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12758
diff
changeset
|
655 (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
|
656 (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
|
657 (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
|
658 (save-match-data |
e171a85fd6b0
(jka-compr-byte-compiler-base-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12758
diff
changeset
|
659 (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
|
660 file))) |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
661 |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
662 (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
|
663 (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
|
664 (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
|
665 (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
|
666 (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
|
667 'jka-compr-byte-compiler-base-file-name) |
6002 | 668 |
669 (defun jka-compr-handler (operation &rest args) | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
670 (save-match-data |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
671 (let ((jka-op (get operation 'jka-compr))) |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
672 (if jka-op |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
673 (apply jka-op args) |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
674 (jka-compr-run-real-handler operation args))))) |
6002 | 675 |
7066 | 676 ;; If we are given an operation that we don't handle, |
677 ;; call the Emacs primitive for that operation, | |
678 ;; and manipulate the inhibit variables | |
679 ;; to prevent the primitive from calling our handler again. | |
680 (defun jka-compr-run-real-handler (operation args) | |
681 (let ((inhibit-file-name-handlers | |
682 (cons 'jka-compr-handler | |
683 (and (eq inhibit-file-name-operation operation) | |
684 inhibit-file-name-handlers))) | |
685 (inhibit-file-name-operation operation)) | |
686 (apply operation args))) | |
687 | |
13887
4362f8b4f83c
(auto-compression-mode): This is now a stub function
Richard M. Stallman <rms@gnu.org>
parents:
13514
diff
changeset
|
688 ;;;###autoload(defun auto-compression-mode (&optional arg) |
13900
37c5ece37d71
(auto-compression-mode): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
13887
diff
changeset
|
689 ;;;###autoload "\ |
37c5ece37d71
(auto-compression-mode): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
13887
diff
changeset
|
690 ;;;###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
|
691 ;;;###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
|
692 ;;;###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
|
693 ;;;###autoload (interactive "P") |
13887
4362f8b4f83c
(auto-compression-mode): This is now a stub function
Richard M. Stallman <rms@gnu.org>
parents:
13514
diff
changeset
|
694 ;;;###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
|
695 ;;;###autoload (progn |
4362f8b4f83c
(auto-compression-mode): This is now a stub function
Richard M. Stallman <rms@gnu.org>
parents:
13514
diff
changeset
|
696 ;;;###autoload (require 'jka-compr) |
4362f8b4f83c
(auto-compression-mode): This is now a stub function
Richard M. Stallman <rms@gnu.org>
parents:
13514
diff
changeset
|
697 ;;;###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
|
698 ;;;###autoload (toggle-auto-compression))) |
13900
37c5ece37d71
(auto-compression-mode): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
13887
diff
changeset
|
699 ;;;###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
|
700 |
13900
37c5ece37d71
(auto-compression-mode): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
13887
diff
changeset
|
701 (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
|
702 "Toggle automatic file compression and uncompression. |
6002 | 703 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
|
704 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
|
705 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
|
706 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
|
707 (interactive "P\np") |
6002 | 708 (let* ((installed (jka-compr-installed-p)) |
709 (flag (if (null arg) | |
710 (not installed) | |
711 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0)))))) | |
712 | |
713 (cond | |
714 ((and flag installed) t) ; already installed | |
715 | |
716 ((and (not flag) (not installed)) nil) ; already not installed | |
717 | |
718 (flag | |
719 (jka-compr-install)) | |
720 | |
721 (t | |
722 (jka-compr-uninstall))) | |
723 | |
724 | |
13900
37c5ece37d71
(auto-compression-mode): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
13887
diff
changeset
|
725 (and message |
6002 | 726 (if flag |
727 (message "Automatic file (de)compression is now ON.") | |
728 (message "Automatic file (de)compression is now OFF."))) | |
729 | |
730 flag)) | |
731 | |
732 (defun jka-compr-build-file-regexp () | |
733 (concat | |
734 "\\(" | |
735 (mapconcat | |
736 'jka-compr-info-regexp | |
737 jka-compr-compression-info-list | |
738 "\\)\\|\\(") | |
739 "\\)")) | |
740 | |
741 | |
742 (defun jka-compr-install () | |
743 "Install jka-compr. | |
11296
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
744 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
|
745 and `inhibit-first-line-modes-suffixes'." |
6002 | 746 |
747 (setq jka-compr-file-name-handler-entry | |
748 (cons (jka-compr-build-file-regexp) 'jka-compr-handler)) | |
749 | |
750 (setq file-name-handler-alist (cons jka-compr-file-name-handler-entry | |
751 file-name-handler-alist)) | |
752 | |
753 (mapcar | |
754 (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
|
755 (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
|
756 ;; 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
|
757 ;; 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
|
758 ;; sans `.gz'. |
9ff0cfb97106
(jka-compr-install): Add items to inhibit-first-line-modes-suffixes.
Richard M. Stallman <rms@gnu.org>
parents:
9493
diff
changeset
|
759 (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
|
760 (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
|
761 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
|
762 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
|
763 ;; 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
|
764 ;; 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
|
765 ;; -*- 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
|
766 ;; 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
|
767 (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
|
768 (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
|
769 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
|
770 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
|
771 (setq auto-mode-alist |
0160fca3dee1
(jka-compr-mode-compression-info-list): Add .tgz extension.
Richard M. Stallman <rms@gnu.org>
parents:
9084
diff
changeset
|
772 (append auto-mode-alist jka-compr-mode-alist-additions))) |
6002 | 773 |
774 | |
775 (defun jka-compr-uninstall () | |
776 "Uninstall jka-compr. | |
7066 | 777 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
|
778 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
|
779 by `jka-compr-installed'." |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
780 ;; Delete from inhibit-first-line-modes-suffixes |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
781 ;; what jka-compr-install added. |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
782 (mapcar |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
783 (function (lambda (x) |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
784 (and (jka-compr-info-strip-extension x) |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
785 (setq inhibit-first-line-modes-suffixes |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
786 (delete (jka-compr-info-regexp x) |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
787 inhibit-first-line-modes-suffixes))))) |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
788 jka-compr-compression-info-list) |
6002 | 789 |
790 (let* ((fnha (cons nil file-name-handler-alist)) | |
791 (last fnha)) | |
792 | |
793 (while (cdr last) | |
794 (if (eq (cdr (car (cdr last))) 'jka-compr-handler) | |
795 (setcdr last (cdr (cdr last))) | |
796 (setq last (cdr last)))) | |
797 | |
798 (setq file-name-handler-alist (cdr fnha))) | |
799 | |
800 (let* ((ama (cons nil auto-mode-alist)) | |
801 (last ama) | |
802 entry) | |
803 | |
804 (while (cdr last) | |
805 (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
|
806 (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
|
807 (and (consp (cdr entry)) |
0160fca3dee1
(jka-compr-mode-compression-info-list): Add .tgz extension.
Richard M. Stallman <rms@gnu.org>
parents:
9084
diff
changeset
|
808 (eq (nth 2 entry) 'jka-compr))) |
6002 | 809 (setcdr last (cdr (cdr last))) |
810 (setq last (cdr last)))) | |
811 | |
812 (setq auto-mode-alist (cdr ama)))) | |
813 | |
814 | |
815 (defun jka-compr-installed-p () | |
816 "Return non-nil if jka-compr is installed. | |
7066 | 817 The return value is the entry in `file-name-handler-alist' for jka-compr." |
6002 | 818 |
819 (let ((fnha file-name-handler-alist) | |
820 (installed nil)) | |
821 | |
822 (while (and fnha (not installed)) | |
823 (and (eq (cdr (car fnha)) 'jka-compr-handler) | |
824 (setq installed (car fnha))) | |
825 (setq fnha (cdr fnha))) | |
826 | |
827 installed)) | |
828 | |
829 | |
830 ;;; Add the file I/O hook if it does not already exist. | |
831 ;;; Make sure that jka-compr-file-name-handler-entry is eq to the | |
832 ;;; entry for jka-compr in file-name-handler-alist. | |
833 (and (jka-compr-installed-p) | |
834 (jka-compr-uninstall)) | |
835 | |
836 (jka-compr-install) | |
837 | |
838 | |
839 (provide 'jka-compr) | |
840 | |
841 ;; jka-compr.el ends here. |