Comment.
[bpt/emacs.git] / lisp / tar-mode.el
CommitLineData
c88ab9ce 1;;; tar-mode.el --- simple editing of tar files from GNU emacs
aa73f29c 2
0d30b337 3;; Copyright (C) 1990, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
ae940284 4;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
eea8d4ef 5
22a89ee8 6;; Author: Jamie Zawinski <jwz@lucid.com>
54138c9d 7;; Maintainer: FSF
e5167999 8;; Created: 04 Apr 1990
d7b4d18f 9;; Keywords: unix
aa73f29c 10
b578f267
EN
11;; This file is part of GNU Emacs.
12
eb3fa2cf 13;; GNU Emacs is free software: you can redistribute it and/or modify
b578f267 14;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
b578f267
EN
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
eb3fa2cf 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
aa73f29c 25
22a89ee8
ER
26;;; Commentary:
27
b578f267
EN
28;; This package attempts to make dealing with Unix 'tar' archives easier.
29;; When this code is loaded, visiting a file whose name ends in '.tar' will
30;; cause the contents of that archive file to be displayed in a Dired-like
31;; listing. It is then possible to use the customary Dired keybindings to
32;; extract sub-files from that archive, either by reading them into their own
33;; editor buffers, or by copying them directly to arbitrary files on disk.
34;; It is also possible to delete sub-files from within the tar file and write
35;; the modified archive back to disk, or to edit sub-files within the archive
36;; and re-insert the modified files into the archive. See the documentation
37;; string of tar-mode for more info.
38
39;; This code now understands the extra fields that GNU tar adds to tar files.
40
41;; This interacts correctly with "uncompress.el" in the Emacs library,
f1180544 42;; which you get with
b578f267
EN
43;;
44;; (autoload 'uncompress-while-visiting "uncompress")
45;; (setq auto-mode-alist (cons '("\\.Z$" . uncompress-while-visiting)
46;; auto-mode-alist))
47;;
48;; Do not attempt to use tar-mode.el with crypt.el, you will lose.
49
f1180544 50;; *************** TO DO ***************
b578f267
EN
51;;
52;; o chmod should understand "a+x,og-w".
53;;
f1180544 54;; o It's not possible to add a NEW file to a tar archive; not that
b578f267
EN
55;; important, but still...
56;;
57;; o The code is less efficient that it could be - in a lot of places, I
58;; pull a 512-character string out of the buffer and parse it, when I could
59;; be parsing it in place, not garbaging a string. Should redo that.
60;;
61;; o I'd like a command that searches for a string/regexp in every subfile
62;; of an archive, where <esc> would leave you in a subfile-edit buffer.
63;; (Like the Meta-R command of the Zmacs mail reader.)
64;;
f1180544 65;; o Sometimes (but not always) reverting the tar-file buffer does not
b578f267
EN
66;; re-grind the listing, and you are staring at the binary tar data.
67;; Typing 'g' again immediately after that will always revert and re-grind
68;; it, though. I have no idea why this happens.
69;;
70;; o Tar-mode interacts poorly with crypt.el and zcat.el because the tar
71;; write-file-hook actually writes the file. Instead it should remove the
72;; header (and conspire to put it back afterwards) so that other write-file
73;; hooks which frob the buffer have a chance to do their dirty work. There
74;; might be a problem if the tar write-file-hook does not come *first* on
75;; the list.
76;;
f1180544 77;; o Block files, sparse files, continuation files, and the various header
b578f267
EN
78;; types aren't editable. Actually I don't know that they work at all.
79
80;; Rationale:
81
82;; Why does tar-mode edit the file itself instead of using tar?
83
84;; That means that you can edit tar files which you don't have room for
85;; on your local disk.
86
87;; I don't know about recent features in gnu tar, but old versions of tar
88;; can't replace a file in the middle of a tar file with a new version.
89;; Tar-mode can. I don't think tar can do things like chmod the subfiles.
90;; An implementation which involved unpacking and repacking the file into
91;; some scratch directory would be very wasteful, and wouldn't be able to
92;; preserve the file owners.
ce210066 93
f598e45e
SM
94;;; Bugs:
95
58d6a142 96;; - Rename on ././@LongLink files
f598e45e 97;; - Revert confirmation displays the raw data temporarily.
f598e45e 98
22a89ee8
ER
99;;; Code:
100
f598e45e
SM
101(eval-when-compile (require 'cl))
102
b4dd2e66
SE
103(defgroup tar nil
104 "Simple editing of tar files."
105 :prefix "tar-"
106 :group 'data)
107
108(defcustom tar-anal-blocksize 20
8560523d 109 "The blocksize of tar files written by Emacs, or nil, meaning don't care.
aa73f29c 110The blocksize of a tar file is not really the size of the blocks; rather, it is
f1180544 111the number of blocks written with one system call. When tarring to a tape,
aa73f29c
RS
112this is the size of the *tape* blocks, but when writing to a file, it doesn't
113matter much. The only noticeable difference is that if a tar file does not
114have a blocksize of 20, tar will tell you that; all this really controls is
b4dd2e66
SE
115how many null padding bytes go on the end of the tar file."
116 :type '(choice integer (const nil))
117 :group 'tar)
aa73f29c 118
b4dd2e66 119(defcustom tar-update-datestamp nil
8560523d 120 "Non-nil means Tar mode should play fast and loose with sub-file datestamps.
30712209 121If this is true, then editing and saving a tar file entry back into its
aa73f29c
RS
122tar file will update its datestamp. If false, the datestamp is unchanged.
123You may or may not want this - it is good in that you can tell when a file
124in a tar archive has been changed, but it is bad for the same reason that
f1180544 125editing a file in the tar archive at all is bad - the changed version of
b4dd2e66
SE
126the file never exists on disk."
127 :type 'boolean
128 :group 'tar)
aa73f29c 129
b4dd2e66 130(defcustom tar-mode-show-date nil
8560523d 131 "Non-nil means Tar mode should show the date/time of each subfile.
b4dd2e66
SE
132This information is useful, but it takes screen space away from file names."
133 :type 'boolean
134 :group 'tar)
30712209 135
0f8becaa 136(defvar tar-parse-info nil)
0f8becaa
ER
137(defvar tar-superior-buffer nil)
138(defvar tar-superior-descriptor nil)
139(defvar tar-subfile-mode nil)
d26e6665 140(defvar tar-file-name-coding-system nil)
1c0b3743 141
1c0b3743
RS
142(put 'tar-superior-buffer 'permanent-local t)
143(put 'tar-superior-descriptor 'permanent-local t)
f598e45e
SM
144
145;; The Tar data is made up of bytes and better manipulated as bytes
146;; and can be very large, so insert/delete can be costly. The summary we
147;; want to display may contain non-ascci chars, of course, so we'd like it
148;; to be multibyte. We used to keep both in the same buffer and switch
149;; from/to uni/multibyte. But this had several downsides:
150;; - set-buffer-multibyte has an O(N^2) worst case that tends to be triggered
151;; here, so it gets atrociously slow on large Tar files.
152;; - need to widen/narrow the buffer to show/hide the raw data, and need to
153;; maintain a tar-header-offset that keeps track of the boundary between
154;; the two.
155;; - can't use markers because they're not preserved by set-buffer-multibyte.
156;; So instead, we now keep the two pieces of data in separate buffers, and
157;; use the new buffer-swap-text primitive when we need to change which data
158;; is associated with "the" buffer.
159(defvar tar-data-buffer nil "Buffer that holds the actual raw tar bytes.")
160(make-variable-buffer-local 'tar-data-buffer)
161
19eb68d0
SM
162(defvar tar-data-swapped nil
163 "If non-nil, `tar-data-buffer' indeed holds raw tar bytes.")
164(make-variable-buffer-local 'tar-data-swapped)
165
f598e45e
SM
166(defun tar-data-swapped-p ()
167 "Return non-nil if the tar-data is in `tar-data-buffer'."
19eb68d0
SM
168 (and (buffer-live-p tar-data-buffer)
169 ;; Sanity check to try and make sure tar-data-swapped tracks the swap
170 ;; state correctly: the raw data is expected to be always larger than
171 ;; the summary.
172 (progn
173 (assert (eq tar-data-swapped
174 (> (buffer-size tar-data-buffer) (buffer-size))))
175 tar-data-swapped)))
d3a36099
AS
176
177(defun tar-swap-data ()
178 "Swap buffer contents between current buffer and `tar-data-buffer'.
179Preserve the modified states of the buffers and set `buffer-swapped-with'."
180 (let ((data-buffer-modified-p (buffer-modified-p tar-data-buffer))
181 (current-buffer-modified-p (buffer-modified-p)))
182 (buffer-swap-text tar-data-buffer)
19eb68d0
SM
183 (setq tar-data-swapped (not tar-data-swapped))
184 (restore-buffer-modified-p data-buffer-modified-p)
d3a36099 185 (with-current-buffer tar-data-buffer
19eb68d0 186 (restore-buffer-modified-p current-buffer-modified-p))))
aa73f29c 187\f
aa73f29c
RS
188;;; down to business.
189
61bb55d0
SM
190(defstruct (tar-header
191 (:constructor nil)
192 (:type vector)
193 :named
194 (:constructor
195 make-tar-header (data-start name mode uid gid size date checksum
196 link-type link-name magic uname gname dmaj dmin)))
197 data-start name mode uid gid size date checksum link-type link-name
58d6a142
SM
198 magic uname gname dmaj dmin
199 ;; Start of the header can be nil (meaning it's 512 bytes before data-start)
200 ;; or a marker (in case the header uses LongLink thingies).
201 header-start)
aa73f29c
RS
202
203(defconst tar-name-offset 0)
204(defconst tar-mode-offset (+ tar-name-offset 100))
205(defconst tar-uid-offset (+ tar-mode-offset 8))
206(defconst tar-gid-offset (+ tar-uid-offset 8))
207(defconst tar-size-offset (+ tar-gid-offset 8))
208(defconst tar-time-offset (+ tar-size-offset 12))
209(defconst tar-chk-offset (+ tar-time-offset 12))
210(defconst tar-linkp-offset (+ tar-chk-offset 8))
211(defconst tar-link-offset (+ tar-linkp-offset 1))
212;;; GNU-tar specific slots.
213(defconst tar-magic-offset (+ tar-link-offset 100))
214(defconst tar-uname-offset (+ tar-magic-offset 8))
215(defconst tar-gname-offset (+ tar-uname-offset 32))
216(defconst tar-dmaj-offset (+ tar-gname-offset 32))
217(defconst tar-dmin-offset (+ tar-dmaj-offset 8))
034e32b0
JL
218(defconst tar-prefix-offset (+ tar-dmin-offset 8))
219(defconst tar-end-offset (+ tar-prefix-offset 155))
aa73f29c 220
61bb55d0
SM
221(defun tar-roundup-512 (s)
222 "Round S up to the next multiple of 512."
223 (ash (ash (+ s 511) -9) 9))
224
d3a36099 225(defun tar-header-block-tokenize (pos coding)
e865c5ce 226 "Return a `tar-header' structure.
f1180544 227This is a list of name, mode, uid, gid, size,
e865c5ce 228write-date, checksum, link-type, and link-name."
dc4e3ccc 229 (if (> (+ pos 512) (point-max)) (error "Malformed Tar header"))
61bb55d0
SM
230 (assert (zerop (mod (- pos (point-min)) 512)))
231 (assert (not enable-multibyte-characters))
232 (let ((string (buffer-substring pos (setq pos (+ pos 512)))))
233 (when ;(some 'plusp string) ; <-- oops, massive cycle hog!
234 (or (not (= 0 (aref string 0))) ; This will do.
235 (not (= 0 (aref string 101))))
236 (let* ((name-end tar-mode-offset)
237 (link-end (1- tar-magic-offset))
238 (uname-end (1- tar-gname-offset))
239 (gname-end (1- tar-dmaj-offset))
240 (link-p (aref string tar-linkp-offset))
241 (magic-str (substring string tar-magic-offset
64ac1266
SM
242 ;; The magic string is actually 6bytes
243 ;; of magic string plus 2bytes of version
244 ;; which we here ignore.
245 (- tar-uname-offset 2)))
246 ;; The magic string is "ustar\0" for POSIX format, and
247 ;; "ustar " for GNU Tar's format.
248 (uname-valid-p (car (member magic-str '("ustar " "ustar\0"))))
61bb55d0
SM
249 name linkname
250 (nulsexp "[^\000]*\000"))
251 (when (string-match nulsexp string tar-name-offset)
252 (setq name-end (min name-end (1- (match-end 0)))))
253 (when (string-match nulsexp string tar-link-offset)
254 (setq link-end (min link-end (1- (match-end 0)))))
255 (when (string-match nulsexp string tar-uname-offset)
256 (setq uname-end (min uname-end (1- (match-end 0)))))
257 (when (string-match nulsexp string tar-gname-offset)
258 (setq gname-end (min gname-end (1- (match-end 0)))))
259 (setq name (substring string tar-name-offset name-end)
260 link-p (if (or (= link-p 0) (= link-p ?0))
261 nil
262 (- link-p ?0)))
263 (setq linkname (substring string tar-link-offset link-end))
64ac1266 264 (when (and (equal uname-valid-p "ustar\0")
61bb55d0
SM
265 (string-match nulsexp string tar-prefix-offset)
266 (> (match-end 0) (1+ tar-prefix-offset)))
267 (setq name (concat (substring string tar-prefix-offset
268 (1- (match-end 0)))
269 "/" name)))
270 (if default-enable-multibyte-characters
271 (setq name
d3a36099 272 (decode-coding-string name coding)
61bb55d0 273 linkname
d3a36099 274 (decode-coding-string linkname coding)))
61bb55d0
SM
275 (if (and (null link-p) (string-match "/\\'" name))
276 (setq link-p 5)) ; directory
277
278 (if (and (equal name "././@LongLink")
e66f4dfb
SM
279 ;; Supposedly @LongLink is only used for GNUTAR
280 ;; format (i.e. "ustar ") but some POSIX Tar files
281 ;; (with "ustar\0") have been seen using it as well.
282 (member magic-str '("ustar " "ustar\0")))
61bb55d0
SM
283 ;; This is a GNU Tar long-file-name header.
284 (let* ((size (tar-parse-octal-integer
285 string tar-size-offset tar-time-offset))
286 ;; -1 so as to strip the terminating 0 byte.
287 (name (buffer-substring pos (+ pos size -1)))
288 (descriptor (tar-header-block-tokenize
19eb68d0
SM
289 (+ pos (tar-roundup-512 size))
290 coding)))
61bb55d0
SM
291 (cond
292 ((eq link-p (- ?L ?0)) ;GNUTYPE_LONGNAME.
293 (setf (tar-header-name descriptor) name))
294 ((eq link-p (- ?K ?0)) ;GNUTYPE_LONGLINK.
295 (setf (tar-header-link-name descriptor) name))
296 (t
297 (message "Unrecognized GNU Tar @LongLink format")))
58d6a142
SM
298 (setf (tar-header-header-start descriptor)
299 (copy-marker (- pos 512) t))
61bb55d0
SM
300 descriptor)
301
302 (make-tar-header
303 (copy-marker pos nil)
304 name
305 (tar-parse-octal-integer string tar-mode-offset tar-uid-offset)
306 (tar-parse-octal-integer string tar-uid-offset tar-gid-offset)
307 (tar-parse-octal-integer string tar-gid-offset tar-size-offset)
308 (tar-parse-octal-integer string tar-size-offset tar-time-offset)
309 (tar-parse-octal-long-integer string tar-time-offset tar-chk-offset)
310 (tar-parse-octal-integer string tar-chk-offset tar-linkp-offset)
311 link-p
312 linkname
313 uname-valid-p
314 (and uname-valid-p (substring string tar-uname-offset uname-end))
315 (and uname-valid-p (substring string tar-gname-offset gname-end))
316 (tar-parse-octal-integer string tar-dmaj-offset tar-dmin-offset)
317 (tar-parse-octal-integer string tar-dmin-offset tar-prefix-offset)
318 ))))))
aa73f29c 319
58d6a142
SM
320;; Pseudo-field.
321(defun tar-header-data-end (descriptor)
322 (let* ((data-start (tar-header-data-start descriptor))
323 (link-type (tar-header-link-type descriptor))
324 (size (tar-header-size descriptor))
325 (fudge (cond
326 ;; Foo. There's an extra empty block after these.
327 ((memq link-type '(20 55)) 512)
328 (t 0))))
329 (+ data-start fudge
330 (if (and (null link-type) (> size 0))
331 (tar-roundup-512 size)
332 0))))
aa73f29c
RS
333
334(defun tar-parse-octal-integer (string &optional start end)
aa73f29c
RS
335 (if (null start) (setq start 0))
336 (if (null end) (setq end (length string)))
337 (if (= (aref string start) 0)
338 0
339 (let ((n 0))
340 (while (< start end)
341 (setq n (if (< (aref string start) ?0) n
30712209 342 (+ (* n 8) (- (aref string start) ?0)))
aa73f29c
RS
343 start (1+ start)))
344 n)))
345
30712209
RS
346(defun tar-parse-octal-long-integer (string &optional start end)
347 (if (null start) (setq start 0))
348 (if (null end) (setq end (length string)))
349 (if (= (aref string start) 0)
806cba9c 350 (list 0 0)
30712209
RS
351 (let ((lo 0)
352 (hi 0))
353 (while (< start end)
354 (if (>= (aref string start) ?0)
355 (setq lo (+ (* lo 8) (- (aref string start) ?0))
356 hi (+ (* hi 8) (ash lo -16))
357 lo (logand lo 65535)))
358 (setq start (1+ start)))
359 (list hi lo))))
360
aa73f29c 361(defun tar-parse-octal-integer-safe (string)
8560523d
SM
362 (if (zerop (length string)) (error "empty string"))
363 (mapc (lambda (c)
364 (if (or (< c ?0) (> c ?7))
365 (error "`%c' is not an octal digit" c)))
366 string)
aa73f29c
RS
367 (tar-parse-octal-integer string))
368
369
1bc28099 370(defun tar-header-block-checksum (string)
e865c5ce 371 "Compute and return a tar-acceptable checksum for this block."
61bb55d0 372 (assert (not (multibyte-string-p string)))
aa73f29c
RS
373 (let* ((chk-field-start tar-chk-offset)
374 (chk-field-end (+ chk-field-start 8))
375 (sum 0)
376 (i 0))
377 ;; Add up all of the characters except the ones in the checksum field.
378 ;; Add that field as if it were filled with spaces.
379 (while (< i chk-field-start)
380 (setq sum (+ sum (aref string i))
381 i (1+ i)))
382 (setq i chk-field-end)
383 (while (< i 512)
384 (setq sum (+ sum (aref string i))
385 i (1+ i)))
386 (+ sum (* 32 8))))
387
1bc28099 388(defun tar-header-block-check-checksum (hblock desired-checksum file-name)
aa73f29c 389 "Beep and print a warning if the checksum doesn't match."
1bc28099 390 (if (not (= desired-checksum (tar-header-block-checksum hblock)))
aa73f29c
RS
391 (progn (beep) (message "Invalid checksum for file %s!" file-name))))
392
30712209
RS
393(defun tar-clip-time-string (time)
394 (let ((str (current-time-string time)))
139f2b7c 395 (concat " " (substring str 4 16) (substring str 19 24))))
aa73f29c 396
139f2b7c
SM
397(defun tar-grind-file-mode (mode)
398 "Construct a `-rw--r--r--' string indicating MODE.
6a06ace6 399MODE should be an integer which is a file mode value."
139f2b7c
SM
400 (string
401 (if (zerop (logand 256 mode)) ?- ?r)
402 (if (zerop (logand 128 mode)) ?- ?w)
403 (if (zerop (logand 1024 mode)) (if (zerop (logand 64 mode)) ?- ?x) ?s)
404 (if (zerop (logand 32 mode)) ?- ?r)
405 (if (zerop (logand 16 mode)) ?- ?w)
406 (if (zerop (logand 2048 mode)) (if (zerop (logand 8 mode)) ?- ?x) ?s)
407 (if (zerop (logand 4 mode)) ?- ?r)
408 (if (zerop (logand 2 mode)) ?- ?w)
409 (if (zerop (logand 1 mode)) ?- ?x)))
aa73f29c 410
1bc28099 411(defun tar-header-block-summarize (tar-hblock &optional mod-p)
139f2b7c 412 "Return a line similar to the output of `tar -vtf'."
aa73f29c
RS
413 (let ((name (tar-header-name tar-hblock))
414 (mode (tar-header-mode tar-hblock))
415 (uid (tar-header-uid tar-hblock))
416 (gid (tar-header-gid tar-hblock))
417 (uname (tar-header-uname tar-hblock))
418 (gname (tar-header-gname tar-hblock))
419 (size (tar-header-size tar-hblock))
420 (time (tar-header-date tar-hblock))
8560523d 421 ;; (ck (tar-header-checksum tar-hblock))
139f2b7c
SM
422 (type (tar-header-link-type tar-hblock))
423 (link-name (tar-header-link-name tar-hblock)))
32d956a8 424 (format "%c%c%s %7s/%-7s %7s%s %s%s"
139f2b7c 425 (if mod-p ?* ? )
aa73f29c 426 (cond ((or (eq type nil) (eq type 0)) ?-)
6ee30a2a
RS
427 ((eq type 1) ?h) ; link
428 ((eq type 2) ?l) ; symlink
139f2b7c
SM
429 ((eq type 3) ?c) ; char special
430 ((eq type 4) ?b) ; block special
431 ((eq type 5) ?d) ; directory
432 ((eq type 6) ?p) ; FIFO/pipe
433 ((eq type 20) ?*) ; directory listing
f9580781 434 ((eq type 28) ?L) ; next has longname
139f2b7c
SM
435 ((eq type 29) ?M) ; multivolume continuation
436 ((eq type 35) ?S) ; sparse
437 ((eq type 38) ?V) ; volume header
133ecc54 438 ((eq type 55) ?H) ; extended pax header
e5d56b61 439 (t ?\s)
139f2b7c
SM
440 )
441 (tar-grind-file-mode mode)
442 (if (= 0 (length uname)) uid uname)
443 (if (= 0 (length gname)) gid gname)
444 size
445 (if tar-mode-show-date (tar-clip-time-string time) "")
a28eaf2c
EZ
446 (propertize name
447 'mouse-face 'highlight
448 'help-echo "mouse-2: extract this file into a buffer")
139f2b7c
SM
449 (if (or (eq type 1) (eq type 2))
450 (concat (if (= type 1) " ==> " " --> ") link-name)
451 ""))))
aa73f29c 452
27129192 453(defun tar-untar-buffer ()
643415c4 454 "Extract all archive members in the tar-file into the current directory."
27129192 455 (interactive)
f598e45e
SM
456 ;; FIXME: make it work even if we're not in tar-mode.
457 (let ((descriptors tar-parse-info)) ;Read the var in its buffer.
458 (with-current-buffer
459 (if (tar-data-swapped-p) tar-data-buffer (current-buffer))
460 (set-buffer-multibyte nil) ;Hopefully, a no-op.
461 (dolist (descriptor descriptors)
61bb55d0
SM
462 (let* ((name (tar-header-name descriptor))
463 (dir (if (eq (tar-header-link-type descriptor) 5)
f598e45e
SM
464 name
465 (file-name-directory name)))
61bb55d0
SM
466 (start (tar-header-data-start descriptor))
467 (end (+ start (tar-header-size descriptor))))
f598e45e
SM
468 (unless (file-directory-p name)
469 (message "Extracting %s" name)
470 (if (and dir (not (file-exists-p dir)))
471 (make-directory dir t))
472 (unless (file-directory-p name)
473 (write-region start end name))
61bb55d0 474 (set-file-modes name (tar-header-mode descriptor))))))))
27129192 475
aa73f29c 476(defun tar-summarize-buffer ()
61bb55d0 477 "Parse the contents of the tar file in the current buffer."
f598e45e
SM
478 (assert (tar-data-swapped-p))
479 (let* ((modified (buffer-modified-p))
480 (result '())
481 (pos (point-min))
d3a36099 482 (coding tar-file-name-coding-system)
f598e45e 483 (progress-reporter
dd798c64
SM
484 (with-current-buffer tar-data-buffer
485 (make-progress-reporter "Parsing tar file..."
486 (point-min) (point-max))))
61bb55d0 487 descriptor)
f598e45e 488 (with-current-buffer tar-data-buffer
dc4e3ccc 489 (while (and (< pos (point-max))
d3a36099 490 (setq descriptor (tar-header-block-tokenize pos coding)))
61bb55d0 491 (let ((size (tar-header-size descriptor)))
c40d3365
MB
492 (if (< size 0)
493 (error "%s has size %s - corrupted"
58d6a142
SM
494 (tar-header-name descriptor) size)))
495 ;;
496 ;; This is just too slow. Don't really need it anyway....
497 ;;(tar-header-block-check-checksum
498 ;; hblock (tar-header-block-checksum hblock)
499 ;; (tar-header-name descriptor))
500
501 (push descriptor result)
502 (setq pos (tar-header-data-end descriptor))
503 (progress-reporter-update progress-reporter pos)))
504
61bb55d0 505 (set (make-local-variable 'tar-parse-info) (nreverse result))
f598e45e
SM
506 ;; A tar file should end with a block or two of nulls,
507 ;; but let's not get a fatal error if it doesn't.
61bb55d0 508 (if (null descriptor)
f598e45e
SM
509 (progress-reporter-done progress-reporter)
510 (message "Warning: premature EOF parsing tar file"))
aa73f29c 511 (goto-char (point-min))
c40d3365 512 (let ((inhibit-read-only t)
c40d3365 513 (total-summaries
61bb55d0 514 (mapconcat 'tar-header-block-summarize tar-parse-info "\n")))
c40d3365 515 (insert total-summaries "\n"))
c40d3365
MB
516 (goto-char (point-min))
517 (restore-buffer-modified-p modified)))
e865c5ce 518\f
c40d3365
MB
519(defvar tar-mode-map
520 (let ((map (make-keymap)))
521 (suppress-keymap map)
522 (define-key map " " 'tar-next-line)
523 (define-key map "C" 'tar-copy)
524 (define-key map "d" 'tar-flag-deleted)
525 (define-key map "\^D" 'tar-flag-deleted)
526 (define-key map "e" 'tar-extract)
527 (define-key map "f" 'tar-extract)
528 (define-key map "\C-m" 'tar-extract)
529 (define-key map [mouse-2] 'tar-mouse-extract)
530 (define-key map "g" 'revert-buffer)
531 (define-key map "h" 'describe-mode)
532 (define-key map "n" 'tar-next-line)
533 (define-key map "\^N" 'tar-next-line)
534 (define-key map [down] 'tar-next-line)
535 (define-key map "o" 'tar-extract-other-window)
536 (define-key map "p" 'tar-previous-line)
537 (define-key map "q" 'quit-window)
538 (define-key map "\^P" 'tar-previous-line)
539 (define-key map [up] 'tar-previous-line)
540 (define-key map "R" 'tar-rename-entry)
541 (define-key map "u" 'tar-unflag)
542 (define-key map "v" 'tar-view)
543 (define-key map "x" 'tar-expunge)
544 (define-key map "\177" 'tar-unflag-backwards)
545 (define-key map "E" 'tar-extract-other-window)
546 (define-key map "M" 'tar-chmod-entry)
547 (define-key map "G" 'tar-chgrp-entry)
548 (define-key map "O" 'tar-chown-entry)
7fe7479d
SM
549 ;; Let mouse-1 follow the link.
550 (define-key map [follow-link] 'mouse-face)
53ad7bee 551
c40d3365 552 ;; Make menu bar items.
e865c5ce 553
c40d3365
MB
554 ;; Get rid of the Edit menu bar item to save space.
555 (define-key map [menu-bar edit] 'undefined)
e865c5ce 556
c40d3365 557 (define-key map [menu-bar immediate]
53ad7bee 558 (cons "Immediate" (make-sparse-keymap "Immediate")))
e865c5ce 559
c40d3365 560 (define-key map [menu-bar immediate view]
53ad7bee 561 '("View This File" . tar-view))
c40d3365 562 (define-key map [menu-bar immediate display]
53ad7bee 563 '("Display in Other Window" . tar-display-other-window))
c40d3365 564 (define-key map [menu-bar immediate find-file-other-window]
53ad7bee 565 '("Find in Other Window" . tar-extract-other-window))
c40d3365 566 (define-key map [menu-bar immediate find-file]
53ad7bee 567 '("Find This File" . tar-extract))
e865c5ce 568
c40d3365 569 (define-key map [menu-bar mark]
53ad7bee 570 (cons "Mark" (make-sparse-keymap "Mark")))
e865c5ce 571
c40d3365 572 (define-key map [menu-bar mark unmark-all]
53ad7bee 573 '("Unmark All" . tar-clear-modification-flags))
c40d3365 574 (define-key map [menu-bar mark deletion]
53ad7bee 575 '("Flag" . tar-flag-deleted))
c40d3365 576 (define-key map [menu-bar mark unmark]
53ad7bee 577 '("Unflag" . tar-unflag))
e865c5ce 578
c40d3365 579 (define-key map [menu-bar operate]
53ad7bee 580 (cons "Operate" (make-sparse-keymap "Operate")))
e865c5ce 581
c40d3365 582 (define-key map [menu-bar operate chown]
53ad7bee 583 '("Change Owner..." . tar-chown-entry))
c40d3365 584 (define-key map [menu-bar operate chgrp]
53ad7bee 585 '("Change Group..." . tar-chgrp-entry))
c40d3365 586 (define-key map [menu-bar operate chmod]
53ad7bee 587 '("Change Mode..." . tar-chmod-entry))
c40d3365 588 (define-key map [menu-bar operate rename]
53ad7bee 589 '("Rename to..." . tar-rename-entry))
c40d3365 590 (define-key map [menu-bar operate copy]
53ad7bee 591 '("Copy to..." . tar-copy))
c40d3365 592 (define-key map [menu-bar operate expunge]
53ad7bee
SM
593 '("Expunge Marked Files" . tar-expunge))
594 \f
c40d3365
MB
595 map)
596 "Local keymap for Tar mode listings.")
597
598\f
aa73f29c
RS
599;; tar mode is suitable only for specially formatted data.
600(put 'tar-mode 'mode-class 'special)
601(put 'tar-subfile-mode 'mode-class 'special)
602
f598e45e
SM
603(defun tar-change-major-mode-hook ()
604 ;; Bring the actual Tar data back into the main buffer.
d3a36099 605 (when (tar-data-swapped-p) (tar-swap-data))
f598e45e
SM
606 ;; Throw away the summary.
607 (when (buffer-live-p tar-data-buffer) (kill-buffer tar-data-buffer)))
608
609(defun tar-mode-kill-buffer-hook ()
610 (if (buffer-live-p tar-data-buffer) (kill-buffer tar-data-buffer)))
611
bdd53bbc 612;;;###autoload
a91c76d6 613(define-derived-mode tar-mode nil "Tar"
aa73f29c 614 "Major mode for viewing a tar file as a dired-like listing of its contents.
f1180544 615You can move around using the usual cursor motion commands.
aa73f29c 616Letters no longer insert themselves.
439fa06f
RS
617Type `e' to pull a file out of the tar file and into its own buffer;
618or click mouse-2 on the file's line in the Tar mode buffer.
e865c5ce 619Type `c' to copy an entry from the tar file into another file on disk.
aa73f29c 620
f1180544 621If you edit a sub-file of this archive (as with the `e' command) and
8560523d 622save it with \\[save-buffer], the contents of that buffer will be
f1180544 623saved back into the tar-file buffer; in this way you can edit a file
aa73f29c
RS
624inside of a tar archive without extracting it and re-archiving it.
625
e865c5ce 626See also: variables `tar-update-datestamp' and `tar-anal-blocksize'.
aa73f29c 627\\{tar-mode-map}"
aa73f29c 628 (make-local-variable 'tar-parse-info)
a91c76d6 629 (set (make-local-variable 'require-final-newline) nil) ; binary data, dude...
a91c76d6
SM
630 (set (make-local-variable 'local-enable-local-variables) nil)
631 (set (make-local-variable 'next-line-add-newlines) nil)
d26e6665
KH
632 (set (make-local-variable 'tar-file-name-coding-system)
633 (or file-name-coding-system
634 default-file-name-coding-system
635 locale-coding-system))
b9ca3cdb 636 ;; Prevent loss of data when saving the file.
a91c76d6 637 (set (make-local-variable 'file-precious-flag) t)
03b00795 638 (buffer-disable-undo)
aa73f29c 639 (widen)
f598e45e
SM
640 ;; Now move the Tar data into an auxiliary buffer, so we can use the main
641 ;; buffer for the summary.
642 (assert (not (tar-data-swapped-p)))
643 (set (make-local-variable 'revert-buffer-function) 'tar-mode-revert)
3006c8dc
SM
644 ;; We started using write-contents-functions, but this hook is not
645 ;; used during auto-save, so we now use
646 ;; write-region-annotate-functions which hooks at a lower-level.
647 (add-hook 'write-region-annotate-functions 'tar-write-region-annotate nil t)
f598e45e
SM
648 (add-hook 'kill-buffer-hook 'tar-mode-kill-buffer-hook nil t)
649 (add-hook 'change-major-mode-hook 'tar-change-major-mode-hook nil t)
650 ;; Tar data is made of bytes, not chars.
58d6a142 651 (set-buffer-multibyte nil) ;Hopefully a no-op.
f598e45e
SM
652 (set (make-local-variable 'tar-data-buffer)
653 (generate-new-buffer (format " *tar-data %s*"
654 (file-name-nondirectory
655 (or buffer-file-name (buffer-name))))))
dc4e3ccc
SM
656 (condition-case err
657 (progn
658 (tar-swap-data)
659 (tar-summarize-buffer)
660 (tar-next-line 0))
661 (error
662 ;; If summarizing caused an error, then maybe the buffer doesn't contain
663 ;; tar data. Rather than show a mysterious empty buffer, let's
664 ;; revert to fundamental-mode.
665 (fundamental-mode)
666 (signal (car err) (cdr err)))))
aa73f29c
RS
667
668
669(defun tar-subfile-mode (p)
670 "Minor mode for editing an element of a tar-file.
76605277
RS
671This mode arranges for \"saving\" this buffer to write the data
672into the tar-file buffer that it came from. The changes will actually
673appear on disk when you save the tar-file's buffer."
aa73f29c 674 (interactive "P")
0f8becaa 675 (or (and (boundp 'tar-superior-buffer) tar-superior-buffer)
e865c5ce 676 (error "This buffer is not an element of a tar file"))
643415c4
SM
677 ;; Don't do this, because it is redundant and wastes mode line space.
678 ;; (or (assq 'tar-subfile-mode minor-mode-alist)
679 ;; (setq minor-mode-alist (append minor-mode-alist
680 ;; (list '(tar-subfile-mode " TarFile")))))
aa73f29c
RS
681 (make-local-variable 'tar-subfile-mode)
682 (setq tar-subfile-mode
683 (if (null p)
684 (not tar-subfile-mode)
685 (> (prefix-numeric-value p) 0)))
686 (cond (tar-subfile-mode
76bf6666 687 (add-hook 'write-file-functions 'tar-subfile-save-buffer nil t)
aa73f29c 688 ;; turn off auto-save.
75238436 689 (auto-save-mode -1)
aa73f29c
RS
690 (setq buffer-auto-save-file-name nil)
691 (run-hooks 'tar-subfile-mode-hook))
e865c5ce 692 (t
76bf6666 693 (remove-hook 'write-file-functions 'tar-subfile-save-buffer t))))
aa73f29c
RS
694
695
e865c5ce 696;; Revert the buffer and recompute the dired-like listing.
f6b0805a 697(defun tar-mode-revert (&optional no-auto-save no-confirm)
f598e45e
SM
698 (unwind-protect
699 (let ((revert-buffer-function nil))
d3a36099 700 (if (tar-data-swapped-p) (tar-swap-data))
f598e45e
SM
701 ;; FIXME: If we ask for confirmation, the user will be temporarily
702 ;; looking at the raw data.
703 (revert-buffer no-auto-save no-confirm 'preserve-modes)
f598e45e 704 ;; Recompute the summary.
d3a36099 705 (if (buffer-live-p tar-data-buffer) (kill-buffer tar-data-buffer))
f598e45e 706 (tar-mode))
d3a36099 707 (unless (tar-data-swapped-p) (tar-swap-data))))
aa73f29c
RS
708
709
210f943e
PJ
710(defun tar-next-line (arg)
711 "Move cursor vertically down ARG lines and to the start of the filename."
aa73f29c 712 (interactive "p")
210f943e 713 (forward-line arg)
58d6a142 714 (goto-char (or (next-single-property-change (point) 'mouse-face) (point))))
aa73f29c 715
210f943e
PJ
716(defun tar-previous-line (arg)
717 "Move cursor vertically up ARG lines and to the start of the filename."
aa73f29c 718 (interactive "p")
210f943e 719 (tar-next-line (- arg)))
aa73f29c
RS
720
721(defun tar-current-descriptor (&optional noerror)
e865c5ce 722 "Return the tar-descriptor of the current line, or signals an error."
aa73f29c 723 ;; I wish lines had plists, like in ZMACS...
f598e45e 724 (or (nth (count-lines (point-min) (line-beginning-position))
aa73f29c
RS
725 tar-parse-info)
726 (if noerror
727 nil
439fa06f 728 (error "This line does not describe a tar-file entry"))))
aa73f29c 729
439fa06f
RS
730(defun tar-get-descriptor ()
731 (let* ((descriptor (tar-current-descriptor))
61bb55d0
SM
732 (size (tar-header-size descriptor))
733 (link-p (tar-header-link-type descriptor)))
439fa06f 734 (if link-p
bf65c664
CY
735 (error "This is %s, not a real file"
736 (cond ((eq link-p 5) "a directory")
737 ((eq link-p 20) "a tar directory header")
738 ((eq link-p 28) "a next has longname")
739 ((eq link-p 29) "a multivolume-continuation")
740 ((eq link-p 35) "a sparse entry")
741 ((eq link-p 38) "a volume header")
742 ((eq link-p 55) "an extended pax header")
743 (t "a link"))))
f09bbd93 744 (if (zerop size) (message "This is a zero-length file"))
439fa06f
RS
745 descriptor))
746
747(defun tar-mouse-extract (event)
748 "Extract a file whose tar directory line you click on."
749 (interactive "e")
53ad7bee 750 (with-current-buffer (window-buffer (posn-window (event-end event)))
439fa06f
RS
751 (save-excursion
752 (goto-char (posn-point (event-end event)))
753 ;; Just make sure this doesn't get an error.
754 (tar-get-descriptor)))
755 (select-window (posn-window (event-end event)))
756 (goto-char (posn-point (event-end event)))
757 (tar-extract))
aa73f29c 758
07e7a05a
EZ
759(defun tar-file-name-handler (op &rest args)
760 "Helper function for `tar-extract'."
761 (or (eq op 'file-exists-p)
762 (let ((file-name-handler-alist nil))
763 (apply op args))))
764
aa73f29c 765(defun tar-extract (&optional other-window-p)
628d6cef 766 "In Tar mode, extract this entry of the tar file into its own buffer."
aa73f29c
RS
767 (interactive)
768 (let* ((view-p (eq other-window-p 'view))
439fa06f 769 (descriptor (tar-get-descriptor))
61bb55d0
SM
770 (name (tar-header-name descriptor))
771 (size (tar-header-size descriptor))
772 (start (tar-header-data-start descriptor))
aa73f29c 773 (end (+ start size)))
aa73f29c 774 (let* ((tar-buffer (current-buffer))
38c6e0c7 775 (tarname (buffer-name))
e8421604
GM
776 (bufname (concat (file-name-nondirectory name)
777 " ("
6da7ea56 778 tarname
e8421604 779 ")"))
aa73f29c 780 (read-only-p (or buffer-read-only view-p))
38c6e0c7
AS
781 (new-buffer-file-name (expand-file-name
782 ;; `:' is not allowed on Windows
dc4e3ccc
SM
783 (concat tarname "!"
784 (if (string-match "/" name)
785 name
786 ;; Make sure `name' contains a /
787 ;; so set-auto-mode doesn't try
788 ;; to look at `tarname' for hints.
789 (concat "./" name)))))
e8421604 790 (buffer (get-file-buffer new-buffer-file-name))
d26e6665 791 (just-created nil)
8e69f4d8 792 undo-list)
e8421604 793 (unless buffer
38c6e0c7 794 (setq buffer (generate-new-buffer bufname))
53ad7bee 795 (with-current-buffer buffer
8e69f4d8
KH
796 (setq undo-list buffer-undo-list
797 buffer-undo-list t))
38c6e0c7 798 (setq bufname (buffer-name buffer))
aa73f29c 799 (setq just-created t)
f598e45e
SM
800 (with-current-buffer tar-data-buffer
801 (let (coding)
802 (narrow-to-region start end)
803 (goto-char start)
804 (setq coding (or coding-system-for-read
805 (and set-auto-coding-function
806 (funcall set-auto-coding-function
807 name (- end start)))
808 ;; The following binding causes
809 ;; find-buffer-file-type-coding-system
810 ;; (defined on dos-w32.el) to act as if
811 ;; the file being extracted existed, so
812 ;; that the file's contents' encoding and
813 ;; EOL format are auto-detected.
814 (let ((file-name-handler-alist
815 '(("" . tar-file-name-handler))))
816 (car (find-operation-coding-system
817 'insert-file-contents
818 (cons name (current-buffer)) t)))))
819 (if (or (not coding)
820 (eq (coding-system-type coding) 'undecided))
821 (setq coding (detect-coding-region start end t)))
822 (if (and default-enable-multibyte-characters
823 (coding-system-get coding :for-unibyte))
824 (with-current-buffer buffer
825 (set-buffer-multibyte nil)))
826 (widen)
827 (decode-coding-region start end coding buffer)))
828 (with-current-buffer buffer
829 (goto-char (point-min))
830 (setq buffer-file-name new-buffer-file-name)
831 (setq buffer-file-truename
832 (abbreviate-file-name buffer-file-name))
833 ;; Force buffer-file-coding-system to what
834 ;; decode-coding-region actually used.
835 (set-buffer-file-coding-system last-coding-system-used t)
836 ;; Set the default-directory to the dir of the
837 ;; superior buffer.
838 (setq default-directory
839 (with-current-buffer tar-buffer
840 default-directory))
f598e45e 841 (rename-buffer bufname)
f598e45e
SM
842 (set-buffer-modified-p nil)
843 (setq buffer-undo-list undo-list)
3ba41ce4
SM
844 (normal-mode) ; pick a mode.
845 (set (make-local-variable 'tar-superior-buffer) tar-buffer)
846 (set (make-local-variable 'tar-superior-descriptor) descriptor)
847 (setq buffer-read-only read-only-p)
f598e45e 848 (tar-subfile-mode 1)))
aa73f29c 849 (if view-p
a51b80e7
MR
850 (view-buffer
851 buffer (and just-created 'kill-buffer-if-not-modified))
e865c5ce
RS
852 (if (eq other-window-p 'display)
853 (display-buffer buffer)
854 (if other-window-p
855 (switch-to-buffer-other-window buffer)
856 (switch-to-buffer buffer)))))))
aa73f29c
RS
857
858
859(defun tar-extract-other-window ()
8560523d 860 "In Tar mode, find this entry of the tar file in another window."
aa73f29c
RS
861 (interactive)
862 (tar-extract t))
863
e865c5ce 864(defun tar-display-other-window ()
8560523d 865 "In Tar mode, display this entry of the tar file in another window."
e865c5ce
RS
866 (interactive)
867 (tar-extract 'display))
868
aa73f29c 869(defun tar-view ()
8560523d 870 "In Tar mode, view the tar file entry on this line."
aa73f29c
RS
871 (interactive)
872 (tar-extract 'view))
873
874
875(defun tar-read-file-name (&optional prompt)
e865c5ce 876 "Read a file name with this line's entry as the default."
aa73f29c
RS
877 (or prompt (setq prompt "Copy to: "))
878 (let* ((default-file (expand-file-name
61bb55d0 879 (tar-header-name (tar-current-descriptor))))
aa73f29c
RS
880 (target (expand-file-name
881 (read-file-name prompt
882 (file-name-directory default-file)
883 default-file nil))))
884 (if (or (string= "" (file-name-nondirectory target))
885 (file-directory-p target))
886 (setq target (concat (if (string-match "/$" target)
887 (substring target 0 (1- (match-end 0)))
888 target)
889 "/"
890 (file-name-nondirectory default-file))))
891 target))
892
893
894(defun tar-copy (&optional to-file)
8560523d 895 "In Tar mode, extract this entry of the tar file into a file on disk.
aa73f29c
RS
896If TO-FILE is not supplied, it is prompted for, defaulting to the name of
897the current tar-entry."
898 (interactive (list (tar-read-file-name)))
439fa06f 899 (let* ((descriptor (tar-get-descriptor))
61bb55d0
SM
900 (name (tar-header-name descriptor))
901 (size (tar-header-size descriptor))
902 (start (tar-header-data-start descriptor))
d4ec0200
RS
903 (end (+ start size))
904 (inhibit-file-name-handlers inhibit-file-name-handlers)
905 (inhibit-file-name-operation inhibit-file-name-operation))
6a608e8e
KH
906 (save-restriction
907 (widen)
d4ec0200
RS
908 ;; Inhibit compressing a subfile again if *both* name and
909 ;; to-file are handled by jka-compr
910 (if (and (eq (find-file-name-handler name 'write-region) 'jka-compr-handler)
911 (eq (find-file-name-handler to-file 'write-region) 'jka-compr-handler))
912 (setq inhibit-file-name-handlers
913 (cons 'jka-compr-handler
914 (and (eq inhibit-file-name-operation 'write-region)
915 inhibit-file-name-handlers))
916 inhibit-file-name-operation 'write-region))
d26e6665
KH
917 (let ((coding-system-for-write 'no-conversion))
918 (write-region start end to-file nil nil nil t)))
6a608e8e 919 (message "Copied tar entry %s to %s" name to-file)))
aa73f29c
RS
920
921(defun tar-flag-deleted (p &optional unflag)
8560523d 922 "In Tar mode, mark this sub-file to be deleted from the tar file.
aa73f29c
RS
923With a prefix argument, mark that many files."
924 (interactive "p")
925 (beginning-of-line)
8560523d 926 (dotimes (i (abs p))
aa73f29c
RS
927 (if (tar-current-descriptor unflag) ; barf if we're not on an entry-line.
928 (progn
929 (delete-char 1)
930 (insert (if unflag " " "D"))))
931 (forward-line (if (< p 0) -1 1)))
932 (if (eobp) nil (forward-char 36)))
933
934(defun tar-unflag (p)
8560523d 935 "In Tar mode, un-mark this sub-file if it is marked to be deleted.
aa73f29c
RS
936With a prefix argument, un-mark that many files forward."
937 (interactive "p")
938 (tar-flag-deleted p t))
939
940(defun tar-unflag-backwards (p)
8560523d 941 "In Tar mode, un-mark this sub-file if it is marked to be deleted.
aa73f29c
RS
942With a prefix argument, un-mark that many files backward."
943 (interactive "p")
944 (tar-flag-deleted (- p) t))
945
946
947(defun tar-expunge-internal ()
948 "Expunge the tar-entry specified by the current line."
58d6a142 949 (let ((descriptor (tar-current-descriptor)))
aa73f29c
RS
950 ;;
951 ;; delete the current line...
f598e45e 952 (delete-region (line-beginning-position) (line-beginning-position 2))
aa73f29c
RS
953 ;;
954 ;; delete the data pointer...
955 (setq tar-parse-info (delq descriptor tar-parse-info))
956 ;;
957 ;; delete the data from inside the file...
58d6a142
SM
958 (with-current-buffer tar-data-buffer
959 (delete-region (or (tar-header-header-start descriptor)
960 (- (tar-header-data-start descriptor) 512))
961 (tar-header-data-end descriptor)))))
aa73f29c
RS
962
963
964(defun tar-expunge (&optional noconfirm)
8560523d 965 "In Tar mode, delete all the archived files flagged for deletion.
aa73f29c
RS
966This does not modify the disk image; you must save the tar file itself
967for this to be permanent."
968 (interactive)
969 (if (or noconfirm
67501c01 970 (y-or-n-p "Expunge files marked for deletion? "))
d26e6665 971 (let ((n 0))
aa73f29c 972 (save-excursion
cb33a0ce 973 (goto-char (point-min))
aa73f29c
RS
974 (while (not (eobp))
975 (if (looking-at "D")
976 (progn (tar-expunge-internal)
977 (setq n (1+ n)))
978 (forward-line 1)))
979 ;; after doing the deletions, add any padding that may be necessary.
f598e45e 980 (tar-pad-to-blocksize))
aa73f29c 981 (if (zerop n)
67501c01
RS
982 (message "Nothing to expunge.")
983 (message "%s files expunged. Be sure to save this buffer." n)))))
aa73f29c
RS
984
985
986(defun tar-clear-modification-flags ()
e865c5ce 987 "Remove the stars at the beginning of each line."
a7e5e8cb 988 (interactive)
aa73f29c 989 (save-excursion
cb33a0ce 990 (goto-char (point-min))
f598e45e 991 (while (not (eobp))
e5d56b61 992 (if (not (eq (following-char) ?\s))
aa73f29c
RS
993 (progn (delete-char 1) (insert " ")))
994 (forward-line 1))))
995
996
997(defun tar-chown-entry (new-uid)
8560523d 998 "Change the user-id associated with this entry in the tar file.
aa73f29c
RS
999If this tar file was written by GNU tar, then you will be able to edit
1000the user id as a string; otherwise, you must edit it as a number.
1001You can force editing as a number by calling this with a prefix arg.
1002This does not modify the disk image; you must save the tar file itself
1003for this to be permanent."
61bb55d0
SM
1004 (interactive
1005 (list
1006 (let ((descriptor (tar-current-descriptor)))
1007 (if (or current-prefix-arg
1008 (not (tar-header-magic descriptor)))
1009 (read-number
1010 "New UID number: "
1011 (format "%s" (tar-header-uid descriptor)))
1012 (read-string "New UID string: " (tar-header-uname descriptor))))))
aa73f29c 1013 (cond ((stringp new-uid)
61bb55d0 1014 (setf (tar-header-uname (tar-current-descriptor)) new-uid)
aa73f29c
RS
1015 (tar-alter-one-field tar-uname-offset (concat new-uid "\000")))
1016 (t
61bb55d0 1017 (setf (tar-header-uid (tar-current-descriptor)) new-uid)
aa73f29c
RS
1018 (tar-alter-one-field tar-uid-offset
1019 (concat (substring (format "%6o" new-uid) 0 6) "\000 ")))))
1020
1021
1022(defun tar-chgrp-entry (new-gid)
8560523d 1023 "Change the group-id associated with this entry in the tar file.
aa73f29c
RS
1024If this tar file was written by GNU tar, then you will be able to edit
1025the group id as a string; otherwise, you must edit it as a number.
1026You can force editing as a number by calling this with a prefix arg.
1027This does not modify the disk image; you must save the tar file itself
1028for this to be permanent."
61bb55d0
SM
1029 (interactive
1030 (list
1031 (let ((descriptor (tar-current-descriptor)))
1032 (if (or current-prefix-arg
1033 (not (tar-header-magic descriptor)))
1034 (read-number
1035 "New GID number: "
1036 (format "%s" (tar-header-gid descriptor)))
1037 (read-string "New GID string: " (tar-header-gname descriptor))))))
aa73f29c 1038 (cond ((stringp new-gid)
61bb55d0 1039 (setf (tar-header-gname (tar-current-descriptor)) new-gid)
aa73f29c
RS
1040 (tar-alter-one-field tar-gname-offset
1041 (concat new-gid "\000")))
1042 (t
61bb55d0 1043 (setf (tar-header-gid (tar-current-descriptor)) new-gid)
aa73f29c
RS
1044 (tar-alter-one-field tar-gid-offset
1045 (concat (substring (format "%6o" new-gid) 0 6) "\000 ")))))
1046
1047(defun tar-rename-entry (new-name)
8560523d 1048 "Change the name associated with this entry in the tar file.
aa73f29c
RS
1049This does not modify the disk image; you must save the tar file itself
1050for this to be permanent."
1051 (interactive
1052 (list (read-string "New name: "
61bb55d0 1053 (tar-header-name (tar-current-descriptor)))))
439fa06f 1054 (if (string= "" new-name) (error "zero length name"))
d26e6665 1055 (let ((encoded-new-name (encode-coding-string new-name
58d6a142
SM
1056 tar-file-name-coding-system))
1057 (descriptor (tar-current-descriptor))
1058 (prefix nil))
1059 (when (tar-header-header-start descriptor)
1060 ;; FIXME: Make it work for ././@LongLink.
1061 (error "Rename with @LongLink format is not implemented"))
1062
1063 (when (and (> (length encoded-new-name) 98)
1064 (string-match "/" encoded-new-name
1065 (- (length encoded-new-name) 99))
1066 (< (match-beginning 0) 155))
b6388cc9
SM
1067 (unless (equal (tar-header-magic descriptor) "ustar\0")
1068 (tar-alter-one-field tar-magic-offset (concat "ustar\0" "00")))
58d6a142
SM
1069 (setq prefix (substring encoded-new-name 0 (match-beginning 0)))
1070 (setq encoded-new-name (substring encoded-new-name (match-end 0))))
1071
d26e6665 1072 (if (> (length encoded-new-name) 98) (error "name too long"))
58d6a142 1073 (setf (tar-header-name descriptor) new-name)
d26e6665 1074 (tar-alter-one-field 0
58d6a142
SM
1075 (substring (concat encoded-new-name (make-string 99 0)) 0 99))
1076 (if prefix
1077 (tar-alter-one-field tar-prefix-offset
1078 (substring (concat prefix (make-string 155 0)) 0 155)))))
aa73f29c
RS
1079
1080
1081(defun tar-chmod-entry (new-mode)
c40d3365 1082 "Change the protection bits associated with this entry in the tar file.
aa73f29c
RS
1083This does not modify the disk image; you must save the tar file itself
1084for this to be permanent."
1085 (interactive (list (tar-parse-octal-integer-safe
1086 (read-string "New protection (octal): "))))
61bb55d0 1087 (setf (tar-header-mode (tar-current-descriptor)) new-mode)
aa73f29c
RS
1088 (tar-alter-one-field tar-mode-offset
1089 (concat (substring (format "%6o" new-mode) 0 6) "\000 ")))
1090
1091
58d6a142
SM
1092(defun tar-alter-one-field (data-position new-data-string &optional descriptor)
1093 (unless descriptor (setq descriptor (tar-current-descriptor)))
1094 ;;
1095 ;; update the header-line.
1096 (let ((col (current-column)))
1097 (delete-region (line-beginning-position)
1098 (prog2 (forward-line 1)
1099 (point)
1100 ;; Insert the new text after the old, before deleting,
1101 ;; to preserve markers such as the window start.
1102 (insert (tar-header-block-summarize descriptor) "\n")))
1103 (forward-line -1) (move-to-column col))
f598e45e 1104
58d6a142
SM
1105 (assert (tar-data-swapped-p))
1106 (with-current-buffer tar-data-buffer
1107 (let* ((start (- (tar-header-data-start descriptor) 512)))
f598e45e
SM
1108 ;;
1109 ;; delete the old field and insert a new one.
1110 (goto-char (+ start data-position))
1111 (delete-region (point) (+ (point) (length new-data-string))) ; <--
f598e45e
SM
1112 (assert (not (or enable-multibyte-characters
1113 (multibyte-string-p new-data-string))))
1114 (insert new-data-string)
1115 ;;
1116 ;; compute a new checksum and insert it.
1117 (let ((chk (tar-header-block-checksum
58d6a142
SM
1118 (buffer-substring start (+ start 512)))))
1119 (goto-char (+ start tar-chk-offset))
1120 (delete-region (point) (+ (point) 8))
1121 (insert (format "%6o\0 " chk))
1122 (setf (tar-header-checksum descriptor) chk)
1123 ;;
1124 ;; ok, make sure we didn't botch it.
1125 (tar-header-block-check-checksum
1126 (buffer-substring start (+ start 512))
1127 chk (tar-header-name descriptor))
1128 ))))
aa73f29c
RS
1129
1130
3d7fc2fb
ER
1131(defun tar-octal-time (timeval)
1132 ;; Format a timestamp as 11 octal digits. Ghod, I hope this works...
1133 (let ((hibits (car timeval)) (lobits (car (cdr timeval))))
516f7fca
EZ
1134 (format "%05o%01o%05o"
1135 (lsh hibits -2)
1136 (logior (lsh (logand 3 hibits) 1)
1137 (if (> (logand lobits 32768) 0) 1 0))
1138 (logand 32767 lobits)
1139 )))
3d7fc2fb 1140
aa73f29c 1141(defun tar-subfile-save-buffer ()
e865c5ce
RS
1142 "In tar subfile mode, save this buffer into its parent tar-file buffer.
1143This doesn't write anything to disk; you must save the parent tar-file buffer
aa73f29c
RS
1144to make your changes permanent."
1145 (interactive)
0f8becaa 1146 (if (not (and (boundp 'tar-superior-buffer) tar-superior-buffer))
f598e45e 1147 (error "This buffer has no superior tar file buffer"))
0f8becaa 1148 (if (not (and (boundp 'tar-superior-descriptor) tar-superior-descriptor))
f598e45e 1149 (error "This buffer doesn't have an index into its superior tar file!"))
aa73f29c 1150 (let ((subfile (current-buffer))
f598e45e
SM
1151 (coding buffer-file-coding-system)
1152 (descriptor tar-superior-descriptor)
1153 subfile-size)
1154 (with-current-buffer tar-superior-buffer
61bb55d0
SM
1155 (let* ((start (tar-header-data-start descriptor))
1156 (name (tar-header-name descriptor))
1157 (size (tar-header-size descriptor))
dd798c64 1158 (head (memq descriptor tar-parse-info)))
f598e45e
SM
1159 (if (not head)
1160 (error "Can't find this tar file entry in its parent tar file!"))
1161 (with-current-buffer tar-data-buffer
1162 ;; delete the old data...
1163 (let* ((data-start start)
61bb55d0 1164 (data-end (+ data-start (tar-roundup-512 size))))
f598e45e
SM
1165 (narrow-to-region data-start data-end)
1166 (delete-region (point-min) (point-max))
1167 ;; insert the new data...
1168 (goto-char data-start)
1169 (let ((dest (current-buffer)))
1170 (with-current-buffer subfile
1171 (save-restriction
1172 (widen)
1173 (encode-coding-region (point-min) (point-max) coding dest))))
1174 (setq subfile-size (- (point-max) (point-min)))
1175 ;;
1176 ;; pad the new data out to a multiple of 512...
61bb55d0 1177 (let ((subfile-size-pad (tar-roundup-512 subfile-size)))
f598e45e
SM
1178 (goto-char (point-max))
1179 (insert (make-string (- subfile-size-pad subfile-size) 0))
1180 ;;
61bb55d0
SM
1181 ;; update the data of this files...
1182 (setf (tar-header-size descriptor) subfile-size)
f598e45e
SM
1183 ;;
1184 ;; Update the size field in the header block.
58d6a142 1185 (widen))))
f598e45e 1186 ;;
58d6a142 1187 ;; alter the descriptor-line and header
f598e45e
SM
1188 ;;
1189 (let ((position (- (length tar-parse-info) (length head))))
1190 (goto-char (point-min))
1191 (forward-line position)
58d6a142
SM
1192 (tar-alter-one-field tar-size-offset (format "%11o " subfile-size))
1193 ;;
1194 ;; Maybe update the datestamp.
1195 (when tar-update-datestamp
1196 (tar-alter-one-field tar-time-offset
1197 (concat (tar-octal-time (current-time)) " "))))
f598e45e
SM
1198 ;; After doing the insertion, add any necessary final padding.
1199 (tar-pad-to-blocksize))
1200 (set-buffer-modified-p t) ; mark the tar file as modified
1201 (tar-next-line 0))
1202 (set-buffer-modified-p nil) ; mark the tar subfile as unmodified
67501c01 1203 (message "Saved into tar-buffer `%s'. Be sure to save that buffer!"
f598e45e 1204 (buffer-name tar-superior-buffer))
47414bc1
RS
1205 ;; Prevent basic-save-buffer from changing our coding-system.
1206 (setq last-coding-system-used buffer-file-coding-system)
e865c5ce 1207 ;; Prevent ordinary saving from happening.
f598e45e 1208 t))
aa73f29c
RS
1209
1210
1b33e237 1211;; When this function is called, it is sure that the buffer is unibyte.
aa73f29c
RS
1212(defun tar-pad-to-blocksize ()
1213 "If we are being anal about tar file blocksizes, fix up the current buffer.
1214Leaves the region wide."
1215 (if (null tar-anal-blocksize)
1216 nil
aa73f29c 1217 (let* ((last-desc (nth (1- (length tar-parse-info)) tar-parse-info))
61bb55d0
SM
1218 (start (tar-header-data-start last-desc))
1219 (link-p (tar-header-link-type last-desc))
1220 (size (if link-p 0 (tar-header-size last-desc)))
aa73f29c
RS
1221 (data-end (+ start size))
1222 (bbytes (ash tar-anal-blocksize 9))
f598e45e 1223 (pad-to (+ bbytes (* bbytes (/ (- data-end (point-min)) bbytes)))))
aa73f29c
RS
1224 ;; If the padding after the last data is too long, delete some;
1225 ;; else insert some until we are padded out to the right number of blocks.
1226 ;;
f598e45e
SM
1227 (with-current-buffer tar-data-buffer
1228 (let ((goal-end (+ (point-min) pad-to)))
1229 (if (> (point-max) goal-end)
1230 (delete-region goal-end (point-max))
1231 (goto-char (point-max))
1232 (insert (make-string (- goal-end (point-max)) ?\0))))))))
19eb68d0
SM
1233
1234
3006c8dc
SM
1235;; Used in write-region-annotate-functions to write tar-files out correctly.
1236(defun tar-write-region-annotate (start end)
1237 ;; When called from write-file (and auto-save), `start' is nil.
1238 ;; When called from M-x write-region, we assume the user wants to save
1239 ;; (part of) the summary, not the tar data.
1240 (unless (or start (not (tar-data-swapped-p)))
d00da9d7 1241 (tar-clear-modification-flags)
3006c8dc
SM
1242 (set-buffer tar-data-buffer)
1243 nil))
19eb68d0 1244
aa73f29c
RS
1245(provide 'tar-mode)
1246
8560523d 1247;; arch-tag: 8a585a4a-340e-42c2-89e7-d3b1013a4b78
c88ab9ce 1248;;; tar-mode.el ends here