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