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