Fix bug #13515 with processing DBCS file names on MS-Windows.
[emacs.git] / lisp / tar-mode.el
blob6e85925a69cf5975d6ce96ae98e10a371d01a80d
1 ;;; tar-mode.el --- simple editing of tar files from GNU Emacs
3 ;; Copyright (C) 1990-1991, 1993-2013 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-lib))
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-ascii 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 (cl-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 (cl-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 (cl-assert (zerop (mod (- pos (point-min)) 512)))
230 (cl-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 (+ data-start
330 ;; Ignore size for files of type 1-6
331 (if (and (not (memq link-type '(1 2 3 4 5 6))) (> size 0))
332 (tar-roundup-512 size)
333 0))))
335 (defun tar-parse-octal-integer (string &optional start end)
336 (if (null start) (setq start 0))
337 (if (null end) (setq end (length string)))
338 (if (= (aref string start) 0)
340 (let ((n 0))
341 (while (< start end)
342 (setq n (if (< (aref string start) ?0) n
343 (+ (* n 8) (- (aref string start) ?0)))
344 start (1+ start)))
345 n)))
347 (defun tar-parse-octal-long-integer (string &optional start end)
348 (if (null start) (setq start 0))
349 (if (null end) (setq end (length string)))
350 (if (= (aref string start) 0)
351 (list 0 0)
352 (let ((lo 0)
353 (hi 0))
354 (while (< start end)
355 (if (>= (aref string start) ?0)
356 (setq lo (+ (* lo 8) (- (aref string start) ?0))
357 hi (+ (* hi 8) (ash lo -16))
358 lo (logand lo 65535)))
359 (setq start (1+ start)))
360 (list hi lo))))
362 (defun tar-parse-octal-integer-safe (string)
363 (if (zerop (length string)) (error "empty string"))
364 (mapc (lambda (c)
365 (if (or (< c ?0) (> c ?7))
366 (error "`%c' is not an octal digit" c)))
367 string)
368 (tar-parse-octal-integer string))
371 (defun tar-header-block-checksum (string)
372 "Compute and return a tar-acceptable checksum for this block."
373 (cl-assert (not (multibyte-string-p string)))
374 (let* ((chk-field-start tar-chk-offset)
375 (chk-field-end (+ chk-field-start 8))
376 (sum 0)
377 (i 0))
378 ;; Add up all of the characters except the ones in the checksum field.
379 ;; Add that field as if it were filled with spaces.
380 (while (< i chk-field-start)
381 (setq sum (+ sum (aref string i))
382 i (1+ i)))
383 (setq i chk-field-end)
384 (while (< i 512)
385 (setq sum (+ sum (aref string i))
386 i (1+ i)))
387 (+ sum (* 32 8))))
389 (defun tar-header-block-check-checksum (hblock desired-checksum file-name)
390 "Beep and print a warning if the checksum doesn't match."
391 (if (not (= desired-checksum (tar-header-block-checksum hblock)))
392 (progn (beep) (message "Invalid checksum for file %s!" file-name))))
394 (defun tar-clip-time-string (time)
395 (let ((str (current-time-string time)))
396 (concat " " (substring str 4 16) (format-time-string " %Y" time))))
398 (defun tar-grind-file-mode (mode)
399 "Construct a `-rw--r--r--' string indicating MODE.
400 MODE should be an integer which is a file mode value."
401 (string
402 (if (zerop (logand 256 mode)) ?- ?r)
403 (if (zerop (logand 128 mode)) ?- ?w)
404 (if (zerop (logand 2048 mode))
405 (if (zerop (logand 64 mode)) ?- ?x)
406 (if (zerop (logand 64 mode)) ?S ?s))
407 (if (zerop (logand 32 mode)) ?- ?r)
408 (if (zerop (logand 16 mode)) ?- ?w)
409 (if (zerop (logand 1024 mode))
410 (if (zerop (logand 8 mode)) ?- ?x)
411 (if (zerop (logand 8 mode)) ?S ?s))
412 (if (zerop (logand 4 mode)) ?- ?r)
413 (if (zerop (logand 2 mode)) ?- ?w)
414 (if (zerop (logand 512 mode))
415 (if (zerop (logand 1 mode)) ?- ?x)
416 (if (zerop (logand 1 mode)) ?T ?t))))
418 (defun tar-header-block-summarize (tar-hblock &optional mod-p)
419 "Return a line similar to the output of `tar -vtf'."
420 (let ((name (tar-header-name tar-hblock))
421 (mode (tar-header-mode tar-hblock))
422 (uid (tar-header-uid tar-hblock))
423 (gid (tar-header-gid tar-hblock))
424 (uname (tar-header-uname tar-hblock))
425 (gname (tar-header-gname tar-hblock))
426 (size (tar-header-size tar-hblock))
427 (time (tar-header-date tar-hblock))
428 ;; (ck (tar-header-checksum tar-hblock))
429 (type (tar-header-link-type tar-hblock))
430 (link-name (tar-header-link-name tar-hblock)))
431 (format "%c%c%s %7s/%-7s %7s%s %s%s"
432 (if mod-p ?* ? )
433 (cond ((or (eq type nil) (eq type 0)) ?-)
434 ((eq type 1) ?h) ; link
435 ((eq type 2) ?l) ; symlink
436 ((eq type 3) ?c) ; char special
437 ((eq type 4) ?b) ; block special
438 ((eq type 5) ?d) ; directory
439 ((eq type 6) ?p) ; FIFO/pipe
440 ((eq type 20) ?*) ; directory listing
441 ((eq type 28) ?L) ; next has longname
442 ((eq type 29) ?M) ; multivolume continuation
443 ((eq type 35) ?S) ; sparse
444 ((eq type 38) ?V) ; volume header
445 ((eq type 55) ?H) ; pax global extended header
446 ((eq type 72) ?X) ; pax extended header
447 (t ?\s)
449 (tar-grind-file-mode mode)
450 (if (= 0 (length uname)) uid uname)
451 (if (= 0 (length gname)) gid gname)
452 size
453 (if tar-mode-show-date (tar-clip-time-string time) "")
454 (propertize name
455 'mouse-face 'highlight
456 'help-echo "mouse-2: extract this file into a buffer")
457 (if (or (eq type 1) (eq type 2))
458 (concat (if (= type 1) " ==> " " --> ") link-name)
459 ""))))
461 (defun tar-untar-buffer ()
462 "Extract all archive members in the tar-file into the current directory."
463 (interactive)
464 ;; FIXME: make it work even if we're not in tar-mode.
465 (let ((descriptors tar-parse-info)) ;Read the var in its buffer.
466 (with-current-buffer
467 (if (tar-data-swapped-p) tar-data-buffer (current-buffer))
468 (set-buffer-multibyte nil) ;Hopefully, a no-op.
469 (dolist (descriptor descriptors)
470 (let* ((name (tar-header-name descriptor))
471 (dir (if (eq (tar-header-link-type descriptor) 5)
472 name
473 (file-name-directory name)))
474 (start (tar-header-data-start descriptor))
475 (end (+ start (tar-header-size descriptor))))
476 (unless (file-directory-p name)
477 (message "Extracting %s" name)
478 (if (and dir (not (file-exists-p dir)))
479 (make-directory dir t))
480 (unless (file-directory-p name)
481 (let ((coding-system-for-write 'no-conversion))
482 (write-region start end name)))
483 (set-file-modes name (tar-header-mode descriptor))))))))
485 (defun tar-summarize-buffer ()
486 "Parse the contents of the tar file in the current buffer."
487 (cl-assert (tar-data-swapped-p))
488 (let* ((modified (buffer-modified-p))
489 (result '())
490 (pos (point-min))
491 (coding tar-file-name-coding-system)
492 (progress-reporter
493 (with-current-buffer tar-data-buffer
494 (make-progress-reporter "Parsing tar file..."
495 (point-min) (point-max))))
496 descriptor)
497 (with-current-buffer tar-data-buffer
498 (while (and (< pos (point-max))
499 (setq descriptor (tar-header-block-tokenize pos coding)))
500 (let ((size (tar-header-size descriptor)))
501 (if (< size 0)
502 (error "%s has size %s - corrupted"
503 (tar-header-name descriptor) size)))
505 ;; This is just too slow. Don't really need it anyway....
506 ;;(tar-header-block-check-checksum
507 ;; hblock (tar-header-block-checksum hblock)
508 ;; (tar-header-name descriptor))
510 (push descriptor result)
511 (setq pos (tar-header-data-end descriptor))
512 (progress-reporter-update progress-reporter pos)))
514 (set (make-local-variable 'tar-parse-info) (nreverse result))
515 ;; A tar file should end with a block or two of nulls,
516 ;; but let's not get a fatal error if it doesn't.
517 (if (null descriptor)
518 (progress-reporter-done progress-reporter)
519 (message "Warning: premature EOF parsing tar file"))
520 (goto-char (point-min))
521 (let ((buffer-file-truename nil) ; avoid changing dir mtime by lock_file
522 (inhibit-read-only t)
523 (total-summaries
524 (mapconcat 'tar-header-block-summarize tar-parse-info "\n")))
525 (insert total-summaries "\n")
526 (goto-char (point-min))
527 (restore-buffer-modified-p modified))))
529 (defvar tar-mode-map
530 (let ((map (make-keymap)))
531 (suppress-keymap map)
532 (define-key map " " 'tar-next-line)
533 (define-key map "C" 'tar-copy)
534 (define-key map "d" 'tar-flag-deleted)
535 (define-key map "\^D" 'tar-flag-deleted)
536 (define-key map "e" 'tar-extract)
537 (define-key map "f" 'tar-extract)
538 (define-key map "\C-m" 'tar-extract)
539 (define-key map [mouse-2] 'tar-mouse-extract)
540 (define-key map "g" 'revert-buffer)
541 (define-key map "n" 'tar-next-line)
542 (define-key map "\^N" 'tar-next-line)
543 (define-key map [down] 'tar-next-line)
544 (define-key map "o" 'tar-extract-other-window)
545 (define-key map "p" 'tar-previous-line)
546 (define-key map "\^P" 'tar-previous-line)
547 (define-key map [up] 'tar-previous-line)
548 (define-key map "R" 'tar-rename-entry)
549 (define-key map "u" 'tar-unflag)
550 (define-key map "v" 'tar-view)
551 (define-key map "w" 'woman-tar-extract-file)
552 (define-key map "x" 'tar-expunge)
553 (define-key map "\177" 'tar-unflag-backwards)
554 (define-key map "E" 'tar-extract-other-window)
555 (define-key map "M" 'tar-chmod-entry)
556 (define-key map "G" 'tar-chgrp-entry)
557 (define-key map "O" 'tar-chown-entry)
558 ;; Let mouse-1 follow the link.
559 (define-key map [follow-link] 'mouse-face)
561 ;; Make menu bar items.
563 ;; Get rid of the Edit menu bar item to save space.
564 (define-key map [menu-bar edit] 'undefined)
566 (define-key map [menu-bar immediate]
567 (cons "Immediate" (make-sparse-keymap "Immediate")))
569 (define-key map [menu-bar immediate woman]
570 '("Read Man Page (WoMan)" . woman-tar-extract-file))
571 (define-key map [menu-bar immediate view]
572 '("View This File" . tar-view))
573 (define-key map [menu-bar immediate display]
574 '("Display in Other Window" . tar-display-other-window))
575 (define-key map [menu-bar immediate find-file-other-window]
576 '("Find in Other Window" . tar-extract-other-window))
577 (define-key map [menu-bar immediate find-file]
578 '("Find This File" . tar-extract))
580 (define-key map [menu-bar mark]
581 (cons "Mark" (make-sparse-keymap "Mark")))
583 (define-key map [menu-bar mark unmark-all]
584 '("Unmark All" . tar-clear-modification-flags))
585 (define-key map [menu-bar mark deletion]
586 '("Flag" . tar-flag-deleted))
587 (define-key map [menu-bar mark unmark]
588 '("Unflag" . tar-unflag))
590 (define-key map [menu-bar operate]
591 (cons "Operate" (make-sparse-keymap "Operate")))
593 (define-key map [menu-bar operate chown]
594 '("Change Owner..." . tar-chown-entry))
595 (define-key map [menu-bar operate chgrp]
596 '("Change Group..." . tar-chgrp-entry))
597 (define-key map [menu-bar operate chmod]
598 '("Change Mode..." . tar-chmod-entry))
599 (define-key map [menu-bar operate rename]
600 '("Rename to..." . tar-rename-entry))
601 (define-key map [menu-bar operate copy]
602 '("Copy to..." . tar-copy))
603 (define-key map [menu-bar operate expunge]
604 '("Expunge Marked Files" . tar-expunge))
606 map)
607 "Local keymap for Tar mode listings.")
610 ;; tar mode is suitable only for specially formatted data.
611 (put 'tar-mode 'mode-class 'special)
612 (put 'tar-subfile-mode 'mode-class 'special)
614 (defun tar-change-major-mode-hook ()
615 ;; Bring the actual Tar data back into the main buffer.
616 (when (tar-data-swapped-p) (tar-swap-data))
617 ;; Throw away the summary.
618 (when (buffer-live-p tar-data-buffer) (kill-buffer tar-data-buffer)))
620 (defun tar-mode-kill-buffer-hook ()
621 (if (buffer-live-p tar-data-buffer) (kill-buffer tar-data-buffer)))
623 ;;;###autoload
624 (define-derived-mode tar-mode special-mode "Tar"
625 "Major mode for viewing a tar file as a dired-like listing of its contents.
626 You can move around using the usual cursor motion commands.
627 Letters no longer insert themselves.
628 Type `e' to pull a file out of the tar file and into its own buffer;
629 or click mouse-2 on the file's line in the Tar mode buffer.
630 Type `c' to copy an entry from the tar file into another file on disk.
632 If you edit a sub-file of this archive (as with the `e' command) and
633 save it with \\[save-buffer], the contents of that buffer will be
634 saved back into the tar-file buffer; in this way you can edit a file
635 inside of a tar archive without extracting it and re-archiving it.
637 See also: variables `tar-update-datestamp' and `tar-anal-blocksize'.
638 \\{tar-mode-map}"
639 (and buffer-file-name
640 (file-writable-p buffer-file-name)
641 (setq buffer-read-only nil)) ; undo what `special-mode' did
642 (make-local-variable 'tar-parse-info)
643 (set (make-local-variable 'require-final-newline) nil) ; binary data, dude...
644 (set (make-local-variable 'local-enable-local-variables) nil)
645 (set (make-local-variable 'next-line-add-newlines) nil)
646 (set (make-local-variable 'tar-file-name-coding-system)
647 (or file-name-coding-system
648 default-file-name-coding-system
649 locale-coding-system))
650 ;; Prevent loss of data when saving the file.
651 (set (make-local-variable 'file-precious-flag) t)
652 (buffer-disable-undo)
653 (widen)
654 ;; Now move the Tar data into an auxiliary buffer, so we can use the main
655 ;; buffer for the summary.
656 (cl-assert (not (tar-data-swapped-p)))
657 (set (make-local-variable 'revert-buffer-function) 'tar-mode-revert)
658 ;; We started using write-contents-functions, but this hook is not
659 ;; used during auto-save, so we now use
660 ;; write-region-annotate-functions which hooks at a lower-level.
661 (add-hook 'write-region-annotate-functions 'tar-write-region-annotate nil t)
662 (add-hook 'kill-buffer-hook 'tar-mode-kill-buffer-hook nil t)
663 (add-hook 'change-major-mode-hook 'tar-change-major-mode-hook nil t)
664 ;; Tar data is made of bytes, not chars.
665 (set-buffer-multibyte nil) ;Hopefully a no-op.
666 (set (make-local-variable 'tar-data-buffer)
667 (generate-new-buffer (format " *tar-data %s*"
668 (file-name-nondirectory
669 (or buffer-file-name (buffer-name))))))
670 (condition-case err
671 (progn
672 (tar-swap-data)
673 (tar-summarize-buffer)
674 (tar-next-line 0))
675 (error
676 ;; If summarizing caused an error, then maybe the buffer doesn't contain
677 ;; tar data. Rather than show a mysterious empty buffer, let's
678 ;; revert to fundamental-mode.
679 (fundamental-mode)
680 (signal (car err) (cdr err)))))
682 (autoload 'woman-tar-extract-file "woman"
683 "In tar mode, run the WoMan man-page browser on this file." t)
685 (define-minor-mode tar-subfile-mode
686 "Minor mode for editing an element of a tar-file.
687 With a prefix argument ARG, enable the mode if ARG is positive,
688 and disable it otherwise. If called from Lisp, enable the mode
689 if ARG is omitted or nil. This mode arranges for \"saving\" this
690 buffer to write the data into the tar-file buffer that it came
691 from. The changes will actually appear on disk when you save the
692 tar-file's buffer."
693 ;; Don't do this, because it is redundant and wastes mode line space.
694 ;; :lighter " TarFile"
695 nil nil nil
696 (or (and (boundp 'tar-superior-buffer) tar-superior-buffer)
697 (error "This buffer is not an element of a tar file"))
698 (cond (tar-subfile-mode
699 (add-hook 'write-file-functions 'tar-subfile-save-buffer nil t)
700 ;; turn off auto-save.
701 (auto-save-mode -1)
702 (setq buffer-auto-save-file-name nil))
704 (remove-hook 'write-file-functions 'tar-subfile-save-buffer t))))
707 ;; Revert the buffer and recompute the dired-like listing.
708 (defun tar-mode-revert (&optional no-auto-save no-confirm)
709 (unwind-protect
710 (let ((revert-buffer-function nil))
711 (if (tar-data-swapped-p) (tar-swap-data))
712 ;; FIXME: If we ask for confirmation, the user will be temporarily
713 ;; looking at the raw data.
714 (revert-buffer no-auto-save no-confirm 'preserve-modes)
715 ;; Recompute the summary.
716 (if (buffer-live-p tar-data-buffer) (kill-buffer tar-data-buffer))
717 (tar-mode))
718 (unless (tar-data-swapped-p) (tar-swap-data))))
721 (defun tar-next-line (arg)
722 "Move cursor vertically down ARG lines and to the start of the filename."
723 (interactive "p")
724 (forward-line arg)
725 (goto-char (or (next-single-property-change (point) 'mouse-face) (point))))
727 (defun tar-previous-line (arg)
728 "Move cursor vertically up ARG lines and to the start of the filename."
729 (interactive "p")
730 (tar-next-line (- arg)))
732 (defun tar-current-descriptor (&optional noerror)
733 "Return the tar-descriptor of the current line, or signals an error."
734 ;; I wish lines had plists, like in ZMACS...
735 (or (nth (count-lines (point-min) (line-beginning-position))
736 tar-parse-info)
737 (if noerror
739 (error "This line does not describe a tar-file entry"))))
741 (defun tar-get-descriptor ()
742 (let* ((descriptor (tar-current-descriptor))
743 (size (tar-header-size descriptor))
744 (link-p (tar-header-link-type descriptor)))
745 (if link-p
746 (error "This is %s, not a real file"
747 (cond ((eq link-p 5) "a directory")
748 ((eq link-p 20) "a tar directory header")
749 ((eq link-p 28) "a next has longname")
750 ((eq link-p 29) "a multivolume-continuation")
751 ((eq link-p 35) "a sparse entry")
752 ((eq link-p 38) "a volume header")
753 ((eq link-p 55) "a pax global extended header")
754 ((eq link-p 72) "a pax extended header")
755 (t "a link"))))
756 (if (zerop size) (message "This is a zero-length file"))
757 descriptor))
759 (defun tar-mouse-extract (event)
760 "Extract a file whose tar directory line you click on."
761 (interactive "e")
762 (with-current-buffer (window-buffer (posn-window (event-end event)))
763 (save-excursion
764 (goto-char (posn-point (event-end event)))
765 ;; Just make sure this doesn't get an error.
766 (tar-get-descriptor)))
767 (select-window (posn-window (event-end event)))
768 (goto-char (posn-point (event-end event)))
769 (tar-extract))
771 (defun tar-file-name-handler (op &rest args)
772 "Helper function for `tar-extract'."
773 (or (eq op 'file-exists-p)
774 (let ((file-name-handler-alist nil))
775 (apply op args))))
777 (defun tar-extract (&optional other-window-p)
778 "In Tar mode, extract this entry of the tar file into its own buffer."
779 (interactive)
780 (let* ((view-p (eq other-window-p 'view))
781 (descriptor (tar-get-descriptor))
782 (name (tar-header-name descriptor))
783 (size (tar-header-size descriptor))
784 (start (tar-header-data-start descriptor))
785 (end (+ start size)))
786 (let* ((tar-buffer (current-buffer))
787 (tarname (buffer-name))
788 (bufname (concat (file-name-nondirectory name)
789 " ("
790 tarname
791 ")"))
792 (read-only-p (or buffer-read-only view-p))
793 (new-buffer-file-name (expand-file-name
794 ;; `:' is not allowed on Windows
795 (concat tarname "!"
796 (if (string-match "/" name)
797 name
798 ;; Make sure `name' contains a /
799 ;; so set-auto-mode doesn't try
800 ;; to look at `tarname' for hints.
801 (concat "./" name)))))
802 (buffer (get-file-buffer new-buffer-file-name))
803 (just-created nil)
804 undo-list)
805 (unless buffer
806 (setq buffer (generate-new-buffer bufname))
807 (with-current-buffer buffer
808 (setq undo-list buffer-undo-list
809 buffer-undo-list t))
810 (setq bufname (buffer-name buffer))
811 (setq just-created t)
812 (with-current-buffer tar-data-buffer
813 (let (coding)
814 (narrow-to-region start end)
815 (goto-char start)
816 (setq coding (or coding-system-for-read
817 (and set-auto-coding-function
818 (funcall set-auto-coding-function
819 name (- end start)))
820 ;; The following binding causes
821 ;; find-buffer-file-type-coding-system
822 ;; (defined on dos-w32.el) to act as if
823 ;; the file being extracted existed, so
824 ;; that the file's contents' encoding and
825 ;; EOL format are auto-detected.
826 (let ((file-name-handler-alist
827 '(("" . tar-file-name-handler))))
828 (car (find-operation-coding-system
829 'insert-file-contents
830 (cons name (current-buffer)) t)))))
831 (if (or (not coding)
832 (eq (coding-system-type coding) 'undecided))
833 (setq coding (detect-coding-region start end t)))
834 (if (and (default-value 'enable-multibyte-characters)
835 (coding-system-get coding :for-unibyte))
836 (with-current-buffer buffer
837 (set-buffer-multibyte nil)))
838 (widen)
839 (decode-coding-region start end coding buffer)))
840 (with-current-buffer buffer
841 (goto-char (point-min))
842 (setq buffer-file-name new-buffer-file-name)
843 (setq buffer-file-truename
844 (abbreviate-file-name buffer-file-name))
845 ;; Force buffer-file-coding-system to what
846 ;; decode-coding-region actually used.
847 (set-buffer-file-coding-system last-coding-system-used t)
848 ;; Set the default-directory to the dir of the
849 ;; superior buffer.
850 (setq default-directory
851 (with-current-buffer tar-buffer
852 default-directory))
853 (rename-buffer bufname)
854 (set-buffer-modified-p nil)
855 (setq buffer-undo-list undo-list)
856 (normal-mode) ; pick a mode.
857 (set (make-local-variable 'tar-superior-buffer) tar-buffer)
858 (set (make-local-variable 'tar-superior-descriptor) descriptor)
859 (setq buffer-read-only read-only-p)
860 (tar-subfile-mode 1)))
861 (cond
862 (view-p
863 (view-buffer buffer (and just-created 'kill-buffer-if-not-modified)))
864 ((eq other-window-p 'display) (display-buffer buffer))
865 (other-window-p (switch-to-buffer-other-window buffer))
866 (t (switch-to-buffer buffer))))))
869 (defun tar-extract-other-window ()
870 "In Tar mode, find this entry of the tar file in another window."
871 (interactive)
872 (tar-extract t))
874 (defun tar-display-other-window ()
875 "In Tar mode, display this entry of the tar file in another window."
876 (interactive)
877 (tar-extract 'display))
879 (defun tar-view ()
880 "In Tar mode, view the tar file entry on this line."
881 (interactive)
882 (tar-extract 'view))
885 (defun tar-read-file-name (&optional prompt)
886 "Read a file name with this line's entry as the default."
887 (or prompt (setq prompt "Copy to: "))
888 (let* ((default-file (expand-file-name
889 (tar-header-name (tar-current-descriptor))))
890 (target (expand-file-name
891 (read-file-name prompt
892 (file-name-directory default-file)
893 default-file nil))))
894 (if (or (string= "" (file-name-nondirectory target))
895 (file-directory-p target))
896 (setq target (concat (if (string-match "/$" target)
897 (substring target 0 (1- (match-end 0)))
898 target)
900 (file-name-nondirectory default-file))))
901 target))
904 (defun tar-copy (&optional to-file)
905 "In Tar mode, extract this entry of the tar file into a file on disk.
906 If TO-FILE is not supplied, it is prompted for, defaulting to the name of
907 the current tar-entry."
908 (interactive (list (tar-read-file-name)))
909 (let* ((descriptor (tar-get-descriptor))
910 (name (tar-header-name descriptor))
911 (size (tar-header-size descriptor))
912 (start (tar-header-data-start descriptor))
913 (end (+ start size))
914 (inhibit-file-name-handlers inhibit-file-name-handlers)
915 (inhibit-file-name-operation inhibit-file-name-operation))
916 (with-current-buffer
917 (if (tar-data-swapped-p) tar-data-buffer (current-buffer))
918 ;; Inhibit compressing a subfile again if *both* name and
919 ;; to-file are handled by jka-compr
920 (if (and (eq (find-file-name-handler name 'write-region)
921 'jka-compr-handler)
922 (eq (find-file-name-handler to-file 'write-region)
923 'jka-compr-handler))
924 (setq inhibit-file-name-handlers
925 (cons 'jka-compr-handler
926 (and (eq inhibit-file-name-operation 'write-region)
927 inhibit-file-name-handlers))
928 inhibit-file-name-operation 'write-region))
929 (let ((coding-system-for-write 'no-conversion))
930 (write-region start end to-file nil nil nil t)))
931 (message "Copied tar entry %s to %s" name to-file)))
933 (defun tar-flag-deleted (p &optional unflag)
934 "In Tar mode, mark this sub-file to be deleted from the tar file.
935 With a prefix argument, mark that many files."
936 (interactive "p")
937 (beginning-of-line)
938 (dotimes (i (abs p))
939 (if (tar-current-descriptor unflag) ; barf if we're not on an entry-line.
940 (progn
941 (delete-char 1)
942 (insert (if unflag " " "D"))))
943 (forward-line (if (< p 0) -1 1)))
944 (if (eobp) nil (forward-char 36)))
946 (defun tar-unflag (p)
947 "In Tar mode, un-mark this sub-file if it is marked to be deleted.
948 With a prefix argument, un-mark that many files forward."
949 (interactive "p")
950 (tar-flag-deleted p t))
952 (defun tar-unflag-backwards (p)
953 "In Tar mode, un-mark this sub-file if it is marked to be deleted.
954 With a prefix argument, un-mark that many files backward."
955 (interactive "p")
956 (tar-flag-deleted (- p) t))
959 (defun tar-expunge-internal ()
960 "Expunge the tar-entry specified by the current line."
961 (let ((descriptor (tar-current-descriptor)))
963 ;; delete the current line...
964 (delete-region (line-beginning-position) (line-beginning-position 2))
966 ;; delete the data pointer...
967 (setq tar-parse-info (delq descriptor tar-parse-info))
969 ;; delete the data from inside the file...
970 (with-current-buffer tar-data-buffer
971 (delete-region (or (tar-header-header-start descriptor)
972 (- (tar-header-data-start descriptor) 512))
973 (tar-header-data-end descriptor)))))
976 (defun tar-expunge (&optional noconfirm)
977 "In Tar mode, delete all the archived files flagged for deletion.
978 This does not modify the disk image; you must save the tar file itself
979 for this to be permanent."
980 (interactive)
981 (if (or noconfirm
982 (y-or-n-p "Expunge files marked for deletion? "))
983 (let ((n 0))
984 (save-excursion
985 (goto-char (point-min))
986 (while (not (eobp))
987 (if (looking-at "D")
988 (progn (tar-expunge-internal)
989 (setq n (1+ n)))
990 (forward-line 1)))
991 ;; after doing the deletions, add any padding that may be necessary.
992 (tar-pad-to-blocksize))
993 (if (zerop n)
994 (message "Nothing to expunge.")
995 (message "%s files expunged. Be sure to save this buffer." n)))))
998 (defun tar-clear-modification-flags ()
999 "Remove the stars at the beginning of each line."
1000 (interactive)
1001 (save-excursion
1002 (goto-char (point-min))
1003 (while (not (eobp))
1004 (if (not (eq (following-char) ?\s))
1005 (progn (delete-char 1) (insert " ")))
1006 (forward-line 1))))
1009 (defun tar-chown-entry (new-uid)
1010 "Change the user-id associated with this entry in the tar file.
1011 If this tar file was written by GNU tar, then you will be able to edit
1012 the user id as a string; otherwise, you must edit it as a number.
1013 You can force editing as a number by calling this with a prefix arg.
1014 This does not modify the disk image; you must save the tar file itself
1015 for this to be permanent."
1016 (interactive
1017 (list
1018 (let ((descriptor (tar-current-descriptor)))
1019 (if (or current-prefix-arg
1020 (not (tar-header-magic descriptor)))
1021 (read-number
1022 "New UID number: "
1023 (format "%s" (tar-header-uid descriptor)))
1024 (read-string "New UID string: " (tar-header-uname descriptor))))))
1025 (cond ((stringp new-uid)
1026 (setf (tar-header-uname (tar-current-descriptor)) new-uid)
1027 (tar-alter-one-field tar-uname-offset
1028 (concat (encode-coding-string
1029 new-uid tar-file-name-coding-system)
1030 "\000")))
1032 (setf (tar-header-uid (tar-current-descriptor)) new-uid)
1033 (tar-alter-one-field tar-uid-offset
1034 (concat (substring (format "%6o" new-uid) 0 6) "\000 ")))))
1037 (defun tar-chgrp-entry (new-gid)
1038 "Change the group-id associated with this entry in the tar file.
1039 If this tar file was written by GNU tar, then you will be able to edit
1040 the group id as a string; otherwise, you must edit it as a number.
1041 You can force editing as a number by calling this with a prefix arg.
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
1046 (let ((descriptor (tar-current-descriptor)))
1047 (if (or current-prefix-arg
1048 (not (tar-header-magic descriptor)))
1049 (read-number
1050 "New GID number: "
1051 (format "%s" (tar-header-gid descriptor)))
1052 (read-string "New GID string: " (tar-header-gname descriptor))))))
1053 (cond ((stringp new-gid)
1054 (setf (tar-header-gname (tar-current-descriptor)) new-gid)
1055 (tar-alter-one-field tar-gname-offset
1056 (concat (encode-coding-string
1057 new-gid tar-file-name-coding-system)
1058 "\000")))
1060 (setf (tar-header-gid (tar-current-descriptor)) new-gid)
1061 (tar-alter-one-field tar-gid-offset
1062 (concat (substring (format "%6o" new-gid) 0 6) "\000 ")))))
1064 (defun tar-rename-entry (new-name)
1065 "Change the name associated with this entry in the tar file.
1066 This does not modify the disk image; you must save the tar file itself
1067 for this to be permanent."
1068 (interactive
1069 (list (read-string "New name: "
1070 (tar-header-name (tar-current-descriptor)))))
1071 (if (string= "" new-name) (error "zero length name"))
1072 (let ((encoded-new-name (encode-coding-string new-name
1073 tar-file-name-coding-system))
1074 (descriptor (tar-current-descriptor))
1075 (prefix nil))
1076 (when (tar-header-header-start descriptor)
1077 ;; FIXME: Make it work for ././@LongLink.
1078 (error "Rename with @LongLink format is not implemented"))
1080 (when (and (> (length encoded-new-name) 98)
1081 (string-match "/" encoded-new-name
1082 (- (length encoded-new-name) 99))
1083 (< (match-beginning 0) 155))
1084 (unless (equal (tar-header-magic descriptor) "ustar\0")
1085 (tar-alter-one-field tar-magic-offset (concat "ustar\0" "00")))
1086 (setq prefix (substring encoded-new-name 0 (match-beginning 0)))
1087 (setq encoded-new-name (substring encoded-new-name (match-end 0))))
1089 (if (> (length encoded-new-name) 98) (error "name too long"))
1090 (setf (tar-header-name descriptor) new-name)
1091 (tar-alter-one-field 0
1092 (substring (concat encoded-new-name (make-string 99 0)) 0 99))
1093 (if prefix
1094 (tar-alter-one-field tar-prefix-offset
1095 (substring (concat prefix (make-string 155 0)) 0 155)))))
1098 (defun tar-chmod-entry (new-mode)
1099 "Change the protection bits associated with this entry in the tar file.
1100 This does not modify the disk image; you must save the tar file itself
1101 for this to be permanent."
1102 (interactive (list (tar-parse-octal-integer-safe
1103 (read-string "New protection (octal): "))))
1104 (setf (tar-header-mode (tar-current-descriptor)) new-mode)
1105 (tar-alter-one-field tar-mode-offset
1106 (concat (substring (format "%6o" new-mode) 0 6) "\000 ")))
1109 (defun tar-alter-one-field (data-position new-data-string &optional descriptor)
1110 (unless descriptor (setq descriptor (tar-current-descriptor)))
1112 ;; update the header-line.
1113 (let ((col (current-column)))
1114 (delete-region (line-beginning-position)
1115 (prog2 (forward-line 1)
1116 (point)
1117 ;; Insert the new text after the old, before deleting,
1118 ;; to preserve markers such as the window start.
1119 (insert (tar-header-block-summarize descriptor) "\n")))
1120 (forward-line -1) (move-to-column col))
1122 (cl-assert (tar-data-swapped-p))
1123 (with-current-buffer tar-data-buffer
1124 (let* ((start (- (tar-header-data-start descriptor) 512)))
1126 ;; delete the old field and insert a new one.
1127 (goto-char (+ start data-position))
1128 (delete-region (point) (+ (point) (length new-data-string))) ; <--
1129 (cl-assert (not (or enable-multibyte-characters
1130 (multibyte-string-p new-data-string))))
1131 (insert new-data-string)
1133 ;; compute a new checksum and insert it.
1134 (let ((chk (tar-header-block-checksum
1135 (buffer-substring start (+ start 512)))))
1136 (goto-char (+ start tar-chk-offset))
1137 (delete-region (point) (+ (point) 8))
1138 (insert (format "%6o\0 " chk))
1139 (setf (tar-header-checksum descriptor) chk)
1141 ;; ok, make sure we didn't botch it.
1142 (tar-header-block-check-checksum
1143 (buffer-substring start (+ start 512))
1144 chk (tar-header-name descriptor))
1145 ))))
1148 (defun tar-octal-time (timeval)
1149 ;; Format a timestamp as 11 octal digits. Ghod, I hope this works...
1150 (let ((hibits (car timeval)) (lobits (car (cdr timeval))))
1151 (format "%05o%01o%05o"
1152 (lsh hibits -2)
1153 (logior (lsh (logand 3 hibits) 1)
1154 (if (> (logand lobits 32768) 0) 1 0))
1155 (logand 32767 lobits)
1158 (defun tar-subfile-save-buffer ()
1159 "In tar subfile mode, save this buffer into its parent tar-file buffer.
1160 This doesn't write anything to disk; you must save the parent tar-file buffer
1161 to make your changes permanent."
1162 (interactive)
1163 (if (not (and (boundp 'tar-superior-buffer) tar-superior-buffer))
1164 (error "This buffer has no superior tar file buffer"))
1165 (if (not (and (boundp 'tar-superior-descriptor) tar-superior-descriptor))
1166 (error "This buffer doesn't have an index into its superior tar file!"))
1167 (let ((subfile (current-buffer))
1168 (coding buffer-file-coding-system)
1169 (descriptor tar-superior-descriptor)
1170 subfile-size)
1171 (with-current-buffer tar-superior-buffer
1172 (let* ((start (tar-header-data-start descriptor))
1173 (size (tar-header-size descriptor))
1174 (head (memq descriptor tar-parse-info)))
1175 (if (not head)
1176 (error "Can't find this tar file entry in its parent tar file!"))
1177 (with-current-buffer tar-data-buffer
1178 ;; delete the old data...
1179 (let* ((data-start start)
1180 (data-end (+ data-start (tar-roundup-512 size))))
1181 (narrow-to-region data-start data-end)
1182 (delete-region (point-min) (point-max))
1183 ;; insert the new data...
1184 (goto-char data-start)
1185 (let ((dest (current-buffer)))
1186 (with-current-buffer subfile
1187 (save-restriction
1188 (widen)
1189 (encode-coding-region (point-min) (point-max) coding dest))))
1190 (setq subfile-size (- (point-max) (point-min)))
1192 ;; pad the new data out to a multiple of 512...
1193 (let ((subfile-size-pad (tar-roundup-512 subfile-size)))
1194 (goto-char (point-max))
1195 (insert (make-string (- subfile-size-pad subfile-size) 0))
1197 ;; update the data of this files...
1198 (setf (tar-header-size descriptor) subfile-size)
1200 ;; Update the size field in the header block.
1201 (widen))))
1203 ;; alter the descriptor-line and header
1205 (let ((position (- (length tar-parse-info) (length head))))
1206 (goto-char (point-min))
1207 (forward-line position)
1208 (tar-alter-one-field tar-size-offset (format "%11o " subfile-size))
1210 ;; Maybe update the datestamp.
1211 (when tar-update-datestamp
1212 (tar-alter-one-field tar-time-offset
1213 (concat (tar-octal-time (current-time)) " "))))
1214 ;; After doing the insertion, add any necessary final padding.
1215 (tar-pad-to-blocksize))
1216 (set-buffer-modified-p t) ; mark the tar file as modified
1217 (tar-next-line 0))
1218 (set-buffer-modified-p nil) ; mark the tar subfile as unmodified
1219 (message "Saved into tar-buffer `%s'. Be sure to save that buffer!"
1220 (buffer-name tar-superior-buffer))
1221 ;; Prevent basic-save-buffer from changing our coding-system.
1222 (setq last-coding-system-used buffer-file-coding-system)
1223 ;; Prevent ordinary saving from happening.
1227 ;; When this function is called, it is sure that the buffer is unibyte.
1228 (defun tar-pad-to-blocksize ()
1229 "If we are being anal about tar file blocksizes, fix up the current buffer.
1230 Leaves the region wide."
1231 (if (null tar-anal-blocksize)
1233 (let* ((last-desc (nth (1- (length tar-parse-info)) tar-parse-info))
1234 (start (tar-header-data-start last-desc))
1235 (link-p (tar-header-link-type last-desc))
1236 (size (if link-p 0 (tar-header-size last-desc)))
1237 (data-end (+ start size))
1238 (bbytes (ash tar-anal-blocksize 9))
1239 (pad-to (+ bbytes (* bbytes (/ (- data-end (point-min)) bbytes)))))
1240 ;; If the padding after the last data is too long, delete some;
1241 ;; else insert some until we are padded out to the right number of blocks.
1243 (with-current-buffer tar-data-buffer
1244 (let ((goal-end (+ (point-min) pad-to)))
1245 (if (> (point-max) goal-end)
1246 (delete-region goal-end (point-max))
1247 (goto-char (point-max))
1248 (insert (make-string (- goal-end (point-max)) ?\0))))))))
1251 ;; Used in write-region-annotate-functions to write tar-files out correctly.
1252 (defun tar-write-region-annotate (start _end)
1253 ;; When called from write-file (and auto-save), `start' is nil.
1254 ;; When called from M-x write-region, we assume the user wants to save
1255 ;; (part of) the summary, not the tar data.
1256 (unless (or start (not (tar-data-swapped-p)))
1257 (tar-clear-modification-flags)
1258 (set-buffer tar-data-buffer)
1259 nil))
1261 (provide 'tar-mode)
1263 ;;; tar-mode.el ends here