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