Mercurial > emacs
annotate lisp/jka-compr.el @ 17179:9468df9944cc
(copy_part_of_rope): Declare glyph as type GLYPH. For a
invalid character code, use ' ' (space).
(display_string, display_text_line): Check validity of character
code before calling fix_glyph.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 18 Mar 1997 23:31:34 +0000 |
parents | 6d680b18a47b |
children | f0ff96a35eb8 |
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))) | |
16940
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
209 (with-current-buffer errbuf |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
210 (widen) (erase-buffer) |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
211 (insert (format "Error while executing \"%s %s < %s\"\n\n" |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
212 prog |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
213 (mapconcat 'identity args " ") |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
214 infile)) |
6002 | 215 |
16940
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
216 (and errfile |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
217 (insert-file-contents errfile))) |
6002 | 218 (display-buffer errbuf)) |
219 | |
16940
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
220 (signal 'compression-error |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
221 (list "Opening input file" (format "error %s" message) infile))) |
6002 | 222 |
223 | |
224 (defvar jka-compr-dd-program | |
225 "/bin/dd") | |
226 | |
227 | |
6041
649926e9c1a8
(jka-compr-partial-uncompress): Make dd give you
Richard M. Stallman <rms@gnu.org>
parents:
6002
diff
changeset
|
228 (defvar jka-compr-dd-blocksize 256) |
6002 | 229 |
230 | |
231 (defun jka-compr-partial-uncompress (prog message args infile beg len) | |
232 "Call program PROG with ARGS args taking input from INFILE. | |
233 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
|
234 to keep: LEN chars starting BEG chars from the beginning." |
6002 | 235 (let* ((skip (/ beg jka-compr-dd-blocksize)) |
236 (prefix (- beg (* skip jka-compr-dd-blocksize))) | |
237 (count (and len (1+ (/ (+ len prefix) jka-compr-dd-blocksize)))) | |
238 (start (point)) | |
239 (err-file (jka-compr-make-temp-name)) | |
240 (run-string (format "%s %s 2> %s | %s bs=%d skip=%d %s 2> /dev/null" | |
241 prog | |
242 (mapconcat 'identity args " ") | |
243 err-file | |
244 jka-compr-dd-program | |
245 jka-compr-dd-blocksize | |
246 skip | |
6041
649926e9c1a8
(jka-compr-partial-uncompress): Make dd give you
Richard M. Stallman <rms@gnu.org>
parents:
6002
diff
changeset
|
247 ;; 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
|
248 ;; 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
|
249 ;; 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
|
250 (if count (concat "count=" (1+ count)) "")))) |
6002 | 251 |
252 (unwind-protect | |
253 (or (memq (call-process jka-compr-shell | |
254 infile t nil "-c" | |
255 run-string) | |
256 jka-compr-acceptable-retval-list) | |
257 | |
258 (jka-compr-error prog args infile message err-file)) | |
259 | |
260 (jka-compr-delete-temp-file err-file)) | |
261 | |
8065
31eb7a0e2763
(jka-compr-partial-uncompress): Handle the case where
Richard M. Stallman <rms@gnu.org>
parents:
7976
diff
changeset
|
262 ;; Delete the stuff after what we want, if there is any. |
6002 | 263 (and |
6041
649926e9c1a8
(jka-compr-partial-uncompress): Make dd give you
Richard M. Stallman <rms@gnu.org>
parents:
6002
diff
changeset
|
264 len |
8065
31eb7a0e2763
(jka-compr-partial-uncompress): Handle the case where
Richard M. Stallman <rms@gnu.org>
parents:
7976
diff
changeset
|
265 (< (+ start prefix len) (point)) |
6041
649926e9c1a8
(jka-compr-partial-uncompress): Make dd give you
Richard M. Stallman <rms@gnu.org>
parents:
6002
diff
changeset
|
266 (delete-region (+ start prefix len) (point))) |
6002 | 267 |
8065
31eb7a0e2763
(jka-compr-partial-uncompress): Handle the case where
Richard M. Stallman <rms@gnu.org>
parents:
7976
diff
changeset
|
268 ;; Delete the stuff before what we want. |
6002 | 269 (delete-region start (+ start prefix)))) |
270 | |
271 | |
272 (defun jka-compr-call-process (prog message infile output temp args) | |
273 (if jka-compr-use-shell | |
274 | |
275 (let ((err-file (jka-compr-make-temp-name))) | |
276 | |
277 (unwind-protect | |
278 | |
279 (or (memq | |
280 (call-process jka-compr-shell infile | |
281 (if (stringp output) nil output) | |
282 nil | |
283 "-c" | |
284 (format "%s %s 2> %s %s" | |
285 prog | |
286 (mapconcat 'identity args " ") | |
287 err-file | |
288 (if (stringp output) | |
289 (concat "> " output) | |
290 ""))) | |
291 jka-compr-acceptable-retval-list) | |
292 | |
293 (jka-compr-error prog args infile message err-file)) | |
294 | |
295 (jka-compr-delete-temp-file err-file))) | |
296 | |
297 (or (zerop | |
298 (apply 'call-process | |
299 prog | |
300 infile | |
301 (if (stringp output) temp output) | |
302 nil | |
303 args)) | |
304 (jka-compr-error prog args infile message)) | |
305 | |
306 (and (stringp output) | |
16940
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
307 (with-current-buffer temp |
6002 | 308 (write-region (point-min) (point-max) output) |
16940
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
309 (erase-buffer))))) |
6002 | 310 |
311 | |
312 ;;; Support for temp files. Much of this was inspired if not lifted | |
313 ;;; from ange-ftp. | |
314 | |
315 (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
|
316 (expand-file-name "jka-com" |
b337bd642856
(jka-compr-temp-name-template): Initialize using TMPDIR.
Richard M. Stallman <rms@gnu.org>
parents:
15083
diff
changeset
|
317 (or (getenv "TMPDIR") "/tmp/")) |
6002 | 318 "Prefix added to all temp files created by jka-compr. |
7066 | 319 There should be no more than seven characters after the final `/'") |
6002 | 320 |
321 (defvar jka-compr-temp-name-table (make-vector 31 nil)) | |
322 | |
323 (defun jka-compr-make-temp-name (&optional local-copy) | |
324 "This routine will return the name of a new file." | |
325 (let* ((lastchar ?a) | |
326 (prevchar ?a) | |
327 (template (concat jka-compr-temp-name-template "aa")) | |
328 (lastpos (1- (length template))) | |
329 (not-done t) | |
330 file | |
331 entry) | |
332 | |
333 (while not-done | |
334 (aset template lastpos lastchar) | |
335 (setq file (concat (make-temp-name template) "#")) | |
336 (setq entry (intern file jka-compr-temp-name-table)) | |
337 (if (or (get entry 'active) | |
338 (file-exists-p file)) | |
339 | |
340 (progn | |
341 (setq lastchar (1+ lastchar)) | |
342 (if (> lastchar ?z) | |
343 (progn | |
344 (setq prevchar (1+ prevchar)) | |
345 (setq lastchar ?a) | |
346 (if (> prevchar ?z) | |
347 (error "Can't allocate temp file.") | |
348 (aset template (1- lastpos) prevchar))))) | |
349 | |
350 (put entry 'active (not local-copy)) | |
351 (setq not-done nil))) | |
352 | |
353 file)) | |
354 | |
355 | |
356 (defun jka-compr-delete-temp-file (temp) | |
357 | |
358 (put (intern temp jka-compr-temp-name-table) | |
359 'active nil) | |
360 | |
361 (condition-case () | |
362 (delete-file temp) | |
363 (error nil))) | |
364 | |
365 | |
366 (defun jka-compr-write-region (start end file &optional append visit) | |
367 (let* ((filename (expand-file-name file)) | |
368 (visit-file (if (stringp visit) (expand-file-name visit) filename)) | |
369 (info (jka-compr-get-compression-info visit-file))) | |
370 | |
371 (if info | |
372 | |
373 (let ((can-append (jka-compr-info-can-append info)) | |
374 (compress-program (jka-compr-info-compress-program info)) | |
375 (compress-message (jka-compr-info-compress-message info)) | |
376 (uncompress-program (jka-compr-info-uncompress-program info)) | |
377 (uncompress-message (jka-compr-info-uncompress-message info)) | |
378 (compress-args (jka-compr-info-compress-args info)) | |
379 (uncompress-args (jka-compr-info-uncompress-args info)) | |
380 (base-name (file-name-nondirectory visit-file)) | |
16940
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
381 temp-file temp-buffer) |
6002 | 382 |
16940
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
383 (setq temp-buffer (get-buffer-create " *jka-compr-wr-temp*")) |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
384 (with-current-buffer temp-buffer |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
385 (widen) (erase-buffer)) |
6002 | 386 |
11635
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
387 (if (and append |
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
388 (not can-append) |
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
389 (file-exists-p filename)) |
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
390 |
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
391 (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
|
392 (local-file (or local-copy filename))) |
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
393 |
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
394 (setq temp-file local-file)) |
6002 | 395 |
11635
b56f6afa16ec
(jka-compr-write-region): Handle the append
Richard M. Stallman <rms@gnu.org>
parents:
11621
diff
changeset
|
396 (setq temp-file (jka-compr-make-temp-name))) |
6002 | 397 |
398 (and | |
399 compress-message | |
400 (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
|
401 |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
402 (jka-compr-run-real-handler 'write-region |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
403 (list start end temp-file t 'dont)) |
6002 | 404 |
405 (jka-compr-call-process compress-program | |
406 (concat compress-message | |
407 " " base-name) | |
408 temp-file | |
409 temp-buffer | |
410 nil | |
411 compress-args) | |
412 | |
16940
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
413 (with-current-buffer temp-buffer |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
414 (jka-compr-run-real-handler 'write-region |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
415 (list (point-min) (point-max) |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
416 filename |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
417 (and append can-append) 'dont)) |
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
418 (erase-buffer)) |
6002 | 419 |
420 (jka-compr-delete-temp-file temp-file) | |
421 | |
422 (and | |
423 compress-message | |
424 (message "%s %s...done" compress-message base-name)) | |
425 | |
426 (cond | |
427 ((eq visit t) | |
428 (setq buffer-file-name filename) | |
429 (set-visited-file-modtime)) | |
430 ((stringp visit) | |
431 (setq buffer-file-name visit) | |
432 (let ((buffer-file-name filename)) | |
433 (set-visited-file-modtime)))) | |
434 | |
435 (and (or (eq visit t) | |
436 (eq visit nil) | |
437 (stringp visit)) | |
438 (message "Wrote %s" visit-file)) | |
439 | |
440 nil) | |
441 | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
442 (jka-compr-run-real-handler 'write-region |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
443 (list start end filename append visit))))) |
6002 | 444 |
445 | |
6218
f4d5338c2142
(jka-compr-insert-file-contents): Handle 5th arg.
Richard M. Stallman <rms@gnu.org>
parents:
6041
diff
changeset
|
446 (defun jka-compr-insert-file-contents (file &optional visit beg end replace) |
6002 | 447 (barf-if-buffer-read-only) |
448 | |
449 (and (or beg end) | |
450 visit | |
451 (error "Attempt to visit less than an entire file")) | |
452 | |
453 (let* ((filename (expand-file-name file)) | |
454 (info (jka-compr-get-compression-info filename))) | |
455 | |
456 (if info | |
457 | |
458 (let ((uncompress-message (jka-compr-info-uncompress-message info)) | |
459 (uncompress-program (jka-compr-info-uncompress-program info)) | |
460 (uncompress-args (jka-compr-info-uncompress-args info)) | |
461 (base-name (file-name-nondirectory filename)) | |
462 (notfound nil) | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
463 (local-copy |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
464 (jka-compr-run-real-handler 'file-local-copy (list filename))) |
6002 | 465 local-file |
466 size start) | |
467 | |
468 (setq local-file (or local-copy filename)) | |
469 | |
470 (and | |
471 visit | |
472 (setq buffer-file-name filename)) | |
473 | |
474 (unwind-protect ; to make sure local-copy gets deleted | |
475 | |
476 (progn | |
477 | |
478 (and | |
479 uncompress-message | |
480 (message "%s %s..." uncompress-message base-name)) | |
481 | |
482 (condition-case error-code | |
483 | |
484 (progn | |
8774
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
485 (if replace |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
486 (goto-char (point-min))) |
6002 | 487 (setq start (point)) |
488 (if (or beg end) | |
489 (jka-compr-partial-uncompress uncompress-program | |
490 (concat uncompress-message | |
491 " " base-name) | |
492 uncompress-args | |
493 local-file | |
494 (or beg 0) | |
495 (if (and beg end) | |
496 (- end beg) | |
497 end)) | |
11621
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
498 ;; 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
|
499 ;; 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
|
500 ;; really edit the buffer. |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
501 (let ((buffer-file-name |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
502 (if visit nil buffer-file-name))) |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
503 (jka-compr-call-process uncompress-program |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
504 (concat uncompress-message |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
505 " " base-name) |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
506 local-file |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
507 t |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
508 nil |
710b5ce824c2
(jka-compr-insert-file-contents): When visiting,
Richard M. Stallman <rms@gnu.org>
parents:
11296
diff
changeset
|
509 uncompress-args))) |
6002 | 510 (setq size (- (point) start)) |
8774
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
511 (if replace |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
512 (let* ((del-beg (point)) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
513 (del-end (+ del-beg size))) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
514 (delete-region del-beg |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
515 (min del-end (point-max))))) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
516 (goto-char start)) |
6002 | 517 (error |
518 (if (and (eq (car error-code) 'file-error) | |
519 (eq (nth 3 error-code) local-file)) | |
520 (if visit | |
521 (setq notfound error-code) | |
522 (signal 'file-error | |
523 (cons "Opening input file" | |
524 (nthcdr 2 error-code)))) | |
525 (signal (car error-code) (cdr error-code)))))) | |
526 | |
527 (and | |
528 local-copy | |
529 (file-exists-p local-copy) | |
530 (delete-file local-copy))) | |
531 | |
532 (and | |
533 visit | |
534 (progn | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
535 (unlock-buffer) |
6002 | 536 (setq buffer-file-name filename) |
537 (set-visited-file-modtime))) | |
538 | |
539 (and | |
540 uncompress-message | |
541 (message "%s %s...done" uncompress-message base-name)) | |
542 | |
543 (and | |
544 visit | |
545 notfound | |
546 (signal 'file-error | |
547 (cons "Opening input file" (nth 2 notfound)))) | |
548 | |
8774
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
549 ;; 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
|
550 (let ((p after-insert-file-functions) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
551 (insval size)) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
552 (while p |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
553 (setq insval (funcall (car p) size)) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
554 (if insval |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
555 (progn |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
556 (or (integerp insval) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
557 (signal 'wrong-type-argument |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
558 (list 'integerp insval))) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
559 (setq size insval))) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
560 (setq p (cdr p)))) |
ade4b542a74c
(jka-compr-compression-info-list): Expand regular
Richard M. Stallman <rms@gnu.org>
parents:
8593
diff
changeset
|
561 |
6002 | 562 (list filename size)) |
563 | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
564 (jka-compr-run-real-handler 'insert-file-contents |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
565 (list file visit beg end replace))))) |
6002 | 566 |
567 | |
568 (defun jka-compr-file-local-copy (file) | |
569 (let* ((filename (expand-file-name file)) | |
570 (info (jka-compr-get-compression-info filename))) | |
571 | |
572 (if info | |
573 | |
574 (let ((uncompress-message (jka-compr-info-uncompress-message info)) | |
575 (uncompress-program (jka-compr-info-uncompress-program info)) | |
576 (uncompress-args (jka-compr-info-uncompress-args info)) | |
577 (base-name (file-name-nondirectory filename)) | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
578 (local-copy |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
579 (jka-compr-run-real-handler 'file-local-copy (list filename))) |
6002 | 580 (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
|
581 (temp-buffer (get-buffer-create " *jka-compr-flc-temp*")) |
6002 | 582 (notfound nil) |
583 local-file) | |
584 | |
585 (setq local-file (or local-copy filename)) | |
586 | |
587 (unwind-protect | |
588 | |
16940
6d680b18a47b
(jka-compr-error): Use with-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
16630
diff
changeset
|
589 (with-current-buffer temp-buffer |
6002 | 590 |
591 (and | |
592 uncompress-message | |
593 (message "%s %s..." uncompress-message base-name)) | |
594 | |
595 (jka-compr-call-process uncompress-program | |
596 (concat uncompress-message | |
597 " " base-name) | |
598 local-file | |
599 t | |
600 nil | |
601 uncompress-args) | |
602 | |
603 (and | |
604 uncompress-message | |
605 (message "%s %s...done" uncompress-message base-name)) | |
606 | |
607 (write-region | |
608 (point-min) (point-max) temp-file nil 'dont)) | |
609 | |
610 (and | |
611 local-copy | |
612 (file-exists-p local-copy) | |
613 (delete-file local-copy)) | |
614 | |
615 (kill-buffer temp-buffer)) | |
616 | |
617 temp-file) | |
618 | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
619 (jka-compr-run-real-handler 'file-local-copy (list filename))))) |
6002 | 620 |
621 | |
622 ;;; Support for loading compressed files. | |
623 (defun jka-compr-load (file &optional noerror nomessage nosuffix) | |
624 "Documented as original." | |
625 | |
626 (let* ((local-copy (jka-compr-file-local-copy file)) | |
627 (load-file (or local-copy file))) | |
628 | |
629 (unwind-protect | |
630 | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
631 (let (inhibit-file-name-operation |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
632 inhibit-file-name-handlers) |
6002 | 633 (or nomessage |
634 (message "Loading %s..." file)) | |
635 | |
12758
a285eaa710ac
(jka-compr-load): Bind load-force-doc-strings.
Richard M. Stallman <rms@gnu.org>
parents:
11635
diff
changeset
|
636 (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
|
637 (load load-file noerror t t)) |
6002 | 638 |
639 (or nomessage | |
640 (message "Loading %s...done." file))) | |
641 | |
642 (jka-compr-delete-temp-file local-copy)) | |
643 | |
644 t)) | |
12922
e171a85fd6b0
(jka-compr-byte-compiler-base-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12758
diff
changeset
|
645 |
e171a85fd6b0
(jka-compr-byte-compiler-base-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12758
diff
changeset
|
646 (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
|
647 (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
|
648 (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
|
649 (save-match-data |
e171a85fd6b0
(jka-compr-byte-compiler-base-file-name): New function.
Richard M. Stallman <rms@gnu.org>
parents:
12758
diff
changeset
|
650 (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
|
651 file))) |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
652 |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
653 (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
|
654 (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
|
655 (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
|
656 (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
|
657 (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
|
658 'jka-compr-byte-compiler-base-file-name) |
6002 | 659 |
660 (defun jka-compr-handler (operation &rest args) | |
7976
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
661 (save-match-data |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
662 (let ((jka-op (get operation 'jka-compr))) |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
663 (if jka-op |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
664 (apply jka-op args) |
b72b84744a85
Use plists to record handlers.
Richard M. Stallman <rms@gnu.org>
parents:
7617
diff
changeset
|
665 (jka-compr-run-real-handler operation args))))) |
6002 | 666 |
7066 | 667 ;; If we are given an operation that we don't handle, |
668 ;; call the Emacs primitive for that operation, | |
669 ;; and manipulate the inhibit variables | |
670 ;; to prevent the primitive from calling our handler again. | |
671 (defun jka-compr-run-real-handler (operation args) | |
672 (let ((inhibit-file-name-handlers | |
673 (cons 'jka-compr-handler | |
674 (and (eq inhibit-file-name-operation operation) | |
675 inhibit-file-name-handlers))) | |
676 (inhibit-file-name-operation operation)) | |
677 (apply operation args))) | |
678 | |
13887
4362f8b4f83c
(auto-compression-mode): This is now a stub function
Richard M. Stallman <rms@gnu.org>
parents:
13514
diff
changeset
|
679 ;;;###autoload(defun auto-compression-mode (&optional arg) |
13900
37c5ece37d71
(auto-compression-mode): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
13887
diff
changeset
|
680 ;;;###autoload "\ |
37c5ece37d71
(auto-compression-mode): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
13887
diff
changeset
|
681 ;;;###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
|
682 ;;;###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
|
683 ;;;###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
|
684 ;;;###autoload (interactive "P") |
13887
4362f8b4f83c
(auto-compression-mode): This is now a stub function
Richard M. Stallman <rms@gnu.org>
parents:
13514
diff
changeset
|
685 ;;;###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
|
686 ;;;###autoload (progn |
4362f8b4f83c
(auto-compression-mode): This is now a stub function
Richard M. Stallman <rms@gnu.org>
parents:
13514
diff
changeset
|
687 ;;;###autoload (require 'jka-compr) |
4362f8b4f83c
(auto-compression-mode): This is now a stub function
Richard M. Stallman <rms@gnu.org>
parents:
13514
diff
changeset
|
688 ;;;###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
|
689 ;;;###autoload (toggle-auto-compression))) |
13900
37c5ece37d71
(auto-compression-mode): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
13887
diff
changeset
|
690 ;;;###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
|
691 |
13900
37c5ece37d71
(auto-compression-mode): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
13887
diff
changeset
|
692 (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
|
693 "Toggle automatic file compression and uncompression. |
6002 | 694 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
|
695 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
|
696 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
|
697 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
|
698 (interactive "P\np") |
6002 | 699 (let* ((installed (jka-compr-installed-p)) |
700 (flag (if (null arg) | |
701 (not installed) | |
702 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0)))))) | |
703 | |
704 (cond | |
705 ((and flag installed) t) ; already installed | |
706 | |
707 ((and (not flag) (not installed)) nil) ; already not installed | |
708 | |
709 (flag | |
710 (jka-compr-install)) | |
711 | |
712 (t | |
713 (jka-compr-uninstall))) | |
714 | |
715 | |
13900
37c5ece37d71
(auto-compression-mode): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents:
13887
diff
changeset
|
716 (and message |
6002 | 717 (if flag |
718 (message "Automatic file (de)compression is now ON.") | |
719 (message "Automatic file (de)compression is now OFF."))) | |
720 | |
721 flag)) | |
722 | |
723 (defun jka-compr-build-file-regexp () | |
724 (concat | |
725 "\\(" | |
726 (mapconcat | |
727 'jka-compr-info-regexp | |
728 jka-compr-compression-info-list | |
729 "\\)\\|\\(") | |
730 "\\)")) | |
731 | |
732 | |
733 (defun jka-compr-install () | |
734 "Install jka-compr. | |
11296
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
735 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
|
736 and `inhibit-first-line-modes-suffixes'." |
6002 | 737 |
738 (setq jka-compr-file-name-handler-entry | |
739 (cons (jka-compr-build-file-regexp) 'jka-compr-handler)) | |
740 | |
741 (setq file-name-handler-alist (cons jka-compr-file-name-handler-entry | |
742 file-name-handler-alist)) | |
743 | |
744 (mapcar | |
745 (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
|
746 (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
|
747 ;; 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
|
748 ;; 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
|
749 ;; sans `.gz'. |
9ff0cfb97106
(jka-compr-install): Add items to inhibit-first-line-modes-suffixes.
Richard M. Stallman <rms@gnu.org>
parents:
9493
diff
changeset
|
750 (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
|
751 (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
|
752 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
|
753 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
|
754 ;; 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
|
755 ;; 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
|
756 ;; -*- 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
|
757 ;; 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
|
758 (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
|
759 (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
|
760 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
|
761 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
|
762 (setq auto-mode-alist |
0160fca3dee1
(jka-compr-mode-compression-info-list): Add .tgz extension.
Richard M. Stallman <rms@gnu.org>
parents:
9084
diff
changeset
|
763 (append auto-mode-alist jka-compr-mode-alist-additions))) |
6002 | 764 |
765 | |
766 (defun jka-compr-uninstall () | |
767 "Uninstall jka-compr. | |
7066 | 768 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
|
769 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
|
770 by `jka-compr-installed'." |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
771 ;; Delete from inhibit-first-line-modes-suffixes |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
772 ;; what jka-compr-install added. |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
773 (mapcar |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
774 (function (lambda (x) |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
775 (and (jka-compr-info-strip-extension x) |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
776 (setq inhibit-first-line-modes-suffixes |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
777 (delete (jka-compr-info-regexp x) |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
778 inhibit-first-line-modes-suffixes))))) |
c271ed10f874
(jka-compr-install): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
11179
diff
changeset
|
779 jka-compr-compression-info-list) |
6002 | 780 |
781 (let* ((fnha (cons nil file-name-handler-alist)) | |
782 (last fnha)) | |
783 | |
784 (while (cdr last) | |
785 (if (eq (cdr (car (cdr last))) 'jka-compr-handler) | |
786 (setcdr last (cdr (cdr last))) | |
787 (setq last (cdr last)))) | |
788 | |
789 (setq file-name-handler-alist (cdr fnha))) | |
790 | |
791 (let* ((ama (cons nil auto-mode-alist)) | |
792 (last ama) | |
793 entry) | |
794 | |
795 (while (cdr last) | |
796 (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
|
797 (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
|
798 (and (consp (cdr entry)) |
0160fca3dee1
(jka-compr-mode-compression-info-list): Add .tgz extension.
Richard M. Stallman <rms@gnu.org>
parents:
9084
diff
changeset
|
799 (eq (nth 2 entry) 'jka-compr))) |
6002 | 800 (setcdr last (cdr (cdr last))) |
801 (setq last (cdr last)))) | |
802 | |
803 (setq auto-mode-alist (cdr ama)))) | |
804 | |
805 | |
806 (defun jka-compr-installed-p () | |
807 "Return non-nil if jka-compr is installed. | |
7066 | 808 The return value is the entry in `file-name-handler-alist' for jka-compr." |
6002 | 809 |
810 (let ((fnha file-name-handler-alist) | |
811 (installed nil)) | |
812 | |
813 (while (and fnha (not installed)) | |
814 (and (eq (cdr (car fnha)) 'jka-compr-handler) | |
815 (setq installed (car fnha))) | |
816 (setq fnha (cdr fnha))) | |
817 | |
818 installed)) | |
819 | |
820 | |
821 ;;; Add the file I/O hook if it does not already exist. | |
822 ;;; Make sure that jka-compr-file-name-handler-entry is eq to the | |
823 ;;; entry for jka-compr in file-name-handler-alist. | |
824 (and (jka-compr-installed-p) | |
825 (jka-compr-uninstall)) | |
826 | |
827 (jka-compr-install) | |
828 | |
829 | |
830 (provide 'jka-compr) | |
831 | |
832 ;; jka-compr.el ends here. |