annotate lisp/packages/jka-compr.el @ 214:c5d88c05e1e9

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