Update for rename islamic-diary-entry-symbol to diary-islamic-entry-symbol.
[emacs.git] / lisp / arc-mode.el
blob335248d992059688a60e3a2e09f1bc03a19bf0be
1 ;;; arc-mode.el --- simple editing of archives
3 ;; Copyright (C) 1995, 1997, 1998, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Morten Welinder <terra@gnu.org>
7 ;; Keywords: archives msdog editing major-mode
8 ;; Favourite-brand-of-beer: None, I hate beer.
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
27 ;;; Commentary:
29 ;; NAMING: "arc" is short for "archive" and does not refer specifically
30 ;; to files whose name end in ".arc"
32 ;; This code does not decode any files internally, although it does
33 ;; understand the directory level of the archives. For this reason,
34 ;; you should expect this code to need more fiddling than tar-mode.el
35 ;; (although it at present has fewer bugs :-) In particular, I have
36 ;; not tested this under Ms-Dog myself.
37 ;; -------------------------------------
38 ;; INTERACTION: arc-mode.el should play together with
40 ;; * ange-ftp.el: Remote archives (i.e., ones that ange-ftp has brought
41 ;; to you) are handled by doing all updates on a local
42 ;; copy. When you make changes to a remote file the
43 ;; changes will first take effect when the archive buffer
44 ;; is saved. You will be warned about this.
46 ;; * dos-fns.el: (Part of Emacs 19). You get automatic ^M^J <--> ^J
47 ;; conversion.
49 ;; arc-mode.el does not work well with crypt++.el; for the archives as
50 ;; such this could be fixed (but wouldn't be useful) by declaring such
51 ;; archives to be "remote". For the members this is a general Emacs
52 ;; problem that 19.29's file formats may fix.
53 ;; -------------------------------------
54 ;; ARCHIVE TYPES: Currently only the archives below are handled, but the
55 ;; structure for handling just about anything is in place.
57 ;; Arc Lzh Zip Zoo Rar
58 ;; ----------------------------------------
59 ;; View listing Intern Intern Intern Intern Y
60 ;; Extract member Y Y Y Y Y
61 ;; Save changed member Y Y Y Y N
62 ;; Add new member N N N N N
63 ;; Delete member Y Y Y Y N
64 ;; Rename member Y Y N N N
65 ;; Chmod - Y Y - N
66 ;; Chown - Y - - N
67 ;; Chgrp - Y - - N
69 ;; Special thanks to Bill Brodie <wbrodie@panix.com> for very useful tips
70 ;; on the first released version of this package.
72 ;; This code is partly based on tar-mode.el from Emacs.
73 ;; -------------------------------------
74 ;; ARCHIVE STRUCTURES:
75 ;; (This is mostly for myself.)
77 ;; ARC A series of (header,file). No interactions among members.
79 ;; LZH A series of (header,file). Headers are checksummed. No
80 ;; interaction among members.
81 ;; Headers come in three flavours called level 0, 1 and 2 headers.
82 ;; Level 2 header is free of DOS specific restrictions and most
83 ;; prevalently used. Also level 1 and 2 headers consist of base
84 ;; and extension headers. For more details see
85 ;; http://homepage1.nifty.com/dangan/en/Content/Program/Java/jLHA/Notes/Notes.html
86 ;; http://www.osirusoft.com/joejared/lzhformat.html
88 ;; ZIP A series of (lheader,fil) followed by a "central directory"
89 ;; which is a series of (cheader) followed by an end-of-
90 ;; central-dir record possibly followed by junk. The e-o-c-d
91 ;; links to c-d. cheaders link to lheaders which are basically
92 ;; cut-down versions of the cheaders.
94 ;; ZOO An archive header followed by a series of (header,file).
95 ;; Each member header points to the next. The archive is
96 ;; terminated by a bogus header with a zero next link.
97 ;; -------------------------------------
98 ;; HOOKS: `foo' means one of the supported archive types.
100 ;; archive-mode-hook
101 ;; archive-foo-mode-hook
102 ;; archive-extract-hooks
104 ;;; Code:
106 ;; -------------------------------------------------------------------------
107 ;;; Section: Configuration.
109 (defgroup archive nil
110 "Simple editing of archives."
111 :group 'data)
113 (defgroup archive-arc nil
114 "ARC-specific options to archive."
115 :group 'archive)
117 (defgroup archive-lzh nil
118 "LZH-specific options to archive."
119 :group 'archive)
121 (defgroup archive-zip nil
122 "ZIP-specific options to archive."
123 :group 'archive)
125 (defgroup archive-zoo nil
126 "ZOO-specific options to archive."
127 :group 'archive)
129 (defcustom archive-tmpdir
130 ;; make-temp-name is safe here because we use this name
131 ;; to create a directory.
132 (make-temp-name
133 (expand-file-name (if (eq system-type 'ms-dos) "ar" "archive.tmp")
134 temporary-file-directory))
135 "Directory for temporary files made by `arc-mode.el'."
136 :type 'directory
137 :group 'archive)
139 (defcustom archive-remote-regexp "^/[^/:]*[^/:.]:"
140 "*Regexp recognizing archive files names that are not local.
141 A non-local file is one whose file name is not proper outside Emacs.
142 A local copy of the archive will be used when updating."
143 :type 'regexp
144 :group 'archive)
146 (defcustom archive-extract-hooks nil
147 "*Hooks to run when an archive member has been extracted."
148 :type 'hook
149 :group 'archive)
150 ;; ------------------------------
151 ;; Arc archive configuration
153 ;; We always go via a local file since there seems to be no reliable way
154 ;; to extract to stdout without junk getting added.
155 (defcustom archive-arc-extract
156 '("arc" "x")
157 "*Program and its options to run in order to extract an arc file member.
158 Extraction should happen to the current directory. Archive and member
159 name will be added."
160 :type '(list (string :tag "Program")
161 (repeat :tag "Options"
162 :inline t
163 (string :format "%v")))
164 :group 'archive-arc)
166 (defcustom archive-arc-expunge
167 '("arc" "d")
168 "*Program and its options to run in order to delete arc file members.
169 Archive and member names will be added."
170 :type '(list (string :tag "Program")
171 (repeat :tag "Options"
172 :inline t
173 (string :format "%v")))
174 :group 'archive-arc)
176 (defcustom archive-arc-write-file-member
177 '("arc" "u")
178 "*Program and its options to run in order to update an arc file member.
179 Archive and member name will be added."
180 :type '(list (string :tag "Program")
181 (repeat :tag "Options"
182 :inline t
183 (string :format "%v")))
184 :group 'archive-arc)
185 ;; ------------------------------
186 ;; Lzh archive configuration
188 (defcustom archive-lzh-extract
189 '("lha" "pq")
190 "*Program and its options to run in order to extract an lzh file member.
191 Extraction should happen to standard output. Archive and member name will
192 be added."
193 :type '(list (string :tag "Program")
194 (repeat :tag "Options"
195 :inline t
196 (string :format "%v")))
197 :group 'archive-lzh)
199 (defcustom archive-lzh-expunge
200 '("lha" "d")
201 "*Program and its options to run in order to delete lzh file members.
202 Archive and member names will be added."
203 :type '(list (string :tag "Program")
204 (repeat :tag "Options"
205 :inline t
206 (string :format "%v")))
207 :group 'archive-lzh)
209 (defcustom archive-lzh-write-file-member
210 '("lha" "a")
211 "*Program and its options to run in order to update an lzh file member.
212 Archive and member name will be added."
213 :type '(list (string :tag "Program")
214 (repeat :tag "Options"
215 :inline t
216 (string :format "%v")))
217 :group 'archive-lzh)
218 ;; ------------------------------
219 ;; Zip archive configuration
221 (defcustom archive-zip-extract
222 (if (and (not (executable-find "unzip"))
223 (executable-find "pkunzip"))
224 '("pkunzip" "-e" "-o-")
225 '("unzip" "-qq" "-c"))
226 "*Program and its options to run in order to extract a zip file member.
227 Extraction should happen to standard output. Archive and member name will
228 be added."
229 :type '(list (string :tag "Program")
230 (repeat :tag "Options"
231 :inline t
232 (string :format "%v")))
233 :group 'archive-zip)
235 ;; For several reasons the latter behaviour is not desirable in general.
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.
240 (defcustom archive-zip-expunge
241 (if (and (not (executable-find "zip"))
242 (executable-find "pkzip"))
243 '("pkzip" "-d")
244 '("zip" "-d" "-q"))
245 "*Program and its options to run in order to delete zip file members.
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)
253 (defcustom archive-zip-update
254 (if (and (not (executable-find "zip"))
255 (executable-find "pkzip"))
256 '("pkzip" "-u" "-P")
257 '("zip" "-q"))
258 "*Program and its options to run in order to update a zip file member.
259 Options should ensure that specified directory will be put into the zip
260 file. 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)
267 (defcustom archive-zip-update-case
268 (if (and (not (executable-find "zip"))
269 (executable-find "pkzip"))
270 '("pkzip" "-u" "-P")
271 '("zip" "-q" "-k"))
272 "*Program and its options to run in order to update a case fiddled zip member.
273 Options should ensure that specified directory will be put into the zip file.
274 Archive 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)
281 (defcustom archive-zip-case-fiddle t
282 "*If non-nil then zip file members may be down-cased.
283 This case fiddling will only happen for members created by a system
284 that uses caseless file names."
285 :type 'boolean
286 :group 'archive-zip)
287 ;; ------------------------------
288 ;; Zoo archive configuration
290 (defcustom archive-zoo-extract
291 '("zoo" "xpq")
292 "*Program and its options to run in order to extract a zoo file member.
293 Extraction should happen to standard output. Archive and member name will
294 be added."
295 :type '(list (string :tag "Program")
296 (repeat :tag "Options"
297 :inline t
298 (string :format "%v")))
299 :group 'archive-zoo)
301 (defcustom archive-zoo-expunge
302 '("zoo" "DqPP")
303 "*Program and its options to run in order to delete zoo file members.
304 Archive 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)
311 (defcustom archive-zoo-write-file-member
312 '("zoo" "a")
313 "*Program and its options to run in order to update a zoo file member.
314 Archive 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)
320 ;; -------------------------------------------------------------------------
321 ;;; Section: Variables
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.")
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 ;; Let mouse-1 follow the link.
362 (define-key map [follow-link] 'mouse-face)
364 (if (fboundp 'command-remapping)
365 (progn
366 (define-key map [remap advertised-undo] 'archive-undo)
367 (define-key map [remap undo] 'archive-undo))
368 (substitute-key-definition 'advertised-undo 'archive-undo map global-map)
369 (substitute-key-definition 'undo 'archive-undo map global-map))
371 (define-key map
372 (if (featurep 'xemacs) 'button2 [mouse-2]) 'archive-extract)
374 (if (featurep 'xemacs)
375 () ; out of luck
377 (define-key map [menu-bar immediate]
378 (cons "Immediate" (make-sparse-keymap "Immediate")))
379 (define-key map [menu-bar immediate alternate]
380 '(menu-item "Alternate Display" archive-alternate-display
381 :enable (boundp (archive-name "alternate-display"))
382 :help "Toggle alternate file info display"))
383 (define-key map [menu-bar immediate view]
384 '(menu-item "View This File" archive-view
385 :help "Display file at cursor in View Mode"))
386 (define-key map [menu-bar immediate display]
387 '(menu-item "Display in Other Window" archive-display-other-window
388 :help "Display file at cursor in another window"))
389 (define-key map [menu-bar immediate find-file-other-window]
390 '(menu-item "Find in Other Window" archive-extract-other-window
391 :help "Edit file at cursor in another window"))
392 (define-key map [menu-bar immediate find-file]
393 '(menu-item "Find This File" archive-extract
394 :help "Extract file at cursor and edit it"))
396 (define-key map [menu-bar mark]
397 (cons "Mark" (make-sparse-keymap "Mark")))
398 (define-key map [menu-bar mark unmark-all]
399 '(menu-item "Unmark All" archive-unmark-all-files
400 :help "Unmark all marked files"))
401 (define-key map [menu-bar mark deletion]
402 '(menu-item "Flag" archive-flag-deleted
403 :help "Flag file at cursor for deletion"))
404 (define-key map [menu-bar mark unmark]
405 '(menu-item "Unflag" archive-unflag
406 :help "Unmark file at cursor"))
407 (define-key map [menu-bar mark mark]
408 '(menu-item "Mark" archive-mark
409 :help "Mark file at cursor"))
411 (define-key map [menu-bar operate]
412 (cons "Operate" (make-sparse-keymap "Operate")))
413 (define-key map [menu-bar operate chown]
414 '(menu-item "Change Owner..." archive-chown-entry
415 :enable (fboundp (archive-name "chown-entry"))
416 :help "Change owner of marked files"))
417 (define-key map [menu-bar operate chgrp]
418 '(menu-item "Change Group..." archive-chgrp-entry
419 :enable (fboundp (archive-name "chgrp-entry"))
420 :help "Change group ownership of marked files"))
421 (define-key map [menu-bar operate chmod]
422 '(menu-item "Change Mode..." archive-chmod-entry
423 :enable (fboundp (archive-name "chmod-entry"))
424 :help "Change mode (permissions) of marked files"))
425 (define-key map [menu-bar operate rename]
426 '(menu-item "Rename to..." archive-rename-entry
427 :enable (fboundp (archive-name "rename-entry"))
428 :help "Rename marked files"))
429 ;;(define-key map [menu-bar operate copy]
430 ;; '(menu-item "Copy to..." archive-copy))
431 (define-key map [menu-bar operate expunge]
432 '(menu-item "Expunge Marked Files" archive-expunge
433 :help "Delete all flagged files from archive"))
434 map))
435 "Local keymap for archive mode listings.")
436 (defvar archive-file-name-indent nil "Column where file names start.")
438 (defvar archive-remote nil "Non-nil if the archive is outside file system.")
439 (make-variable-buffer-local 'archive-remote)
440 (put 'archive-remote 'permanent-local t)
442 (defvar archive-member-coding-system nil "Coding-system of archive member.")
443 (make-variable-buffer-local 'archive-member-coding-system)
445 (defvar archive-alternate-display nil
446 "Non-nil when alternate information is shown.")
447 (make-variable-buffer-local 'archive-alternate-display)
448 (put 'archive-alternate-display 'permanent-local t)
450 (defvar archive-superior-buffer nil "In archive members, points to archive.")
451 (put 'archive-superior-buffer 'permanent-local t)
453 (defvar archive-subfile-mode nil "Non-nil in archive member buffers.")
454 (make-variable-buffer-local 'archive-subfile-mode)
455 (put 'archive-subfile-mode 'permanent-local t)
457 (defvar archive-file-name-coding-system nil)
458 (make-variable-buffer-local 'archive-file-name-coding-system)
459 (put 'archive-file-name-coding-system 'permanent-local t)
461 (defvar archive-files nil
462 "Vector of file descriptors.
463 Each descriptor is a vector of the form
464 [EXT-FILE-NAME INT-FILE-NAME CASE-FIDDLED MODE ...]")
465 (make-variable-buffer-local 'archive-files)
467 ;; -------------------------------------------------------------------------
468 ;;; Section: Support functions.
470 (eval-when-compile
471 (defsubst byte-after (pos)
472 "Like char-after but an eight-bit char is converted to unibyte."
473 (multibyte-char-to-unibyte (char-after pos)))
474 (defsubst insert-unibyte (&rest args)
475 "Like insert but don't make unibyte string and eight-bit char multibyte."
476 (dolist (elt args)
477 (if (integerp elt)
478 (insert (if (< elt 128) elt (decode-char 'eight-bit elt)))
479 (insert (string-to-multibyte elt)))))
482 (defsubst archive-name (suffix)
483 (intern (concat "archive-" (symbol-name archive-subtype) "-" suffix)))
485 (defun archive-l-e (str &optional len float)
486 "Convert little endian string/vector STR to integer.
487 Alternatively, STR may be a buffer position in the current buffer
488 in which case a second argument, length LEN, should be supplied.
489 FLOAT, if non-nil, means generate and return a float instead of an integer
490 \(use this for numbers that can overflow the Emacs integer)."
491 (if (stringp str)
492 (setq len (length str))
493 (setq str (buffer-substring str (+ str len))))
494 (setq str (string-as-unibyte str))
495 (let ((result 0)
496 (i 0))
497 (while (< i len)
498 (setq i (1+ i)
499 result (+ (if float (* result 256.0) (ash result 8))
500 (aref str (- len i)))))
501 result))
503 (defun archive-int-to-mode (mode)
504 "Turn an integer like 0700 (i.e., 448) into a mode string like -rwx------."
505 ;; FIXME: merge with tar-grind-file-mode.
506 (string
507 (if (zerop (logand 8192 mode))
508 (if (zerop (logand 16384 mode)) ?- ?d)
509 ?c) ; completeness
510 (if (zerop (logand 256 mode)) ?- ?r)
511 (if (zerop (logand 128 mode)) ?- ?w)
512 (if (zerop (logand 64 mode))
513 (if (zerop (logand 1024 mode)) ?- ?S)
514 (if (zerop (logand 1024 mode)) ?x ?s))
515 (if (zerop (logand 32 mode)) ?- ?r)
516 (if (zerop (logand 16 mode)) ?- ?w)
517 (if (zerop (logand 8 mode))
518 (if (zerop (logand 2048 mode)) ?- ?S)
519 (if (zerop (logand 2048 mode)) ?x ?s))
520 (if (zerop (logand 4 mode)) ?- ?r)
521 (if (zerop (logand 2 mode)) ?- ?w)
522 (if (zerop (logand 1 mode)) ?- ?x)))
524 (defun archive-calc-mode (oldmode newmode &optional error)
525 "From the integer OLDMODE and the string NEWMODE calculate a new file mode.
526 NEWMODE may be an octal number including a leading zero in which case it
527 will become the new mode.\n
528 NEWMODE may also be a relative specification like \"og-rwx\" in which case
529 OLDMODE will be modified accordingly just like chmod(2) would have done.\n
530 If optional third argument ERROR is non-nil an error will be signaled if
531 the mode is invalid. If ERROR is nil then nil will be returned."
532 (cond ((string-match "^0[0-7]*$" newmode)
533 (let ((result 0)
534 (len (length newmode))
535 (i 1))
536 (while (< i len)
537 (setq result (+ (lsh result 3) (aref newmode i) (- ?0))
538 i (1+ i)))
539 (logior (logand oldmode 65024) result)))
540 ((string-match "^\\([agou]+\\)\\([---+=]\\)\\([rwxst]+\\)$" newmode)
541 (let ((who 0)
542 (result oldmode)
543 (op (aref newmode (match-beginning 2)))
544 (bits 0)
545 (i (match-beginning 3)))
546 (while (< i (match-end 3))
547 (let ((rwx (aref newmode i)))
548 (setq bits (logior bits (cond ((= rwx ?r) 292)
549 ((= rwx ?w) 146)
550 ((= rwx ?x) 73)
551 ((= rwx ?s) 3072)
552 ((= rwx ?t) 512)))
553 i (1+ i))))
554 (while (< who (match-end 1))
555 (let* ((whoc (aref newmode who))
556 (whomask (cond ((= whoc ?a) 4095)
557 ((= whoc ?u) 1472)
558 ((= whoc ?g) 2104)
559 ((= whoc ?o) 7))))
560 (if (= op ?=)
561 (setq result (logand result (lognot whomask))))
562 (if (= op ?-)
563 (setq result (logand result (lognot (logand whomask bits))))
564 (setq result (logior result (logand whomask bits)))))
565 (setq who (1+ who)))
566 result))
568 (if error
569 (error "Invalid mode specification: %s" newmode)))))
571 (defun archive-dosdate (date)
572 "Stringify dos packed DATE record."
573 (let ((year (+ 1980 (logand (ash date -9) 127)))
574 (month (logand (ash date -5) 15))
575 (day (logand date 31)))
576 (if (or (> month 12) (< month 1))
578 (format "%2d-%s-%d"
580 (aref ["Jan" "Feb" "Mar" "Apr" "May" "Jun"
581 "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"] (1- month))
582 year))))
584 (defun archive-dostime (time)
585 "Stringify dos packed TIME record."
586 (let ((hour (logand (ash time -11) 31))
587 (minute (logand (ash time -5) 63))
588 (second (* 2 (logand time 31)))) ; 2 seconds resolution
589 (format "%02d:%02d:%02d" hour minute second)))
591 (defun archive-unixdate (low high)
592 "Stringify Unix (LOW HIGH) date."
593 (let ((str (current-time-string (cons high low))))
594 (format "%s-%s-%s"
595 (substring str 8 10)
596 (substring str 4 7)
597 (substring str 20 24))))
599 (defun archive-unixtime (low high)
600 "Stringify Unix (LOW HIGH) time."
601 (let ((str (current-time-string (cons high low))))
602 (substring str 11 19)))
604 (defun archive-get-lineno ()
605 (if (>= (point) archive-file-list-start)
606 (count-lines archive-file-list-start
607 (save-excursion (beginning-of-line) (point)))
610 (defun archive-get-descr (&optional noerror)
611 "Return the descriptor vector for file at point.
612 Does not signal an error if optional argument NOERROR is non-nil."
613 (let ((no (archive-get-lineno)))
614 (if (and (>= (point) archive-file-list-start)
615 (< no (length archive-files)))
616 (let ((item (aref archive-files no)))
617 (if (vectorp item)
618 item
619 (if (not noerror)
620 (error "Entry is not a regular member of the archive"))))
621 (if (not noerror)
622 (error "Line does not describe a member of the archive")))))
623 ;; -------------------------------------------------------------------------
624 ;;; Section: the mode definition
626 ;;;###autoload
627 (defun archive-mode (&optional force)
628 "Major mode for viewing an archive file in a dired-like way.
629 You can move around using the usual cursor motion commands.
630 Letters no longer insert themselves.
631 Type `e' to pull a file out of the archive and into its own buffer;
632 or click mouse-2 on the file's line in the archive mode buffer.
634 If you edit a sub-file of this archive (as with the `e' command) and
635 save it, the contents of that buffer will be saved back into the
636 archive.
638 \\{archive-mode-map}"
639 ;; This is not interactive because you shouldn't be turning this
640 ;; mode on and off. You can corrupt things that way.
641 (if (zerop (buffer-size))
642 ;; At present we cannot create archives from scratch
643 (funcall default-major-mode)
644 (if (and (not force) archive-files) nil
645 (let* ((type (archive-find-type))
646 (typename (capitalize (symbol-name type))))
647 (kill-all-local-variables)
648 (make-local-variable 'archive-subtype)
649 (setq archive-subtype type)
651 ;; Buffer contains treated image of file before the file contents
652 (make-local-variable 'revert-buffer-function)
653 (setq revert-buffer-function 'archive-mode-revert)
654 (auto-save-mode 0)
656 ;; Remote archives are not written by a hook.
657 (if archive-remote nil
658 (add-hook 'write-contents-functions 'archive-write-file nil t))
660 (make-local-variable 'require-final-newline)
661 (setq require-final-newline nil)
662 (make-local-variable 'local-enable-local-variables)
663 (setq local-enable-local-variables nil)
665 ;; Prevent loss of data when saving the file.
666 (make-local-variable 'file-precious-flag)
667 (setq file-precious-flag t)
669 (make-local-variable 'archive-read-only)
670 ;; Archives which are inside other archives and whose
671 ;; names are invalid for this OS, can't be written.
672 (setq archive-read-only
673 (or (not (file-writable-p (buffer-file-name)))
674 (and archive-subfile-mode
675 (string-match file-name-invalid-regexp
676 (aref archive-subfile-mode 0)))))
678 ;; Should we use a local copy when accessing from outside Emacs?
679 (make-local-variable 'archive-local-name)
681 ;; An archive can contain another archive whose name is invalid
682 ;; on local filesystem. Treat such archives as remote.
683 (or archive-remote
684 (setq archive-remote
685 (or (string-match archive-remote-regexp (buffer-file-name))
686 (string-match file-name-invalid-regexp
687 (buffer-file-name)))))
689 (setq major-mode 'archive-mode)
690 (setq mode-name (concat typename "-Archive"))
691 ;; Run archive-foo-mode-hook and archive-mode-hook
692 (run-mode-hooks (archive-name "mode-hook") 'archive-mode-hook)
693 (use-local-map archive-mode-map))
695 (make-local-variable 'archive-proper-file-start)
696 (make-local-variable 'archive-file-list-start)
697 (make-local-variable 'archive-file-list-end)
698 (make-local-variable 'archive-file-name-indent)
699 (setq archive-file-name-coding-system
700 (or file-name-coding-system
701 default-file-name-coding-system
702 locale-coding-system))
703 (if default-enable-multibyte-characters
704 (set-buffer-multibyte 'to))
705 (archive-summarize nil)
706 (setq buffer-read-only t))))
708 ;; Archive mode is suitable only for specially formatted data.
709 (put 'archive-mode 'mode-class 'special)
711 (let ((item1 '(archive-subfile-mode " Archive")))
712 (or (member item1 minor-mode-alist)
713 (setq minor-mode-alist (cons item1 minor-mode-alist))))
714 ;; -------------------------------------------------------------------------
715 (defun archive-find-type ()
716 (widen)
717 (goto-char (point-min))
718 ;; The funny [] here make it unlikely that the .elc file will be treated
719 ;; as an archive by other software.
720 (let (case-fold-search)
721 (cond ((looking-at "[P]K\003\004") 'zip)
722 ((looking-at "..-l[hz][0-9ds]-") 'lzh)
723 ((looking-at "....................[\334]\247\304\375") 'zoo)
724 ((and (looking-at "\C-z") ; signature too simple, IMHO
725 (string-match "\\.[aA][rR][cC]$"
726 (or buffer-file-name (buffer-name))))
727 'arc)
728 ;; This pattern modelled on the BSD/GNU+Linux `file' command.
729 ;; Have seen capital "LHA's", and file has lower case "LHa's" too.
730 ;; Note this regexp is also in archive-exe-p.
731 ((looking-at "MZ\\(.\\|\n\\)\\{34\\}LH[aA]'s SFX ") 'lzh-exe)
732 ((looking-at "Rar!") 'rar)
733 ((looking-at "!<arch>\n") 'ar)
734 ((and (looking-at "MZ")
735 (re-search-forward "Rar!" (+ (point) 100000) t))
736 'rar-exe)
737 (t (error "Buffer format not recognized")))))
738 ;; -------------------------------------------------------------------------
740 (defun archive-desummarize ()
741 (let ((inhibit-read-only t)
742 (modified (buffer-modified-p)))
743 (widen)
744 (delete-region (point-min) archive-proper-file-start)
745 (restore-buffer-modified-p modified)))
748 (defun archive-summarize (&optional shut-up)
749 "Parse the contents of the archive file in the current buffer.
750 Place a dired-like listing on the front;
751 then narrow to it, so that only that listing
752 is visible (and the real data of the buffer is hidden).
753 Optional argument SHUT-UP, if non-nil, means don't print messages
754 when parsing the archive."
755 (widen)
756 (let ((inhibit-read-only t))
757 (setq archive-proper-file-start (copy-marker (point-min) t))
758 (set (make-local-variable 'change-major-mode-hook) 'archive-desummarize)
759 (or shut-up
760 (message "Parsing archive file..."))
761 (buffer-disable-undo (current-buffer))
762 (setq archive-files (funcall (archive-name "summarize")))
763 (or shut-up
764 (message "Parsing archive file...done."))
765 (setq archive-proper-file-start (point-marker))
766 (narrow-to-region (point-min) (point))
767 (set-buffer-modified-p nil)
768 (buffer-enable-undo))
769 (goto-char archive-file-list-start)
770 (archive-next-line 0))
772 (defun archive-resummarize ()
773 "Recreate the contents listing of an archive."
774 (let ((no (archive-get-lineno)))
775 (archive-desummarize)
776 (archive-summarize t)
777 (goto-char archive-file-list-start)
778 (archive-next-line no)))
780 (defun archive-summarize-files (files)
781 "Insert a description of a list of files annotated with proper mouse face."
782 (setq archive-file-list-start (point-marker))
783 (setq archive-file-name-indent (if files (aref (car files) 1) 0))
784 ;; We don't want to do an insert for each element since that takes too
785 ;; long when the archive -- which has to be moved in memory -- is large.
786 (insert
787 (apply
788 (function concat)
789 (mapcar
790 (lambda (fil)
791 ;; Using `concat' here copies the text also, so we can add
792 ;; properties without problems.
793 (let ((text (concat (aref fil 0) "\n")))
794 (if (featurep 'xemacs)
795 () ; out of luck
796 (add-text-properties
797 (aref fil 1) (aref fil 2)
798 '(mouse-face highlight
799 help-echo "mouse-2: extract this file into a buffer")
800 text))
801 text))
802 files)))
803 (setq archive-file-list-end (point-marker)))
805 (defun archive-alternate-display ()
806 "Toggle alternative display.
807 To avoid very long lines archive mode does not show all information.
808 This function changes the set of information shown for each files."
809 (interactive)
810 (setq archive-alternate-display (not archive-alternate-display))
811 (archive-resummarize))
812 ;; -------------------------------------------------------------------------
813 ;;; Section: Local archive copy handling
815 (defun archive-unique-fname (fname dir)
816 "Make sure a file FNAME can be created uniquely in directory DIR.
818 If FNAME can be uniquely created in DIR, it is returned unaltered.
819 If FNAME is something our underlying filesystem can't grok, or if another
820 file by that name already exists in DIR, a unique new name is generated
821 using `make-temp-file', and the generated name is returned."
822 (let ((fullname (expand-file-name fname dir))
823 (alien (string-match file-name-invalid-regexp fname)))
824 (if (or alien (file-exists-p fullname))
825 (make-temp-file
826 (expand-file-name
827 (if (if (fboundp 'msdos-long-file-names)
828 (not (msdos-long-file-names)))
829 "am"
830 "arc-mode.")
831 dir))
832 fullname)))
834 (defun archive-maybe-copy (archive)
835 (let ((coding-system-for-write 'no-conversion))
836 (if archive-remote
837 (let ((start (point-max))
838 ;; Sometimes ARCHIVE is invalid while its actual name, as
839 ;; recorded in its parent archive, is not. For example, an
840 ;; archive bar.zip inside another archive foo.zip gets a name
841 ;; "foo.zip:bar.zip", which is invalid on DOS/Windows.
842 ;; So use the actual name if available.
843 (archive-name
844 (or (and archive-subfile-mode (aref archive-subfile-mode 0))
845 archive)))
846 (setq archive-local-name
847 (archive-unique-fname archive-name archive-tmpdir))
848 ;; Maked sure all the leading directories in
849 ;; archive-local-name exist under archive-tmpdir, so that
850 ;; the directory structure recorded in the archive is
851 ;; reconstructed in the temporary directory.
852 (make-directory (file-name-directory archive-local-name) t)
853 (save-restriction
854 (widen)
855 (write-region start (point-max) archive-local-name nil 'nomessage))
856 archive-local-name)
857 (if (buffer-modified-p) (save-buffer))
858 archive)))
860 (defun archive-maybe-update (unchanged)
861 (if archive-remote
862 (let ((name archive-local-name)
863 (modified (buffer-modified-p))
864 (coding-system-for-read 'no-conversion)
865 (lno (archive-get-lineno))
866 (inhibit-read-only t))
867 (if unchanged nil
868 (setq archive-files nil)
869 (erase-buffer)
870 (insert-file-contents name)
871 (archive-mode t)
872 (goto-char archive-file-list-start)
873 (archive-next-line lno))
874 (archive-delete-local name)
875 (if (not unchanged)
876 (message
877 "Buffer `%s' must be saved for changes to take effect"
878 (buffer-name (current-buffer))))
879 (set-buffer-modified-p (or modified (not unchanged))))))
881 (defun archive-delete-local (name)
882 "Delete file NAME and its parents up to and including `archive-tmpdir'."
883 (let ((again t)
884 (top (directory-file-name (file-name-as-directory archive-tmpdir))))
885 (condition-case nil
886 (delete-file name)
887 (error nil))
888 (while again
889 (setq name (directory-file-name (file-name-directory name)))
890 (condition-case nil
891 (delete-directory name)
892 (error nil))
893 (if (string= name top) (setq again nil)))))
894 ;; -------------------------------------------------------------------------
895 ;;; Section: Member extraction
897 (defun archive-try-jka-compr ()
898 (when (and auto-compression-mode
899 (jka-compr-get-compression-info buffer-file-name))
900 (let* ((basename (file-name-nondirectory buffer-file-name))
901 (tmpname (if (string-match ":\\([^:]+\\)\\'" basename)
902 (match-string 1 basename) basename))
903 (tmpfile (make-temp-file (file-name-sans-extension tmpname)
905 (file-name-extension tmpname 'period))))
906 (unwind-protect
907 (progn
908 (let ((coding-system-for-write 'no-conversion)
909 ;; Don't re-compress this data just before decompressing it.
910 (jka-compr-inhibit t))
911 (write-region (point-min) (point-max) tmpfile nil 'quiet))
912 (erase-buffer)
913 (let ((coding-system-for-read 'no-conversion))
914 (insert-file-contents tmpfile)))
915 (delete-file tmpfile)))))
917 (defun archive-file-name-handler (op &rest args)
918 (or (eq op 'file-exists-p)
919 (let ((file-name-handler-alist nil))
920 (apply op args))))
922 (defun archive-set-buffer-as-visiting-file (filename)
923 "Set the current buffer as if it were visiting FILENAME."
924 (save-excursion
925 (goto-char (point-min))
926 (let ((buffer-undo-list t)
927 (coding
928 (or coding-system-for-read
929 (and set-auto-coding-function
930 (save-excursion
931 (funcall set-auto-coding-function
932 filename (- (point-max) (point-min)))))
933 ;; dos-w32.el defines the function
934 ;; find-buffer-file-type-coding-system for DOS/Windows
935 ;; systems which preserves the coding-system of existing files.
936 ;; (That function is called via file-coding-system-alist.)
937 ;; Here, we want it to act as if the extracted file existed.
938 ;; The following let-binding of file-name-handler-alist forces
939 ;; find-file-not-found-set-buffer-file-coding-system to ignore
940 ;; the file's name (see dos-w32.el).
941 (let ((file-name-handler-alist
942 '(("" . archive-file-name-handler))))
943 (car (find-operation-coding-system
944 'insert-file-contents
945 (cons filename (current-buffer)) t))))))
946 (unless (or coding-system-for-read
947 enable-multibyte-characters)
948 (setq coding
949 (coding-system-change-text-conversion coding 'raw-text)))
950 (unless (memq coding '(nil no-conversion))
951 (decode-coding-region (point-min) (point-max) coding)
952 (setq last-coding-system-used coding))
953 (set-buffer-modified-p nil)
954 (kill-local-variable 'buffer-file-coding-system)
955 (after-insert-file-set-coding (- (point-max) (point-min))))))
957 (define-obsolete-function-alias 'archive-mouse-extract 'archive-extract "22.1")
959 (defun archive-extract (&optional other-window-p event)
960 "In archive mode, extract this entry of the archive into its own buffer."
961 (interactive (list nil last-input-event))
962 (if event (posn-set-point (event-end event)))
963 (let* ((view-p (eq other-window-p 'view))
964 (descr (archive-get-descr))
965 (ename (aref descr 0))
966 (iname (aref descr 1))
967 (archive-buffer (current-buffer))
968 (arcdir default-directory)
969 (archive (buffer-file-name))
970 (arcname (file-name-nondirectory archive))
971 (bufname (concat (file-name-nondirectory iname) " (" arcname ")"))
972 (extractor (archive-name "extract"))
973 ;; Members with file names which aren't valid for the
974 ;; underlying filesystem, are treated as read-only.
975 (read-only-p (or archive-read-only
976 view-p
977 (string-match file-name-invalid-regexp ename)))
978 (arcfilename (expand-file-name (concat arcname ":" iname)))
979 (buffer (get-buffer bufname))
980 (just-created nil)
981 (file-name-coding archive-file-name-coding-system))
982 (if (and buffer
983 (string= (buffer-file-name buffer) arcfilename))
985 (setq archive (archive-maybe-copy archive))
986 (setq bufname (generate-new-buffer-name bufname))
987 (setq buffer (get-buffer-create bufname))
988 (setq just-created t)
989 (with-current-buffer buffer
990 (setq buffer-file-name arcfilename)
991 (setq buffer-file-truename
992 (abbreviate-file-name buffer-file-name))
993 ;; Set the default-directory to the dir of the superior buffer.
994 (setq default-directory arcdir)
995 (make-local-variable 'archive-superior-buffer)
996 (setq archive-superior-buffer archive-buffer)
997 (add-hook 'write-file-functions 'archive-write-file-member nil t)
998 (setq archive-subfile-mode descr)
999 (setq archive-file-name-coding-system file-name-coding)
1000 (if (and
1001 (null
1002 (let (;; We may have to encode file name arguement for
1003 ;; external programs.
1004 (coding-system-for-write
1005 (and enable-multibyte-characters
1006 archive-file-name-coding-system))
1007 ;; We read an archive member by no-conversion at
1008 ;; first, then decode appropriately by calling
1009 ;; archive-set-buffer-as-visiting-file later.
1010 (coding-system-for-read 'no-conversion))
1011 (condition-case err
1012 (if (fboundp extractor)
1013 (funcall extractor archive ename)
1014 (archive-*-extract archive ename
1015 (symbol-value extractor)))
1016 (error
1017 (ding (message "%s" (error-message-string err)))
1018 nil))))
1019 just-created)
1020 (progn
1021 (set-buffer-modified-p nil)
1022 (kill-buffer buffer))
1023 (archive-try-jka-compr) ;Pretty ugly hack :-(
1024 (archive-set-buffer-as-visiting-file ename)
1025 (goto-char (point-min))
1026 (rename-buffer bufname)
1027 (setq buffer-read-only read-only-p)
1028 (setq buffer-undo-list nil)
1029 (set-buffer-modified-p nil)
1030 (setq buffer-saved-size (buffer-size))
1031 (normal-mode)
1032 ;; Just in case an archive occurs inside another archive.
1033 (when (derived-mode-p 'archive-mode)
1034 (setq archive-remote t)
1035 (if read-only-p (setq archive-read-only t))
1036 ;; We will write out the archive ourselves if it is
1037 ;; part of another archive.
1038 (remove-hook 'write-contents-functions 'archive-write-file t))
1039 (run-hooks 'archive-extract-hooks)
1040 (if archive-read-only
1041 (message "Note: altering this archive is not implemented."))))
1042 (archive-maybe-update t))
1043 (or (not (buffer-name buffer))
1044 (cond
1045 (view-p (view-buffer
1046 buffer (and just-created 'kill-buffer-if-not-modified)))
1047 ((eq other-window-p 'display) (display-buffer buffer))
1048 (other-window-p (switch-to-buffer-other-window buffer))
1049 (t (switch-to-buffer buffer))))))
1051 (defun archive-*-extract (archive name command)
1052 (let* ((default-directory (file-name-as-directory archive-tmpdir))
1053 (tmpfile (expand-file-name (file-name-nondirectory name)
1054 default-directory))
1055 exit-status success)
1056 (make-directory (directory-file-name default-directory) t)
1057 (setq exit-status
1058 (apply 'call-process
1059 (car command)
1063 (append (cdr command) (list archive name))))
1064 (cond ((and (numberp exit-status) (= exit-status 0))
1065 (if (not (file-exists-p tmpfile))
1066 (ding (message "`%s': no such file or directory" tmpfile))
1067 (insert-file-contents tmpfile)
1068 (setq success t)))
1069 ((numberp exit-status)
1070 (ding
1071 (message "`%s' exited with status %d" (car command) exit-status)))
1072 ((stringp exit-status)
1073 (ding (message "`%s' aborted: %s" (car command) exit-status)))
1075 (ding (message "`%s' failed" (car command)))))
1076 (archive-delete-local tmpfile)
1077 success))
1079 (defun archive-extract-by-stdout (archive name command)
1080 (apply 'call-process
1081 (car command)
1085 (append (cdr command) (list archive name))))
1087 (defun archive-extract-other-window ()
1088 "In archive mode, find this member in another window."
1089 (interactive)
1090 (archive-extract t))
1092 (defun archive-display-other-window ()
1093 "In archive mode, display this member in another window."
1094 (interactive)
1095 (archive-extract 'display))
1097 (defun archive-view ()
1098 "In archive mode, view the member on this line."
1099 (interactive)
1100 (archive-extract 'view))
1102 (defun archive-add-new-member (arcbuf name)
1103 "Add current buffer to the archive in ARCBUF naming it NAME."
1104 (interactive
1105 (list (get-buffer
1106 (read-buffer "Buffer containing archive: "
1107 ;; Find first archive buffer and suggest that
1108 (let ((bufs (buffer-list)))
1109 (while (and bufs
1110 (not (with-current-buffer (car bufs)
1111 (derived-mode-p 'archive-mode))))
1112 (setq bufs (cdr bufs)))
1113 (if bufs
1114 (car bufs)
1115 (error "There are no archive buffers")))
1117 (read-string "File name in archive: "
1118 (if buffer-file-name
1119 (file-name-nondirectory buffer-file-name)
1120 ""))))
1121 (with-current-buffer arcbuf
1122 (or (eq major-mode 'archive-mode)
1123 (error "Buffer is not an archive buffer"))
1124 (if archive-read-only
1125 (error "Archive is read-only")))
1126 (if (eq arcbuf (current-buffer))
1127 (error "An archive buffer cannot be added to itself"))
1128 (if (string= name "")
1129 (error "Archive members may not be given empty names"))
1130 (let ((func (with-current-buffer arcbuf
1131 (archive-name "add-new-member")))
1132 (membuf (current-buffer)))
1133 (if (fboundp func)
1134 (with-current-buffer arcbuf
1135 (funcall func buffer-file-name membuf name))
1136 (error "Adding a new member is not supported for this archive type"))))
1137 ;; -------------------------------------------------------------------------
1138 ;;; Section: IO stuff
1140 (defun archive-write-file-member ()
1141 (save-excursion
1142 (save-restriction
1143 (message "Updating archive...")
1144 (widen)
1145 (let ((writer (with-current-buffer archive-superior-buffer
1146 (archive-name "write-file-member")))
1147 (archive (with-current-buffer archive-superior-buffer
1148 (archive-maybe-copy (buffer-file-name)))))
1149 (if (fboundp writer)
1150 (funcall writer archive archive-subfile-mode)
1151 (archive-*-write-file-member archive
1152 archive-subfile-mode
1153 (symbol-value writer)))
1154 (set-buffer-modified-p nil)
1155 (message "Updating archive...done"))
1156 (set-buffer archive-superior-buffer)
1157 (if (not archive-remote) (revert-buffer) (archive-maybe-update nil))))
1158 ;; Restore the value of last-coding-system-used, so that basic-save-buffer
1159 ;; won't reset the coding-system of this archive member.
1160 (if (local-variable-p 'archive-member-coding-system)
1161 (setq last-coding-system-used archive-member-coding-system))
1164 (defun archive-*-write-file-member (archive descr command)
1165 (let* ((ename (aref descr 0))
1166 (tmpfile (expand-file-name ename archive-tmpdir))
1167 (top (directory-file-name (file-name-as-directory archive-tmpdir)))
1168 (default-directory (file-name-as-directory top)))
1169 (unwind-protect
1170 (progn
1171 (make-directory (file-name-directory tmpfile) t)
1172 ;; If the member is itself an archive, write it without
1173 ;; the dired-like listing we created.
1174 (if (eq major-mode 'archive-mode)
1175 (archive-write-file tmpfile)
1176 (write-region (point-min) (point-max) tmpfile nil 'nomessage))
1177 ;; basic-save-buffer needs last-coding-system-used to have
1178 ;; the value used to write the file, so save it before any
1179 ;; further processing clobbers it (we restore it in
1180 ;; archive-write-file-member, above).
1181 (setq archive-member-coding-system last-coding-system-used)
1182 (if (aref descr 3)
1183 ;; Set the file modes, but make sure we can read it.
1184 (set-file-modes tmpfile (logior ?\400 (aref descr 3))))
1185 (setq ename
1186 (encode-coding-string ename archive-file-name-coding-system))
1187 (let* ((coding-system-for-write 'no-conversion)
1188 (exitcode (apply 'call-process
1189 (car command)
1193 (append (cdr command)
1194 (list archive ename)))))
1195 (if (equal exitcode 0)
1197 (error "Updating was unsuccessful (%S)" exitcode))))
1198 (archive-delete-local tmpfile))))
1200 (defun archive-write-file (&optional file)
1201 (save-excursion
1202 (let ((coding-system-for-write 'no-conversion))
1203 (write-region archive-proper-file-start (point-max)
1204 (or file buffer-file-name) nil t)
1205 (set-buffer-modified-p nil))
1207 ;; -------------------------------------------------------------------------
1208 ;;; Section: Marking and unmarking.
1210 (defun archive-flag-deleted (p &optional type)
1211 "In archive mode, mark this member to be deleted from the archive.
1212 With a prefix argument, mark that many files."
1213 (interactive "p")
1214 (or type (setq type ?D))
1215 (beginning-of-line)
1216 (let ((sign (if (>= p 0) +1 -1))
1217 (modified (buffer-modified-p))
1218 (inhibit-read-only t))
1219 (while (not (zerop p))
1220 (if (archive-get-descr t)
1221 (progn
1222 (delete-char 1)
1223 (insert type)))
1224 (forward-line sign)
1225 (setq p (- p sign)))
1226 (restore-buffer-modified-p modified))
1227 (archive-next-line 0))
1229 (defun archive-unflag (p)
1230 "In archive mode, un-mark this member if it is marked to be deleted.
1231 With a prefix argument, un-mark that many files forward."
1232 (interactive "p")
1233 (archive-flag-deleted p ?\s))
1235 (defun archive-unflag-backwards (p)
1236 "In archive mode, un-mark this member if it is marked to be deleted.
1237 With a prefix argument, un-mark that many members backward."
1238 (interactive "p")
1239 (archive-flag-deleted (- p) ?\s))
1241 (defun archive-unmark-all-files ()
1242 "Remove all marks."
1243 (interactive)
1244 (let ((modified (buffer-modified-p))
1245 (inhibit-read-only t))
1246 (save-excursion
1247 (goto-char archive-file-list-start)
1248 (while (< (point) archive-file-list-end)
1249 (or (= (following-char) ?\s)
1250 (progn (delete-char 1) (insert ?\s)))
1251 (forward-line 1)))
1252 (restore-buffer-modified-p modified)))
1254 (defun archive-mark (p)
1255 "In archive mode, mark this member for group operations.
1256 With a prefix argument, mark that many members.
1257 Use \\[archive-unmark-all-files] to remove all marks."
1258 (interactive "p")
1259 (archive-flag-deleted p ?*))
1261 (defun archive-get-marked (mark &optional default)
1262 (let (files)
1263 (save-excursion
1264 (goto-char archive-file-list-start)
1265 (while (< (point) archive-file-list-end)
1266 (if (= (following-char) mark)
1267 (setq files (cons (archive-get-descr) files)))
1268 (forward-line 1)))
1269 (or (nreverse files)
1270 (and default
1271 (list (archive-get-descr))))))
1272 ;; -------------------------------------------------------------------------
1273 ;;; Section: Operate
1275 (defun archive-next-line (p)
1276 (interactive "p")
1277 (forward-line p)
1278 (or (eobp)
1279 (forward-char archive-file-name-indent)))
1281 (defun archive-previous-line (p)
1282 (interactive "p")
1283 (archive-next-line (- p)))
1285 (defun archive-chmod-entry (new-mode)
1286 "Change the protection bits associated with all marked or this member.
1287 The new protection bits can either be specified as an octal number or
1288 as a relative change like \"g+rw\" as for chmod(2)."
1289 (interactive "sNew mode (octal or relative): ")
1290 (if archive-read-only (error "Archive is read-only"))
1291 (let ((func (archive-name "chmod-entry")))
1292 (if (fboundp func)
1293 (progn
1294 (funcall func new-mode (archive-get-marked ?* t))
1295 (archive-resummarize))
1296 (error "Setting mode bits is not supported for this archive type"))))
1298 (defun archive-chown-entry (new-uid)
1299 "Change the owner of all marked or this member."
1300 (interactive "nNew uid: ")
1301 (if archive-read-only (error "Archive is read-only"))
1302 (let ((func (archive-name "chown-entry")))
1303 (if (fboundp func)
1304 (progn
1305 (funcall func new-uid (archive-get-marked ?* t))
1306 (archive-resummarize))
1307 (error "Setting owner is not supported for this archive type"))))
1309 (defun archive-chgrp-entry (new-gid)
1310 "Change the group of all marked or this member."
1311 (interactive "nNew gid: ")
1312 (if archive-read-only (error "Archive is read-only"))
1313 (let ((func (archive-name "chgrp-entry")))
1314 (if (fboundp func)
1315 (progn
1316 (funcall func new-gid (archive-get-marked ?* t))
1317 (archive-resummarize))
1318 (error "Setting group is not supported for this archive type"))))
1320 (defun archive-expunge ()
1321 "Do the flagged deletions."
1322 (interactive)
1323 (let (files)
1324 (save-excursion
1325 (goto-char archive-file-list-start)
1326 (while (< (point) archive-file-list-end)
1327 (if (= (following-char) ?D)
1328 (setq files (cons (aref (archive-get-descr) 0) files)))
1329 (forward-line 1)))
1330 (setq files (nreverse files))
1331 (and files
1332 (or (not archive-read-only)
1333 (error "Archive is read-only"))
1334 (or (yes-or-no-p (format "Really delete %d member%s? "
1335 (length files)
1336 (if (null (cdr files)) "" "s")))
1337 (error "Operation aborted"))
1338 (let ((archive (archive-maybe-copy (buffer-file-name)))
1339 (expunger (archive-name "expunge")))
1340 (if (fboundp expunger)
1341 (funcall expunger archive files)
1342 (archive-*-expunge archive files (symbol-value expunger)))
1343 (archive-maybe-update nil)
1344 (if archive-remote
1345 (archive-resummarize)
1346 (revert-buffer))))))
1348 (defun archive-*-expunge (archive files command)
1349 (apply 'call-process
1350 (car command)
1354 (append (cdr command) (cons archive files))))
1356 (defun archive-rename-entry (newname)
1357 "Change the name associated with this entry in the archive file."
1358 (interactive "sNew name: ")
1359 (if archive-read-only (error "Archive is read-only"))
1360 (if (string= newname "")
1361 (error "Archive members may not be given empty names"))
1362 (let ((func (archive-name "rename-entry"))
1363 (descr (archive-get-descr)))
1364 (if (fboundp func)
1365 (progn
1366 (funcall func
1367 (encode-coding-string newname
1368 archive-file-name-coding-system)
1369 descr)
1370 (archive-resummarize))
1371 (error "Renaming is not supported for this archive type"))))
1373 ;; Revert the buffer and recompute the dired-like listing.
1374 (defun archive-mode-revert (&optional no-auto-save no-confirm)
1375 (let ((no (archive-get-lineno)))
1376 (setq archive-files nil)
1377 (let ((revert-buffer-function nil)
1378 (coding-system-for-read 'no-conversion))
1379 (revert-buffer t t))
1380 (archive-mode)
1381 (goto-char archive-file-list-start)
1382 (archive-next-line no)))
1384 (defun archive-undo ()
1385 "Undo in an archive buffer.
1386 This doesn't recover lost files, it just undoes changes in the buffer itself."
1387 (interactive)
1388 (let ((inhibit-read-only t))
1389 (undo)))
1390 ;; -------------------------------------------------------------------------
1391 ;;; Section: Arc Archives
1393 (defun archive-arc-summarize ()
1394 (let ((p 1)
1395 (totalsize 0)
1396 (maxlen 8)
1397 files
1398 visual)
1399 (while (and (< (+ p 29) (point-max))
1400 (= (byte-after p) ?\C-z)
1401 (> (byte-after (1+ p)) 0))
1402 (let* ((namefld (buffer-substring (+ p 2) (+ p 2 13)))
1403 (fnlen (or (string-match "\0" namefld) 13))
1404 (efnname (decode-coding-string (substring namefld 0 fnlen)
1405 archive-file-name-coding-system))
1406 ;; Convert to float to avoid overflow for very large files.
1407 (csize (archive-l-e (+ p 15) 4 'float))
1408 (moddate (archive-l-e (+ p 19) 2))
1409 (modtime (archive-l-e (+ p 21) 2))
1410 (ucsize (archive-l-e (+ p 25) 4 'float))
1411 (fiddle (string= efnname (upcase efnname)))
1412 (ifnname (if fiddle (downcase efnname) efnname))
1413 (text (format " %8.0f %-11s %-8s %s"
1414 ucsize
1415 (archive-dosdate moddate)
1416 (archive-dostime modtime)
1417 ifnname)))
1418 (setq maxlen (max maxlen fnlen)
1419 totalsize (+ totalsize ucsize)
1420 visual (cons (vector text
1421 (- (length text) (length ifnname))
1422 (length text))
1423 visual)
1424 files (cons (vector efnname ifnname fiddle nil (1- p))
1425 files)
1426 ;; p needs to stay an integer, since we use it in char-after
1427 ;; above. Passing through `round' limits the compressed size
1428 ;; to most-positive-fixnum, but if the compressed size exceeds
1429 ;; that, we cannot visit the archive anyway.
1430 p (+ p 29 (round csize)))))
1431 (goto-char (point-min))
1432 (let ((dash (concat "- -------- ----------- -------- "
1433 (make-string maxlen ?-)
1434 "\n")))
1435 (insert "M Length Date Time File\n"
1436 dash)
1437 (archive-summarize-files (nreverse visual))
1438 (insert dash
1439 (format " %8.0f %d file%s"
1440 totalsize
1441 (length files)
1442 (if (= 1 (length files)) "" "s"))
1443 "\n"))
1444 (apply 'vector (nreverse files))))
1446 (defun archive-arc-rename-entry (newname descr)
1447 (if (string-match "[:\\\\/]" newname)
1448 (error "File names in arc files must not contain a directory component"))
1449 (if (> (length newname) 12)
1450 (error "File names in arc files are limited to 12 characters"))
1451 (let ((name (concat newname (substring "\0\0\0\0\0\0\0\0\0\0\0\0\0"
1452 (length newname))))
1453 (inhibit-read-only t))
1454 (save-restriction
1455 (save-excursion
1456 (widen)
1457 (goto-char (+ archive-proper-file-start (aref descr 4) 2))
1458 (delete-char 13)
1459 (insert-unibyte name)))))
1460 ;; -------------------------------------------------------------------------
1461 ;;; Section: Lzh Archives
1463 (defun archive-lzh-summarize (&optional start)
1464 (let ((p (or start 1)) ;; 1 for .lzh, something further on for .exe
1465 (totalsize 0)
1466 (maxlen 8)
1467 files
1468 visual)
1469 (while (progn (goto-char p) ;beginning of a base header.
1470 (looking-at "\\(.\\|\n\\)\\(.\\|\n\\)-l[hz][0-9ds]-"))
1471 (let* ((hsize (byte-after p)) ;size of the base header (level 0 and 1)
1472 ;; Convert to float to avoid overflow for very large files.
1473 (csize (archive-l-e (+ p 7) 4 'float)) ;size of a compressed file to follow (level 0 and 2),
1474 ;size of extended headers + the compressed file to follow (level 1).
1475 (ucsize (archive-l-e (+ p 11) 4 'float)) ;size of an uncompressed file.
1476 (time1 (archive-l-e (+ p 15) 2)) ;date/time (MSDOS format in level 0, 1 headers
1477 (time2 (archive-l-e (+ p 17) 2)) ;and UNIX format in level 2 header.)
1478 (hdrlvl (byte-after (+ p 20))) ;header level
1479 thsize ;total header size (base + extensions)
1480 fnlen efnname osid fiddle ifnname width p2
1481 neh ;beginning of next extension header (level 1 and 2)
1482 mode modestr uid gid text dir prname
1483 gname uname modtime moddate)
1484 (if (= hdrlvl 3) (error "can't handle lzh level 3 header type"))
1485 (when (or (= hdrlvl 0) (= hdrlvl 1))
1486 (setq fnlen (byte-after (+ p 21))) ;filename length
1487 (setq efnname (let ((str (buffer-substring (+ p 22) (+ p 22 fnlen)))) ;filename from offset 22
1488 (decode-coding-string
1489 str archive-file-name-coding-system)))
1490 (setq p2 (+ p 22 fnlen))) ;
1491 (if (= hdrlvl 1)
1492 (setq neh (+ p2 3)) ;specific to level 1 header
1493 (if (= hdrlvl 2)
1494 (setq neh (+ p 24)))) ;specific to level 2 header
1495 (if neh ;if level 1 or 2 we expect extension headers to follow
1496 (let* ((ehsize (archive-l-e neh 2)) ;size of the extension header
1497 (etype (byte-after (+ neh 2)))) ;extension type
1498 (while (not (= ehsize 0))
1499 (cond
1500 ((= etype 1) ;file name
1501 (let ((i (+ neh 3)))
1502 (while (< i (+ neh ehsize))
1503 (setq efnname (concat efnname (char-to-string (byte-after i))))
1504 (setq i (1+ i)))))
1505 ((= etype 2) ;directory name
1506 (let ((i (+ neh 3)))
1507 (while (< i (+ neh ehsize))
1508 (setq dir (concat dir
1509 (if (= (byte-after i)
1510 255)
1512 (char-to-string
1513 (char-after i)))))
1514 (setq i (1+ i)))))
1515 ((= etype 80) ;Unix file permission
1516 (setq mode (archive-l-e (+ neh 3) 2)))
1517 ((= etype 81) ;UNIX file group/user ID
1518 (progn (setq uid (archive-l-e (+ neh 3) 2))
1519 (setq gid (archive-l-e (+ neh 5) 2))))
1520 ((= etype 82) ;UNIX file group name
1521 (let ((i (+ neh 3)))
1522 (while (< i (+ neh ehsize))
1523 (setq gname (concat gname (char-to-string (char-after i))))
1524 (setq i (1+ i)))))
1525 ((= etype 83) ;UNIX file user name
1526 (let ((i (+ neh 3)))
1527 (while (< i (+ neh ehsize))
1528 (setq uname (concat uname (char-to-string (char-after i))))
1529 (setq i (1+ i)))))
1531 (setq neh (+ neh ehsize))
1532 (setq ehsize (archive-l-e neh 2))
1533 (setq etype (byte-after (+ neh 2))))
1534 ;;get total header size for level 1 and 2 headers
1535 (setq thsize (- neh p))))
1536 (if (= hdrlvl 0) ;total header size
1537 (setq thsize hsize))
1538 ;; OS ID field not present in level 0 header, use code 0 "generic"
1539 ;; in that case as per lha program header.c get_header()
1540 (setq osid (cond ((= hdrlvl 0) 0)
1541 ((= hdrlvl 1) (char-after (+ p 22 fnlen 2)))
1542 ((= hdrlvl 2) (char-after (+ p 23)))))
1543 ;; Filename fiddling must follow the lha program, otherwise the name
1544 ;; passed to "lha pq" etc won't match (which for an extract silently
1545 ;; results in no output). As of version 1.14i it goes from the OS ID,
1546 ;; - For 'M' MSDOS: msdos_to_unix_filename() downcases always, and
1547 ;; converts "\" to "/".
1548 ;; - For 0 generic: generic_to_unix_filename() downcases if there's
1549 ;; no lower case already present, and converts "\" to "/".
1550 ;; - For 'm' MacOS: macos_to_unix_filename() changes "/" to ":" and
1551 ;; ":" to "/"
1552 (setq fiddle (cond ((= ?M osid) t)
1553 ((= 0 osid) (string= efnname (upcase efnname)))))
1554 (setq ifnname (if fiddle (downcase efnname) efnname))
1555 (setq prname (if dir (concat dir ifnname) ifnname))
1556 (setq width (if prname (string-width prname) 0))
1557 (setq modestr (if mode (archive-int-to-mode mode) "??????????"))
1558 (setq moddate (if (= hdrlvl 2)
1559 (archive-unixdate time1 time2) ;level 2 header in UNIX format
1560 (archive-dosdate time2))) ;level 0 and 1 header in DOS format
1561 (setq modtime (if (= hdrlvl 2)
1562 (archive-unixtime time1 time2)
1563 (archive-dostime time1)))
1564 (setq text (if archive-alternate-display
1565 (format " %8.0f %5S %5S %s"
1566 ucsize
1567 (or uid "?")
1568 (or gid "?")
1569 ifnname)
1570 (format " %10s %8.0f %-11s %-8s %s"
1571 modestr
1572 ucsize
1573 moddate
1574 modtime
1575 prname)))
1576 (setq maxlen (max maxlen width)
1577 totalsize (+ totalsize ucsize)
1578 visual (cons (vector text
1579 (- (length text) (length prname))
1580 (length text))
1581 visual)
1582 files (cons (vector prname ifnname fiddle mode (1- p))
1583 files))
1584 (cond ((= hdrlvl 1)
1585 ;; p needs to stay an integer, since we use it in goto-char
1586 ;; above. Passing through `round' limits the compressed size
1587 ;; to most-positive-fixnum, but if the compressed size exceeds
1588 ;; that, we cannot visit the archive anyway.
1589 (setq p (+ p hsize 2 (round csize))))
1590 ((or (= hdrlvl 2) (= hdrlvl 0))
1591 (setq p (+ p thsize 2 (round csize)))))
1593 (goto-char (point-min))
1594 (let ((dash (concat (if archive-alternate-display
1595 "- -------- ----- ----- "
1596 "- ---------- -------- ----------- -------- ")
1597 (make-string maxlen ?-)
1598 "\n"))
1599 (header (if archive-alternate-display
1600 "M Length Uid Gid File\n"
1601 "M Filemode Length Date Time File\n"))
1602 (sumline (if archive-alternate-display
1603 " %8.0f %d file%s"
1604 " %8.0f %d file%s")))
1605 (insert header dash)
1606 (archive-summarize-files (nreverse visual))
1607 (insert dash
1608 (format sumline
1609 totalsize
1610 (length files)
1611 (if (= 1 (length files)) "" "s"))
1612 "\n"))
1613 (apply 'vector (nreverse files))))
1615 (defconst archive-lzh-alternate-display t)
1617 (defun archive-lzh-extract (archive name)
1618 (archive-extract-by-stdout archive name archive-lzh-extract))
1620 (defun archive-lzh-resum (p count)
1621 (let ((sum 0))
1622 (while (> count 0)
1623 (setq count (1- count)
1624 sum (+ sum (byte-after p))
1625 p (1+ p)))
1626 (logand sum 255)))
1628 (defun archive-lzh-rename-entry (newname descr)
1629 (save-restriction
1630 (save-excursion
1631 (widen)
1632 (let* ((p (+ archive-proper-file-start (aref descr 4)))
1633 (oldhsize (byte-after p))
1634 (oldfnlen (byte-after (+ p 21)))
1635 (newfnlen (length newname))
1636 (newhsize (+ oldhsize newfnlen (- oldfnlen)))
1637 (inhibit-read-only t))
1638 (if (> newhsize 255)
1639 (error "The file name is too long"))
1640 (goto-char (+ p 21))
1641 (delete-char (1+ oldfnlen))
1642 (insert-unibyte newfnlen newname)
1643 (goto-char p)
1644 (delete-char 2)
1645 (insert-unibyte newhsize (archive-lzh-resum p newhsize))))))
1647 (defun archive-lzh-ogm (newval files errtxt ofs)
1648 (save-excursion
1649 (save-restriction
1650 (widen)
1651 (dolist (fil files)
1652 (let* ((p (+ archive-proper-file-start (aref fil 4)))
1653 (hsize (byte-after p))
1654 (fnlen (byte-after (+ p 21)))
1655 (p2 (+ p 22 fnlen))
1656 (creator (if (>= (- hsize fnlen) 24) (byte-after (+ p2 2)) 0))
1657 (inhibit-read-only t))
1658 (if (= creator ?U)
1659 (progn
1660 (or (numberp newval)
1661 (setq newval (funcall newval (archive-l-e (+ p2 ofs) 2))))
1662 (goto-char (+ p2 ofs))
1663 (delete-char 2)
1664 (insert-unibyte (logand newval 255) (lsh newval -8))
1665 (goto-char (1+ p))
1666 (delete-char 1)
1667 (insert-unibyte (archive-lzh-resum (1+ p) hsize)))
1668 (message "Member %s does not have %s field"
1669 (aref fil 1) errtxt)))))))
1671 (defun archive-lzh-chown-entry (newuid files)
1672 (archive-lzh-ogm newuid files "an uid" 10))
1674 (defun archive-lzh-chgrp-entry (newgid files)
1675 (archive-lzh-ogm newgid files "a gid" 12))
1677 (defun archive-lzh-chmod-entry (newmode files)
1678 (archive-lzh-ogm
1679 ;; This should work even though newmode will be dynamically accessed.
1680 (lambda (old) (archive-calc-mode old newmode t))
1681 files "a unix-style mode" 8))
1683 ;; -------------------------------------------------------------------------
1684 ;;; Section: Lzh Self-Extracting .exe Archives
1686 ;; No support for modifying these files. It looks like the lha for unix
1687 ;; program (as of version 1.14i) can't create or retain the DOS exe part.
1688 ;; If you do an "lha a" on a .exe for instance it renames and writes to a
1689 ;; plain .lzh.
1691 (defun archive-lzh-exe-summarize ()
1692 "Summarize the contents of an LZH self-extracting exe, for `archive-mode'."
1694 ;; Skip the initial executable code part and apply archive-lzh-summarize
1695 ;; to the archive part proper. The "-lh5-" etc regexp here for the start
1696 ;; is the same as in archive-find-type.
1698 ;; The lha program (version 1.14i) does this in skip_msdos_sfx1_code() by
1699 ;; a similar scan. It looks for "..-l..-" plus for level 0 or 1 a test of
1700 ;; the header checksum, or level 2 a test of the "attribute" and size.
1702 (re-search-forward "..-l[hz][0-9ds]-" nil)
1703 (archive-lzh-summarize (match-beginning 0)))
1705 ;; `archive-lzh-extract' runs "lha pq", and that works for .exe as well as
1706 ;; .lzh files
1707 (defalias 'archive-lzh-exe-extract 'archive-lzh-extract
1708 "Extract a member from an LZH self-extracting exe, for `archive-mode'.")
1710 ;; -------------------------------------------------------------------------
1711 ;;; Section: Zip Archives
1713 (defun archive-zip-summarize ()
1714 (goto-char (- (point-max) (- 22 18)))
1715 (search-backward-regexp "[P]K\005\006")
1716 (let ((p (+ (point-min) (archive-l-e (+ (point) 16) 4)))
1717 (maxlen 8)
1718 (totalsize 0)
1719 files
1720 visual)
1721 (while (string= "PK\001\002" (buffer-substring p (+ p 4)))
1722 (let* ((creator (byte-after (+ p 5)))
1723 ;; (method (archive-l-e (+ p 10) 2))
1724 (modtime (archive-l-e (+ p 12) 2))
1725 (moddate (archive-l-e (+ p 14) 2))
1726 ;; Convert to float to avoid overflow for very large files.
1727 (ucsize (archive-l-e (+ p 24) 4 'float))
1728 (fnlen (archive-l-e (+ p 28) 2))
1729 (exlen (archive-l-e (+ p 30) 2))
1730 (fclen (archive-l-e (+ p 32) 2))
1731 (lheader (archive-l-e (+ p 42) 4))
1732 (efnname (let ((str (buffer-substring (+ p 46) (+ p 46 fnlen))))
1733 (decode-coding-string
1734 str archive-file-name-coding-system)))
1735 (isdir (and (= ucsize 0)
1736 (string= (file-name-nondirectory efnname) "")))
1737 (mode (cond ((memq creator '(2 3)) ; Unix + VMS
1738 (archive-l-e (+ p 40) 2))
1739 ((memq creator '(0 5 6 7 10 11 15)) ; Dos etc.
1740 (logior ?\444
1741 (if isdir (logior 16384 ?\111) 0)
1742 (if (zerop
1743 (logand 1 (byte-after (+ p 38))))
1744 ?\222 0)))
1745 (t nil)))
1746 (modestr (if mode (archive-int-to-mode mode) "??????????"))
1747 (fiddle (and archive-zip-case-fiddle
1748 (not (not (memq creator '(0 2 4 5 9))))
1749 (string= (upcase efnname) efnname)))
1750 (ifnname (if fiddle (downcase efnname) efnname))
1751 (width (string-width ifnname))
1752 (text (format " %10s %8.0f %-11s %-8s %s"
1753 modestr
1754 ucsize
1755 (archive-dosdate moddate)
1756 (archive-dostime modtime)
1757 ifnname)))
1758 (setq maxlen (max maxlen width)
1759 totalsize (+ totalsize ucsize)
1760 visual (cons (vector text
1761 (- (length text) (length ifnname))
1762 (length text))
1763 visual)
1764 files (cons (if isdir
1766 (vector efnname ifnname fiddle mode
1767 (list (1- p) lheader)))
1768 files)
1769 p (+ p 46 fnlen exlen fclen))))
1770 (goto-char (point-min))
1771 (let ((dash (concat "- ---------- -------- ----------- -------- "
1772 (make-string maxlen ?-)
1773 "\n")))
1774 (insert "M Filemode Length Date Time File\n"
1775 dash)
1776 (archive-summarize-files (nreverse visual))
1777 (insert dash
1778 (format " %8.0f %d file%s"
1779 totalsize
1780 (length files)
1781 (if (= 1 (length files)) "" "s"))
1782 "\n"))
1783 (apply 'vector (nreverse files))))
1785 (defun archive-zip-extract (archive name)
1786 (if (equal (car archive-zip-extract) "pkzip")
1787 (archive-*-extract archive name archive-zip-extract)
1788 (archive-extract-by-stdout archive name archive-zip-extract)))
1790 (defun archive-zip-write-file-member (archive descr)
1791 (archive-*-write-file-member
1792 archive
1793 descr
1794 (if (aref descr 2) archive-zip-update-case archive-zip-update)))
1796 (defun archive-zip-chmod-entry (newmode files)
1797 (save-restriction
1798 (save-excursion
1799 (widen)
1800 (dolist (fil files)
1801 (let* ((p (+ archive-proper-file-start (car (aref fil 4))))
1802 (creator (byte-after (+ p 5)))
1803 (oldmode (aref fil 3))
1804 (newval (archive-calc-mode oldmode newmode t))
1805 (inhibit-read-only t))
1806 (cond ((memq creator '(2 3)) ; Unix + VMS
1807 (goto-char (+ p 40))
1808 (delete-char 2)
1809 (insert-unibyte (logand newval 255) (lsh newval -8)))
1810 ((memq creator '(0 5 6 7 10 11 15)) ; Dos etc.
1811 (goto-char (+ p 38))
1812 (insert-unibyte (logior (logand (byte-after (point)) 254)
1813 (logand (logxor 1 (lsh newval -7)) 1)))
1814 (delete-char 1))
1815 (t (message "Don't know how to change mode for this member"))))
1816 ))))
1817 ;; -------------------------------------------------------------------------
1818 ;;; Section: Zoo Archives
1820 (defun archive-zoo-summarize ()
1821 (let ((p (1+ (archive-l-e 25 4)))
1822 (maxlen 8)
1823 (totalsize 0)
1824 files
1825 visual)
1826 (while (and (string= "\334\247\304\375" (buffer-substring p (+ p 4)))
1827 (> (archive-l-e (+ p 6) 4) 0))
1828 (let* ((next (1+ (archive-l-e (+ p 6) 4)))
1829 (moddate (archive-l-e (+ p 14) 2))
1830 (modtime (archive-l-e (+ p 16) 2))
1831 ;; Convert to float to avoid overflow for very large files.
1832 (ucsize (archive-l-e (+ p 20) 4 'float))
1833 (namefld (buffer-substring (+ p 38) (+ p 38 13)))
1834 (dirtype (byte-after (+ p 4)))
1835 (lfnlen (if (= dirtype 2) (byte-after (+ p 56)) 0))
1836 (ldirlen (if (= dirtype 2) (byte-after (+ p 57)) 0))
1837 (fnlen (or (string-match "\0" namefld) 13))
1838 (efnname (let ((str
1839 (concat
1840 (if (> ldirlen 0)
1841 (concat (buffer-substring
1842 (+ p 58 lfnlen)
1843 (+ p 58 lfnlen ldirlen -1))
1844 "/")
1846 (if (> lfnlen 0)
1847 (buffer-substring (+ p 58)
1848 (+ p 58 lfnlen -1))
1849 (substring namefld 0 fnlen)))))
1850 (decode-coding-string
1851 str archive-file-name-coding-system)))
1852 (fiddle (and (= lfnlen 0) (string= efnname (upcase efnname))))
1853 (ifnname (if fiddle (downcase efnname) efnname))
1854 (width (string-width ifnname))
1855 (text (format " %8.0f %-11s %-8s %s"
1856 ucsize
1857 (archive-dosdate moddate)
1858 (archive-dostime modtime)
1859 ifnname)))
1860 (setq maxlen (max maxlen width)
1861 totalsize (+ totalsize ucsize)
1862 visual (cons (vector text
1863 (- (length text) (length ifnname))
1864 (length text))
1865 visual)
1866 files (cons (vector efnname ifnname fiddle nil (1- p))
1867 files)
1868 p next)))
1869 (goto-char (point-min))
1870 (let ((dash (concat "- -------- ----------- -------- "
1871 (make-string maxlen ?-)
1872 "\n")))
1873 (insert "M Length Date Time File\n"
1874 dash)
1875 (archive-summarize-files (nreverse visual))
1876 (insert dash
1877 (format " %8.0f %d file%s"
1878 totalsize
1879 (length files)
1880 (if (= 1 (length files)) "" "s"))
1881 "\n"))
1882 (apply 'vector (nreverse files))))
1884 (defun archive-zoo-extract (archive name)
1885 (archive-extract-by-stdout archive name archive-zoo-extract))
1887 ;; -------------------------------------------------------------------------
1888 ;;; Section: Rar Archives
1890 (defun archive-rar-summarize (&optional file)
1891 ;; File is used internally for `archive-rar-exe-summarize'.
1892 (unless file (setq file buffer-file-name))
1893 (let* ((copy (file-local-copy file))
1894 (maxname 10)
1895 (maxsize 5)
1896 (files ()))
1897 (with-temp-buffer
1898 (call-process "unrar-free" nil t nil "--list" (or file copy))
1899 (if copy (delete-file copy))
1900 (goto-char (point-min))
1901 (re-search-forward "^-+\n")
1902 (while (looking-at (concat " \\(.*\\)\n" ;Name.
1903 ;; Size ; Packed.
1904 " +\\([0-9]+\\) +[0-9]+"
1905 ;; Ratio ; Date'
1906 " +\\([0-9%]+\\) +\\([-0-9]+\\)"
1907 ;; Time ; Attr.
1908 " +\\([0-9:]+\\) +......"
1909 ;; CRC; Meth ; Var.
1910 " +[0-9A-F]+ +[^ \n]+ +[0-9.]+\n"))
1911 (goto-char (match-end 0))
1912 (let ((name (match-string 1))
1913 (size (match-string 2)))
1914 (if (> (length name) maxname) (setq maxname (length name)))
1915 (if (> (length size) maxsize) (setq maxsize (length size)))
1916 (push (vector name name nil nil
1917 ;; Size, Ratio.
1918 size (match-string 3)
1919 ;; Date, Time.
1920 (match-string 4) (match-string 5))
1921 files))))
1922 (setq files (nreverse files))
1923 (goto-char (point-min))
1924 (let* ((format (format " %%s %%s %%%ds %%5s %%s" maxsize))
1925 (sep (format format "--------" "-----" (make-string maxsize ?-)
1926 "-----" ""))
1927 (column (length sep)))
1928 (insert (format format " Date " "Time " "Size " "Ratio" " Filename") "\n")
1929 (insert sep (make-string maxname ?-) "\n")
1930 (archive-summarize-files (mapcar (lambda (desc)
1931 (let ((text
1932 (format format
1933 (aref desc 6)
1934 (aref desc 7)
1935 (aref desc 4)
1936 (aref desc 5)
1937 (aref desc 1))))
1938 (vector text
1939 column
1940 (length text))))
1941 files))
1942 (insert sep (make-string maxname ?-) "\n")
1943 (apply 'vector files))))
1945 (defun archive-rar-extract (archive name)
1946 ;; unrar-free seems to have no way to extract to stdout or even to a file.
1947 (if (file-name-absolute-p name)
1948 ;; The code below assumes the name is relative and may do undesirable
1949 ;; things otherwise.
1950 (error "Can't extract files with non-relative names")
1951 (let ((dest (make-temp-file "arc-rar" 'dir)))
1952 (unwind-protect
1953 (progn
1954 (call-process "unrar-free" nil nil nil
1955 "--extract" archive name dest)
1956 (insert-file-contents-literally (expand-file-name name dest)))
1957 (delete-file (expand-file-name name dest))
1958 (while (file-name-directory name)
1959 (setq name (directory-file-name (file-name-directory name)))
1960 (delete-directory (expand-file-name name dest)))
1961 (delete-directory dest)))))
1963 ;;; Section: Rar self-extracting .exe archives.
1965 (defun archive-rar-exe-summarize ()
1966 (let ((tmpfile (make-temp-file "rarexe")))
1967 (unwind-protect
1968 (progn
1969 (goto-char (point-min))
1970 (re-search-forward "Rar!")
1971 (write-region (match-beginning 0) (point-max) tmpfile)
1972 (archive-rar-summarize tmpfile))
1973 (delete-file tmpfile))))
1975 (defun archive-rar-exe-extract (archive name)
1976 (let* ((tmpfile (make-temp-file "rarexe"))
1977 (buf (find-buffer-visiting archive))
1978 (tmpbuf (unless buf (generate-new-buffer " *rar-exe*"))))
1979 (unwind-protect
1980 (progn
1981 (with-current-buffer (or buf tmpbuf)
1982 (save-excursion
1983 (save-restriction
1984 (if buf
1985 ;; point-max unwidened is assumed to be the end of the
1986 ;; summary text and the beginning of the actual file data.
1987 (progn (goto-char (point-max)) (widen))
1988 (insert-file-contents-literally archive)
1989 (goto-char (point-min)))
1990 (re-search-forward "Rar!")
1991 (write-region (match-beginning 0) (point-max) tmpfile))))
1992 (archive-rar-extract tmpfile name))
1993 (if tmpbuf (kill-buffer tmpbuf))
1994 (delete-file tmpfile))))
1997 ;;; Section `ar' archives.
1999 ;; TODO: we currently only handle the basic format of ar archives,
2000 ;; not the GNU nor the BSD extensions. As it turns out, this is sufficient
2001 ;; for .deb packages.
2003 (autoload 'tar-grind-file-mode "tar-mode")
2005 (defconst archive-ar-file-header-re
2006 "\\(.\\{16\\}\\)\\([ 0-9]\\{12\\}\\)\\([ 0-9]\\{6\\}\\)\\([ 0-9]\\{6\\}\\)\\([ 0-7]\\{8\\}\\)\\([ 0-9]\\{10\\}\\)`\n")
2008 (defun archive-ar-summarize ()
2009 ;; File is used internally for `archive-rar-exe-summarize'.
2010 (let* ((maxname 10)
2011 (maxtime 16)
2012 (maxuser 5)
2013 (maxgroup 5)
2014 (maxmode 8)
2015 (maxsize 5)
2016 (files ()))
2017 (goto-char (point-min))
2018 (search-forward "!<arch>\n")
2019 (while (looking-at archive-ar-file-header-re)
2020 (let ((name (match-string 1))
2021 ;; Emacs will automatically use float here because those
2022 ;; timestamps don't fit in our ints.
2023 (time (string-to-number (match-string 2)))
2024 (user (match-string 3))
2025 (group (match-string 4))
2026 (mode (string-to-number (match-string 5) 8))
2027 (size (string-to-number (match-string 6))))
2028 ;; Move to the beginning of the data.
2029 (goto-char (match-end 0))
2030 (cond
2031 ((equal name "// ")
2032 ;; FIXME: todo
2033 nil)
2034 ((equal name "/ ")
2035 ;; FIXME: todo
2036 nil)
2038 (setq time
2039 (format-time-string
2040 "%Y-%m-%d %H:%M"
2041 (let ((high (truncate (/ time 65536))))
2042 (list high (truncate (- time (* 65536.0 high)))))))
2043 (setq name (substring name 0 (string-match "/? *\\'" name)))
2044 (setq user (substring user 0 (string-match " +\\'" user)))
2045 (setq group (substring group 0 (string-match " +\\'" group)))
2046 (setq mode (tar-grind-file-mode mode))
2047 ;; Move to the end of the data.
2048 (forward-char size) (if (eq ?\n (char-after)) (forward-char 1))
2049 (setq size (number-to-string size))
2050 (if (> (length name) maxname) (setq maxname (length name)))
2051 (if (> (length time) maxtime) (setq maxtime (length time)))
2052 (if (> (length user) maxuser) (setq maxuser (length user)))
2053 (if (> (length group) maxgroup) (setq maxgroup (length group)))
2054 (if (> (length mode) maxmode) (setq maxmode (length mode)))
2055 (if (> (length size) maxsize) (setq maxsize (length size)))
2056 (push (vector name name nil mode
2057 time user group size)
2058 files)))))
2059 (setq files (nreverse files))
2060 (goto-char (point-min))
2061 (let* ((format (format "%%%ds %%%ds/%%-%ds %%%ds %%%ds %%s"
2062 maxmode maxuser maxgroup maxsize maxtime))
2063 (sep (format format (make-string maxmode ?-)
2064 (make-string maxuser ?-)
2065 (make-string maxgroup ?-)
2066 (make-string maxsize ?-)
2067 (make-string maxtime ?-) ""))
2068 (column (length sep)))
2069 (insert (format format " Mode " "User" "Group" " Size "
2070 " Date " "Filename")
2071 "\n")
2072 (insert sep (make-string maxname ?-) "\n")
2073 (archive-summarize-files (mapcar (lambda (desc)
2074 (let ((text
2075 (format format
2076 (aref desc 3)
2077 (aref desc 5)
2078 (aref desc 6)
2079 (aref desc 7)
2080 (aref desc 4)
2081 (aref desc 1))))
2082 (vector text
2083 column
2084 (length text))))
2085 files))
2086 (insert sep (make-string maxname ?-) "\n")
2087 (apply 'vector files))))
2089 (defun archive-ar-extract (archive name)
2090 (let ((destbuf (current-buffer))
2091 (archivebuf (find-file-noselect archive))
2092 (from nil) size)
2093 (with-current-buffer archivebuf
2094 (save-restriction
2095 ;; We may be in archive-mode or not, so either with or without
2096 ;; narrowing and with or without a prepended summary.
2097 (widen)
2098 (search-forward "!<arch>\n")
2099 (while (and (not from) (looking-at archive-ar-file-header-re))
2100 (let ((this (match-string 1)))
2101 (setq size (string-to-number (match-string 6)))
2102 (goto-char (match-end 0))
2103 (setq this (substring this 0 (string-match "/? *\\'" this)))
2104 (if (equal name this)
2105 (setq from (point))
2106 ;; Move to the end of the data.
2107 (forward-char size) (if (eq ?\n (char-after)) (forward-char 1)))))
2108 (when from
2109 (set-buffer-multibyte nil)
2110 (with-current-buffer destbuf
2111 ;; Do it within the `widen'.
2112 (insert-buffer-substring archivebuf from (+ from size)))
2113 (set-buffer-multibyte 'to)
2114 ;; Inform the caller that the call succeeded.
2115 t)))))
2117 ;; -------------------------------------------------------------------------
2118 ;; This line was a mistake; it is kept now for compatibility.
2119 ;; rms 15 Oct 98
2120 (provide 'archive-mode)
2122 (provide 'arc-mode)
2124 ;; arch-tag: e5966a01-35ec-4f27-8095-a043a79b457b
2125 ;;; arc-mode.el ends here