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