Pull further modified changes from Dmitry's repository (http://sphinx.net.ru/hg...
[bpt/emacs.git] / lisp / jka-cmpr-hook.el
CommitLineData
550bd514 1;;; jka-cmpr-hook.el --- preloaded code to enable jka-compr.el
216b5993 2
fde4e97e 3;; Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2002, 2003,
ae940284 4;; 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
216b5993
RS
5
6;; Author: jka@ece.cmu.edu (Jay K. Adams)
7;; Maintainer: FSF
8;; Keywords: data
9
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
216b5993 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
216b5993
RS
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
216b5993
RS
24
25;;; Commentary:
26
ea8e0537 27;; This file contains the code to enable and disable Auto-Compression mode.
216b5993
RS
28;; It is preloaded. The guts of this mode are in jka-compr.el, which
29;; is loaded only when you really try to uncompress something.
30
31;;; Code:
32
33(defgroup compression nil
7ae4587b 34 "Data compression utilities."
216b5993
RS
35 :group 'data)
36
37(defgroup jka-compr nil
7ae4587b 38 "jka-compr customization."
216b5993
RS
39 :group 'compression)
40
216b5993
RS
41;; List of all the elements we actually added to file-coding-system-alist.
42(defvar jka-compr-added-to-file-coding-system-alist nil)
43
44(defvar jka-compr-file-name-handler-entry
45 nil
ea8e0537
LT
46 "`file-name-handler-alist' entry used by jka-compr I/O functions.")
47
48;; Compiler defvars. These three variables will be defined later with
49;; `defcustom' when everything used in the :set functions is defined.
50(defvar jka-compr-compression-info-list)
51(defvar jka-compr-mode-alist-additions)
52(defvar jka-compr-load-suffixes)
53
54(defvar jka-compr-compression-info-list--internal nil
55 "Stored value of `jka-compr-compression-info-list'.
56If Auto Compression mode is enabled, this is the value of
57`jka-compr-compression-info-list' when `jka-compr-install' was last called.
58Otherwise, it is nil.")
59
60(defvar jka-compr-mode-alist-additions--internal nil
61 "Stored value of `jka-compr-mode-alist-additions'.
62If Auto Compression mode is enabled, this is the value of
63`jka-compr-mode-alist-additions' when `jka-compr-install' was last called.
64Otherwise, it is nil.")
65
66(defvar jka-compr-load-suffixes--internal nil
67 "Stored value of `jka-compr-load-suffixes'.
68If Auto Compression mode is enabled, this is the value of
69`jka-compr-load-suffixes' when `jka-compr-install' was last called.
70Otherwise, it is nil.")
71
216b5993
RS
72\f
73(defun jka-compr-build-file-regexp ()
74 (mapconcat
75 'jka-compr-info-regexp
76 jka-compr-compression-info-list
77 "\\|"))
78
be93a2c4 79;; Functions for accessing the return value of jka-compr-get-compression-info
216b5993
RS
80(defun jka-compr-info-regexp (info) (aref info 0))
81(defun jka-compr-info-compress-message (info) (aref info 1))
82(defun jka-compr-info-compress-program (info) (aref info 2))
83(defun jka-compr-info-compress-args (info) (aref info 3))
84(defun jka-compr-info-uncompress-message (info) (aref info 4))
85(defun jka-compr-info-uncompress-program (info) (aref info 5))
86(defun jka-compr-info-uncompress-args (info) (aref info 6))
87(defun jka-compr-info-can-append (info) (aref info 7))
88(defun jka-compr-info-strip-extension (info) (aref info 8))
89(defun jka-compr-info-file-magic-bytes (info) (aref info 9))
90
91
92(defun jka-compr-get-compression-info (filename)
93 "Return information about the compression scheme of FILENAME.
94The determination as to which compression scheme, if any, to use is
95based on the filename itself and `jka-compr-compression-info-list'."
96 (catch 'compression-info
97 (let ((case-fold-search nil))
6d2d1b7d 98 (mapc
216b5993
RS
99 (function (lambda (x)
100 (and (string-match (jka-compr-info-regexp x) filename)
101 (throw 'compression-info x))))
102 jka-compr-compression-info-list)
103 nil)))
104
105(defun jka-compr-install ()
106 "Install jka-compr.
107This adds entries to `file-name-handler-alist' and `auto-mode-alist'
108and `inhibit-first-line-modes-suffixes'."
109
110 (setq jka-compr-file-name-handler-entry
111 (cons (jka-compr-build-file-regexp) 'jka-compr-handler))
112
be93a2c4
SM
113 (push jka-compr-file-name-handler-entry file-name-handler-alist)
114
ea8e0537
LT
115 (setq jka-compr-compression-info-list--internal
116 jka-compr-compression-info-list
117 jka-compr-mode-alist-additions--internal
118 jka-compr-mode-alist-additions
119 jka-compr-load-suffixes--internal
120 jka-compr-load-suffixes)
121
be93a2c4
SM
122 (dolist (x jka-compr-compression-info-list)
123 ;; Don't do multibyte encoding on the compressed files.
124 (let ((elt (cons (jka-compr-info-regexp x)
125 '(no-conversion . no-conversion))))
126 (push elt file-coding-system-alist)
127 (push elt jka-compr-added-to-file-coding-system-alist))
128
129 (and (jka-compr-info-strip-extension x)
130 ;; Make entries in auto-mode-alist so that modes
131 ;; are chosen right according to the file names
132 ;; sans `.gz'.
133 (push (list (jka-compr-info-regexp x) nil 'jka-compr) auto-mode-alist)
134 ;; Also add these regexps to
135 ;; inhibit-first-line-modes-suffixes, so that a
136 ;; -*- line in the first file of a compressed tar
137 ;; file doesn't override tar-mode.
138 (push (jka-compr-info-regexp x)
139 inhibit-first-line-modes-suffixes)))
216b5993
RS
140 (setq auto-mode-alist
141 (append auto-mode-alist jka-compr-mode-alist-additions))
142
143 ;; Make sure that (load "foo") will find /bla/foo.el.gz.
ea8e0537
LT
144 (setq load-file-rep-suffixes
145 (append load-file-rep-suffixes jka-compr-load-suffixes nil)))
216b5993
RS
146
147(defun jka-compr-installed-p ()
148 "Return non-nil if jka-compr is installed.
149The return value is the entry in `file-name-handler-alist' for jka-compr."
150
151 (let ((fnha file-name-handler-alist)
152 (installed nil))
153
154 (while (and fnha (not installed))
155 (and (eq (cdr (car fnha)) 'jka-compr-handler)
156 (setq installed (car fnha)))
157 (setq fnha (cdr fnha)))
158
159 installed))
160
ea8e0537
LT
161(defun jka-compr-update ()
162 "Update Auto Compression mode for changes in option values.
163If you change the options `jka-compr-compression-info-list',
164`jka-compr-mode-alist-additions' or `jka-compr-load-suffixes'
165outside Custom, while Auto Compression mode is already enabled
166\(as it is by default), then you have to call this function
167afterward to properly update other variables. Setting these
168options through Custom does this automatically."
169 (when (jka-compr-installed-p)
170 (jka-compr-uninstall)
171 (jka-compr-install)))
172
173(defun jka-compr-set (variable value)
174 "Internal Custom :set function."
175 (set-default variable value)
176 (jka-compr-update))
177
df66263e
LT
178;; I have this defined so that .Z files are assumed to be in unix
179;; compress format; and .gz files, in gzip format, and .bz2 files in bzip fmt.
a16b6564
GM
180
181;; FIXME? It seems ugly that one has to add "\\(~\\|\\.~[0-9]+~\\)?" to
182;; all the regexps here, in order to match backup files etc.
183;; It's trivial to modify jka-compr-get-compression-info to match
184;; regexps against file-name-sans-versions, but this regexp is also
185;; used to build a file-name-handler-alist entry.
186;; find-file-name-handler does not use file-name-sans-versions.
187;; Perhaps it should,
188;; http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg00812.html,
189;; but it's used all over the place and there are probably other ramifications.
190;; One could modify jka-compr-build-file-regexp to add the backup regexp,
191;; but jka-compr-compression-info-list is a defcustom to which
192;; anything could be added, so it's easiest to leave things as they are.
df66263e
LT
193(defcustom jka-compr-compression-info-list
194 ;;[regexp
195 ;; compr-message compr-prog compr-args
196 ;; uncomp-message uncomp-prog uncomp-args
5b668628 197 ;; can-append strip-extension-flag file-magic-bytes]
df66263e
LT
198 '(["\\.Z\\(~\\|\\.~[0-9]+~\\)?\\'"
199 "compressing" "compress" ("-c")
13c8188a 200 ;; gzip is more common than uncompress. It can only read, not write.
aad96659 201 "uncompressing" "gzip" ("-c" "-q" "-d")
df66263e
LT
202 nil t "\037\235"]
203 ;; Formerly, these had an additional arg "-c", but that fails with
204 ;; "Version 0.1pl2, 29-Aug-97." (RedHat 5.1 GNU/Linux) and
205 ;; "Version 0.9.0b, 9-Sept-98".
73c03f76 206 ["\\.bz2\\(~\\|\\.~[0-9]+~\\)?\\'"
df66263e
LT
207 "bzip2ing" "bzip2" nil
208 "bunzip2ing" "bzip2" ("-d")
209 nil t "BZh"]
6f34ccdf 210 ["\\.tbz2?\\'"
df66263e
LT
211 "bzip2ing" "bzip2" nil
212 "bunzip2ing" "bzip2" ("-d")
213 nil nil "BZh"]
14414dd3 214 ["\\.\\(?:tgz\\|svgz\\|sifz\\)\\(~\\|\\.~[0-9]+~\\)?\\'"
df66263e
LT
215 "compressing" "gzip" ("-c" "-q")
216 "uncompressing" "gzip" ("-c" "-q" "-d")
217 t nil "\037\213"]
218 ["\\.g?z\\(~\\|\\.~[0-9]+~\\)?\\'"
219 "compressing" "gzip" ("-c" "-q")
220 "uncompressing" "gzip" ("-c" "-q" "-d")
221 t t "\037\213"]
222 ;; dzip is gzip with random access. Its compression program can't
223 ;; read/write stdin/out, so .dz files can only be viewed without
224 ;; saving, having their contents decompressed with gzip.
225 ["\\.dz\\'"
226 nil nil nil
227 "uncompressing" "gzip" ("-c" "-q" "-d")
228 nil t "\037\213"])
229
230 "List of vectors that describe available compression techniques.
231Each element, which describes a compression technique, is a vector of
232the form [REGEXP COMPRESS-MSG COMPRESS-PROGRAM COMPRESS-ARGS
233UNCOMPRESS-MSG UNCOMPRESS-PROGRAM UNCOMPRESS-ARGS
234APPEND-FLAG STRIP-EXTENSION-FLAG FILE-MAGIC-CHARS], where:
235
236 regexp is a regexp that matches filenames that are
237 compressed with this format
238
239 compress-msg is the message to issue to the user when doing this
240 type of compression (nil means no message)
241
242 compress-program is a program that performs this compression
243 (nil means visit file in read-only mode)
244
245 compress-args is a list of args to pass to the compress program
246
247 uncompress-msg is the message to issue to the user when doing this
248 type of uncompression (nil means no message)
249
250 uncompress-program is a program that performs this compression
251
252 uncompress-args is a list of args to pass to the uncompress program
253
254 append-flag is non-nil if this compression technique can be
255 appended
256
257 strip-extension-flag non-nil means strip the regexp from file names
258 before attempting to set the mode.
259
260 file-magic-chars is a string of characters that you would find
261 at the beginning of a file compressed in this way.
262
df66263e
LT
263If you set this outside Custom while Auto Compression mode is
264already enabled \(as it is by default), you have to call
265`jka-compr-update' after setting it to properly update other
266variables. Setting this through Custom does that automatically."
267 :type '(repeat (vector regexp
268 (choice :tag "Compress Message"
269 (string :format "%v")
270 (const :tag "No Message" nil))
271 (choice :tag "Compress Program"
272 (string)
273 (const :tag "None" nil))
274 (repeat :tag "Compress Arguments" string)
275 (choice :tag "Uncompress Message"
276 (string :format "%v")
277 (const :tag "No Message" nil))
278 (choice :tag "Uncompress Program"
279 (string)
280 (const :tag "None" nil))
281 (repeat :tag "Uncompress Arguments" string)
282 (boolean :tag "Append")
283 (boolean :tag "Strip Extension")
284 (string :tag "Magic Bytes")))
285 :set 'jka-compr-set
286 :group 'jka-compr)
287
288(defcustom jka-compr-mode-alist-additions
6f34ccdf 289 (list (cons "\\.tgz\\'" 'tar-mode) (cons "\\.tbz2?\\'" 'tar-mode))
df66263e
LT
290 "List of pairs added to `auto-mode-alist' when installing jka-compr.
291Uninstalling jka-compr removes all pairs from `auto-mode-alist' that
292installing added.
293
294If you set this outside Custom while Auto Compression mode is
295already enabled \(as it is by default), you have to call
296`jka-compr-update' after setting it to properly update other
297variables. Setting this through Custom does that automatically."
298 :type '(repeat (cons string symbol))
299 :set 'jka-compr-set
300 :group 'jka-compr)
301
302(defcustom jka-compr-load-suffixes '(".gz")
303 "List of compression related suffixes to try when loading files.
304Enabling Auto Compression mode appends this list to `load-file-rep-suffixes',
305which see. Disabling Auto Compression mode removes all suffixes
306from `load-file-rep-suffixes' that enabling added.
307
308If you set this outside Custom while Auto Compression mode is
309already enabled \(as it is by default), you have to call
310`jka-compr-update' after setting it to properly update other
311variables. Setting this through Custom does that automatically."
312 :type '(repeat string)
313 :set 'jka-compr-set
314 :group 'jka-compr)
315
216b5993
RS
316(define-minor-mode auto-compression-mode
317 "Toggle automatic file compression and uncompression.
318With prefix argument ARG, turn auto compression on if positive, else off.
ea8e0537 319Return the new status of auto compression (non-nil means on)."
e64a3dcf 320 :global t :init-value t :group 'jka-compr :version "22.1"
216b5993
RS
321 (let* ((installed (jka-compr-installed-p))
322 (flag auto-compression-mode))
323 (cond
324 ((and flag installed) t) ; already installed
325 ((and (not flag) (not installed)) nil) ; already not installed
326 (flag (jka-compr-install))
327 (t (jka-compr-uninstall)))))
328
329(defmacro with-auto-compression-mode (&rest body)
330 "Evalute BODY with automatic file compression and uncompression enabled."
331 (let ((already-installed (make-symbol "already-installed")))
332 `(let ((,already-installed (jka-compr-installed-p)))
333 (unwind-protect
334 (progn
335 (unless ,already-installed
336 (jka-compr-install))
337 ,@body)
338 (unless ,already-installed
339 (jka-compr-uninstall))))))
340(put 'with-auto-compression-mode 'lisp-indent-function 0)
341
342
be93a2c4
SM
343;; This is what we need to know about jka-compr-handler
344;; in order to decide when to call it.
216b5993
RS
345
346(put 'jka-compr-handler 'safe-magic t)
9c40111a 347(put 'jka-compr-handler 'operations '(byte-compiler-base-file-name
216b5993
RS
348 write-region insert-file-contents
349 file-local-copy load))
350
be93a2c4 351;; Turn on the mode.
12d94429 352(when auto-compression-mode (auto-compression-mode 1))
216b5993 353
550bd514 354(provide 'jka-cmpr-hook)
216b5993 355
b21eabf6 356;; arch-tag: 4bd73429-f400-45fe-a065-270a113e31a8
550bd514 357;;; jka-cmpr-hook.el ends here