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