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