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