Mercurial > emacs
annotate lisp/tar-mode.el @ 21933:58f3be08e692
Include syssignal.h after lisp.h.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Mon, 04 May 1998 09:25:21 +0000 |
parents | facde3a9a846 |
children | e27e9e844efe |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; tar-mode.el --- simple editing of tar files from GNU emacs |
212 | 2 |
14169 | 3 ;; Copyright (C) 1990, 1991, 1993, 1994, 1995 Free Software Foundation, Inc. |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
4 |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
5 ;; Author: Jamie Zawinski <jwz@lucid.com> |
21045 | 6 ;; Maintainer: FSF |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
775
diff
changeset
|
7 ;; Created: 04 Apr 1990 |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
8 ;; Keywords: unix |
212 | 9 |
14169 | 10 ;; This file is part of GNU Emacs. |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
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 | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
212 | 26 |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
27 ;;; Commentary: |
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
28 |
14169 | 29 ;; This package attempts to make dealing with Unix 'tar' archives easier. |
30 ;; When this code is loaded, visiting a file whose name ends in '.tar' will | |
31 ;; cause the contents of that archive file to be displayed in a Dired-like | |
32 ;; listing. It is then possible to use the customary Dired keybindings to | |
33 ;; extract sub-files from that archive, either by reading them into their own | |
34 ;; editor buffers, or by copying them directly to arbitrary files on disk. | |
35 ;; It is also possible to delete sub-files from within the tar file and write | |
36 ;; the modified archive back to disk, or to edit sub-files within the archive | |
37 ;; and re-insert the modified files into the archive. See the documentation | |
38 ;; string of tar-mode for more info. | |
212 | 39 |
14169 | 40 ;; This code now understands the extra fields that GNU tar adds to tar files. |
212 | 41 |
14169 | 42 ;; This interacts correctly with "uncompress.el" in the Emacs library, |
43 ;; which you get with | |
44 ;; | |
45 ;; (autoload 'uncompress-while-visiting "uncompress") | |
46 ;; (setq auto-mode-alist (cons '("\\.Z$" . uncompress-while-visiting) | |
47 ;; auto-mode-alist)) | |
48 ;; | |
49 ;; Do not attempt to use tar-mode.el with crypt.el, you will lose. | |
212 | 50 |
14169 | 51 ;; *************** TO DO *************** |
52 ;; | |
53 ;; o chmod should understand "a+x,og-w". | |
54 ;; | |
55 ;; o It's not possible to add a NEW file to a tar archive; not that | |
56 ;; important, but still... | |
57 ;; | |
58 ;; o The code is less efficient that it could be - in a lot of places, I | |
59 ;; pull a 512-character string out of the buffer and parse it, when I could | |
60 ;; be parsing it in place, not garbaging a string. Should redo that. | |
61 ;; | |
62 ;; o I'd like a command that searches for a string/regexp in every subfile | |
63 ;; of an archive, where <esc> would leave you in a subfile-edit buffer. | |
64 ;; (Like the Meta-R command of the Zmacs mail reader.) | |
65 ;; | |
66 ;; o Sometimes (but not always) reverting the tar-file buffer does not | |
67 ;; re-grind the listing, and you are staring at the binary tar data. | |
68 ;; Typing 'g' again immediately after that will always revert and re-grind | |
69 ;; it, though. I have no idea why this happens. | |
70 ;; | |
71 ;; o Tar-mode interacts poorly with crypt.el and zcat.el because the tar | |
72 ;; write-file-hook actually writes the file. Instead it should remove the | |
73 ;; header (and conspire to put it back afterwards) so that other write-file | |
74 ;; hooks which frob the buffer have a chance to do their dirty work. There | |
75 ;; might be a problem if the tar write-file-hook does not come *first* on | |
76 ;; the list. | |
77 ;; | |
78 ;; o Block files, sparse files, continuation files, and the various header | |
79 ;; types aren't editable. Actually I don't know that they work at all. | |
212 | 80 |
14169 | 81 ;; Rationale: |
7103 | 82 |
14169 | 83 ;; Why does tar-mode edit the file itself instead of using tar? |
7103 | 84 |
14169 | 85 ;; That means that you can edit tar files which you don't have room for |
86 ;; on your local disk. | |
7103 | 87 |
14169 | 88 ;; I don't know about recent features in gnu tar, but old versions of tar |
89 ;; can't replace a file in the middle of a tar file with a new version. | |
90 ;; Tar-mode can. I don't think tar can do things like chmod the subfiles. | |
91 ;; An implementation which involved unpacking and repacking the file into | |
92 ;; some scratch directory would be very wasteful, and wouldn't be able to | |
93 ;; preserve the file owners. | |
7103 | 94 |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
95 ;;; Code: |
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
658
diff
changeset
|
96 |
20808 | 97 (defgroup tar nil |
98 "Simple editing of tar files." | |
99 :prefix "tar-" | |
100 :group 'data) | |
101 | |
102 (defcustom tar-anal-blocksize 20 | |
212 | 103 "*The blocksize of tar files written by Emacs, or nil, meaning don't care. |
104 The blocksize of a tar file is not really the size of the blocks; rather, it is | |
105 the number of blocks written with one system call. When tarring to a tape, | |
106 this is the size of the *tape* blocks, but when writing to a file, it doesn't | |
107 matter much. The only noticeable difference is that if a tar file does not | |
108 have a blocksize of 20, tar will tell you that; all this really controls is | |
20808 | 109 how many null padding bytes go on the end of the tar file." |
110 :type '(choice integer (const nil)) | |
111 :group 'tar) | |
212 | 112 |
20808 | 113 (defcustom tar-update-datestamp nil |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
114 "*Non-nil means tar-mode should play fast and loose with sub-file datestamps. |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
115 If this is true, then editing and saving a tar file entry back into its |
212 | 116 tar file will update its datestamp. If false, the datestamp is unchanged. |
117 You may or may not want this - it is good in that you can tell when a file | |
118 in a tar archive has been changed, but it is bad for the same reason that | |
119 editing a file in the tar archive at all is bad - the changed version of | |
20808 | 120 the file never exists on disk." |
121 :type 'boolean | |
122 :group 'tar) | |
212 | 123 |
20808 | 124 (defcustom tar-mode-show-date nil |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
125 "*Non-nil means Tar mode should show the date/time of each subfile. |
20808 | 126 This information is useful, but it takes screen space away from file names." |
127 :type 'boolean | |
128 :group 'tar) | |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
129 |
2542
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
130 (defvar tar-parse-info nil) |
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
131 (defvar tar-header-offset nil) |
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
132 (defvar tar-superior-buffer nil) |
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
133 (defvar tar-superior-descriptor nil) |
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
134 (defvar tar-subfile-mode nil) |
4260
e0713a13f2d7
(tar-parse-info, tar-header-offset, tar-superior-buffer)
Richard M. Stallman <rms@gnu.org>
parents:
4120
diff
changeset
|
135 |
e0713a13f2d7
(tar-parse-info, tar-header-offset, tar-superior-buffer)
Richard M. Stallman <rms@gnu.org>
parents:
4120
diff
changeset
|
136 (put 'tar-parse-info 'permanent-local t) |
e0713a13f2d7
(tar-parse-info, tar-header-offset, tar-superior-buffer)
Richard M. Stallman <rms@gnu.org>
parents:
4120
diff
changeset
|
137 (put 'tar-header-offset 'permanent-local t) |
e0713a13f2d7
(tar-parse-info, tar-header-offset, tar-superior-buffer)
Richard M. Stallman <rms@gnu.org>
parents:
4120
diff
changeset
|
138 (put 'tar-superior-buffer 'permanent-local t) |
e0713a13f2d7
(tar-parse-info, tar-header-offset, tar-superior-buffer)
Richard M. Stallman <rms@gnu.org>
parents:
4120
diff
changeset
|
139 (put 'tar-superior-descriptor 'permanent-local t) |
212 | 140 |
141 ;;; First, duplicate some Common Lisp functions; I used to just (require 'cl) | |
142 ;;; but "cl.el" was messing some people up (also it's really big). | |
143 | |
144 (defmacro tar-setf (form val) | |
145 "A mind-numbingly simple implementation of setf." | |
146 (let ((mform (macroexpand form (and (boundp 'byte-compile-macro-environment) | |
147 byte-compile-macro-environment)))) | |
148 (cond ((symbolp mform) (list 'setq mform val)) | |
149 ((not (consp mform)) (error "can't setf %s" form)) | |
150 ((eq (car mform) 'aref) | |
151 (list 'aset (nth 1 mform) (nth 2 mform) val)) | |
152 ((eq (car mform) 'car) | |
153 (list 'setcar (nth 1 mform) val)) | |
154 ((eq (car mform) 'cdr) | |
155 (list 'setcdr (nth 1 mform) val)) | |
156 (t (error "don't know how to setf %s" form))))) | |
157 | |
158 (defmacro tar-dolist (control &rest body) | |
159 "syntax: (dolist (var-name list-expr &optional return-value) &body body)" | |
160 (let ((var (car control)) | |
161 (init (car (cdr control))) | |
162 (val (car (cdr (cdr control))))) | |
163 (list 'let (list (list '_dolist_iterator_ init)) | |
164 (list 'while '_dolist_iterator_ | |
165 (cons 'let | |
166 (cons (list (list var '(car _dolist_iterator_))) | |
167 (append body | |
168 (list (list 'setq '_dolist_iterator_ | |
169 (list 'cdr '_dolist_iterator_))))))) | |
170 val))) | |
171 | |
172 (defmacro tar-dotimes (control &rest body) | |
173 "syntax: (dolist (var-name count-expr &optional return-value) &body body)" | |
174 (let ((var (car control)) | |
175 (n (car (cdr control))) | |
176 (val (car (cdr (cdr control))))) | |
177 (list 'let (list (list '_dotimes_end_ n) | |
178 (list var 0)) | |
179 (cons 'while | |
180 (cons (list '< var '_dotimes_end_) | |
181 (append body | |
182 (list (list 'setq var (list '1+ var)))))) | |
183 val))) | |
184 | |
185 | |
186 ;;; down to business. | |
187 | |
188 (defmacro make-tar-header (name mode uid git size date ck lt ln | |
189 magic uname gname devmaj devmin) | |
190 (list 'vector name mode uid git size date ck lt ln | |
191 magic uname gname devmaj devmin)) | |
192 | |
193 (defmacro tar-header-name (x) (list 'aref x 0)) | |
194 (defmacro tar-header-mode (x) (list 'aref x 1)) | |
195 (defmacro tar-header-uid (x) (list 'aref x 2)) | |
196 (defmacro tar-header-gid (x) (list 'aref x 3)) | |
197 (defmacro tar-header-size (x) (list 'aref x 4)) | |
198 (defmacro tar-header-date (x) (list 'aref x 5)) | |
199 (defmacro tar-header-checksum (x) (list 'aref x 6)) | |
200 (defmacro tar-header-link-type (x) (list 'aref x 7)) | |
201 (defmacro tar-header-link-name (x) (list 'aref x 8)) | |
202 (defmacro tar-header-magic (x) (list 'aref x 9)) | |
203 (defmacro tar-header-uname (x) (list 'aref x 10)) | |
204 (defmacro tar-header-gname (x) (list 'aref x 11)) | |
205 (defmacro tar-header-dmaj (x) (list 'aref x 12)) | |
206 (defmacro tar-header-dmin (x) (list 'aref x 13)) | |
207 | |
208 (defmacro make-tar-desc (data-start tokens) | |
209 (list 'cons data-start tokens)) | |
210 | |
211 (defmacro tar-desc-data-start (x) (list 'car x)) | |
212 (defmacro tar-desc-tokens (x) (list 'cdr x)) | |
213 | |
214 (defconst tar-name-offset 0) | |
215 (defconst tar-mode-offset (+ tar-name-offset 100)) | |
216 (defconst tar-uid-offset (+ tar-mode-offset 8)) | |
217 (defconst tar-gid-offset (+ tar-uid-offset 8)) | |
218 (defconst tar-size-offset (+ tar-gid-offset 8)) | |
219 (defconst tar-time-offset (+ tar-size-offset 12)) | |
220 (defconst tar-chk-offset (+ tar-time-offset 12)) | |
221 (defconst tar-linkp-offset (+ tar-chk-offset 8)) | |
222 (defconst tar-link-offset (+ tar-linkp-offset 1)) | |
223 ;;; GNU-tar specific slots. | |
224 (defconst tar-magic-offset (+ tar-link-offset 100)) | |
225 (defconst tar-uname-offset (+ tar-magic-offset 8)) | |
226 (defconst tar-gname-offset (+ tar-uname-offset 32)) | |
227 (defconst tar-dmaj-offset (+ tar-gname-offset 32)) | |
228 (defconst tar-dmin-offset (+ tar-dmaj-offset 8)) | |
229 (defconst tar-end-offset (+ tar-dmin-offset 8)) | |
230 | |
8023
f29df49c6e53
(tar-extract): Set file name by hand before calling
Richard M. Stallman <rms@gnu.org>
parents:
7497
diff
changeset
|
231 (defun tar-header-block-tokenize (string) |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
232 "Return a `tar-header' structure. |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
233 This is a list of name, mode, uid, gid, size, |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
234 write-date, checksum, link-type, and link-name." |
212 | 235 (cond ((< (length string) 512) nil) |
236 (;(some 'plusp string) ; <-- oops, massive cycle hog! | |
237 (or (not (= 0 (aref string 0))) ; This will do. | |
238 (not (= 0 (aref string 101)))) | |
239 (let* ((name-end (1- tar-mode-offset)) | |
240 (link-end (1- tar-magic-offset)) | |
241 (uname-end (1- tar-gname-offset)) | |
242 (gname-end (1- tar-dmaj-offset)) | |
243 (link-p (aref string tar-linkp-offset)) | |
244 (magic-str (substring string tar-magic-offset (1- tar-uname-offset))) | |
245 (uname-valid-p (or (string= "ustar " magic-str) (string= "GNUtar " magic-str))) | |
246 name | |
247 (nulsexp "[^\000]*\000")) | |
248 (and (string-match nulsexp string tar-name-offset) (setq name-end (min name-end (1- (match-end 0))))) | |
249 (and (string-match nulsexp string tar-link-offset) (setq link-end (min link-end (1- (match-end 0))))) | |
250 (and (string-match nulsexp string tar-uname-offset) (setq uname-end (min uname-end (1- (match-end 0))))) | |
251 (and (string-match nulsexp string tar-gname-offset) (setq gname-end (min gname-end (1- (match-end 0))))) | |
252 (setq name (substring string tar-name-offset name-end) | |
253 link-p (if (or (= link-p 0) (= link-p ?0)) | |
254 nil | |
255 (- link-p ?0))) | |
256 (if (and (null link-p) (string-match "/$" name)) (setq link-p 5)) ; directory | |
257 (make-tar-header | |
258 name | |
259 (tar-parse-octal-integer string tar-mode-offset (1- tar-uid-offset)) | |
260 (tar-parse-octal-integer string tar-uid-offset (1- tar-gid-offset)) | |
261 (tar-parse-octal-integer string tar-gid-offset (1- tar-size-offset)) | |
262 (tar-parse-octal-integer string tar-size-offset (1- tar-time-offset)) | |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
263 (tar-parse-octal-long-integer string tar-time-offset (1- tar-chk-offset)) |
212 | 264 (tar-parse-octal-integer string tar-chk-offset (1- tar-linkp-offset)) |
265 link-p | |
266 (substring string tar-link-offset link-end) | |
267 uname-valid-p | |
268 (and uname-valid-p (substring string tar-uname-offset uname-end)) | |
269 (and uname-valid-p (substring string tar-gname-offset gname-end)) | |
270 (tar-parse-octal-integer string tar-dmaj-offset (1- tar-dmin-offset)) | |
271 (tar-parse-octal-integer string tar-dmin-offset (1- tar-end-offset)) | |
272 ))) | |
273 (t 'empty-tar-block))) | |
274 | |
275 | |
276 (defun tar-parse-octal-integer (string &optional start end) | |
277 (if (null start) (setq start 0)) | |
278 (if (null end) (setq end (length string))) | |
279 (if (= (aref string start) 0) | |
280 0 | |
281 (let ((n 0)) | |
282 (while (< start end) | |
283 (setq n (if (< (aref string start) ?0) n | |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
284 (+ (* n 8) (- (aref string start) ?0))) |
212 | 285 start (1+ start))) |
286 n))) | |
287 | |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
288 (defun tar-parse-octal-long-integer (string &optional start end) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
289 (if (null start) (setq start 0)) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
290 (if (null end) (setq end (length string))) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
291 (if (= (aref string start) 0) |
11071
d629a0af50ca
(tar-parse-octal-long-integer): Return list, not vector.
Karl Heuer <kwzh@gnu.org>
parents:
10922
diff
changeset
|
292 (list 0 0) |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
293 (let ((lo 0) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
294 (hi 0)) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
295 (while (< start end) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
296 (if (>= (aref string start) ?0) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
297 (setq lo (+ (* lo 8) (- (aref string start) ?0)) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
298 hi (+ (* hi 8) (ash lo -16)) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
299 lo (logand lo 65535))) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
300 (setq start (1+ start))) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
301 (list hi lo)))) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
302 |
212 | 303 (defun tar-parse-octal-integer-safe (string) |
304 (let ((L (length string))) | |
305 (if (= L 0) (error "empty string")) | |
306 (tar-dotimes (i L) | |
307 (if (or (< (aref string i) ?0) | |
308 (> (aref string i) ?7)) | |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
309 (error "'%c' is not an octal digit")))) |
212 | 310 (tar-parse-octal-integer string)) |
311 | |
312 | |
8023
f29df49c6e53
(tar-extract): Set file name by hand before calling
Richard M. Stallman <rms@gnu.org>
parents:
7497
diff
changeset
|
313 (defun tar-header-block-checksum (string) |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
314 "Compute and return a tar-acceptable checksum for this block." |
212 | 315 (let* ((chk-field-start tar-chk-offset) |
316 (chk-field-end (+ chk-field-start 8)) | |
317 (sum 0) | |
318 (i 0)) | |
319 ;; Add up all of the characters except the ones in the checksum field. | |
320 ;; Add that field as if it were filled with spaces. | |
321 (while (< i chk-field-start) | |
322 (setq sum (+ sum (aref string i)) | |
323 i (1+ i))) | |
324 (setq i chk-field-end) | |
325 (while (< i 512) | |
326 (setq sum (+ sum (aref string i)) | |
327 i (1+ i))) | |
328 (+ sum (* 32 8)))) | |
329 | |
8023
f29df49c6e53
(tar-extract): Set file name by hand before calling
Richard M. Stallman <rms@gnu.org>
parents:
7497
diff
changeset
|
330 (defun tar-header-block-check-checksum (hblock desired-checksum file-name) |
212 | 331 "Beep and print a warning if the checksum doesn't match." |
8023
f29df49c6e53
(tar-extract): Set file name by hand before calling
Richard M. Stallman <rms@gnu.org>
parents:
7497
diff
changeset
|
332 (if (not (= desired-checksum (tar-header-block-checksum hblock))) |
212 | 333 (progn (beep) (message "Invalid checksum for file %s!" file-name)))) |
334 | |
8023
f29df49c6e53
(tar-extract): Set file name by hand before calling
Richard M. Stallman <rms@gnu.org>
parents:
7497
diff
changeset
|
335 (defun tar-header-block-recompute-checksum (hblock) |
212 | 336 "Modifies the given string to have a valid checksum field." |
8023
f29df49c6e53
(tar-extract): Set file name by hand before calling
Richard M. Stallman <rms@gnu.org>
parents:
7497
diff
changeset
|
337 (let* ((chk (tar-header-block-checksum hblock)) |
212 | 338 (chk-string (format "%6o" chk)) |
339 (l (length chk-string))) | |
340 (aset hblock 154 0) | |
341 (aset hblock 155 32) | |
342 (tar-dotimes (i l) (aset hblock (- 153 i) (aref chk-string (- l i 1))))) | |
343 hblock) | |
344 | |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
345 (defun tar-clip-time-string (time) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
346 (let ((str (current-time-string time))) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
347 (concat (substring str 4 16) (substring str 19 24)))) |
212 | 348 |
349 (defun tar-grind-file-mode (mode string start) | |
10922
0c3d44805949
(tar-grind-file-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10843
diff
changeset
|
350 "Store `-rw--r--r--' indicating MODE into STRING beginning at START. |
0c3d44805949
(tar-grind-file-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
10843
diff
changeset
|
351 MODE should be an integer which is a file mode value." |
212 | 352 (aset string start (if (zerop (logand 256 mode)) ?- ?r)) |
353 (aset string (+ start 1) (if (zerop (logand 128 mode)) ?- ?w)) | |
354 (aset string (+ start 2) (if (zerop (logand 64 mode)) ?- ?x)) | |
355 (aset string (+ start 3) (if (zerop (logand 32 mode)) ?- ?r)) | |
356 (aset string (+ start 4) (if (zerop (logand 16 mode)) ?- ?w)) | |
357 (aset string (+ start 5) (if (zerop (logand 8 mode)) ?- ?x)) | |
358 (aset string (+ start 6) (if (zerop (logand 4 mode)) ?- ?r)) | |
359 (aset string (+ start 7) (if (zerop (logand 2 mode)) ?- ?w)) | |
360 (aset string (+ start 8) (if (zerop (logand 1 mode)) ?- ?x)) | |
361 (if (zerop (logand 1024 mode)) nil (aset string (+ start 2) ?s)) | |
362 (if (zerop (logand 2048 mode)) nil (aset string (+ start 5) ?s)) | |
363 string) | |
364 | |
8023
f29df49c6e53
(tar-extract): Set file name by hand before calling
Richard M. Stallman <rms@gnu.org>
parents:
7497
diff
changeset
|
365 (defun tar-header-block-summarize (tar-hblock &optional mod-p) |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
366 "Returns a line similar to the output of `tar -vtf'." |
212 | 367 (let ((name (tar-header-name tar-hblock)) |
368 (mode (tar-header-mode tar-hblock)) | |
369 (uid (tar-header-uid tar-hblock)) | |
370 (gid (tar-header-gid tar-hblock)) | |
371 (uname (tar-header-uname tar-hblock)) | |
372 (gname (tar-header-gname tar-hblock)) | |
373 (size (tar-header-size tar-hblock)) | |
374 (time (tar-header-date tar-hblock)) | |
375 (ck (tar-header-checksum tar-hblock)) | |
376 (link-p (tar-header-link-type tar-hblock)) | |
377 (link-name (tar-header-link-name tar-hblock)) | |
378 ) | |
379 (let* ((left 11) | |
380 (namew 8) | |
381 (groupw 8) | |
382 (sizew 8) | |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
383 (datew (if tar-mode-show-date 18 0)) |
212 | 384 (slash (1- (+ left namew))) |
385 (lastdigit (+ slash groupw sizew)) | |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
386 (datestart (+ lastdigit 2)) |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
387 (namestart (+ datestart datew)) |
212 | 388 (string (make-string (+ namestart (length name) (if link-p (+ 5 (length link-name)) 0)) 32)) |
389 (type (tar-header-link-type tar-hblock))) | |
390 (aset string 0 (if mod-p ?* ? )) | |
391 (aset string 1 | |
392 (cond ((or (eq type nil) (eq type 0)) ?-) | |
393 ((eq type 1) ?l) ; link | |
394 ((eq type 2) ?s) ; symlink | |
395 ((eq type 3) ?c) ; char special | |
396 ((eq type 4) ?b) ; block special | |
397 ((eq type 5) ?d) ; directory | |
398 ((eq type 6) ?p) ; FIFO/pipe | |
399 ((eq type 20) ?*) ; directory listing | |
400 ((eq type 29) ?M) ; multivolume continuation | |
401 ((eq type 35) ?S) ; sparse | |
402 ((eq type 38) ?V) ; volume header | |
403 )) | |
404 (tar-grind-file-mode mode string 2) | |
405 (setq uid (if (= 0 (length uname)) (int-to-string uid) uname)) | |
406 (setq gid (if (= 0 (length gname)) (int-to-string gid) gname)) | |
407 (setq size (int-to-string size)) | |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
408 (setq time (tar-clip-time-string time)) |
212 | 409 (tar-dotimes (i (min (1- namew) (length uid))) (aset string (- slash i) (aref uid (- (length uid) i 1)))) |
410 (aset string (1+ slash) ?/) | |
411 (tar-dotimes (i (min (1- groupw) (length gid))) (aset string (+ (+ slash 2) i) (aref gid i))) | |
412 (tar-dotimes (i (min sizew (length size))) (aset string (- lastdigit i) (aref size (- (length size) i 1)))) | |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
413 (if tar-mode-show-date |
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
414 (tar-dotimes (i (length time)) (aset string (+ datestart i) (aref time i)))) |
212 | 415 (tar-dotimes (i (length name)) (aset string (+ namestart i) (aref name i))) |
416 (if (or (eq link-p 1) (eq link-p 2)) | |
417 (progn | |
418 (tar-dotimes (i 3) (aset string (+ namestart 1 (length name) i) (aref (if (= link-p 1) "==>" "-->") i))) | |
419 (tar-dotimes (i (length link-name)) (aset string (+ namestart 5 (length name) i) (aref link-name i))))) | |
6641
4e76332f7b44
(summarize-tar-header-block): Add mouse-face properties.
Karl Heuer <kwzh@gnu.org>
parents:
6611
diff
changeset
|
420 (put-text-property namestart (length string) |
4e76332f7b44
(summarize-tar-header-block): Add mouse-face properties.
Karl Heuer <kwzh@gnu.org>
parents:
6611
diff
changeset
|
421 'mouse-face 'highlight string) |
212 | 422 string))) |
423 | |
424 | |
425 (defun tar-summarize-buffer () | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
426 "Parse the contents of the tar file in the current buffer. |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
427 Place a dired-like listing on the front; |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
428 then narrow to it, so that only that listing |
212 | 429 is visible (and the real data of the buffer is hidden)." |
11450
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
430 (message "Parsing tar file...") |
212 | 431 (let* ((result '()) |
432 (pos 1) | |
433 (bs (max 1 (- (buffer-size) 1024))) ; always 2+ empty blocks at end. | |
434 (bs100 (max 1 (/ bs 100))) | |
9724
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
435 tokens) |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
436 (while (and (<= (+ pos 512) (point-max)) |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
437 (not (eq 'empty-tar-block |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
438 (setq tokens |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
439 (tar-header-block-tokenize |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
440 (buffer-substring pos (+ pos 512))))))) |
9698
b321ed01c3dc
(tar-summarize-buffer): Check for end of buffer before extracting substring.
Karl Heuer <kwzh@gnu.org>
parents:
8043
diff
changeset
|
441 (setq pos (+ pos 512)) |
9724
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
442 (message "Parsing tar file...%d%%" |
9698
b321ed01c3dc
(tar-summarize-buffer): Check for end of buffer before extracting substring.
Karl Heuer <kwzh@gnu.org>
parents:
8043
diff
changeset
|
443 ;(/ (* pos 100) bs) ; this gets round-off lossage |
b321ed01c3dc
(tar-summarize-buffer): Check for end of buffer before extracting substring.
Karl Heuer <kwzh@gnu.org>
parents:
8043
diff
changeset
|
444 (/ pos bs100) ; this doesn't |
b321ed01c3dc
(tar-summarize-buffer): Check for end of buffer before extracting substring.
Karl Heuer <kwzh@gnu.org>
parents:
8043
diff
changeset
|
445 ) |
9724
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
446 (if (eq (tar-header-link-type tokens) 20) |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
447 ;; Foo. There's an extra empty block after these. |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
448 (setq pos (+ pos 512))) |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
449 (let ((size (tar-header-size tokens))) |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
450 (if (< size 0) |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
451 (error "%s has size %s - corrupted" |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
452 (tar-header-name tokens) size)) |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
453 ; |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
454 ; This is just too slow. Don't really need it anyway.... |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
455 ;(tar-header-block-check-checksum |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
456 ; hblock (tar-header-block-checksum hblock) |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
457 ; (tar-header-name tokens)) |
9698
b321ed01c3dc
(tar-summarize-buffer): Check for end of buffer before extracting substring.
Karl Heuer <kwzh@gnu.org>
parents:
8043
diff
changeset
|
458 |
9724
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
459 (setq result (cons (make-tar-desc pos tokens) result)) |
9698
b321ed01c3dc
(tar-summarize-buffer): Check for end of buffer before extracting substring.
Karl Heuer <kwzh@gnu.org>
parents:
8043
diff
changeset
|
460 |
9724
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
461 (and (null (tar-header-link-type tokens)) |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
462 (> size 0) |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
463 (setq pos |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
464 (+ pos 512 (ash (ash (1- size) -9) 9)) ; this works |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
465 ;(+ pos (+ size (- 512 (rem (1- size) 512)))) ; this doesn't |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
466 )))) |
212 | 467 (make-local-variable 'tar-parse-info) |
9724
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
468 (setq tar-parse-info (nreverse result)) |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
469 ;; A tar file should end with a block or two of nulls, |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
470 ;; but let's not get a fatal error if it doesn't. |
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
471 (if (eq tokens 'empty-tar-block) |
14294
f8eba77ccb7f
(tar-summarize-buffer): Fix "done" message.
Karl Heuer <kwzh@gnu.org>
parents:
14174
diff
changeset
|
472 (message "Parsing tar file...done") |
9724
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
473 (message "Warning: premature EOF parsing tar file"))) |
212 | 474 (save-excursion |
475 (goto-char (point-min)) | |
14174
b986e1fb97a5
(tar-summarize-buffer): Speed-up for large files.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
476 (let ((buffer-read-only nil) |
b986e1fb97a5
(tar-summarize-buffer): Speed-up for large files.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
477 (summaries nil)) |
b986e1fb97a5
(tar-summarize-buffer): Speed-up for large files.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
478 ;; Collect summary lines and insert them all at once since tar files |
b986e1fb97a5
(tar-summarize-buffer): Speed-up for large files.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
479 ;; can be pretty big. |
14294
f8eba77ccb7f
(tar-summarize-buffer): Fix "done" message.
Karl Heuer <kwzh@gnu.org>
parents:
14174
diff
changeset
|
480 (tar-dolist (tar-desc (reverse tar-parse-info)) |
14174
b986e1fb97a5
(tar-summarize-buffer): Speed-up for large files.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
481 (setq summaries |
b986e1fb97a5
(tar-summarize-buffer): Speed-up for large files.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
482 (cons (tar-header-block-summarize (tar-desc-tokens tar-desc)) |
b986e1fb97a5
(tar-summarize-buffer): Speed-up for large files.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
483 (cons "\n" |
b986e1fb97a5
(tar-summarize-buffer): Speed-up for large files.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
484 summaries)))) |
b986e1fb97a5
(tar-summarize-buffer): Speed-up for large files.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
485 (insert (apply 'concat summaries)) |
212 | 486 (make-local-variable 'tar-header-offset) |
487 (setq tar-header-offset (point)) | |
488 (narrow-to-region 1 tar-header-offset) | |
9724
193eeb5e78aa
(tar-summarize-buffer): Improperly terminated archive now produces only a
Karl Heuer <kwzh@gnu.org>
parents:
9698
diff
changeset
|
489 (set-buffer-modified-p nil)))) |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
490 |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
491 (defvar tar-mode-map nil "*Local keymap for Tar mode listings.") |
212 | 492 |
493 (if tar-mode-map | |
494 nil | |
495 (setq tar-mode-map (make-keymap)) | |
496 (suppress-keymap tar-mode-map) | |
497 (define-key tar-mode-map " " 'tar-next-line) | |
20970
00fce41bcd4f
Add "q" for quit, and use "C" for copy and "R" for
Karl Heuer <kwzh@gnu.org>
parents:
20808
diff
changeset
|
498 (define-key tar-mode-map "C" 'tar-copy) |
212 | 499 (define-key tar-mode-map "d" 'tar-flag-deleted) |
500 (define-key tar-mode-map "\^D" 'tar-flag-deleted) | |
501 (define-key tar-mode-map "e" 'tar-extract) | |
502 (define-key tar-mode-map "f" 'tar-extract) | |
10271
d20db86b0c0c
(tar-mode-map): Bind C-m to tar-extract.
Richard M. Stallman <rms@gnu.org>
parents:
10188
diff
changeset
|
503 (define-key tar-mode-map "\C-m" 'tar-extract) |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
504 (define-key tar-mode-map [mouse-2] 'tar-mouse-extract) |
212 | 505 (define-key tar-mode-map "g" 'revert-buffer) |
506 (define-key tar-mode-map "h" 'describe-mode) | |
507 (define-key tar-mode-map "n" 'tar-next-line) | |
508 (define-key tar-mode-map "\^N" 'tar-next-line) | |
15612
9b55a88233d1
(tar-mode-map): Bind up and down like C-p, C-n.
Miles Bader <miles@gnu.org>
parents:
15424
diff
changeset
|
509 (define-key tar-mode-map [down] 'tar-next-line) |
212 | 510 (define-key tar-mode-map "o" 'tar-extract-other-window) |
511 (define-key tar-mode-map "p" 'tar-previous-line) | |
20970
00fce41bcd4f
Add "q" for quit, and use "C" for copy and "R" for
Karl Heuer <kwzh@gnu.org>
parents:
20808
diff
changeset
|
512 (define-key tar-mode-map "q" 'tar-quit) |
212 | 513 (define-key tar-mode-map "\^P" 'tar-previous-line) |
15612
9b55a88233d1
(tar-mode-map): Bind up and down like C-p, C-n.
Miles Bader <miles@gnu.org>
parents:
15424
diff
changeset
|
514 (define-key tar-mode-map [up] 'tar-previous-line) |
20970
00fce41bcd4f
Add "q" for quit, and use "C" for copy and "R" for
Karl Heuer <kwzh@gnu.org>
parents:
20808
diff
changeset
|
515 (define-key tar-mode-map "R" 'tar-rename-entry) |
212 | 516 (define-key tar-mode-map "u" 'tar-unflag) |
517 (define-key tar-mode-map "v" 'tar-view) | |
518 (define-key tar-mode-map "x" 'tar-expunge) | |
519 (define-key tar-mode-map "\177" 'tar-unflag-backwards) | |
520 (define-key tar-mode-map "E" 'tar-extract-other-window) | |
521 (define-key tar-mode-map "M" 'tar-chmod-entry) | |
522 (define-key tar-mode-map "G" 'tar-chgrp-entry) | |
523 (define-key tar-mode-map "O" 'tar-chown-entry) | |
524 ) | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
525 |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
526 ;; Make menu bar items. |
212 | 527 |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
528 ;; Get rid of the Edit menu bar item to save space. |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
529 (define-key tar-mode-map [menu-bar edit] 'undefined) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
530 |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
531 (define-key tar-mode-map [menu-bar immediate] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
532 (cons "Immediate" (make-sparse-keymap "Immediate"))) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
533 |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
534 (define-key tar-mode-map [menu-bar immediate view] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
535 '("View This File" . tar-view)) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
536 (define-key tar-mode-map [menu-bar immediate display] |
20254
d1b61f2a6701
(tar-mode-map): Fix function name in menu entry.
Andreas Schwab <schwab@suse.de>
parents:
18287
diff
changeset
|
537 '("Display in Other Window" . tar-display-other-window)) |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
538 (define-key tar-mode-map [menu-bar immediate find-file-other-window] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
539 '("Find in Other Window" . tar-extract-other-window)) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
540 (define-key tar-mode-map [menu-bar immediate find-file] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
541 '("Find This File" . tar-extract)) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
542 |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
543 (define-key tar-mode-map [menu-bar mark] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
544 (cons "Mark" (make-sparse-keymap "Mark"))) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
545 |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
546 (define-key tar-mode-map [menu-bar mark unmark-all] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
547 '("Unmark All" . tar-clear-modification-flags)) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
548 (define-key tar-mode-map [menu-bar mark deletion] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
549 '("Flag" . tar-flag-deleted)) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
550 (define-key tar-mode-map [menu-bar mark unmark] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
551 '("Unflag" . tar-unflag)) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
552 |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
553 (define-key tar-mode-map [menu-bar operate] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
554 (cons "Operate" (make-sparse-keymap "Operate"))) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
555 |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
556 (define-key tar-mode-map [menu-bar operate chown] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
557 '("Change Owner..." . tar-chown-entry)) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
558 (define-key tar-mode-map [menu-bar operate chgrp] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
559 '("Change Group..." . tar-chgrp-entry)) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
560 (define-key tar-mode-map [menu-bar operate chmod] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
561 '("Change Mode..." . tar-chmod-entry)) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
562 (define-key tar-mode-map [menu-bar operate rename] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
563 '("Rename to..." . tar-rename-entry)) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
564 (define-key tar-mode-map [menu-bar operate copy] |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
565 '("Copy to..." . tar-copy)) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
566 (define-key tar-mode-map [menu-bar operate expunge] |
12027
d5a2fb3235ef
(tar-mode-map): Fix capitalization in menu bar.
Karl Heuer <kwzh@gnu.org>
parents:
11847
diff
changeset
|
567 '("Expunge Marked Files" . tar-expunge)) |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
568 |
212 | 569 ;; tar mode is suitable only for specially formatted data. |
570 (put 'tar-mode 'mode-class 'special) | |
571 (put 'tar-subfile-mode 'mode-class 'special) | |
572 | |
3419
97205883b02d
Typo in autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
3365
diff
changeset
|
573 ;;;###autoload |
212 | 574 (defun tar-mode () |
575 "Major mode for viewing a tar file as a dired-like listing of its contents. | |
576 You can move around using the usual cursor motion commands. | |
577 Letters no longer insert themselves. | |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
578 Type `e' to pull a file out of the tar file and into its own buffer; |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
579 or click mouse-2 on the file's line in the Tar mode buffer. |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
580 Type `c' to copy an entry from the tar file into another file on disk. |
212 | 581 |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
582 If you edit a sub-file of this archive (as with the `e' command) and |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
583 save it with Control-x Control-s, the contents of that buffer will be |
212 | 584 saved back into the tar-file buffer; in this way you can edit a file |
585 inside of a tar archive without extracting it and re-archiving it. | |
586 | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
587 See also: variables `tar-update-datestamp' and `tar-anal-blocksize'. |
212 | 588 \\{tar-mode-map}" |
589 ;; this is not interactive because you shouldn't be turning this | |
590 ;; mode on and off. You can corrupt things that way. | |
4260
e0713a13f2d7
(tar-parse-info, tar-header-offset, tar-superior-buffer)
Richard M. Stallman <rms@gnu.org>
parents:
4120
diff
changeset
|
591 ;; rms: with permanent locals, it should now be possible to make this work |
e0713a13f2d7
(tar-parse-info, tar-header-offset, tar-superior-buffer)
Richard M. Stallman <rms@gnu.org>
parents:
4120
diff
changeset
|
592 ;; interactively in some reasonable fashion. |
e0713a13f2d7
(tar-parse-info, tar-header-offset, tar-superior-buffer)
Richard M. Stallman <rms@gnu.org>
parents:
4120
diff
changeset
|
593 (kill-all-local-variables) |
212 | 594 (make-local-variable 'tar-header-offset) |
595 (make-local-variable 'tar-parse-info) | |
596 (make-local-variable 'require-final-newline) | |
597 (setq require-final-newline nil) ; binary data, dude... | |
598 (make-local-variable 'revert-buffer-function) | |
599 (setq revert-buffer-function 'tar-mode-revert) | |
4260
e0713a13f2d7
(tar-parse-info, tar-header-offset, tar-superior-buffer)
Richard M. Stallman <rms@gnu.org>
parents:
4120
diff
changeset
|
600 (make-local-variable 'enable-local-variables) |
e0713a13f2d7
(tar-parse-info, tar-header-offset, tar-superior-buffer)
Richard M. Stallman <rms@gnu.org>
parents:
4120
diff
changeset
|
601 (setq enable-local-variables nil) |
11450
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
602 (make-local-variable 'next-line-add-newlines) |
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
603 (setq next-line-add-newlines nil) |
212 | 604 (setq major-mode 'tar-mode) |
605 (setq mode-name "Tar") | |
606 (use-local-map tar-mode-map) | |
607 (auto-save-mode 0) | |
11847
c5cf8807738b
(tar-mode): Set write-contents-hooks instead of
Karl Heuer <kwzh@gnu.org>
parents:
11450
diff
changeset
|
608 (make-local-variable 'write-contents-hooks) |
c5cf8807738b
(tar-mode): Set write-contents-hooks instead of
Karl Heuer <kwzh@gnu.org>
parents:
11450
diff
changeset
|
609 (setq write-contents-hooks '(tar-mode-write-file)) |
212 | 610 (widen) |
611 (if (and (boundp 'tar-header-offset) tar-header-offset) | |
612 (narrow-to-region 1 tar-header-offset) | |
613 (tar-summarize-buffer)) | |
614 (run-hooks 'tar-mode-hook) | |
615 ) | |
616 | |
617 | |
618 (defun tar-subfile-mode (p) | |
619 "Minor mode for editing an element of a tar-file. | |
14769
acf049402d18
(tar-subfile-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14294
diff
changeset
|
620 This mode arranges for \"saving\" this buffer to write the data |
acf049402d18
(tar-subfile-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14294
diff
changeset
|
621 into the tar-file buffer that it came from. The changes will actually |
acf049402d18
(tar-subfile-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14294
diff
changeset
|
622 appear on disk when you save the tar-file's buffer." |
212 | 623 (interactive "P") |
2542
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
624 (or (and (boundp 'tar-superior-buffer) tar-superior-buffer) |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
625 (error "This buffer is not an element of a tar file")) |
7078
cf120e7b7d2c
(tar-extract): Don't put whole file name in buffer name.
Richard M. Stallman <rms@gnu.org>
parents:
6641
diff
changeset
|
626 ;;; Don't do this, because it is redundant and wastes mode line space. |
cf120e7b7d2c
(tar-extract): Don't put whole file name in buffer name.
Richard M. Stallman <rms@gnu.org>
parents:
6641
diff
changeset
|
627 ;;; (or (assq 'tar-subfile-mode minor-mode-alist) |
cf120e7b7d2c
(tar-extract): Don't put whole file name in buffer name.
Richard M. Stallman <rms@gnu.org>
parents:
6641
diff
changeset
|
628 ;;; (setq minor-mode-alist (append minor-mode-alist |
cf120e7b7d2c
(tar-extract): Don't put whole file name in buffer name.
Richard M. Stallman <rms@gnu.org>
parents:
6641
diff
changeset
|
629 ;;; (list '(tar-subfile-mode " TarFile"))))) |
212 | 630 (make-local-variable 'tar-subfile-mode) |
631 (setq tar-subfile-mode | |
632 (if (null p) | |
633 (not tar-subfile-mode) | |
634 (> (prefix-numeric-value p) 0))) | |
635 (cond (tar-subfile-mode | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
636 (make-local-variable 'local-write-file-hooks) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
637 (setq local-write-file-hooks '(tar-subfile-save-buffer)) |
212 | 638 ;; turn off auto-save. |
639 (auto-save-mode nil) | |
640 (setq buffer-auto-save-file-name nil) | |
641 (run-hooks 'tar-subfile-mode-hook)) | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
642 (t |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
643 (kill-local-variable 'local-write-file-hooks)))) |
212 | 644 |
645 | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
646 ;; Revert the buffer and recompute the dired-like listing. |
212 | 647 (defun tar-mode-revert (&optional no-autosave no-confirm) |
15424
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
648 (let ((revert-buffer-function nil) |
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
649 (old-offset tar-header-offset) |
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
650 success) |
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
651 (setq tar-header-offset nil) |
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
652 (unwind-protect |
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
653 (and (revert-buffer t no-confirm) |
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
654 (progn (widen) |
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
655 (setq success t) |
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
656 (tar-mode))) |
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
657 ;; If the revert was canceled, |
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
658 ;; put back the old value of tar-header-offset. |
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
659 (or success |
85a85480fa3c
(tar-mode-revert): Cope if user cancels the revert.
Richard M. Stallman <rms@gnu.org>
parents:
14769
diff
changeset
|
660 (setq tar-header-offset old-offset))))) |
212 | 661 |
662 | |
663 (defun tar-next-line (p) | |
664 (interactive "p") | |
665 (forward-line p) | |
10843
2f2e5033b3bb
(tar-header-block-tokenize): Parse 32-bit modtime
Richard M. Stallman <rms@gnu.org>
parents:
10271
diff
changeset
|
666 (if (eobp) nil (forward-char (if tar-mode-show-date 54 36)))) |
212 | 667 |
668 (defun tar-previous-line (p) | |
669 (interactive "p") | |
670 (tar-next-line (- p))) | |
671 | |
672 (defun tar-current-descriptor (&optional noerror) | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
673 "Return the tar-descriptor of the current line, or signals an error." |
212 | 674 ;; I wish lines had plists, like in ZMACS... |
675 (or (nth (count-lines (point-min) | |
676 (save-excursion (beginning-of-line) (point))) | |
677 tar-parse-info) | |
678 (if noerror | |
679 nil | |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
680 (error "This line does not describe a tar-file entry")))) |
212 | 681 |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
682 (defun tar-get-descriptor () |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
683 (let* ((descriptor (tar-current-descriptor)) |
212 | 684 (tokens (tar-desc-tokens descriptor)) |
685 (size (tar-header-size tokens)) | |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
686 (link-p (tar-header-link-type tokens))) |
212 | 687 (if link-p |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
688 (error "This is a %s, not a real file" |
212 | 689 (cond ((eq link-p 5) "directory") |
690 ((eq link-p 20) "tar directory header") | |
691 ((eq link-p 29) "multivolume-continuation") | |
692 ((eq link-p 35) "sparse entry") | |
693 ((eq link-p 38) "volume header") | |
694 (t "link")))) | |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
695 (if (zerop size) (error "This is a zero-length file")) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
696 descriptor)) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
697 |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
698 (defun tar-mouse-extract (event) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
699 "Extract a file whose tar directory line you click on." |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
700 (interactive "e") |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
701 (save-excursion |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
702 (set-buffer (window-buffer (posn-window (event-end event)))) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
703 (save-excursion |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
704 (goto-char (posn-point (event-end event))) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
705 ;; Just make sure this doesn't get an error. |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
706 (tar-get-descriptor))) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
707 (select-window (posn-window (event-end event))) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
708 (goto-char (posn-point (event-end event))) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
709 (tar-extract)) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
710 |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
711 (defun tar-extract (&optional other-window-p) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
712 "In Tar mode, extract this entry of the tar file into its own buffer." |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
713 (interactive) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
714 (let* ((view-p (eq other-window-p 'view)) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
715 (descriptor (tar-get-descriptor)) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
716 (tokens (tar-desc-tokens descriptor)) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
717 (name (tar-header-name tokens)) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
718 (size (tar-header-size tokens)) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
719 (start (+ (tar-desc-data-start descriptor) tar-header-offset -1)) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
720 (end (+ start size))) |
212 | 721 (let* ((tar-buffer (current-buffer)) |
7078
cf120e7b7d2c
(tar-extract): Don't put whole file name in buffer name.
Richard M. Stallman <rms@gnu.org>
parents:
6641
diff
changeset
|
722 (tarname (file-name-nondirectory (buffer-file-name))) |
212 | 723 (bufname (concat (file-name-nondirectory name) |
7078
cf120e7b7d2c
(tar-extract): Don't put whole file name in buffer name.
Richard M. Stallman <rms@gnu.org>
parents:
6641
diff
changeset
|
724 " (" |
cf120e7b7d2c
(tar-extract): Don't put whole file name in buffer name.
Richard M. Stallman <rms@gnu.org>
parents:
6641
diff
changeset
|
725 tarname |
212 | 726 ")")) |
727 (read-only-p (or buffer-read-only view-p)) | |
728 (buffer (get-buffer bufname)) | |
729 (just-created nil)) | |
730 (if buffer | |
731 nil | |
732 (setq buffer (get-buffer-create bufname)) | |
733 (setq just-created t) | |
734 (unwind-protect | |
735 (progn | |
736 (widen) | |
737 (save-excursion | |
738 (set-buffer buffer) | |
739 (insert-buffer-substring tar-buffer start end) | |
740 (goto-char 0) | |
8023
f29df49c6e53
(tar-extract): Set file name by hand before calling
Richard M. Stallman <rms@gnu.org>
parents:
7497
diff
changeset
|
741 (setq buffer-file-name |
21850
96fc2ea42485
(tar-extract): Use `!' instead of `:' to construct
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
742 ;; `:' is not allowed on Windows |
96fc2ea42485
(tar-extract): Use `!' instead of `:' to construct
Richard M. Stallman <rms@gnu.org>
parents:
21045
diff
changeset
|
743 (expand-file-name (concat tarname "!" name))) |
10188
f837d768d569
(tar-extract): Don't use set-visited-file-name. to
Richard M. Stallman <rms@gnu.org>
parents:
9817
diff
changeset
|
744 (setq buffer-file-truename |
f837d768d569
(tar-extract): Don't use set-visited-file-name. to
Richard M. Stallman <rms@gnu.org>
parents:
9817
diff
changeset
|
745 (abbreviate-file-name buffer-file-name)) |
f837d768d569
(tar-extract): Don't use set-visited-file-name. to
Richard M. Stallman <rms@gnu.org>
parents:
9817
diff
changeset
|
746 ;; Set the default-directory to the dir of the |
f837d768d569
(tar-extract): Don't use set-visited-file-name. to
Richard M. Stallman <rms@gnu.org>
parents:
9817
diff
changeset
|
747 ;; superior buffer. |
f837d768d569
(tar-extract): Don't use set-visited-file-name. to
Richard M. Stallman <rms@gnu.org>
parents:
9817
diff
changeset
|
748 (setq default-directory |
f837d768d569
(tar-extract): Don't use set-visited-file-name. to
Richard M. Stallman <rms@gnu.org>
parents:
9817
diff
changeset
|
749 (save-excursion |
f837d768d569
(tar-extract): Don't use set-visited-file-name. to
Richard M. Stallman <rms@gnu.org>
parents:
9817
diff
changeset
|
750 (set-buffer tar-buffer) |
f837d768d569
(tar-extract): Don't use set-visited-file-name. to
Richard M. Stallman <rms@gnu.org>
parents:
9817
diff
changeset
|
751 default-directory)) |
212 | 752 (normal-mode) ; pick a mode. |
753 (rename-buffer bufname) | |
2542
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
754 (make-local-variable 'tar-superior-buffer) |
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
755 (make-local-variable 'tar-superior-descriptor) |
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
756 (setq tar-superior-buffer tar-buffer) |
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
757 (setq tar-superior-descriptor descriptor) |
14769
acf049402d18
(tar-subfile-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14294
diff
changeset
|
758 (setq buffer-read-only read-only-p) |
acf049402d18
(tar-subfile-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14294
diff
changeset
|
759 (set-buffer-modified-p nil) |
acf049402d18
(tar-subfile-mode): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14294
diff
changeset
|
760 (tar-subfile-mode 1)) |
212 | 761 (set-buffer tar-buffer)) |
762 (narrow-to-region 1 tar-header-offset))) | |
763 (if view-p | |
18287
f55270c78210
(tar-extract): Use second argument of
Richard M. Stallman <rms@gnu.org>
parents:
15947
diff
changeset
|
764 (view-buffer buffer (and just-created 'kill-buffer)) |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
765 (if (eq other-window-p 'display) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
766 (display-buffer buffer) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
767 (if other-window-p |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
768 (switch-to-buffer-other-window buffer) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
769 (switch-to-buffer buffer))))))) |
212 | 770 |
771 | |
772 (defun tar-extract-other-window () | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
773 "*In Tar mode, find this entry of the tar file in another window." |
212 | 774 (interactive) |
775 (tar-extract t)) | |
776 | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
777 (defun tar-display-other-window () |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
778 "*In Tar mode, display this entry of the tar file in another window." |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
779 (interactive) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
780 (tar-extract 'display)) |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
781 |
212 | 782 (defun tar-view () |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
783 "*In Tar mode, view the tar file entry on this line." |
212 | 784 (interactive) |
785 (tar-extract 'view)) | |
786 | |
787 | |
788 (defun tar-read-file-name (&optional prompt) | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
789 "Read a file name with this line's entry as the default." |
212 | 790 (or prompt (setq prompt "Copy to: ")) |
791 (let* ((default-file (expand-file-name | |
792 (tar-header-name (tar-desc-tokens | |
793 (tar-current-descriptor))))) | |
794 (target (expand-file-name | |
795 (read-file-name prompt | |
796 (file-name-directory default-file) | |
797 default-file nil)))) | |
798 (if (or (string= "" (file-name-nondirectory target)) | |
799 (file-directory-p target)) | |
800 (setq target (concat (if (string-match "/$" target) | |
801 (substring target 0 (1- (match-end 0))) | |
802 target) | |
803 "/" | |
804 (file-name-nondirectory default-file)))) | |
805 target)) | |
806 | |
807 | |
808 (defun tar-copy (&optional to-file) | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
809 "*In Tar mode, extract this entry of the tar file into a file on disk. |
212 | 810 If TO-FILE is not supplied, it is prompted for, defaulting to the name of |
811 the current tar-entry." | |
812 (interactive (list (tar-read-file-name))) | |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
813 (let* ((descriptor (tar-get-descriptor)) |
212 | 814 (tokens (tar-desc-tokens descriptor)) |
815 (name (tar-header-name tokens)) | |
816 (size (tar-header-size tokens)) | |
817 (start (+ (tar-desc-data-start descriptor) tar-header-offset -1)) | |
12662
07ba0f6e9ada
(tar-copy): Inhibit use of jka-compr handler
Richard M. Stallman <rms@gnu.org>
parents:
12027
diff
changeset
|
818 (end (+ start size)) |
07ba0f6e9ada
(tar-copy): Inhibit use of jka-compr handler
Richard M. Stallman <rms@gnu.org>
parents:
12027
diff
changeset
|
819 (inhibit-file-name-handlers inhibit-file-name-handlers) |
07ba0f6e9ada
(tar-copy): Inhibit use of jka-compr handler
Richard M. Stallman <rms@gnu.org>
parents:
12027
diff
changeset
|
820 (inhibit-file-name-operation inhibit-file-name-operation)) |
7090
cf0b24d47cdd
(tar-copy): Don't bother with a temp buffer.
Karl Heuer <kwzh@gnu.org>
parents:
7078
diff
changeset
|
821 (save-restriction |
cf0b24d47cdd
(tar-copy): Don't bother with a temp buffer.
Karl Heuer <kwzh@gnu.org>
parents:
7078
diff
changeset
|
822 (widen) |
12662
07ba0f6e9ada
(tar-copy): Inhibit use of jka-compr handler
Richard M. Stallman <rms@gnu.org>
parents:
12027
diff
changeset
|
823 ;; Inhibit compressing a subfile again if *both* name and |
07ba0f6e9ada
(tar-copy): Inhibit use of jka-compr handler
Richard M. Stallman <rms@gnu.org>
parents:
12027
diff
changeset
|
824 ;; to-file are handled by jka-compr |
07ba0f6e9ada
(tar-copy): Inhibit use of jka-compr handler
Richard M. Stallman <rms@gnu.org>
parents:
12027
diff
changeset
|
825 (if (and (eq (find-file-name-handler name 'write-region) 'jka-compr-handler) |
07ba0f6e9ada
(tar-copy): Inhibit use of jka-compr handler
Richard M. Stallman <rms@gnu.org>
parents:
12027
diff
changeset
|
826 (eq (find-file-name-handler to-file 'write-region) 'jka-compr-handler)) |
07ba0f6e9ada
(tar-copy): Inhibit use of jka-compr handler
Richard M. Stallman <rms@gnu.org>
parents:
12027
diff
changeset
|
827 (setq inhibit-file-name-handlers |
07ba0f6e9ada
(tar-copy): Inhibit use of jka-compr handler
Richard M. Stallman <rms@gnu.org>
parents:
12027
diff
changeset
|
828 (cons 'jka-compr-handler |
07ba0f6e9ada
(tar-copy): Inhibit use of jka-compr handler
Richard M. Stallman <rms@gnu.org>
parents:
12027
diff
changeset
|
829 (and (eq inhibit-file-name-operation 'write-region) |
07ba0f6e9ada
(tar-copy): Inhibit use of jka-compr handler
Richard M. Stallman <rms@gnu.org>
parents:
12027
diff
changeset
|
830 inhibit-file-name-handlers)) |
07ba0f6e9ada
(tar-copy): Inhibit use of jka-compr handler
Richard M. Stallman <rms@gnu.org>
parents:
12027
diff
changeset
|
831 inhibit-file-name-operation 'write-region)) |
7090
cf0b24d47cdd
(tar-copy): Don't bother with a temp buffer.
Karl Heuer <kwzh@gnu.org>
parents:
7078
diff
changeset
|
832 (write-region start end to-file)) |
cf0b24d47cdd
(tar-copy): Don't bother with a temp buffer.
Karl Heuer <kwzh@gnu.org>
parents:
7078
diff
changeset
|
833 (message "Copied tar entry %s to %s" name to-file))) |
212 | 834 |
835 (defun tar-flag-deleted (p &optional unflag) | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
836 "*In Tar mode, mark this sub-file to be deleted from the tar file. |
212 | 837 With a prefix argument, mark that many files." |
838 (interactive "p") | |
839 (beginning-of-line) | |
840 (tar-dotimes (i (if (< p 0) (- p) p)) | |
841 (if (tar-current-descriptor unflag) ; barf if we're not on an entry-line. | |
842 (progn | |
843 (delete-char 1) | |
844 (insert (if unflag " " "D")))) | |
845 (forward-line (if (< p 0) -1 1))) | |
846 (if (eobp) nil (forward-char 36))) | |
847 | |
848 (defun tar-unflag (p) | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
849 "*In Tar mode, un-mark this sub-file if it is marked to be deleted. |
212 | 850 With a prefix argument, un-mark that many files forward." |
851 (interactive "p") | |
852 (tar-flag-deleted p t)) | |
853 | |
854 (defun tar-unflag-backwards (p) | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
855 "*In Tar mode, un-mark this sub-file if it is marked to be deleted. |
212 | 856 With a prefix argument, un-mark that many files backward." |
857 (interactive "p") | |
858 (tar-flag-deleted (- p) t)) | |
859 | |
860 | |
861 (defun tar-expunge-internal () | |
862 "Expunge the tar-entry specified by the current line." | |
863 (let* ((descriptor (tar-current-descriptor)) | |
864 (tokens (tar-desc-tokens descriptor)) | |
865 (line (tar-desc-data-start descriptor)) | |
866 (name (tar-header-name tokens)) | |
867 (size (tar-header-size tokens)) | |
868 (link-p (tar-header-link-type tokens)) | |
869 (start (tar-desc-data-start descriptor)) | |
870 (following-descs (cdr (memq descriptor tar-parse-info)))) | |
871 (if link-p (setq size 0)) ; size lies for hard-links. | |
872 ;; | |
873 ;; delete the current line... | |
874 (beginning-of-line) | |
875 (let ((line-start (point))) | |
876 (end-of-line) (forward-char) | |
877 (let ((line-len (- (point) line-start))) | |
878 (delete-region line-start (point)) | |
879 ;; | |
14040 | 880 ;; decrement the header-pointer to be in sync... |
212 | 881 (setq tar-header-offset (- tar-header-offset line-len)))) |
882 ;; | |
883 ;; delete the data pointer... | |
884 (setq tar-parse-info (delq descriptor tar-parse-info)) | |
885 ;; | |
886 ;; delete the data from inside the file... | |
887 (widen) | |
888 (let* ((data-start (+ start tar-header-offset -513)) | |
889 (data-end (+ data-start 512 (ash (ash (+ size 511) -9) 9)))) | |
890 (delete-region data-start data-end) | |
891 ;; | |
892 ;; and finally, decrement the start-pointers of all following | |
893 ;; entries in the archive. This is a pig when deleting a bunch | |
894 ;; of files at once - we could optimize this to only do the | |
895 ;; iteration over the files that remain, or only iterate up to | |
896 ;; the next file to be deleted. | |
897 (let ((data-length (- data-end data-start))) | |
898 (tar-dolist (desc following-descs) | |
899 (tar-setf (tar-desc-data-start desc) | |
900 (- (tar-desc-data-start desc) data-length)))) | |
901 )) | |
902 (narrow-to-region 1 tar-header-offset)) | |
903 | |
904 | |
905 (defun tar-expunge (&optional noconfirm) | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
906 "*In Tar mode, delete all the archived files flagged for deletion. |
212 | 907 This does not modify the disk image; you must save the tar file itself |
908 for this to be permanent." | |
909 (interactive) | |
910 (if (or noconfirm | |
11450
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
911 (y-or-n-p "Expunge files marked for deletion? ")) |
212 | 912 (let ((n 0)) |
913 (save-excursion | |
914 (goto-char 0) | |
915 (while (not (eobp)) | |
916 (if (looking-at "D") | |
917 (progn (tar-expunge-internal) | |
918 (setq n (1+ n))) | |
919 (forward-line 1))) | |
920 ;; after doing the deletions, add any padding that may be necessary. | |
921 (tar-pad-to-blocksize) | |
922 (narrow-to-region 1 tar-header-offset) | |
923 ) | |
924 (if (zerop n) | |
11450
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
925 (message "Nothing to expunge.") |
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
926 (message "%s files expunged. Be sure to save this buffer." n))))) |
212 | 927 |
928 | |
929 (defun tar-clear-modification-flags () | |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
930 "Remove the stars at the beginning of each line." |
11301
1234d00b8492
(tar-clear-modification-flags): Fix several bugs.
Richard M. Stallman <rms@gnu.org>
parents:
11210
diff
changeset
|
931 (interactive) |
212 | 932 (save-excursion |
11301
1234d00b8492
(tar-clear-modification-flags): Fix several bugs.
Richard M. Stallman <rms@gnu.org>
parents:
11210
diff
changeset
|
933 (goto-char 1) |
212 | 934 (while (< (point) tar-header-offset) |
11301
1234d00b8492
(tar-clear-modification-flags): Fix several bugs.
Richard M. Stallman <rms@gnu.org>
parents:
11210
diff
changeset
|
935 (if (not (eq (following-char) ?\ )) |
212 | 936 (progn (delete-char 1) (insert " "))) |
937 (forward-line 1)))) | |
938 | |
939 | |
940 (defun tar-chown-entry (new-uid) | |
941 "*Change the user-id associated with this entry in the tar file. | |
942 If this tar file was written by GNU tar, then you will be able to edit | |
943 the user id as a string; otherwise, you must edit it as a number. | |
944 You can force editing as a number by calling this with a prefix arg. | |
945 This does not modify the disk image; you must save the tar file itself | |
946 for this to be permanent." | |
947 (interactive (list | |
948 (let ((tokens (tar-desc-tokens (tar-current-descriptor)))) | |
949 (if (or current-prefix-arg | |
950 (not (tar-header-magic tokens))) | |
951 (let (n) | |
952 (while (not (numberp (setq n (read-minibuffer | |
953 "New UID number: " | |
954 (format "%s" (tar-header-uid tokens))))))) | |
955 n) | |
956 (read-string "New UID string: " (tar-header-uname tokens)))))) | |
957 (cond ((stringp new-uid) | |
958 (tar-setf (tar-header-uname (tar-desc-tokens (tar-current-descriptor))) | |
959 new-uid) | |
960 (tar-alter-one-field tar-uname-offset (concat new-uid "\000"))) | |
961 (t | |
962 (tar-setf (tar-header-uid (tar-desc-tokens (tar-current-descriptor))) | |
963 new-uid) | |
964 (tar-alter-one-field tar-uid-offset | |
965 (concat (substring (format "%6o" new-uid) 0 6) "\000 "))))) | |
966 | |
967 | |
968 (defun tar-chgrp-entry (new-gid) | |
969 "*Change the group-id associated with this entry in the tar file. | |
970 If this tar file was written by GNU tar, then you will be able to edit | |
971 the group id as a string; otherwise, you must edit it as a number. | |
972 You can force editing as a number by calling this with a prefix arg. | |
973 This does not modify the disk image; you must save the tar file itself | |
974 for this to be permanent." | |
975 (interactive (list | |
976 (let ((tokens (tar-desc-tokens (tar-current-descriptor)))) | |
977 (if (or current-prefix-arg | |
978 (not (tar-header-magic tokens))) | |
979 (let (n) | |
980 (while (not (numberp (setq n (read-minibuffer | |
981 "New GID number: " | |
982 (format "%s" (tar-header-gid tokens))))))) | |
983 n) | |
984 (read-string "New GID string: " (tar-header-gname tokens)))))) | |
985 (cond ((stringp new-gid) | |
986 (tar-setf (tar-header-gname (tar-desc-tokens (tar-current-descriptor))) | |
987 new-gid) | |
988 (tar-alter-one-field tar-gname-offset | |
989 (concat new-gid "\000"))) | |
990 (t | |
991 (tar-setf (tar-header-gid (tar-desc-tokens (tar-current-descriptor))) | |
992 new-gid) | |
993 (tar-alter-one-field tar-gid-offset | |
994 (concat (substring (format "%6o" new-gid) 0 6) "\000 "))))) | |
995 | |
996 (defun tar-rename-entry (new-name) | |
997 "*Change the name associated with this entry in the tar file. | |
998 This does not modify the disk image; you must save the tar file itself | |
999 for this to be permanent." | |
1000 (interactive | |
1001 (list (read-string "New name: " | |
1002 (tar-header-name (tar-desc-tokens (tar-current-descriptor)))))) | |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
1003 (if (string= "" new-name) (error "zero length name")) |
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
1004 (if (> (length new-name) 98) (error "name too long")) |
212 | 1005 (tar-setf (tar-header-name (tar-desc-tokens (tar-current-descriptor))) |
1006 new-name) | |
1007 (tar-alter-one-field 0 | |
1008 (substring (concat new-name (make-string 99 0)) 0 99))) | |
1009 | |
1010 | |
1011 (defun tar-chmod-entry (new-mode) | |
1012 "*Change the protection bits associated with this entry in the tar file. | |
1013 This does not modify the disk image; you must save the tar file itself | |
1014 for this to be permanent." | |
1015 (interactive (list (tar-parse-octal-integer-safe | |
1016 (read-string "New protection (octal): ")))) | |
1017 (tar-setf (tar-header-mode (tar-desc-tokens (tar-current-descriptor))) | |
1018 new-mode) | |
1019 (tar-alter-one-field tar-mode-offset | |
1020 (concat (substring (format "%6o" new-mode) 0 6) "\000 "))) | |
1021 | |
1022 | |
1023 (defun tar-alter-one-field (data-position new-data-string) | |
1024 (let* ((descriptor (tar-current-descriptor)) | |
1025 (tokens (tar-desc-tokens descriptor))) | |
1026 (unwind-protect | |
1027 (save-excursion | |
1028 ;; | |
1029 ;; update the header-line. | |
1030 (beginning-of-line) | |
1031 (let ((p (point))) | |
1032 (forward-line 1) | |
1033 (delete-region p (point)) | |
8023
f29df49c6e53
(tar-extract): Set file name by hand before calling
Richard M. Stallman <rms@gnu.org>
parents:
7497
diff
changeset
|
1034 (insert (tar-header-block-summarize tokens) "\n") |
212 | 1035 (setq tar-header-offset (point-max))) |
1036 | |
1037 (widen) | |
1038 (let* ((start (+ (tar-desc-data-start descriptor) tar-header-offset -513))) | |
1039 ;; | |
1040 ;; delete the old field and insert a new one. | |
1041 (goto-char (+ start data-position)) | |
1042 (delete-region (point) (+ (point) (length new-data-string))) ; <-- | |
1043 (insert new-data-string) ; <-- | |
1044 ;; | |
1045 ;; compute a new checksum and insert it. | |
8023
f29df49c6e53
(tar-extract): Set file name by hand before calling
Richard M. Stallman <rms@gnu.org>
parents:
7497
diff
changeset
|
1046 (let ((chk (tar-header-block-checksum |
212 | 1047 (buffer-substring start (+ start 512))))) |
1048 (goto-char (+ start tar-chk-offset)) | |
1049 (delete-region (point) (+ (point) 8)) | |
1050 (insert (format "%6o" chk)) | |
1051 (insert 0) | |
1052 (insert ? ) | |
1053 (tar-setf (tar-header-checksum tokens) chk) | |
1054 ;; | |
1055 ;; ok, make sure we didn't botch it. | |
8043
93beabc37a44
(tar-alter-one-field): Finish previous renaming change.
Richard M. Stallman <rms@gnu.org>
parents:
8023
diff
changeset
|
1056 (tar-header-block-check-checksum |
212 | 1057 (buffer-substring start (+ start 512)) |
1058 chk (tar-header-name tokens)) | |
1059 ))) | |
1060 (narrow-to-region 1 tar-header-offset)))) | |
1061 | |
1062 | |
880 | 1063 (defun tar-octal-time (timeval) |
1064 ;; Format a timestamp as 11 octal digits. Ghod, I hope this works... | |
1065 (let ((hibits (car timeval)) (lobits (car (cdr timeval)))) | |
1066 (insert (format "%05o%01o%05o" | |
1067 (lsh hibits -2) | |
1068 (logior (lsh (logand 3 hibits) 1) (> (logand lobits 32768) 0)) | |
1069 (logand 32767 lobits) | |
1070 )))) | |
1071 | |
212 | 1072 (defun tar-subfile-save-buffer () |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
1073 "In tar subfile mode, save this buffer into its parent tar-file buffer. |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
1074 This doesn't write anything to disk; you must save the parent tar-file buffer |
212 | 1075 to make your changes permanent." |
1076 (interactive) | |
2542
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
1077 (if (not (and (boundp 'tar-superior-buffer) tar-superior-buffer)) |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
1078 (error "This buffer has no superior tar file buffer")) |
2542
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
1079 (if (not (and (boundp 'tar-superior-descriptor) tar-superior-descriptor)) |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
1080 (error "This buffer doesn't have an index into its superior tar file!")) |
212 | 1081 (save-excursion |
1082 (let ((subfile (current-buffer)) | |
1083 (subfile-size (buffer-size)) | |
2542
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
1084 (descriptor tar-superior-descriptor)) |
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
1085 (set-buffer tar-superior-buffer) |
212 | 1086 (let* ((tokens (tar-desc-tokens descriptor)) |
1087 (start (tar-desc-data-start descriptor)) | |
1088 (name (tar-header-name tokens)) | |
1089 (size (tar-header-size tokens)) | |
1090 (size-pad (ash (ash (+ size 511) -9) 9)) | |
1091 (head (memq descriptor tar-parse-info)) | |
1092 (following-descs (cdr head))) | |
1093 (if (not head) | |
1094 (error "Can't find this tar file entry in its parent tar file!")) | |
1095 (unwind-protect | |
1096 (save-excursion | |
1097 (widen) | |
1098 ;; delete the old data... | |
1099 (let* ((data-start (+ start tar-header-offset -1)) | |
1100 (data-end (+ data-start (ash (ash (+ size 511) -9) 9)))) | |
1101 (delete-region data-start data-end) | |
1102 ;; insert the new data... | |
1103 (goto-char data-start) | |
1104 (insert-buffer subfile) | |
1105 ;; | |
1106 ;; pad the new data out to a multiple of 512... | |
1107 (let ((subfile-size-pad (ash (ash (+ subfile-size 511) -9) 9))) | |
1108 (goto-char (+ data-start subfile-size)) | |
1109 (insert (make-string (- subfile-size-pad subfile-size) 0)) | |
1110 ;; | |
1111 ;; update the data pointer of this and all following files... | |
1112 (tar-setf (tar-header-size tokens) subfile-size) | |
1113 (let ((difference (- subfile-size-pad size-pad))) | |
1114 (tar-dolist (desc following-descs) | |
1115 (tar-setf (tar-desc-data-start desc) | |
1116 (+ (tar-desc-data-start desc) difference)))) | |
1117 ;; | |
1118 ;; Update the size field in the header block. | |
1119 (let ((header-start (- data-start 512))) | |
1120 (goto-char (+ header-start tar-size-offset)) | |
1121 (delete-region (point) (+ (point) 12)) | |
1122 (insert (format "%11o" subfile-size)) | |
1123 (insert ? ) | |
1124 ;; | |
1125 ;; Maybe update the datestamp. | |
1126 (if (not tar-update-datestamp) | |
1127 nil | |
1128 (goto-char (+ header-start tar-time-offset)) | |
1129 (delete-region (point) (+ (point) 12)) | |
880 | 1130 (insert (tar-octal-time (current-time))) |
212 | 1131 (insert ? )) |
1132 ;; | |
1133 ;; compute a new checksum and insert it. | |
8023
f29df49c6e53
(tar-extract): Set file name by hand before calling
Richard M. Stallman <rms@gnu.org>
parents:
7497
diff
changeset
|
1134 (let ((chk (tar-header-block-checksum |
212 | 1135 (buffer-substring header-start data-start)))) |
1136 (goto-char (+ header-start tar-chk-offset)) | |
1137 (delete-region (point) (+ (point) 8)) | |
1138 (insert (format "%6o" chk)) | |
1139 (insert 0) | |
1140 (insert ? ) | |
1141 (tar-setf (tar-header-checksum tokens) chk))) | |
1142 ;; | |
1143 ;; alter the descriptor-line... | |
1144 ;; | |
1145 (let ((position (- (length tar-parse-info) (length head)))) | |
1146 (goto-char 1) | |
1147 (next-line position) | |
1148 (beginning-of-line) | |
1149 (let ((p (point)) | |
7497
2308d6e6404c
(tar-extract): Put tar name into subfile visited name.
Richard M. Stallman <rms@gnu.org>
parents:
7464
diff
changeset
|
1150 after |
212 | 1151 (m (set-marker (make-marker) tar-header-offset))) |
1152 (forward-line 1) | |
7497
2308d6e6404c
(tar-extract): Put tar name into subfile visited name.
Richard M. Stallman <rms@gnu.org>
parents:
7464
diff
changeset
|
1153 (setq after (point)) |
2308d6e6404c
(tar-extract): Put tar name into subfile visited name.
Richard M. Stallman <rms@gnu.org>
parents:
7464
diff
changeset
|
1154 ;; Insert the new text after the old, before deleting, |
2308d6e6404c
(tar-extract): Put tar name into subfile visited name.
Richard M. Stallman <rms@gnu.org>
parents:
7464
diff
changeset
|
1155 ;; to preserve the window start. |
8023
f29df49c6e53
(tar-extract): Set file name by hand before calling
Richard M. Stallman <rms@gnu.org>
parents:
7497
diff
changeset
|
1156 (insert-before-markers (tar-header-block-summarize tokens t) "\n") |
7497
2308d6e6404c
(tar-extract): Put tar name into subfile visited name.
Richard M. Stallman <rms@gnu.org>
parents:
7464
diff
changeset
|
1157 (delete-region p after) |
212 | 1158 (setq tar-header-offset (marker-position m))) |
1159 ))) | |
1160 ;; after doing the insertion, add any final padding that may be necessary. | |
1161 (tar-pad-to-blocksize)) | |
1162 (narrow-to-region 1 tar-header-offset))) | |
1163 (set-buffer-modified-p t) ; mark the tar file as modified | |
1164 (set-buffer subfile) | |
1165 (set-buffer-modified-p nil) ; mark the tar subfile as unmodified | |
11450
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
1166 (message "Saved into tar-buffer `%s'. Be sure to save that buffer!" |
2542
ae4176e2e8fa
Add defvars to pacify the byte compiler, at RMS's request.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
880
diff
changeset
|
1167 (buffer-name tar-superior-buffer)) |
4387
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
1168 ;; Prevent ordinary saving from happening. |
3e18f6a1915b
Fix doc strings and error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
4260
diff
changeset
|
1169 t))) |
212 | 1170 |
1171 | |
1172 (defun tar-pad-to-blocksize () | |
1173 "If we are being anal about tar file blocksizes, fix up the current buffer. | |
1174 Leaves the region wide." | |
1175 (if (null tar-anal-blocksize) | |
1176 nil | |
1177 (widen) | |
1178 (let* ((last-desc (nth (1- (length tar-parse-info)) tar-parse-info)) | |
1179 (start (tar-desc-data-start last-desc)) | |
1180 (tokens (tar-desc-tokens last-desc)) | |
1181 (link-p (tar-header-link-type tokens)) | |
1182 (size (if link-p 0 (tar-header-size tokens))) | |
1183 (data-end (+ start size)) | |
1184 (bbytes (ash tar-anal-blocksize 9)) | |
1185 (pad-to (+ bbytes (* bbytes (/ (1- data-end) bbytes)))) | |
5821
4212fd8028bb
(tar-pad-to-blocksize): Bind inhibit-read-only, not buffer-read-only.
Richard M. Stallman <rms@gnu.org>
parents:
4586
diff
changeset
|
1186 (inhibit-read-only t) ; ## |
212 | 1187 ) |
1188 ;; If the padding after the last data is too long, delete some; | |
1189 ;; else insert some until we are padded out to the right number of blocks. | |
1190 ;; | |
1191 (goto-char (+ (or tar-header-offset 0) data-end)) | |
1192 (if (> (1+ (buffer-size)) (+ (or tar-header-offset 0) pad-to)) | |
1193 (delete-region (+ (or tar-header-offset 0) pad-to) (1+ (buffer-size))) | |
1194 (insert (make-string (- (+ (or tar-header-offset 0) pad-to) | |
1195 (1+ (buffer-size))) | |
1196 0))) | |
1197 ))) | |
1198 | |
1199 | |
6611
a5f180172ff3
Fix error message syntax.
Richard M. Stallman <rms@gnu.org>
parents:
5821
diff
changeset
|
1200 ;; Used in write-file-hook to write tar-files out correctly. |
11450
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
1201 (defun tar-mode-write-file () |
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
1202 (unwind-protect |
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
1203 (save-excursion |
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
1204 (widen) |
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
1205 ;; Doing this here confuses things - the region gets left too wide! |
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
1206 ;; I suppose this is run in a context where changing the buffer is bad. |
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
1207 ;; (tar-pad-to-blocksize) |
21851
facde3a9a846
(tar-mode-write-file): Protect from null tar-header-offset.
Dave Love <fx@gnu.org>
parents:
21850
diff
changeset
|
1208 ;; tar-header-offset turns out to be null for files fetched with W3, |
facde3a9a846
(tar-mode-write-file): Protect from null tar-header-offset.
Dave Love <fx@gnu.org>
parents:
21850
diff
changeset
|
1209 ;; at least. |
facde3a9a846
(tar-mode-write-file): Protect from null tar-header-offset.
Dave Love <fx@gnu.org>
parents:
21850
diff
changeset
|
1210 (write-region (or tar-header-offset (point-min)) (point-max) |
facde3a9a846
(tar-mode-write-file): Protect from null tar-header-offset.
Dave Love <fx@gnu.org>
parents:
21850
diff
changeset
|
1211 buffer-file-name nil t) |
15947
849a396187cd
(tar-mode-write-file): Clear buffer's own modified flag
Richard M. Stallman <rms@gnu.org>
parents:
15612
diff
changeset
|
1212 (tar-clear-modification-flags) |
849a396187cd
(tar-mode-write-file): Clear buffer's own modified flag
Richard M. Stallman <rms@gnu.org>
parents:
15612
diff
changeset
|
1213 (set-buffer-modified-p nil)) |
11450
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
1214 (narrow-to-region 1 tar-header-offset)) |
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
1215 ;; return T because we've written the file. |
aee30032f324
(tar-mode): Locally bind next-line-add-newlines to nil.
Richard M. Stallman <rms@gnu.org>
parents:
11431
diff
changeset
|
1216 t) |
20970
00fce41bcd4f
Add "q" for quit, and use "C" for copy and "R" for
Karl Heuer <kwzh@gnu.org>
parents:
20808
diff
changeset
|
1217 |
00fce41bcd4f
Add "q" for quit, and use "C" for copy and "R" for
Karl Heuer <kwzh@gnu.org>
parents:
20808
diff
changeset
|
1218 (defun tar-quit () |
00fce41bcd4f
Add "q" for quit, and use "C" for copy and "R" for
Karl Heuer <kwzh@gnu.org>
parents:
20808
diff
changeset
|
1219 "Kill the current tar buffer." |
00fce41bcd4f
Add "q" for quit, and use "C" for copy and "R" for
Karl Heuer <kwzh@gnu.org>
parents:
20808
diff
changeset
|
1220 (interactive) |
00fce41bcd4f
Add "q" for quit, and use "C" for copy and "R" for
Karl Heuer <kwzh@gnu.org>
parents:
20808
diff
changeset
|
1221 (kill-buffer nil)) |
00fce41bcd4f
Add "q" for quit, and use "C" for copy and "R" for
Karl Heuer <kwzh@gnu.org>
parents:
20808
diff
changeset
|
1222 |
212 | 1223 |
1224 (provide 'tar-mode) | |
1225 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1226 ;;; tar-mode.el ends here |