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