0
|
1 ;;; arc-mode.el --- simple editing of archives
|
|
2
|
|
3 ;;; Copyright (C) 1995 Free Software Foundation, Inc.
|
|
4
|
|
5 ;; Author: Morten Welinder (terra@diku.dk)
|
|
6 ;; Keywords: archives msdog editing major-mode
|
|
7 ;; Favourite-brand-of-beer: None, I hate beer.
|
|
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
|
|
13 ;;; the Free Software Foundation; either version 2, or (at your option)
|
|
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
|
|
25 ;;; Synched up with: FSF 19.30.
|
|
26
|
|
27 ;;; Commentary:
|
|
28 ;;
|
|
29 ;; NAMING: "arc" is short for "archive" and does not refer specifically
|
|
30 ;; to files whose name end in ".arc"
|
|
31 ;;
|
|
32 ;; This code does not decode any files internally, although it does
|
|
33 ;; understand the directory level of the archives. For this reason,
|
|
34 ;; you should expect this code to need more fiddling than tar-mode.el
|
|
35 ;; (although it at present has fewer bugs :-) In particular, I have
|
|
36 ;; not tested this under Ms-Dog myself.
|
|
37 ;; -------------------------------------
|
|
38 ;; INTERACTION: arc-mode.el should play together with
|
|
39 ;;
|
|
40 ;; * ange-ftp.el: Remote archives (i.e., ones that ange-ftp has brought
|
|
41 ;; to you) are handled by doing all updates on a local
|
|
42 ;; copy. When you make changes to a remote file the
|
|
43 ;; changes will first take effect when the archive buffer
|
|
44 ;; is saved. You will be warned about this.
|
|
45 ;;
|
|
46 ;; * dos-fns.el: (Part of Emacs 19). You get automatic ^M^J <--> ^J
|
|
47 ;; conversion.
|
|
48 ;;
|
|
49 ;; arc-mode.el does not work well with crypt++.el; for the archives as
|
|
50 ;; such this could be fixed (but wouldn't be useful) by declaring such
|
|
51 ;; archives to be "remote". For the members this is a general Emacs
|
|
52 ;; problem that 19.29's file formats may fix.
|
|
53 ;; -------------------------------------
|
|
54 ;; ARCHIVE TYPES: Currently only the archives below are handled, but the
|
|
55 ;; structure for handling just about anything is in place.
|
|
56 ;;
|
|
57 ;; Arc Lzh Zip Zoo
|
|
58 ;; --------------------------------
|
|
59 ;; View listing Intern Intern Intern Intern
|
|
60 ;; Extract member Y Y Y Y
|
|
61 ;; Save changed member Y Y Y Y
|
|
62 ;; Add new member N N N N
|
|
63 ;; Delete member Y Y Y Y
|
|
64 ;; Rename member Y Y N N
|
|
65 ;; Chmod - Y Y -
|
|
66 ;; Chown - Y - -
|
|
67 ;; Chgrp - Y - -
|
|
68 ;;
|
|
69 ;; Special thanks to Bill Brodie <wbrodie@panix.com> for very useful tips
|
|
70 ;; on the first released version of this package.
|
|
71 ;;
|
|
72 ;; This code is partly based on tar-mode.el from Emacs.
|
|
73 ;; -------------------------------------
|
|
74 ;; ARCHIVE STRUCTURES:
|
|
75 ;; (This is mostly for myself.)
|
|
76 ;;
|
|
77 ;; ARC A series of (header,file). No interactions among members.
|
|
78 ;;
|
|
79 ;; LZH A series of (header,file). Headers are checksummed. No
|
|
80 ;; interaction among members.
|
|
81 ;;
|
|
82 ;; ZIP A series of (lheader,fil) followed by a "central directory"
|
|
83 ;; which is a series of (cheader) followed by an end-of-
|
|
84 ;; central-dir record possibly followed by junk. The e-o-c-d
|
|
85 ;; links to c-d. cheaders link to lheaders which are basically
|
|
86 ;; cut-down versions of the cheaders.
|
|
87 ;;
|
|
88 ;; ZOO An archive header followed by a series of (header,file).
|
|
89 ;; Each member header points to the next. The archive is
|
|
90 ;; terminated by a bogus header with a zero next link.
|
|
91 ;; -------------------------------------
|
|
92 ;; HOOKS: `foo' means one the the supported archive types.
|
|
93 ;;
|
|
94 ;; archive-mode-hook
|
|
95 ;; archive-foo-mode-hook
|
|
96 ;; archive-extract-hooks
|
|
97
|
|
98 ;;; Code:
|
|
99
|
|
100 ;; -------------------------------------------------------------------------
|
|
101 ;; Section: Configuration.
|
|
102
|
|
103 (defvar archive-dos-members t
|
|
104 "*If non-nil then recognize member files using ^M^J as line terminator.")
|
|
105
|
|
106 (defvar archive-tmpdir
|
|
107 (expand-file-name
|
|
108 (make-temp-name (if (eq system-type 'ms-dos) "ar" "archive.tmp"))
|
|
109 (or (getenv "TMPDIR") (getenv "TMP") "/tmp"))
|
|
110 "*Directory for temporary files made by arc-mode.el")
|
|
111
|
|
112 (defvar archive-remote-regexp "^/[^/:]*[^/:.]:"
|
|
113 "*Regexp recognizing archive files names that are not local.
|
|
114 A non-local file is one whose file name is not proper outside Emacs.
|
|
115 A local copy of the archive will be used when updating.")
|
|
116
|
|
117 (defvar archive-extract-hooks nil
|
|
118 "*Hooks to run when an archive member has been extracted.")
|
|
119 ;; ------------------------------
|
|
120 ;; Arc archive configuration
|
|
121
|
|
122 ;; We always go via a local file since there seems to be no reliable way
|
|
123 ;; to extract to stdout without junk getting added.
|
|
124 (defvar archive-arc-extract
|
|
125 '("arc" "x")
|
|
126 "*Program and its options to run in order to extract an arc file member.
|
|
127 Extraction should happen to the current directory. Archive and member
|
|
128 name will be added.")
|
|
129
|
|
130 (defvar archive-arc-expunge
|
|
131 '("arc" "d")
|
|
132 "*Program and its options to run in order to delete arc file members.
|
|
133 Archive and member names will be added.")
|
|
134
|
|
135 (defvar archive-arc-write-file-member
|
|
136 '("arc" "u")
|
|
137 "*Program and its options to run in order to update an arc file member.
|
|
138 Archive and member name will be added.")
|
|
139 ;; ------------------------------
|
|
140 ;; Lzh archive configuration
|
|
141
|
|
142 (defvar archive-lzh-extract
|
|
143 '("lha" "pq")
|
|
144 "*Program and its options to run in order to extract an lzh file member.
|
|
145 Extraction should happen to standard output. Archive and member name will
|
|
146 be added.")
|
|
147
|
|
148 (defvar archive-lzh-expunge
|
|
149 '("lha" "d")
|
|
150 "*Program and its options to run in order to delete lzh file members.
|
|
151 Archive and member names will be added.")
|
|
152
|
|
153 (defvar archive-lzh-write-file-member
|
|
154 '("lha" "a")
|
|
155 "*Program and its options to run in order to update an lzh file member.
|
|
156 Archive and member name will be added.")
|
|
157 ;; ------------------------------
|
|
158 ;; Zip archive configuration
|
|
159
|
|
160 (defvar archive-zip-use-pkzip (memq system-type '(ms-dos windows-nt))
|
|
161 "*If non-nil then pkzip option are used instead of zip options.
|
|
162 Only set to true for msdog systems!")
|
|
163
|
|
164 (defvar archive-zip-extract
|
|
165 (if archive-zip-use-pkzip '("pkunzip" "-e") '("unzip" "-qq" "-c"))
|
|
166 "*Program and its options to run in order to extract a zip file member.
|
|
167 Extraction should happen to standard output. Archive and member name will
|
|
168 be added. If `archive-zip-use-pkzip' is non-nil then this program is
|
|
169 expected to extract to a file junking the directory part of the name.")
|
|
170
|
|
171 ;; For several reasons the latter behaviour is not desireable in general.
|
|
172 ;; (1) It uses more disk space. (2) Error checking is worse or non-
|
|
173 ;; existent. (3) It tends to do funny things with other systems' file
|
|
174 ;; names.
|
|
175
|
|
176 (defvar archive-zip-expunge
|
|
177 (if archive-zip-use-pkzip '("pkzip" "-d") '("zip" "-d" "-q"))
|
|
178 "*Program and its options to run in order to delete zip file members.
|
|
179 Archive and member names will be added.")
|
|
180
|
|
181 (defvar archive-zip-update
|
|
182 (if archive-zip-use-pkzip '("pkzip" "-u") '("zip" "-q"))
|
|
183 "*Program and its options to run in order to update a zip file member.
|
|
184 Options should ensure that specified directory will be put into the zip
|
|
185 file. Archive and member name will be added.")
|
|
186
|
|
187 (defvar archive-zip-update-case
|
|
188 (if archive-zip-use-pkzip archive-zip-update '("zip" "-q" "-k"))
|
|
189 "*Program and its options to run in order to update a case fiddled zip member.
|
|
190 Options should ensure that specified directory will be put into the zip file.
|
|
191 Archive and member name will be added.")
|
|
192
|
|
193 (defvar archive-zip-case-fiddle t
|
|
194 "*If non-nil then zip file members are case fiddled.
|
|
195 Case fiddling will only happen for members created by a system that
|
|
196 uses caseless file names.")
|
|
197 ;; ------------------------------
|
|
198 ;; Zoo archive configuration
|
|
199
|
|
200 (defvar archive-zoo-extract
|
|
201 '("zoo" "xpq")
|
|
202 "*Program and its options to run in order to extract a zoo file member.
|
|
203 Extraction should happen to standard output. Archive and member name will
|
|
204 be added.")
|
|
205
|
|
206 (defvar archive-zoo-expunge
|
|
207 '("zoo" "DqPP")
|
|
208 "*Program and its options to run in order to delete zoo file members.
|
|
209 Archive and member names will be added.")
|
|
210
|
|
211 (defvar archive-zoo-write-file-member
|
|
212 '("zoo" "a")
|
|
213 "*Program and its options to run in order to update a zoo file member.
|
|
214 Archive and member name will be added.")
|
|
215 ;; -------------------------------------------------------------------------
|
|
216 ;; Section: Variables
|
|
217
|
|
218 (defvar archive-subtype nil "*Symbol describing archive type.")
|
|
219 (defvar archive-file-list-start nil "*Position of first contents line.")
|
|
220 (defvar archive-file-list-end nil "*Position just after last contents line.")
|
|
221 (defvar archive-proper-file-start nil "*Position of real archive's start.")
|
|
222 (defvar archive-read-only nil "*Non-nil if the archive is read-only on disk.")
|
|
223 (defvar archive-remote nil "*Non-nil if the archive is outside file system.")
|
|
224 (defvar archive-local-name nil "*Name of local copy of remote archive.")
|
|
225 (defvar archive-mode-map nil "*Local keymap for archive mode listings.")
|
|
226 (defvar archive-file-name-indent nil "*Column where file names start.")
|
|
227
|
|
228 (defvar archive-alternate-display nil
|
|
229 "*Non-nil when alternate information is shown.")
|
|
230 (make-variable-buffer-local 'archive-alternate-display)
|
|
231 (put 'archive-alternate-display 'permanent-local t)
|
|
232
|
|
233 (defvar archive-superior-buffer nil "*In archive members, points to archive.")
|
|
234 (put 'archive-superior-buffer 'permanent-local t)
|
|
235
|
|
236 (defvar archive-subfile-mode nil "*Non-nil in archive member buffers.")
|
|
237 (make-variable-buffer-local 'archive-subfile-mode)
|
|
238 (put 'archive-subfile-mode 'permanent-local t)
|
|
239
|
|
240 ;; buffer-file-type is a per-buffer variable in the msdog configuration
|
|
241 (if (boundp 'buffer-file-type) nil
|
|
242 (defvar buffer-file-type nil
|
|
243 "*Nil for dos-style text file, non-nil otherwise.")
|
|
244 (make-variable-buffer-local 'buffer-file-type)
|
|
245 (put 'buffer-file-type 'permanent-local t)
|
|
246 (setq-default buffer-file-type nil))
|
|
247
|
|
248 (defvar archive-subfile-dos nil
|
|
249 "Negation of `buffer-file-type' which see.")
|
|
250 (make-variable-buffer-local 'archive-subfile-dos)
|
|
251 (put 'archive-subfile-dos 'permanent-local t)
|
|
252
|
|
253 (defvar archive-files nil "Vector of file descriptors. Each descriptor is
|
|
254 a vector of [ext-file-name int-file-name case-fiddled mode ...]")
|
|
255 (make-variable-buffer-local 'archive-files)
|
|
256
|
|
257 (defvar archive-lemacs
|
|
258 (string-match "\\(Lucid\\|XEmacs\\)" emacs-version)
|
|
259 "*Non-nil when running under under Lucid Emacs or Xemacs.")
|
|
260 ;; -------------------------------------------------------------------------
|
|
261 ;; Section: Support functions.
|
|
262
|
|
263 (defsubst archive-name (suffix)
|
|
264 (intern (concat "archive-" (symbol-name archive-subtype) "-" suffix)))
|
|
265
|
|
266 (defun archive-l-e (str &optional len)
|
|
267 "Convert little endian string/vector to integer.
|
|
268 Alternatively, first argument may be a buffer position in the current buffer
|
|
269 in which case a second argument, length, should be supplied."
|
|
270 (if (stringp str)
|
|
271 (setq len (length str))
|
|
272 (setq str (buffer-substring str (+ str len))))
|
|
273 (let ((result 0)
|
|
274 (i 0))
|
|
275 (while (< i len)
|
|
276 (setq i (1+ i)
|
|
277 result (+ (ash result 8) (aref str (- len i)))))
|
|
278 result))
|
|
279
|
|
280 (defun archive-int-to-mode (mode)
|
|
281 "Turn an integer like 0700 (i.e., 448) into a mode string like -rwx------"
|
|
282 (let ((str (make-string 10 ?-)))
|
|
283 (or (zerop (logand 16384 mode)) (aset str 0 ?d))
|
|
284 (or (zerop (logand 8192 mode)) (aset str 0 ?c)) ; completeness
|
|
285 (or (zerop (logand 256 mode)) (aset str 1 ?r))
|
|
286 (or (zerop (logand 128 mode)) (aset str 2 ?w))
|
|
287 (or (zerop (logand 64 mode)) (aset str 3 ?x))
|
|
288 (or (zerop (logand 32 mode)) (aset str 4 ?r))
|
|
289 (or (zerop (logand 16 mode)) (aset str 5 ?w))
|
|
290 (or (zerop (logand 8 mode)) (aset str 6 ?x))
|
|
291 (or (zerop (logand 4 mode)) (aset str 7 ?r))
|
|
292 (or (zerop (logand 2 mode)) (aset str 8 ?w))
|
|
293 (or (zerop (logand 1 mode)) (aset str 9 ?x))
|
|
294 (or (zerop (logand 1024 mode)) (aset str 3 (if (zerop (logand 64 mode))
|
|
295 ?S ?s)))
|
|
296 (or (zerop (logand 2048 mode)) (aset str 6 (if (zerop (logand 8 mode))
|
|
297 ?S ?s)))
|
|
298 str))
|
|
299
|
|
300 (defun archive-calc-mode (oldmode newmode &optional error)
|
|
301 "From the integer OLDMODE and the string NEWMODE calculate a new file mode.
|
|
302 NEWMODE may be an octal number including a leading zero in which case it
|
|
303 will become the new mode.\n
|
|
304 NEWMODE may also be a relative specification like \"og-rwx\" in which case
|
|
305 OLDMODE will be modified accordingly just like chmod(2) would have done.\n
|
|
306 If optional third argument ERROR is non-nil an error will be signaled if
|
|
307 the mode is invalid. If ERROR is nil then nil will be returned."
|
|
308 (cond ((string-match "^0[0-7]*$" newmode)
|
|
309 (let ((result 0)
|
|
310 (len (length newmode))
|
|
311 (i 1))
|
|
312 (while (< i len)
|
|
313 (setq result (+ (lsh result 3) (aref newmode i) (- ?0))
|
|
314 i (1+ i)))
|
|
315 (logior (logand oldmode 65024) result)))
|
|
316 ((string-match "^\\([agou]+\\)\\([---+=]\\)\\([rwxst]+\\)$" newmode)
|
|
317 (let ((who 0)
|
|
318 (result oldmode)
|
|
319 (op (aref newmode (match-beginning 2)))
|
|
320 (bits 0)
|
|
321 (i (match-beginning 3)))
|
|
322 (while (< i (match-end 3))
|
|
323 (let ((rwx (aref newmode i)))
|
|
324 (setq bits (logior bits (cond ((= rwx ?r) 292)
|
|
325 ((= rwx ?w) 146)
|
|
326 ((= rwx ?x) 73)
|
|
327 ((= rwx ?s) 3072)
|
|
328 ((= rwx ?t) 512)))
|
|
329 i (1+ i))))
|
|
330 (while (< who (match-end 1))
|
|
331 (let* ((whoc (aref newmode who))
|
|
332 (whomask (cond ((= whoc ?a) 4095)
|
|
333 ((= whoc ?u) 1472)
|
|
334 ((= whoc ?g) 2104)
|
|
335 ((= whoc ?o) 7))))
|
|
336 (if (= op ?=)
|
|
337 (setq result (logand result (lognot whomask))))
|
|
338 (if (= op ?-)
|
|
339 (setq result (logand result (lognot (logand whomask bits))))
|
|
340 (setq result (logior result (logand whomask bits)))))
|
|
341 (setq who (1+ who)))
|
|
342 result))
|
|
343 (t
|
|
344 (if error
|
|
345 (error "Invalid mode specification: %s" newmode)))))
|
|
346
|
|
347 (defun archive-dosdate (date)
|
|
348 "Stringify dos packed DATE record."
|
|
349 (let ((year (+ 1980 (logand (ash date -9) 127)))
|
|
350 (month (logand (ash date -5) 15))
|
|
351 (day (logand date 31)))
|
|
352 (if (or (> month 12) (< month 1))
|
|
353 ""
|
|
354 (format "%2d-%s-%d"
|
|
355 day
|
|
356 (aref ["Jan" "Feb" "Mar" "Apr" "May" "Jun"
|
|
357 "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"] (1- month))
|
|
358 year))))
|
|
359
|
|
360 (defun archive-dostime (time)
|
|
361 "Stringify dos packed TIME record."
|
|
362 (let ((hour (logand (ash time -11) 31))
|
|
363 (minute (logand (ash time -5) 53))
|
|
364 (second (* 2 (logand time 31)))) ; 2 seconds resolution
|
|
365 (format "%02d:%02d:%02d" hour minute second)))
|
|
366
|
|
367 ;;(defun archive-unixdate (low high)
|
|
368 ;; "Stringify unix (LOW HIGH) date."
|
|
369 ;; (let ((str (current-time-string (cons high low))))
|
|
370 ;; (format "%s-%s-%s"
|
|
371 ;; (substring str 8 9)
|
|
372 ;; (substring str 4 7)
|
|
373 ;; (substring str 20 24))))
|
|
374
|
|
375 ;;(defun archive-unixtime (low high)
|
|
376 ;; "Stringify unix (LOW HIGH) time."
|
|
377 ;; (let ((str (current-time-string (cons high low))))
|
|
378 ;; (substring str 11 19)))
|
|
379
|
|
380 (defun archive-get-lineno ()
|
|
381 (if (>= (point) archive-file-list-start)
|
|
382 (count-lines archive-file-list-start
|
|
383 (save-excursion (beginning-of-line) (point)))
|
|
384 0))
|
|
385
|
|
386 (defun archive-get-descr (&optional noerror)
|
|
387 "Return the descriptor vector for file at point.
|
|
388 Does not signal an error if optional second argument NOERROR is non-nil."
|
|
389 (let ((no (archive-get-lineno)))
|
|
390 (if (and (>= (point) archive-file-list-start)
|
|
391 (< no (length archive-files)))
|
|
392 (let ((item (aref archive-files no)))
|
|
393 (if (vectorp item)
|
|
394 item
|
|
395 (if (not noerror)
|
|
396 (error "Entry is not a regular member of the archive"))))
|
|
397 (if (not noerror)
|
|
398 (error "Line does not describe a member of the archive")))))
|
|
399 ;; -------------------------------------------------------------------------
|
|
400 ;; Section: the mode definition
|
|
401
|
|
402 ;;;###autoload
|
|
403 (defun archive-mode (&optional force)
|
|
404 "Major mode for viewing an archive file in a dired-like way.
|
|
405 You can move around using the usual cursor motion commands.
|
|
406 Letters no longer insert themselves.
|
|
407 Type `e' to pull a file out of the archive and into its own buffer;
|
|
408 or click mouse-2 on the file's line in the archive mode buffer.
|
|
409
|
|
410 If you edit a sub-file of this archive (as with the `e' command) and
|
|
411 save it, the contents of that buffer will be saved back into the
|
|
412 archive.
|
|
413
|
|
414 \\{archive-mode-map}"
|
|
415 ;; This is not interactive because you shouldn't be turning this
|
|
416 ;; mode on and off. You can corrupt things that way.
|
|
417 (if (zerop (buffer-size))
|
|
418 ;; At present we cannot create archives from scratch
|
|
419 (funcall default-major-mode)
|
|
420 (if (and (not force) archive-files) nil
|
|
421 (let* ((type (archive-find-type))
|
|
422 (typename (copy-sequence (symbol-name type))))
|
|
423 (aset typename 0 (upcase (aref typename 0)))
|
|
424 (kill-all-local-variables)
|
|
425 (make-local-variable 'archive-subtype)
|
|
426 (setq archive-subtype type)
|
|
427
|
|
428 ;; Buffer contains treated image of file before the file contents
|
|
429 (make-local-variable 'revert-buffer-function)
|
|
430 (setq revert-buffer-function 'archive-mode-revert)
|
|
431 (auto-save-mode 0)
|
|
432 (make-local-variable 'local-write-file-hooks)
|
|
433 (add-hook 'local-write-file-hooks 'archive-write-file)
|
|
434
|
|
435 ;; Real file contents is binary
|
|
436 (make-local-variable 'require-final-newline)
|
|
437 (setq require-final-newline nil)
|
|
438 (make-local-variable 'enable-local-variables)
|
|
439 (setq enable-local-variables nil)
|
|
440 (setq buffer-file-type t)
|
|
441
|
|
442 (make-local-variable 'archive-read-only)
|
|
443 (setq archive-read-only (not (file-writable-p (buffer-file-name))))
|
|
444
|
|
445 ;; Should we use a local copy when accessing from outside Emacs?
|
|
446 (make-local-variable 'archive-local-name)
|
|
447 (make-local-variable 'archive-remote)
|
|
448 (setq archive-remote (string-match archive-remote-regexp
|
|
449 (buffer-file-name)))
|
|
450
|
|
451 (setq major-mode 'archive-mode)
|
|
452 (setq mode-name (concat typename "-Archive"))
|
|
453 ;; Run archive-foo-mode-hook and archive-mode-hook
|
|
454 (run-hooks (archive-name "mode-hook") 'archive-mode-hook)
|
|
455 (use-local-map archive-mode-map))
|
|
456
|
|
457 (make-local-variable 'archive-proper-file-start)
|
|
458 (make-local-variable 'archive-file-list-start)
|
|
459 (make-local-variable 'archive-file-list-end)
|
|
460 (make-local-variable 'archive-file-name-indent)
|
|
461 (archive-summarize)
|
|
462 (setq buffer-read-only t))))
|
|
463
|
|
464 ;; Archive mode is suitable only for specially formatted data.
|
|
465 (put 'archive-mode 'mode-class 'special)
|
|
466 ;; -------------------------------------------------------------------------
|
|
467 ;; Section: Key maps
|
|
468
|
|
469 (if archive-mode-map nil
|
|
470 (setq archive-mode-map (make-keymap))
|
|
471 (suppress-keymap archive-mode-map)
|
|
472 (define-key archive-mode-map " " 'archive-next-line)
|
|
473 (define-key archive-mode-map "a" 'archive-alternate-display)
|
|
474 ;;(define-key archive-mode-map "c" 'archive-copy)
|
|
475 (define-key archive-mode-map "d" 'archive-flag-deleted)
|
|
476 (define-key archive-mode-map "\C-d" 'archive-flag-deleted)
|
|
477 (define-key archive-mode-map "e" 'archive-extract)
|
|
478 (define-key archive-mode-map "f" 'archive-extract)
|
|
479 (define-key archive-mode-map "\C-m" 'archive-extract)
|
|
480 (define-key archive-mode-map "g" 'revert-buffer)
|
|
481 (define-key archive-mode-map "h" 'describe-mode)
|
|
482 (define-key archive-mode-map "m" 'archive-mark)
|
|
483 (define-key archive-mode-map "n" 'archive-next-line)
|
|
484 (define-key archive-mode-map "\C-n" 'archive-next-line)
|
|
485 (define-key archive-mode-map [down] 'archive-next-line)
|
|
486 (define-key archive-mode-map "o" 'archive-extract-other-window)
|
|
487 (define-key archive-mode-map "p" 'archive-previous-line)
|
|
488 (define-key archive-mode-map "\C-p" 'archive-previous-line)
|
|
489 (define-key archive-mode-map [up] 'archive-previous-line)
|
|
490 (define-key archive-mode-map "r" 'archive-rename-entry)
|
|
491 (define-key archive-mode-map "u" 'archive-unflag)
|
|
492 (define-key archive-mode-map "\M-\C-?" 'archive-unmark-all-files)
|
|
493 (define-key archive-mode-map "v" 'archive-view)
|
|
494 (define-key archive-mode-map "x" 'archive-expunge)
|
|
495 (define-key archive-mode-map "\177" 'archive-unflag-backwards)
|
|
496 (define-key archive-mode-map "E" 'archive-extract-other-window)
|
|
497 (define-key archive-mode-map "M" 'archive-chmod-entry)
|
|
498 (define-key archive-mode-map "G" 'archive-chgrp-entry)
|
|
499 (define-key archive-mode-map "O" 'archive-chown-entry)
|
|
500
|
|
501 (if archive-lemacs
|
|
502 (progn
|
|
503 ;; Not a nice "solution" but it'll have to do
|
|
504 (define-key archive-mode-map "\C-xu" 'archive-undo)
|
|
505 (define-key archive-mode-map "\C-_" 'archive-undo))
|
|
506 (substitute-key-definition 'undo 'archive-undo
|
|
507 archive-mode-map global-map))
|
|
508
|
|
509 (define-key archive-mode-map
|
|
510 (if archive-lemacs 'button2 [mouse-2]) 'archive-mouse-extract)
|
|
511
|
|
512 (if archive-lemacs
|
|
513 () ; out of luck
|
|
514 ;; Get rid of the Edit menu bar item to save space.
|
|
515 (define-key archive-mode-map [menu-bar edit] 'undefined)
|
|
516
|
|
517 (define-key archive-mode-map [menu-bar immediate]
|
|
518 (cons "Immediate" (make-sparse-keymap "Immediate")))
|
|
519 (define-key archive-mode-map [menu-bar immediate alternate]
|
|
520 '("Alternate Display" . archive-alternate-display))
|
|
521 (put 'archive-alternate-display 'menu-enable
|
|
522 '(boundp (archive-name "alternate-display")))
|
|
523 (define-key archive-mode-map [menu-bar immediate view]
|
|
524 '("View This File" . archive-view))
|
|
525 (define-key archive-mode-map [menu-bar immediate display]
|
|
526 '("Display in Other Window" . archive-display-other-window))
|
|
527 (define-key archive-mode-map [menu-bar immediate find-file-other-window]
|
|
528 '("Find in Other Window" . archive-extract-other-window))
|
|
529 (define-key archive-mode-map [menu-bar immediate find-file]
|
|
530 '("Find This File" . archive-extract))
|
|
531
|
|
532 (define-key archive-mode-map [menu-bar mark]
|
|
533 (cons "Mark" (make-sparse-keymap "Mark")))
|
|
534 (define-key archive-mode-map [menu-bar mark unmark-all]
|
|
535 '("Unmark All" . archive-unmark-all-files))
|
|
536 (define-key archive-mode-map [menu-bar mark deletion]
|
|
537 '("Flag" . archive-flag-deleted))
|
|
538 (define-key archive-mode-map [menu-bar mark unmark]
|
|
539 '("Unflag" . archive-unflag))
|
|
540 (define-key archive-mode-map [menu-bar mark mark]
|
|
541 '("Mark" . archive-mark))
|
|
542
|
|
543 (define-key archive-mode-map [menu-bar operate]
|
|
544 (cons "Operate" (make-sparse-keymap "Operate")))
|
|
545 (define-key archive-mode-map [menu-bar operate chown]
|
|
546 '("Change Owner..." . archive-chown-entry))
|
|
547 (put 'archive-chown-entry 'menu-enable
|
|
548 '(fboundp (archive-name "chown-entry")))
|
|
549 (define-key archive-mode-map [menu-bar operate chgrp]
|
|
550 '("Change Group..." . archive-chgrp-entry))
|
|
551 (put 'archive-chgrp-entry 'menu-enable
|
|
552 '(fboundp (archive-name "chgrp-entry")))
|
|
553 (define-key archive-mode-map [menu-bar operate chmod]
|
|
554 '("Change Mode..." . archive-chmod-entry))
|
|
555 (put 'archive-chmod-entry 'menu-enable
|
|
556 '(fboundp (archive-name "chmod-entry")))
|
|
557 (define-key archive-mode-map [menu-bar operate rename]
|
|
558 '("Rename to..." . archive-rename-entry))
|
|
559 (put 'archive-rename-entry 'menu-enable
|
|
560 '(fboundp (archive-name "rename-entry")))
|
|
561 ;;(define-key archive-mode-map [menu-bar operate copy]
|
|
562 ;; '("Copy to..." . archive-copy))
|
|
563 (define-key archive-mode-map [menu-bar operate expunge]
|
|
564 '("Expunge Marked Files" . archive-expunge))
|
|
565 ))
|
|
566
|
|
567 (let* ((item1 '(archive-subfile-mode " Archive"))
|
|
568 (item2 '(archive-subfile-dos " Dos"))
|
|
569 (items (if (memq system-type '(ms-dos windows-nt))
|
|
570 (list item1) ; msdog has its own indicator
|
|
571 (list item1 item2))))
|
|
572 (or (member item1 minor-mode-alist)
|
|
573 (setq minor-mode-alist (append items minor-mode-alist))))
|
|
574 ;; -------------------------------------------------------------------------
|
|
575 (defun archive-find-type ()
|
|
576 (widen)
|
|
577 (goto-char (point-min))
|
|
578 ;; The funny [] here make it unlikely that the .elc file will be treated
|
|
579 ;; as an archive by other software.
|
|
580 (let (case-fold-search)
|
|
581 (cond ((looking-at "[P]K\003\004") 'zip)
|
|
582 ((looking-at "..-l[hz][0-9]-") 'lzh)
|
|
583 ((looking-at "....................[\334]\247\304\375") 'zoo)
|
|
584 ((and (looking-at "\C-z") ; signature too simple, IMHO
|
|
585 (string-match "\\.[aA][rR][cC]$"
|
|
586 (or buffer-file-name (buffer-name))))
|
|
587 'arc)
|
|
588 (t (error "Buffer format not recognized.")))))
|
|
589 ;; -------------------------------------------------------------------------
|
|
590 (defun archive-summarize ()
|
|
591 "Parse the contents of the archive file in the current buffer.
|
|
592 Place a dired-like listing on the front;
|
|
593 then narrow to it, so that only that listing
|
|
594 is visible (and the real data of the buffer is hidden)."
|
|
595 (widen)
|
|
596 (let (buffer-read-only)
|
|
597 (message "Parsing archive file...")
|
|
598 (buffer-disable-undo (current-buffer))
|
|
599 (setq archive-files (funcall (archive-name "summarize")))
|
|
600 (message "Parsing archive file...done.")
|
|
601 (setq archive-proper-file-start (point-marker))
|
|
602 (narrow-to-region (point-min) (point))
|
|
603 (set-buffer-modified-p nil)
|
|
604 (buffer-enable-undo))
|
|
605 (goto-char archive-file-list-start)
|
|
606 (archive-next-line 0))
|
|
607
|
|
608 (defun archive-resummarize ()
|
|
609 "Recreate the contents listing of an archive."
|
|
610 (let ((modified (buffer-modified-p))
|
|
611 (no (archive-get-lineno))
|
|
612 buffer-read-only)
|
|
613 (widen)
|
|
614 (delete-region (point-min) archive-proper-file-start)
|
|
615 (archive-summarize)
|
|
616 (set-buffer-modified-p modified)
|
|
617 (goto-char archive-file-list-start)
|
|
618 (archive-next-line no)))
|
|
619
|
|
620 (defun archive-summarize-files (files)
|
|
621 "Insert a desciption of a list of files annotated with proper mouse face"
|
|
622 (setq archive-file-list-start (point-marker))
|
|
623 (setq archive-file-name-indent (if files (aref (car files) 1) 0))
|
|
624 ;; We don't want to do an insert for each element since that takes too
|
|
625 ;; long when the archive -- which has to be moved in memory -- is large.
|
|
626 (insert
|
|
627 (apply
|
|
628 (function concat)
|
|
629 (mapcar
|
|
630 (function
|
|
631 (lambda (fil)
|
|
632 ;; Using `concat' here copies the text also, so we can add
|
|
633 ;; properties without problems.
|
|
634 (let ((text (concat (aref fil 0) "\n")))
|
|
635 (if archive-lemacs
|
|
636 () ; out of luck
|
|
637 (put-text-property (aref fil 1) (aref fil 2)
|
|
638 'mouse-face 'highlight
|
|
639 text))
|
|
640 text)))
|
|
641 files)))
|
|
642 (setq archive-file-list-end (point-marker)))
|
|
643
|
|
644 (defun archive-alternate-display ()
|
|
645 "Toggle alternative display.
|
|
646 To avoid very long lines some archive mode don't show all information.
|
|
647 This function changes the set of information shown for each files."
|
|
648 (interactive)
|
|
649 (setq archive-alternate-display (not archive-alternate-display))
|
|
650 (archive-resummarize))
|
|
651 ;; -------------------------------------------------------------------------
|
|
652 ;; Section: Local archive copy handling
|
|
653
|
|
654 (defun archive-maybe-copy (archive)
|
|
655 (if archive-remote
|
|
656 (let ((start (point-max)))
|
|
657 (setq archive-local-name (expand-file-name
|
|
658 (file-name-nondirectory archive)
|
|
659 archive-tmpdir))
|
|
660 (make-directory archive-tmpdir t)
|
|
661 (save-restriction
|
|
662 (widen)
|
|
663 (write-region start (point-max) archive-local-name nil 'nomessage))
|
|
664 archive-local-name)
|
|
665 (if (buffer-modified-p) (save-buffer))
|
|
666 archive))
|
|
667
|
|
668 (defun archive-maybe-update (unchanged)
|
|
669 (if archive-remote
|
|
670 (let ((name archive-local-name)
|
|
671 (modified (buffer-modified-p))
|
|
672 buffer-read-only)
|
|
673 (if unchanged nil
|
|
674 (erase-buffer)
|
|
675 (insert-file-contents name)
|
|
676 (archive-mode t))
|
|
677 (archive-delete-local name)
|
|
678 (if (not unchanged)
|
|
679 (message "Archive file must be saved for changes to take effect"))
|
|
680 (set-buffer-modified-p (or modified (not unchanged))))))
|
|
681
|
|
682 (defun archive-delete-local (name)
|
|
683 "Delete file NAME and its parents up to and including `archive-tmpdir'."
|
|
684 (let ((again t)
|
|
685 (top (directory-file-name (file-name-as-directory archive-tmpdir))))
|
|
686 (condition-case nil
|
|
687 (delete-file name)
|
|
688 (error nil))
|
|
689 (while again
|
|
690 (setq name (directory-file-name (file-name-directory name)))
|
|
691 (condition-case nil
|
|
692 (delete-directory name)
|
|
693 (error nil))
|
|
694 (if (string= name top) (setq again nil)))))
|
|
695 ;; -------------------------------------------------------------------------
|
|
696 ;; Section: Member extraction
|
|
697
|
|
698 (defun archive-mouse-extract (event)
|
|
699 "Extract a file whose name you click on."
|
|
700 (interactive "e")
|
|
701 (mouse-set-point event)
|
|
702 (switch-to-buffer
|
|
703 (save-excursion
|
|
704 (archive-extract)
|
|
705 (current-buffer))))
|
|
706
|
|
707 (defun archive-extract (&optional other-window-p)
|
|
708 "In archive mode, extract this entry of the archive into its own buffer."
|
|
709 (interactive)
|
|
710 (let* ((view-p (eq other-window-p 'view))
|
|
711 (descr (archive-get-descr))
|
|
712 (ename (aref descr 0))
|
|
713 (iname (aref descr 1))
|
|
714 (archive-buffer (current-buffer))
|
|
715 (arcdir default-directory)
|
|
716 (archive (buffer-file-name))
|
|
717 (arcname (file-name-nondirectory archive))
|
|
718 (bufname (concat (file-name-nondirectory iname) " (" arcname ")"))
|
|
719 (extractor (archive-name "extract"))
|
|
720 (read-only-p (or archive-read-only view-p))
|
|
721 (buffer (get-buffer bufname))
|
|
722 (just-created nil))
|
|
723 (if buffer
|
|
724 nil
|
|
725 (setq archive (archive-maybe-copy archive))
|
|
726 (setq buffer (get-buffer-create bufname))
|
|
727 (setq just-created t)
|
|
728 (save-excursion
|
|
729 (set-buffer buffer)
|
|
730 (setq buffer-file-name
|
|
731 (expand-file-name (concat arcname ":" iname)))
|
|
732 (setq buffer-file-truename
|
|
733 (abbreviate-file-name buffer-file-name))
|
|
734 ;; Set the default-directory to the dir of the superior buffer.
|
|
735 (setq default-directory arcdir)
|
|
736 (make-local-variable 'archive-superior-buffer)
|
|
737 (setq archive-superior-buffer archive-buffer)
|
|
738 (make-local-variable 'local-write-file-hooks)
|
|
739 (add-hook 'local-write-file-hooks 'archive-write-file-member)
|
|
740 (setq archive-subfile-mode descr)
|
|
741 (setq archive-subfile-dos nil
|
|
742 buffer-file-type t)
|
|
743 (if (fboundp extractor)
|
|
744 (funcall extractor archive ename)
|
|
745 (archive-*-extract archive ename (symbol-value extractor)))
|
|
746 (if archive-dos-members (archive-check-dos))
|
|
747 (goto-char (point-min))
|
|
748 (rename-buffer bufname)
|
|
749 (setq buffer-read-only read-only-p)
|
|
750 (setq buffer-undo-list nil)
|
|
751 (set-buffer-modified-p nil)
|
|
752 (setq buffer-saved-size (buffer-size))
|
|
753 (normal-mode)
|
|
754 ;; Just in case an archive occurs inside another archive.
|
|
755 (if (eq major-mode 'archive-mode)
|
|
756 (setq archive-remote t))
|
|
757 (run-hooks 'archive-extract-hooks))
|
|
758 (archive-maybe-update t))
|
|
759 (if view-p
|
|
760 (progn
|
|
761 (view-buffer buffer)
|
|
762 (and just-created (setq view-exit-action 'kill-buffer)))
|
|
763 (if (eq other-window-p 'display)
|
|
764 (display-buffer buffer)
|
|
765 (if other-window-p
|
|
766 (switch-to-buffer-other-window buffer)
|
|
767 (switch-to-buffer buffer))))))
|
|
768
|
|
769 (defun archive-*-extract (archive name command)
|
|
770 (let* ((default-directory (file-name-as-directory archive-tmpdir))
|
|
771 (tmpfile (expand-file-name (file-name-nondirectory name)
|
|
772 default-directory)))
|
|
773 (make-directory (directory-file-name default-directory) t)
|
|
774 (apply 'call-process
|
|
775 (car command)
|
|
776 nil
|
|
777 nil
|
|
778 nil
|
|
779 (append (cdr command) (list archive name)))
|
|
780 (insert-file-contents tmpfile)
|
|
781 (archive-delete-local tmpfile)))
|
|
782
|
|
783 (defun archive-extract-by-stdout (archive name command)
|
|
784 (let ((binary-process-output t)) ; for Ms-Dos
|
|
785 (apply 'call-process
|
|
786 (car command)
|
|
787 nil
|
|
788 t
|
|
789 nil
|
|
790 (append (cdr command) (list archive name)))))
|
|
791
|
|
792 (defun archive-extract-other-window ()
|
|
793 "In archive mode, find this member in another window."
|
|
794 (interactive)
|
|
795 (archive-extract t))
|
|
796
|
|
797 (defun archive-display-other-window ()
|
|
798 "In archive mode, display this member in another window."
|
|
799 (interactive)
|
|
800 (archive-extract 'display))
|
|
801
|
|
802 (defun archive-view ()
|
|
803 "In archive mode, view the member on this line."
|
|
804 (interactive)
|
|
805 (archive-extract 'view))
|
|
806
|
|
807 (defun archive-add-new-member (arcbuf name)
|
|
808 "Add current buffer to the archive in ARCBUF naming it NAME."
|
|
809 (interactive
|
|
810 (list (get-buffer
|
|
811 (read-buffer "Buffer containing archive: "
|
|
812 ;; Find first archive buffer and suggest that
|
|
813 (let ((bufs (buffer-list)))
|
|
814 (while (and bufs (not (eq (save-excursion
|
|
815 (set-buffer (car bufs))
|
|
816 major-mode)
|
|
817 'archive-mode)))
|
|
818 (setq bufs (cdr bufs)))
|
|
819 (if bufs
|
|
820 (car bufs)
|
|
821 (error "There are no archive buffers")))
|
|
822 t))
|
|
823 (read-string "File name in archive: "
|
|
824 (if buffer-file-name
|
|
825 (file-name-nondirectory buffer-file-name)
|
|
826 ""))))
|
|
827 (save-excursion
|
|
828 (set-buffer arcbuf)
|
|
829 (or (eq major-mode 'archive-mode)
|
|
830 (error "Buffer is not an archive buffer"))
|
|
831 (if archive-read-only
|
|
832 (error "Archive is read-only")))
|
|
833 (if (eq arcbuf (current-buffer))
|
|
834 (error "An archive buffer cannot be added to itself"))
|
|
835 (if (string= name "")
|
|
836 (error "Archive members may not be given empty names"))
|
|
837 (let ((func (save-excursion (set-buffer arcbuf)
|
|
838 (archive-name "add-new-member")))
|
|
839 (membuf (current-buffer)))
|
|
840 (if (fboundp func)
|
|
841 (save-excursion
|
|
842 (set-buffer arcbuf)
|
|
843 (funcall func buffer-file-name membuf name))
|
|
844 (error "Adding a new member is not supported for this archive type"))))
|
|
845 ;; -------------------------------------------------------------------------
|
|
846 ;; Section: IO stuff
|
|
847
|
|
848 (defun archive-check-dos (&optional force)
|
|
849 "*Possibly handle a buffer with ^M^J terminated lines."
|
|
850 (save-restriction
|
|
851 (widen)
|
|
852 (save-excursion
|
|
853 (goto-char (point-min))
|
|
854 (setq archive-subfile-dos
|
|
855 (or force (not (search-forward-regexp "[^\r]\n" nil t))))
|
|
856 (setq buffer-file-type (not archive-subfile-dos))
|
|
857 (if archive-subfile-dos
|
|
858 (let ((modified (buffer-modified-p)))
|
|
859 (buffer-disable-undo (current-buffer))
|
|
860 (goto-char (point-min))
|
|
861 (while (search-forward "\r\n" nil t)
|
|
862 (replace-match "\n"))
|
|
863 (buffer-enable-undo)
|
|
864 (set-buffer-modified-p modified))))))
|
|
865
|
|
866 (defun archive-write-file-member ()
|
|
867 (if archive-subfile-dos
|
|
868 (save-restriction
|
|
869 (widen)
|
|
870 (save-excursion
|
|
871 (goto-char (point-min))
|
|
872 ;; We don't want our ^M^J <--> ^J changes to show in the undo list
|
|
873 (let ((undo-list buffer-undo-list))
|
|
874 (unwind-protect
|
|
875 (progn
|
|
876 (setq buffer-undo-list t)
|
|
877 (while (search-forward "\n" nil t)
|
|
878 (replace-match "\r\n"))
|
|
879 (setq archive-subfile-dos nil)
|
|
880 (setq buffer-file-type t)
|
|
881 ;; OK, we're now have explicit ^M^Js -- save and re-unixfy
|
|
882 (archive-write-file-member))
|
|
883 (progn
|
|
884 (archive-check-dos t)
|
|
885 (setq buffer-undo-list undo-list))))
|
|
886 t))
|
|
887 (save-excursion
|
|
888 (save-restriction
|
|
889 (message "Updating archive...")
|
|
890 (widen)
|
|
891 (let ((writer (save-excursion (set-buffer archive-superior-buffer)
|
|
892 (archive-name "write-file-member")))
|
|
893 (archive (save-excursion (set-buffer archive-superior-buffer)
|
|
894 (buffer-file-name))))
|
|
895 (if (fboundp writer)
|
|
896 (funcall writer archive archive-subfile-mode)
|
|
897 (archive-*-write-file-member archive
|
|
898 archive-subfile-mode
|
|
899 (symbol-value writer))))
|
|
900 (set-buffer-modified-p nil)
|
|
901 (message "Updating archive...done")
|
|
902 (set-buffer archive-superior-buffer)
|
|
903 (revert-buffer)
|
|
904 t))))
|
|
905
|
|
906 (defun archive-*-write-file-member (archive descr command)
|
|
907 (let* ((ename (aref descr 0))
|
|
908 (tmpfile (expand-file-name ename archive-tmpdir))
|
|
909 (top (directory-file-name (file-name-as-directory archive-tmpdir)))
|
|
910 (default-directory (file-name-as-directory top)))
|
|
911 (unwind-protect
|
|
912 (progn
|
|
913 (make-directory (file-name-directory tmpfile) t)
|
|
914 (write-region (point-min) (point-max) tmpfile nil 'nomessage)
|
|
915 (if (aref descr 3)
|
|
916 ;; Set the file modes, but make sure we can read it.
|
|
917 (set-file-modes tmpfile (logior ?\400 (aref descr 3))))
|
|
918 (let ((exitcode (apply 'call-process
|
|
919 (car command)
|
|
920 nil
|
|
921 nil
|
|
922 nil
|
|
923 (append (cdr command) (list archive ename)))))
|
|
924 (if (equal exitcode 0)
|
|
925 nil
|
|
926 (error "Updating was unsuccessful (%S)" exitcode))))
|
|
927 (archive-delete-local tmpfile))))
|
|
928
|
|
929 (defun archive-write-file ()
|
|
930 (save-excursion
|
|
931 (write-region archive-proper-file-start (point-max) buffer-file-name nil t)
|
|
932 (set-buffer-modified-p nil)
|
|
933 t))
|
|
934 ;; -------------------------------------------------------------------------
|
|
935 ;; Section: Marking and unmarking.
|
|
936
|
|
937 (defun archive-flag-deleted (p &optional type)
|
|
938 "In archive mode, mark this member to be deleted from the archive.
|
|
939 With a prefix argument, mark that many files."
|
|
940 (interactive "p")
|
|
941 (or type (setq type ?D))
|
|
942 (beginning-of-line)
|
|
943 (let ((sign (if (>= p 0) +1 -1))
|
|
944 (modified (buffer-modified-p))
|
|
945 buffer-read-only)
|
|
946 (while (not (zerop p))
|
|
947 (if (archive-get-descr t)
|
|
948 (progn
|
|
949 (delete-char 1)
|
|
950 (insert type)))
|
|
951 (forward-line sign)
|
|
952 (setq p (- p sign)))
|
|
953 (set-buffer-modified-p modified))
|
|
954 (archive-next-line 0))
|
|
955
|
|
956 (defun archive-unflag (p)
|
|
957 "In archive mode, un-mark this member if it is marked to be deleted.
|
|
958 With a prefix argument, un-mark that many files forward."
|
|
959 (interactive "p")
|
|
960 (archive-flag-deleted p ? ))
|
|
961
|
|
962 (defun archive-unflag-backwards (p)
|
|
963 "In archive mode, un-mark this member if it is marked to be deleted.
|
|
964 With a prefix argument, un-mark that many members backward."
|
|
965 (interactive "p")
|
|
966 (archive-flag-deleted (- p) ? ))
|
|
967
|
|
968 (defun archive-unmark-all-files ()
|
|
969 "Remove all marks."
|
|
970 (interactive)
|
|
971 (let ((modified (buffer-modified-p))
|
|
972 buffer-read-only)
|
|
973 (save-excursion
|
|
974 (goto-char archive-file-list-start)
|
|
975 (while (< (point) archive-file-list-end)
|
|
976 (or (= (following-char) ? )
|
|
977 (progn (delete-char 1) (insert ? )))
|
|
978 (forward-line 1)))
|
|
979 (set-buffer-modified-p modified)))
|
|
980
|
|
981 (defun archive-mark (p)
|
|
982 "In archive mode, mark this member for group operations.
|
|
983 With a prefix argument, mark that many members.
|
|
984 Use \\[archive-unmark-all-files] to remove all marks."
|
|
985 (interactive "p")
|
|
986 (archive-flag-deleted p ?*))
|
|
987
|
|
988 (defun archive-get-marked (mark &optional default)
|
|
989 (let (files)
|
|
990 (save-excursion
|
|
991 (goto-char archive-file-list-start)
|
|
992 (while (< (point) archive-file-list-end)
|
|
993 (if (= (following-char) mark)
|
|
994 (setq files (cons (archive-get-descr) files)))
|
|
995 (forward-line 1)))
|
|
996 (or (nreverse files)
|
|
997 (and default
|
|
998 (list (archive-get-descr))))))
|
|
999 ;; -------------------------------------------------------------------------
|
|
1000 ;; Section: Operate
|
|
1001
|
|
1002 (defun archive-next-line (p)
|
|
1003 (interactive "p")
|
|
1004 (forward-line p)
|
|
1005 (or (eobp)
|
|
1006 (forward-char archive-file-name-indent)))
|
|
1007
|
|
1008 (defun archive-previous-line (p)
|
|
1009 (interactive "p")
|
|
1010 (archive-next-line (- p)))
|
|
1011
|
|
1012 (defun archive-chmod-entry (new-mode)
|
|
1013 "Change the protection bits associated with all marked or this member.
|
|
1014 The new protection bits can either be specified as an octal number or
|
|
1015 as a relative change like \"g+rw\" as for chmod(2)"
|
|
1016 (interactive "sNew mode (octal or relative): ")
|
|
1017 (if archive-read-only (error "Archive is read-only"))
|
|
1018 (let ((func (archive-name "chmod-entry")))
|
|
1019 (if (fboundp func)
|
|
1020 (progn
|
|
1021 (funcall func new-mode (archive-get-marked ?* t))
|
|
1022 (archive-resummarize))
|
|
1023 (error "Setting mode bits is not supported for this archive type"))))
|
|
1024
|
|
1025 (defun archive-chown-entry (new-uid)
|
|
1026 "Change the owner of all marked or this member."
|
|
1027 (interactive "nNew uid: ")
|
|
1028 (if archive-read-only (error "Archive is read-only"))
|
|
1029 (let ((func (archive-name "chown-entry")))
|
|
1030 (if (fboundp func)
|
|
1031 (progn
|
|
1032 (funcall func new-uid (archive-get-marked ?* t))
|
|
1033 (archive-resummarize))
|
|
1034 (error "Setting owner is not supported for this archive type"))))
|
|
1035
|
|
1036 (defun archive-chgrp-entry (new-gid)
|
|
1037 "Change the group of all marked or this member."
|
|
1038 (interactive "nNew gid: ")
|
|
1039 (if archive-read-only (error "Archive is read-only"))
|
|
1040 (let ((func (archive-name "chgrp-entry")))
|
|
1041 (if (fboundp func)
|
|
1042 (progn
|
|
1043 (funcall func new-gid (archive-get-marked ?* t))
|
|
1044 (archive-resummarize))
|
|
1045 (error "Setting group is not supported for this archive type"))))
|
|
1046
|
|
1047 (defun archive-expunge ()
|
|
1048 "Do the flagged deletions."
|
|
1049 (interactive)
|
|
1050 (let (files)
|
|
1051 (save-excursion
|
|
1052 (goto-char archive-file-list-start)
|
|
1053 (while (< (point) archive-file-list-end)
|
|
1054 (if (= (following-char) ?D)
|
|
1055 (setq files (cons (aref (archive-get-descr) 0) files)))
|
|
1056 (forward-line 1)))
|
|
1057 (setq files (nreverse files))
|
|
1058 (and files
|
|
1059 (or (not archive-read-only)
|
|
1060 (error "Archive is read-only"))
|
|
1061 (or (yes-or-no-p (format "Really delete %d member%s? "
|
|
1062 (length files)
|
|
1063 (if (null (cdr files)) "" "s")))
|
|
1064 (error "Operation aborted"))
|
|
1065 (let ((archive (archive-maybe-copy (buffer-file-name)))
|
|
1066 (expunger (archive-name "expunge")))
|
|
1067 (if (fboundp expunger)
|
|
1068 (funcall expunger archive files)
|
|
1069 (archive-*-expunge archive files (symbol-value expunger)))
|
|
1070 (archive-maybe-update nil)
|
|
1071 (if archive-remote
|
|
1072 (archive-resummarize)
|
|
1073 (revert-buffer))))))
|
|
1074
|
|
1075 (defun archive-*-expunge (archive files command)
|
|
1076 (apply 'call-process
|
|
1077 (car command)
|
|
1078 nil
|
|
1079 nil
|
|
1080 nil
|
|
1081 (append (cdr command) (cons archive files))))
|
|
1082
|
|
1083 (defun archive-rename-entry (newname)
|
|
1084 "Change the name associated with this entry in the tar file."
|
|
1085 (interactive "sNew name: ")
|
|
1086 (if archive-read-only (error "Archive is read-only"))
|
|
1087 (if (string= newname "")
|
|
1088 (error "Archive members may not be given empty names"))
|
|
1089 (let ((func (archive-name "rename-entry"))
|
|
1090 (descr (archive-get-descr)))
|
|
1091 (if (fboundp func)
|
|
1092 (progn
|
|
1093 (funcall func (buffer-file-name) newname descr)
|
|
1094 (archive-resummarize))
|
|
1095 (error "Renaming is not supported for this archive type"))))
|
|
1096
|
|
1097 ;; Revert the buffer and recompute the dired-like listing.
|
|
1098 (defun archive-mode-revert (&optional no-autosave no-confirm)
|
|
1099 (let ((no (archive-get-lineno)))
|
|
1100 (setq archive-files nil)
|
|
1101 (let ((revert-buffer-function nil))
|
|
1102 (revert-buffer t t))
|
|
1103 (archive-mode)
|
|
1104 (goto-char archive-file-list-start)
|
|
1105 (archive-next-line no)))
|
|
1106
|
|
1107 (defun archive-undo ()
|
|
1108 "Undo in an archive buffer.
|
|
1109 This doesn't recover lost files, it just undoes changes in the buffer itself."
|
|
1110 (interactive)
|
|
1111 (let (buffer-read-only)
|
|
1112 (undo)))
|
|
1113 ;; -------------------------------------------------------------------------
|
|
1114 ;; Section: Arc Archives
|
|
1115
|
|
1116 (defun archive-arc-summarize ()
|
|
1117 (let ((p 1)
|
|
1118 (totalsize 0)
|
|
1119 (maxlen 8)
|
|
1120 files
|
|
1121 visual)
|
|
1122 (while (and (< (+ p 29) (point-max))
|
|
1123 (= (char-after p) ?\C-z)
|
|
1124 (> (char-after (1+ p)) 0))
|
|
1125 (let* ((namefld (buffer-substring (+ p 2) (+ p 2 13)))
|
|
1126 (fnlen (or (string-match "\0" namefld) 13))
|
|
1127 (efnname (substring namefld 0 fnlen))
|
|
1128 (csize (archive-l-e (+ p 15) 4))
|
|
1129 (moddate (archive-l-e (+ p 19) 2))
|
|
1130 (modtime (archive-l-e (+ p 21) 2))
|
|
1131 (ucsize (archive-l-e (+ p 25) 4))
|
|
1132 (fiddle (string= efnname (upcase efnname)))
|
|
1133 (ifnname (if fiddle (downcase efnname) efnname))
|
|
1134 (text (format " %8d %-11s %-8s %s"
|
|
1135 ucsize
|
|
1136 (archive-dosdate moddate)
|
|
1137 (archive-dostime modtime)
|
|
1138 ifnname)))
|
|
1139 (setq maxlen (max maxlen fnlen)
|
|
1140 totalsize (+ totalsize ucsize)
|
|
1141 visual (cons (vector text
|
|
1142 (- (length text) (length ifnname))
|
|
1143 (length text))
|
|
1144 visual)
|
|
1145 files (cons (vector efnname ifnname fiddle nil (1- p))
|
|
1146 files)
|
|
1147 p (+ p 29 csize))))
|
|
1148 (goto-char (point-min))
|
|
1149 (let ((dash (concat "- -------- ----------- -------- "
|
|
1150 (make-string maxlen ?-)
|
|
1151 "\n")))
|
|
1152 (insert "M Length Date Time File\n"
|
|
1153 dash)
|
|
1154 (archive-summarize-files (nreverse visual))
|
|
1155 (insert dash
|
|
1156 (format " %8d %d file%s"
|
|
1157 totalsize
|
|
1158 (length files)
|
|
1159 (if (= 1 (length files)) "" "s"))
|
|
1160 "\n"))
|
|
1161 (apply 'vector (nreverse files))))
|
|
1162
|
|
1163 (defun archive-arc-rename-entry (archive newname descr)
|
|
1164 (if (string-match "[:\\\\/]" newname)
|
|
1165 (error "File names in arc files may not contain a path"))
|
|
1166 (if (> (length newname) 12)
|
|
1167 (error "File names in arc files are limited to 12 characters"))
|
|
1168 (let ((name (concat newname (substring "\0\0\0\0\0\0\0\0\0\0\0\0\0"
|
|
1169 (length newname))))
|
|
1170 buffer-read-only)
|
|
1171 (save-restriction
|
|
1172 (save-excursion
|
|
1173 (widen)
|
|
1174 (goto-char (+ archive-proper-file-start (aref descr 4) 2))
|
|
1175 (delete-char 13)
|
|
1176 (insert name)))))
|
|
1177 ;; -------------------------------------------------------------------------
|
|
1178 ;; Section: Lzh Archives
|
|
1179
|
|
1180 (defun archive-lzh-summarize ()
|
|
1181 (let ((p 1)
|
|
1182 (totalsize 0)
|
|
1183 (maxlen 8)
|
|
1184 files
|
|
1185 visual)
|
|
1186 (while (progn (goto-char p) (looking-at "..-l[hz][0-9]-"))
|
|
1187 (let* ((hsize (char-after p))
|
|
1188 (csize (archive-l-e (+ p 7) 4))
|
|
1189 (ucsize (archive-l-e (+ p 11) 4))
|
|
1190 (modtime (archive-l-e (+ p 15) 2))
|
|
1191 (moddate (archive-l-e (+ p 17) 2))
|
|
1192 (fnlen (char-after (+ p 21)))
|
|
1193 (efnname (buffer-substring (+ p 22) (+ p 22 fnlen)))
|
|
1194 (fiddle (string= efnname (upcase efnname)))
|
|
1195 (ifnname (if fiddle (downcase efnname) efnname))
|
|
1196 (p2 (+ p 22 fnlen))
|
|
1197 (creator (if (>= (- hsize fnlen) 24) (char-after (+ p2 2)) 0))
|
|
1198 (mode (if (= creator ?U) (archive-l-e (+ p2 8) 2) ?\666))
|
|
1199 (modestr (if mode (archive-int-to-mode mode) "??????????"))
|
|
1200 (uid (if (= creator ?U) (archive-l-e (+ p2 10) 2)))
|
|
1201 (gid (if (= creator ?U) (archive-l-e (+ p2 12) 2)))
|
|
1202 (text (if archive-alternate-display
|
|
1203 (format " %8d %5S %5S %s"
|
|
1204 ucsize
|
|
1205 (or uid "?")
|
|
1206 (or gid "?")
|
|
1207 ifnname)
|
|
1208 (format " %10s %8d %-11s %-8s %s"
|
|
1209 modestr
|
|
1210 ucsize
|
|
1211 (archive-dosdate moddate)
|
|
1212 (archive-dostime modtime)
|
|
1213 ifnname))))
|
|
1214 (setq maxlen (max maxlen fnlen)
|
|
1215 totalsize (+ totalsize ucsize)
|
|
1216 visual (cons (vector text
|
|
1217 (- (length text) (length ifnname))
|
|
1218 (length text))
|
|
1219 visual)
|
|
1220 files (cons (vector efnname ifnname fiddle mode (1- p))
|
|
1221 files)
|
|
1222 p (+ p hsize 2 csize))))
|
|
1223 (goto-char (point-min))
|
|
1224 (let ((dash (concat (if archive-alternate-display
|
|
1225 "- -------- ----- ----- "
|
|
1226 "- ---------- -------- ----------- -------- ")
|
|
1227 (make-string maxlen ?-)
|
|
1228 "\n"))
|
|
1229 (header (if archive-alternate-display
|
|
1230 "M Length Uid Gid File\n"
|
|
1231 "M Filemode Length Date Time File\n"))
|
|
1232 (sumline (if archive-alternate-display
|
|
1233 " %8d %d file%s"
|
|
1234 " %8d %d file%s")))
|
|
1235 (insert header dash)
|
|
1236 (archive-summarize-files (nreverse visual))
|
|
1237 (insert dash
|
|
1238 (format sumline
|
|
1239 totalsize
|
|
1240 (length files)
|
|
1241 (if (= 1 (length files)) "" "s"))
|
|
1242 "\n"))
|
|
1243 (apply 'vector (nreverse files))))
|
|
1244
|
|
1245 (defconst archive-lzh-alternate-display t)
|
|
1246
|
|
1247 (defun archive-lzh-extract (archive name)
|
|
1248 (archive-extract-by-stdout archive name archive-lzh-extract))
|
|
1249
|
|
1250 (defun archive-lzh-resum (p count)
|
|
1251 (let ((sum 0))
|
|
1252 (while (> count 0)
|
|
1253 (setq count (1- count)
|
|
1254 sum (+ sum (char-after p))
|
|
1255 p (1+ p)))
|
|
1256 (logand sum 255)))
|
|
1257
|
|
1258 (defun archive-lzh-rename-entry (archive newname descr)
|
|
1259 (save-restriction
|
|
1260 (save-excursion
|
|
1261 (widen)
|
|
1262 (let* ((p (+ archive-proper-file-start (aref descr 4)))
|
|
1263 (oldhsize (char-after p))
|
|
1264 (oldfnlen (char-after (+ p 21)))
|
|
1265 (newfnlen (length newname))
|
|
1266 (newhsize (+ oldhsize newfnlen (- oldfnlen)))
|
|
1267 buffer-read-only)
|
|
1268 (if (> newhsize 255)
|
|
1269 (error "The file name is too long"))
|
|
1270 (goto-char (+ p 21))
|
|
1271 (delete-char (1+ oldfnlen))
|
|
1272 (insert newfnlen newname)
|
|
1273 (goto-char p)
|
|
1274 (delete-char 2)
|
|
1275 (insert newhsize (archive-lzh-resum p newhsize))))))
|
|
1276
|
|
1277 (defun archive-lzh-ogm (newval files errtxt ofs)
|
|
1278 (save-restriction
|
|
1279 (save-excursion
|
|
1280 (widen)
|
|
1281 (while files
|
|
1282 (let* ((fil (car files))
|
|
1283 (p (+ archive-proper-file-start (aref fil 4)))
|
|
1284 (hsize (char-after p))
|
|
1285 (fnlen (char-after (+ p 21)))
|
|
1286 (p2 (+ p 22 fnlen))
|
|
1287 (creator (if (>= (- hsize fnlen) 24) (char-after (+ p2 2)) 0))
|
|
1288 buffer-read-only)
|
|
1289 (if (= creator ?U)
|
|
1290 (progn
|
|
1291 (or (numberp newval)
|
|
1292 (setq newval (funcall newval (archive-l-e (+ p2 ofs) 2))))
|
|
1293 (goto-char (+ p2 ofs))
|
|
1294 (delete-char 2)
|
|
1295 (insert (logand newval 255) (lsh newval -8))
|
|
1296 (goto-char (1+ p))
|
|
1297 (delete-char 1)
|
|
1298 (insert (archive-lzh-resum (1+ p) hsize)))
|
|
1299 (message "Member %s does not have %s field"
|
|
1300 (aref fil 1) errtxt)))
|
|
1301 (setq files (cdr files))))))
|
|
1302
|
|
1303 (defun archive-lzh-chown-entry (newuid files)
|
|
1304 (archive-lzh-ogm newuid files "an uid" 10))
|
|
1305
|
|
1306 (defun archive-lzh-chgrp-entry (newgid files)
|
|
1307 (archive-lzh-ogm newgid files "a gid" 12))
|
|
1308
|
|
1309 (defun archive-lzh-chmod-entry (newmode files)
|
|
1310 (archive-lzh-ogm
|
|
1311 ;; This should work even though newmode will be dynamically accessed.
|
|
1312 (function (lambda (old) (archive-calc-mode old newmode t)))
|
|
1313 files "a unix-style mode" 8))
|
|
1314 ;; -------------------------------------------------------------------------
|
|
1315 ;; Section: Zip Archives
|
|
1316
|
|
1317 (defun archive-zip-summarize ()
|
|
1318 (goto-char (- (point-max) (- 22 18)))
|
|
1319 (search-backward-regexp "[P]K\005\006")
|
|
1320 (let ((p (1+ (archive-l-e (+ (point) 16) 4)))
|
|
1321 (maxlen 8)
|
|
1322 (totalsize 0)
|
|
1323 files
|
|
1324 visual)
|
|
1325 (while (string= "PK\001\002" (buffer-substring p (+ p 4)))
|
|
1326 (let* ((creator (char-after (+ p 5)))
|
|
1327 (method (archive-l-e (+ p 10) 2))
|
|
1328 (modtime (archive-l-e (+ p 12) 2))
|
|
1329 (moddate (archive-l-e (+ p 14) 2))
|
|
1330 (ucsize (archive-l-e (+ p 24) 4))
|
|
1331 (fnlen (archive-l-e (+ p 28) 2))
|
|
1332 (exlen (archive-l-e (+ p 30) 2))
|
|
1333 (fclen (archive-l-e (+ p 32) 2))
|
|
1334 (lheader (archive-l-e (+ p 42) 4))
|
|
1335 (efnname (buffer-substring (+ p 46) (+ p 46 fnlen)))
|
|
1336 (isdir (and (= ucsize 0)
|
|
1337 (string= (file-name-nondirectory efnname) "")))
|
|
1338 (mode (cond ((memq creator '(2 3)) ; Unix + VMS
|
|
1339 (archive-l-e (+ p 40) 2))
|
|
1340 ((memq creator '(0 5 6 7 10 11)) ; Dos etc.
|
|
1341 (logior ?\444
|
|
1342 (if isdir (logior 16384 ?\111) 0)
|
|
1343 (if (zerop
|
|
1344 (logand 1 (char-after (+ p 38))))
|
|
1345 ?\222 0)))
|
|
1346 (t nil)))
|
|
1347 (modestr (if mode (archive-int-to-mode mode) "??????????"))
|
|
1348 (fiddle (and archive-zip-case-fiddle
|
|
1349 (not (not (memq creator '(0 2 4 5 9))))))
|
|
1350 (ifnname (if fiddle (downcase efnname) efnname))
|
|
1351 (text (format " %10s %8d %-11s %-8s %s"
|
|
1352 modestr
|
|
1353 ucsize
|
|
1354 (archive-dosdate moddate)
|
|
1355 (archive-dostime modtime)
|
|
1356 ifnname)))
|
|
1357 (setq maxlen (max maxlen fnlen)
|
|
1358 totalsize (+ totalsize ucsize)
|
|
1359 visual (cons (vector text
|
|
1360 (- (length text) (length ifnname))
|
|
1361 (length text))
|
|
1362 visual)
|
|
1363 files (cons (if isdir
|
|
1364 nil
|
|
1365 (vector efnname ifnname fiddle mode
|
|
1366 (list (1- p) lheader)))
|
|
1367 files)
|
|
1368 p (+ p 46 fnlen exlen fclen))))
|
|
1369 (goto-char (point-min))
|
|
1370 (let ((dash (concat "- ---------- -------- ----------- -------- "
|
|
1371 (make-string maxlen ?-)
|
|
1372 "\n")))
|
|
1373 (insert "M Filemode Length Date Time File\n"
|
|
1374 dash)
|
|
1375 (archive-summarize-files (nreverse visual))
|
|
1376 (insert dash
|
|
1377 (format " %8d %d file%s"
|
|
1378 totalsize
|
|
1379 (length files)
|
|
1380 (if (= 1 (length files)) "" "s"))
|
|
1381 "\n"))
|
|
1382 (apply 'vector (nreverse files))))
|
|
1383
|
|
1384 (defun archive-zip-extract (archive name)
|
|
1385 (if archive-zip-use-pkzip
|
|
1386 (archive-*-extract archive name archive-zip-extract)
|
|
1387 (archive-extract-by-stdout archive name archive-zip-extract)))
|
|
1388
|
|
1389 (defun archive-zip-write-file-member (archive descr)
|
|
1390 (archive-*-write-file-member
|
|
1391 archive
|
|
1392 descr
|
|
1393 (if (aref descr 2) archive-zip-update-case archive-zip-update)))
|
|
1394
|
|
1395 (defun archive-zip-chmod-entry (newmode files)
|
|
1396 (save-restriction
|
|
1397 (save-excursion
|
|
1398 (widen)
|
|
1399 (while files
|
|
1400 (let* ((fil (car files))
|
|
1401 (p (+ archive-proper-file-start (car (aref fil 4))))
|
|
1402 (creator (char-after (+ p 5)))
|
|
1403 (oldmode (aref fil 3))
|
|
1404 (newval (archive-calc-mode oldmode newmode t))
|
|
1405 buffer-read-only)
|
|
1406 (cond ((memq creator '(2 3)) ; Unix + VMS
|
|
1407 (goto-char (+ p 40))
|
|
1408 (delete-char 2)
|
|
1409 (insert (logand newval 255) (lsh newval -8)))
|
|
1410 ((memq creator '(0 5 6 7 10 11)) ; Dos etc.
|
|
1411 (goto-char (+ p 38))
|
|
1412 (insert (logior (logand (char-after (point)) 254)
|
|
1413 (logand (logxor 1 (lsh newval -7)) 1)))
|
|
1414 (delete-char 1))
|
|
1415 (t (message "Don't know how to change mode for this member"))))
|
|
1416 (setq files (cdr files))))))
|
|
1417 ;; -------------------------------------------------------------------------
|
|
1418 ;; Section: Zoo Archives
|
|
1419
|
|
1420 (defun archive-zoo-summarize ()
|
|
1421 (let ((p (1+ (archive-l-e 25 4)))
|
|
1422 (maxlen 8)
|
|
1423 (totalsize 0)
|
|
1424 files
|
|
1425 visual)
|
|
1426 (while (and (string= "\334\247\304\375" (buffer-substring p (+ p 4)))
|
|
1427 (> (archive-l-e (+ p 6) 4) 0))
|
|
1428 (let* ((next (1+ (archive-l-e (+ p 6) 4)))
|
|
1429 (moddate (archive-l-e (+ p 14) 2))
|
|
1430 (modtime (archive-l-e (+ p 16) 2))
|
|
1431 (ucsize (archive-l-e (+ p 20) 4))
|
|
1432 (namefld (buffer-substring (+ p 38) (+ p 38 13)))
|
|
1433 (dirtype (char-after (+ p 4)))
|
|
1434 (lfnlen (if (= dirtype 2) (char-after (+ p 56)) 0))
|
|
1435 (ldirlen (if (= dirtype 2) (char-after (+ p 57)) 0))
|
|
1436 (fnlen (+ ldirlen
|
|
1437 (if (> lfnlen 0)
|
|
1438 (1- lfnlen)
|
|
1439 (or (string-match "\0" namefld) 13))))
|
|
1440 (efnname (concat
|
|
1441 (if (> ldirlen 0)
|
|
1442 (concat (buffer-substring
|
|
1443 (+ p 58 lfnlen) (+ p 58 lfnlen ldirlen -1))
|
|
1444 "/")
|
|
1445 "")
|
|
1446 (if (> lfnlen 0)
|
|
1447 (buffer-substring (+ p 58) (+ p 58 lfnlen -1))
|
|
1448 (substring namefld 0 fnlen))))
|
|
1449 (fiddle (and (= lfnlen 0) (string= efnname (upcase efnname))))
|
|
1450 (ifnname (if fiddle (downcase efnname) efnname))
|
|
1451 (text (format " %8d %-11s %-8s %s"
|
|
1452 ucsize
|
|
1453 (archive-dosdate moddate)
|
|
1454 (archive-dostime modtime)
|
|
1455 ifnname)))
|
|
1456 (setq maxlen (max maxlen fnlen)
|
|
1457 totalsize (+ totalsize ucsize)
|
|
1458 visual (cons (vector text
|
|
1459 (- (length text) (length ifnname))
|
|
1460 (length text))
|
|
1461 visual)
|
|
1462 files (cons (vector efnname ifnname fiddle nil (1- p))
|
|
1463 files)
|
|
1464 p next)))
|
|
1465 (goto-char (point-min))
|
|
1466 (let ((dash (concat "- -------- ----------- -------- "
|
|
1467 (make-string maxlen ?-)
|
|
1468 "\n")))
|
|
1469 (insert "M Length Date Time File\n"
|
|
1470 dash)
|
|
1471 (archive-summarize-files (nreverse visual))
|
|
1472 (insert dash
|
|
1473 (format " %8d %d file%s"
|
|
1474 totalsize
|
|
1475 (length files)
|
|
1476 (if (= 1 (length files)) "" "s"))
|
|
1477 "\n"))
|
|
1478 (apply 'vector (nreverse files))))
|
|
1479
|
|
1480 (defun archive-zoo-extract (archive name)
|
|
1481 (archive-extract-by-stdout archive name archive-zoo-extract))
|
|
1482 ;; -------------------------------------------------------------------------
|
|
1483 (provide 'archive-mode)
|
|
1484
|
|
1485 ;; arc-mode.el ends here.
|