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