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