Mercurial > emacs
annotate lisp/arc-mode.el @ 90987:b2d8a283f27e
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 23 Jul 2007 05:39:31 +0000 |
parents | e6fdae9180d4 |
children | f55f9811f5d7 |
rev | line source |
---|---|
11880 | 1 ;;; arc-mode.el --- simple editing of archives |
2 | |
74439 | 3 ;; Copyright (C) 1995, 1997, 1998, 2001, 2002, 2003, 2004, |
75347 | 4 ;; 2005, 2006, 2007 Free Software Foundation, Inc. |
11880 | 5 |
53397
2843dc1a9a6f
Update author email addr.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
6 ;; Author: Morten Welinder <terra@gnu.org> |
11880 | 7 ;; Keywords: archives msdog editing major-mode |
8 ;; Favourite-brand-of-beer: None, I hate beer. | |
9 | |
14169 | 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 | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
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 | |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
11880 | 26 |
27 ;;; Commentary: | |
14169 | 28 |
11880 | 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 ;; | |
57 ;; Arc Lzh Zip Zoo | |
58 ;; -------------------------------- | |
59 ;; View listing Intern Intern Intern Intern | |
60 ;; Extract member Y Y Y Y | |
61 ;; Save changed member Y Y Y Y | |
62 ;; Add new member N N N N | |
63 ;; Delete member Y Y Y Y | |
64 ;; Rename member Y Y N N | |
65 ;; Chmod - Y Y - | |
66 ;; Chown - Y - - | |
67 ;; Chgrp - Y - - | |
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. | |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
81 ;; Headers come in three flavours called level 0, 1 and 2 headers. |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
82 ;; Level 2 header is free of DOS specific restrictions and most |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
83 ;; prevalently used. Also level 1 and 2 headers consist of base |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
84 ;; and extension headers. For more details see |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
85 ;; http://homepage1.nifty.com/dangan/en/Content/Program/Java/jLHA/Notes/Notes.html |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
86 ;; http://www.osirusoft.com/joejared/lzhformat.html |
11880 | 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 ;; ------------------------------------- | |
42704 | 98 ;; HOOKS: `foo' means one of the supported archive types. |
11880 | 99 ;; |
100 ;; archive-mode-hook | |
101 ;; archive-foo-mode-hook | |
102 ;; archive-extract-hooks | |
103 | |
104 ;;; Code: | |
105 | |
106 ;; ------------------------------------------------------------------------- | |
107 ;; Section: Configuration. | |
108 | |
19926 | 109 (defgroup archive nil |
110 "Simple editing of archives." | |
111 :group 'data) | |
112 | |
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) | |
11880 | 120 |
19926 | 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 | |
129 (defcustom archive-tmpdir | |
43679 | 130 ;; make-temp-name is safe here because we use this name |
131 ;; to create a directory. | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
132 (make-temp-name |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
133 (expand-file-name (if (eq system-type 'ms-dos) "ar" "archive.tmp") |
22096
2f9cb89376a6
(archive-tmpdir): Use temporary-file-directory.
Richard M. Stallman <rms@gnu.org>
parents:
22086
diff
changeset
|
134 temporary-file-directory)) |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
135 "Directory for temporary files made by `arc-mode.el'." |
19926 | 136 :type 'directory |
137 :group 'archive) | |
11880 | 138 |
19926 | 139 (defcustom archive-remote-regexp "^/[^/:]*[^/:.]:" |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
140 "*Regexp recognizing archive files names that are not local. |
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
141 A non-local file is one whose file name is not proper outside Emacs. |
19926 | 142 A local copy of the archive will be used when updating." |
143 :type 'regexp | |
144 :group 'archive) | |
11880 | 145 |
19926 | 146 (defcustom archive-extract-hooks nil |
147 "*Hooks to run when an archive member has been extracted." | |
148 :type 'hook | |
149 :group 'archive) | |
11880 | 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. | |
19926 | 155 (defcustom archive-arc-extract |
11880 | 156 '("arc" "x") |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
157 "*Program and its options to run in order to extract an arc file member. |
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
158 Extraction should happen to the current directory. Archive and member |
19926 | 159 name will be added." |
160 :type '(list (string :tag "Program") | |
161 (repeat :tag "Options" | |
162 :inline t | |
163 (string :format "%v"))) | |
164 :group 'archive-arc) | |
11880 | 165 |
19926 | 166 (defcustom archive-arc-expunge |
11880 | 167 '("arc" "d") |
168 "*Program and its options to run in order to delete arc file members. | |
19926 | 169 Archive and member names will be added." |
170 :type '(list (string :tag "Program") | |
171 (repeat :tag "Options" | |
172 :inline t | |
173 (string :format "%v"))) | |
174 :group 'archive-arc) | |
11880 | 175 |
19926 | 176 (defcustom archive-arc-write-file-member |
11880 | 177 '("arc" "u") |
178 "*Program and its options to run in order to update an arc file member. | |
19926 | 179 Archive and member name will be added." |
180 :type '(list (string :tag "Program") | |
181 (repeat :tag "Options" | |
182 :inline t | |
183 (string :format "%v"))) | |
184 :group 'archive-arc) | |
11880 | 185 ;; ------------------------------ |
186 ;; Lzh archive configuration | |
187 | |
19926 | 188 (defcustom archive-lzh-extract |
11880 | 189 '("lha" "pq") |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
190 "*Program and its options to run in order to extract an lzh file member. |
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
191 Extraction should happen to standard output. Archive and member name will |
19926 | 192 be added." |
193 :type '(list (string :tag "Program") | |
194 (repeat :tag "Options" | |
195 :inline t | |
196 (string :format "%v"))) | |
197 :group 'archive-lzh) | |
11880 | 198 |
19926 | 199 (defcustom archive-lzh-expunge |
11880 | 200 '("lha" "d") |
201 "*Program and its options to run in order to delete lzh file members. | |
19926 | 202 Archive and member names will be added." |
203 :type '(list (string :tag "Program") | |
204 (repeat :tag "Options" | |
205 :inline t | |
206 (string :format "%v"))) | |
207 :group 'archive-lzh) | |
11880 | 208 |
19926 | 209 (defcustom archive-lzh-write-file-member |
11880 | 210 '("lha" "a") |
211 "*Program and its options to run in order to update an lzh file member. | |
19926 | 212 Archive and member name will be added." |
213 :type '(list (string :tag "Program") | |
214 (repeat :tag "Options" | |
215 :inline t | |
216 (string :format "%v"))) | |
217 :group 'archive-lzh) | |
11880 | 218 ;; ------------------------------ |
219 ;; Zip archive configuration | |
220 | |
19926 | 221 (defcustom archive-zip-extract |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
222 (if (and (not (executable-find "unzip")) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
223 (executable-find "pkunzip")) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
224 '("pkunzip" "-e" "-o-") |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
225 '("unzip" "-qq" "-c")) |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
226 "*Program and its options to run in order to extract a zip file member. |
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
227 Extraction should happen to standard output. Archive and member name will |
66124
d2f6c64a5b45
(archive-zip-extract): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
64762
diff
changeset
|
228 be added." |
19926 | 229 :type '(list (string :tag "Program") |
230 (repeat :tag "Options" | |
231 :inline t | |
232 (string :format "%v"))) | |
233 :group 'archive-zip) | |
11880 | 234 |
13966
82eeef849f8b
(archive-summarize-files): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
13539
diff
changeset
|
235 ;; For several reasons the latter behaviour is not desirable in general. |
11880 | 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 | |
19926 | 240 (defcustom archive-zip-expunge |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
241 (if (and (not (executable-find "zip")) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
242 (executable-find "pkzip")) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
243 '("pkzip" "-d") |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
244 '("zip" "-d" "-q")) |
11880 | 245 "*Program and its options to run in order to delete zip file members. |
19926 | 246 Archive and member names will be added." |
247 :type '(list (string :tag "Program") | |
248 (repeat :tag "Options" | |
249 :inline t | |
250 (string :format "%v"))) | |
251 :group 'archive-zip) | |
11880 | 252 |
19926 | 253 (defcustom archive-zip-update |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
254 (if (and (not (executable-find "zip")) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
255 (executable-find "pkzip")) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
256 '("pkzip" "-u" "-P") |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
257 '("zip" "-q")) |
11880 | 258 "*Program and its options to run in order to update a zip file member. |
259 Options should ensure that specified directory will be put into the zip | |
19926 | 260 file. Archive and member name will be added." |
261 :type '(list (string :tag "Program") | |
262 (repeat :tag "Options" | |
263 :inline t | |
264 (string :format "%v"))) | |
265 :group 'archive-zip) | |
11880 | 266 |
19926 | 267 (defcustom archive-zip-update-case |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
268 (if (and (not (executable-find "zip")) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
269 (executable-find "pkzip")) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
270 '("pkzip" "-u" "-P") |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
271 '("zip" "-q" "-k")) |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
272 "*Program and its options to run in order to update a case fiddled zip member. |
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
273 Options should ensure that specified directory will be put into the zip file. |
19926 | 274 Archive and member name will be added." |
275 :type '(list (string :tag "Program") | |
276 (repeat :tag "Options" | |
277 :inline t | |
278 (string :format "%v"))) | |
279 :group 'archive-zip) | |
11880 | 280 |
19926 | 281 (defcustom archive-zip-case-fiddle t |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
282 "*If non-nil then zip file members may be down-cased. |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
283 This case fiddling will only happen for members created by a system |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
284 that uses caseless file names." |
19926 | 285 :type 'boolean |
286 :group 'archive-zip) | |
11880 | 287 ;; ------------------------------ |
288 ;; Zoo archive configuration | |
289 | |
19926 | 290 (defcustom archive-zoo-extract |
11880 | 291 '("zoo" "xpq") |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
292 "*Program and its options to run in order to extract a zoo file member. |
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
293 Extraction should happen to standard output. Archive and member name will |
19926 | 294 be added." |
295 :type '(list (string :tag "Program") | |
296 (repeat :tag "Options" | |
297 :inline t | |
298 (string :format "%v"))) | |
299 :group 'archive-zoo) | |
11880 | 300 |
19926 | 301 (defcustom archive-zoo-expunge |
11880 | 302 '("zoo" "DqPP") |
303 "*Program and its options to run in order to delete zoo file members. | |
19926 | 304 Archive and member names will be added." |
305 :type '(list (string :tag "Program") | |
306 (repeat :tag "Options" | |
307 :inline t | |
308 (string :format "%v"))) | |
309 :group 'archive-zoo) | |
11880 | 310 |
19926 | 311 (defcustom archive-zoo-write-file-member |
11880 | 312 '("zoo" "a") |
313 "*Program and its options to run in order to update a zoo file member. | |
19926 | 314 Archive and member name will be added." |
315 :type '(list (string :tag "Program") | |
316 (repeat :tag "Options" | |
317 :inline t | |
318 (string :format "%v"))) | |
319 :group 'archive-zoo) | |
11880 | 320 ;; ------------------------------------------------------------------------- |
321 ;; Section: Variables | |
322 | |
50136
ad28e7a35442
* files.el (recover-session): Error if there are no previous
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
323 (defvar archive-subtype nil "Symbol describing archive type.") |
ad28e7a35442
* files.el (recover-session): Error if there are no previous
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
324 (defvar archive-file-list-start nil "Position of first contents line.") |
ad28e7a35442
* files.el (recover-session): Error if there are no previous
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
325 (defvar archive-file-list-end nil "Position just after last contents line.") |
ad28e7a35442
* files.el (recover-session): Error if there are no previous
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
326 (defvar archive-proper-file-start nil "Position of real archive's start.") |
ad28e7a35442
* files.el (recover-session): Error if there are no previous
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
327 (defvar archive-read-only nil "Non-nil if the archive is read-only on disk.") |
ad28e7a35442
* files.el (recover-session): Error if there are no previous
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
328 (defvar archive-local-name nil "Name of local copy of remote archive.") |
61414
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
329 (defvar archive-mode-map |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
330 (let ((map (make-keymap))) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
331 (suppress-keymap map) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
332 (define-key map " " 'archive-next-line) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
333 (define-key map "a" 'archive-alternate-display) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
334 ;;(define-key map "c" 'archive-copy) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
335 (define-key map "d" 'archive-flag-deleted) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
336 (define-key map "\C-d" 'archive-flag-deleted) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
337 (define-key map "e" 'archive-extract) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
338 (define-key map "f" 'archive-extract) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
339 (define-key map "\C-m" 'archive-extract) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
340 (define-key map "g" 'revert-buffer) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
341 (define-key map "h" 'describe-mode) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
342 (define-key map "m" 'archive-mark) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
343 (define-key map "n" 'archive-next-line) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
344 (define-key map "\C-n" 'archive-next-line) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
345 (define-key map [down] 'archive-next-line) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
346 (define-key map "o" 'archive-extract-other-window) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
347 (define-key map "p" 'archive-previous-line) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
348 (define-key map "q" 'quit-window) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
349 (define-key map "\C-p" 'archive-previous-line) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
350 (define-key map [up] 'archive-previous-line) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
351 (define-key map "r" 'archive-rename-entry) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
352 (define-key map "u" 'archive-unflag) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
353 (define-key map "\M-\C-?" 'archive-unmark-all-files) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
354 (define-key map "v" 'archive-view) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
355 (define-key map "x" 'archive-expunge) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
356 (define-key map "\177" 'archive-unflag-backwards) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
357 (define-key map "E" 'archive-extract-other-window) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
358 (define-key map "M" 'archive-chmod-entry) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
359 (define-key map "G" 'archive-chgrp-entry) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
360 (define-key map "O" 'archive-chown-entry) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
361 |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
362 (if (fboundp 'command-remapping) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
363 (progn |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
364 (define-key map [remap advertised-undo] 'archive-undo) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
365 (define-key map [remap undo] 'archive-undo)) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
366 (substitute-key-definition 'advertised-undo 'archive-undo map global-map) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
367 (substitute-key-definition 'undo 'archive-undo map global-map)) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
368 |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
369 (define-key map |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
370 (if (featurep 'xemacs) 'button2 [mouse-2]) 'archive-extract) |
61414
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
371 |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
372 (if (featurep 'xemacs) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
373 () ; out of luck |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
374 |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
375 (define-key map [menu-bar immediate] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
376 (cons "Immediate" (make-sparse-keymap "Immediate"))) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
377 (define-key map [menu-bar immediate alternate] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
378 '(menu-item "Alternate Display" archive-alternate-display |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
379 :enable (boundp (archive-name "alternate-display")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
380 :help "Toggle alternate file info display")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
381 (define-key map [menu-bar immediate view] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
382 '(menu-item "View This File" archive-view |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
383 :help "Display file at cursor in View Mode")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
384 (define-key map [menu-bar immediate display] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
385 '(menu-item "Display in Other Window" archive-display-other-window |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
386 :help "Display file at cursor in another window")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
387 (define-key map [menu-bar immediate find-file-other-window] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
388 '(menu-item "Find in Other Window" archive-extract-other-window |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
389 :help "Edit file at cursor in another window")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
390 (define-key map [menu-bar immediate find-file] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
391 '(menu-item "Find This File" archive-extract |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
392 :help "Extract file at cursor and edit it")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
393 |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
394 (define-key map [menu-bar mark] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
395 (cons "Mark" (make-sparse-keymap "Mark"))) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
396 (define-key map [menu-bar mark unmark-all] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
397 '(menu-item "Unmark All" archive-unmark-all-files |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
398 :help "Unmark all marked files")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
399 (define-key map [menu-bar mark deletion] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
400 '(menu-item "Flag" archive-flag-deleted |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
401 :help "Flag file at cursor for deletion")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
402 (define-key map [menu-bar mark unmark] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
403 '(menu-item "Unflag" archive-unflag |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
404 :help "Unmark file at cursor")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
405 (define-key map [menu-bar mark mark] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
406 '(menu-item "Mark" archive-mark |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
407 :help "Mark file at cursor")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
408 |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
409 (define-key map [menu-bar operate] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
410 (cons "Operate" (make-sparse-keymap "Operate"))) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
411 (define-key map [menu-bar operate chown] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
412 '(menu-item "Change Owner..." archive-chown-entry |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
413 :enable (fboundp (archive-name "chown-entry")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
414 :help "Change owner of marked files")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
415 (define-key map [menu-bar operate chgrp] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
416 '(menu-item "Change Group..." archive-chgrp-entry |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
417 :enable (fboundp (archive-name "chgrp-entry")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
418 :help "Change group ownership of marked files")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
419 (define-key map [menu-bar operate chmod] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
420 '(menu-item "Change Mode..." archive-chmod-entry |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
421 :enable (fboundp (archive-name "chmod-entry")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
422 :help "Change mode (permissions) of marked files")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
423 (define-key map [menu-bar operate rename] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
424 '(menu-item "Rename to..." archive-rename-entry |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
425 :enable (fboundp (archive-name "rename-entry")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
426 :help "Rename marked files")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
427 ;;(define-key map [menu-bar operate copy] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
428 ;; '(menu-item "Copy to..." archive-copy)) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
429 (define-key map [menu-bar operate expunge] |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
430 '(menu-item "Expunge Marked Files" archive-expunge |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
431 :help "Delete all flagged files from archive")) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
432 map)) |
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
433 "Local keymap for archive mode listings.") |
50136
ad28e7a35442
* files.el (recover-session): Error if there are no previous
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
434 (defvar archive-file-name-indent nil "Column where file names start.") |
11880 | 435 |
50136
ad28e7a35442
* files.el (recover-session): Error if there are no previous
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
436 (defvar archive-remote nil "Non-nil if the archive is outside file system.") |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
437 (make-variable-buffer-local 'archive-remote) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
438 (put 'archive-remote 'permanent-local t) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
439 |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
440 (defvar archive-member-coding-system nil "Coding-system of archive member.") |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
441 (make-variable-buffer-local 'archive-member-coding-system) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
442 |
11880 | 443 (defvar archive-alternate-display nil |
50136
ad28e7a35442
* files.el (recover-session): Error if there are no previous
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
444 "Non-nil when alternate information is shown.") |
11880 | 445 (make-variable-buffer-local 'archive-alternate-display) |
446 (put 'archive-alternate-display 'permanent-local t) | |
447 | |
50136
ad28e7a35442
* files.el (recover-session): Error if there are no previous
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
448 (defvar archive-superior-buffer nil "In archive members, points to archive.") |
11880 | 449 (put 'archive-superior-buffer 'permanent-local t) |
450 | |
50136
ad28e7a35442
* files.el (recover-session): Error if there are no previous
John Paul Wallington <jpw@pobox.com>
parents:
49588
diff
changeset
|
451 (defvar archive-subfile-mode nil "Non-nil in archive member buffers.") |
11880 | 452 (make-variable-buffer-local 'archive-subfile-mode) |
453 (put 'archive-subfile-mode 'permanent-local t) | |
454 | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
455 (defvar archive-file-name-coding-system nil) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
456 (make-variable-buffer-local 'archive-file-name-coding-system) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
457 (put 'archive-file-name-coding-system 'permanent-local t) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
458 |
16291 | 459 (defvar archive-files nil |
460 "Vector of file descriptors. | |
461 Each descriptor is a vector of the form | |
462 [EXT-FILE-NAME INT-FILE-NAME CASE-FIDDLED MODE ...]") | |
11880 | 463 (make-variable-buffer-local 'archive-files) |
12024
8e31a35ac027
(archive-lemacs): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
11887
diff
changeset
|
464 |
11880 | 465 ;; ------------------------------------------------------------------------- |
466 ;; Section: Support functions. | |
467 | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
468 (eval-when-compile |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
469 (defsubst byte-after (pos) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
470 "Like char-after but an eight-bit char is converted to unibyte." |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
471 (multibyte-char-to-unibyte (char-after pos))) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
472 (defsubst insert-unibyte (&rest args) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
473 "Like insert but don't make unibyte string and eight-bit char multibyte." |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
474 (dolist (elt args) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
475 (if (integerp elt) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
476 (insert (if (< elt 128) elt (decode-char 'eight-bit elt))) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
477 (insert (string-to-multibyte elt))))) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
478 ) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
479 |
11880 | 480 (defsubst archive-name (suffix) |
481 (intern (concat "archive-" (symbol-name archive-subtype) "-" suffix))) | |
482 | |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
483 (defun archive-l-e (str &optional len float) |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
484 "Convert little endian string/vector STR to integer. |
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
485 Alternatively, STR may be a buffer position in the current buffer |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
486 in which case a second argument, length LEN, should be supplied. |
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
487 FLOAT, if non-nil, means generate and return a float instead of an integer |
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
488 \(use this for numbers that can overflow the Emacs integer)." |
11880 | 489 (if (stringp str) |
490 (setq len (length str)) | |
491 (setq str (buffer-substring str (+ str len)))) | |
89483 | 492 (setq str (string-as-unibyte str)) |
11880 | 493 (let ((result 0) |
494 (i 0)) | |
495 (while (< i len) | |
496 (setq i (1+ i) | |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
497 result (+ (if float (* result 256.0) (ash result 8)) |
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
498 (aref str (- len i))))) |
11880 | 499 result)) |
500 | |
501 (defun archive-int-to-mode (mode) | |
37645
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
502 "Turn an integer like 0700 (i.e., 448) into a mode string like -rwx------." |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
503 ;; FIXME: merge with tar-grind-file-mode. |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
504 (string |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
505 (if (zerop (logand 8192 mode)) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
506 (if (zerop (logand 16384 mode)) ?- ?d) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
507 ?c) ; completeness |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
508 (if (zerop (logand 256 mode)) ?- ?r) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
509 (if (zerop (logand 128 mode)) ?- ?w) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
510 (if (zerop (logand 64 mode)) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
511 (if (zerop (logand 1024 mode)) ?- ?S) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
512 (if (zerop (logand 1024 mode)) ?x ?s)) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
513 (if (zerop (logand 32 mode)) ?- ?r) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
514 (if (zerop (logand 16 mode)) ?- ?w) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
515 (if (zerop (logand 8 mode)) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
516 (if (zerop (logand 2048 mode)) ?- ?S) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
517 (if (zerop (logand 2048 mode)) ?x ?s)) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
518 (if (zerop (logand 4 mode)) ?- ?r) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
519 (if (zerop (logand 2 mode)) ?- ?w) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
520 (if (zerop (logand 1 mode)) ?- ?x))) |
11880 | 521 |
522 (defun archive-calc-mode (oldmode newmode &optional error) | |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
523 "From the integer OLDMODE and the string NEWMODE calculate a new file mode. |
11880 | 524 NEWMODE may be an octal number including a leading zero in which case it |
525 will become the new mode.\n | |
526 NEWMODE may also be a relative specification like \"og-rwx\" in which case | |
527 OLDMODE will be modified accordingly just like chmod(2) would have done.\n | |
528 If optional third argument ERROR is non-nil an error will be signaled if | |
529 the 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)) | |
39180
f952f4f3d625
(archive-dostime): Fix a typo in minutes' computation.
Eli Zaretskii <eliz@gnu.org>
parents:
38409
diff
changeset
|
585 (minute (logand (ash time -5) 63)) |
11880 | 586 (second (* 2 (logand time 31)))) ; 2 seconds resolution |
587 (format "%02d:%02d:%02d" hour minute second))) | |
588 | |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
589 (defun archive-unixdate (low high) |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
590 "Stringify Unix (LOW HIGH) date." |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
591 (let ((str (current-time-string (cons high low)))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
592 (format "%s-%s-%s" |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
593 (substring str 8 10) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
594 (substring str 4 7) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
595 (substring str 20 24)))) |
11880 | 596 |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
597 (defun archive-unixtime (low high) |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
598 "Stringify Unix (LOW HIGH) time." |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
599 (let ((str (current-time-string (cons high low)))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
600 (substring str 11 19))) |
11880 | 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) | |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
609 "Return the descriptor vector for file at point. |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
610 Does not signal an error if optional argument NOERROR is non-nil." |
11880 | 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 ;; ------------------------------------------------------------------------- | |
622 ;; Section: the mode definition | |
623 | |
12437
c3597b66e4bf
(archive-mode): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
12304
diff
changeset
|
624 ;;;###autoload |
11880 | 625 (defun archive-mode (&optional force) |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
626 "Major mode for viewing an archive file in a dired-like way. |
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
627 You can move around using the usual cursor motion commands. |
11880 | 628 Letters no longer insert themselves. |
629 Type `e' to pull a file out of the archive and into its own buffer; | |
630 or click mouse-2 on the file's line in the archive mode buffer. | |
631 | |
632 If you edit a sub-file of this archive (as with the `e' command) and | |
633 save it, the contents of that buffer will be saved back into the | |
634 archive. | |
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)) | |
37645
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
644 (typename (capitalize (symbol-name type)))) |
11880 | 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) | |
653 | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
654 ;; Remote archives are not written by a hook. |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
655 (if archive-remote nil |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
656 (add-hook 'write-contents-functions 'archive-write-file nil t)) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
657 |
11880 | 658 (make-local-variable 'require-final-newline) |
659 (setq require-final-newline nil) | |
22472
7d99675ff55f
(archive-mode): Locally bind local-enable-local-variables, not
Richard M. Stallman <rms@gnu.org>
parents:
22327
diff
changeset
|
660 (make-local-variable 'local-enable-local-variables) |
7d99675ff55f
(archive-mode): Locally bind local-enable-local-variables, not
Richard M. Stallman <rms@gnu.org>
parents:
22327
diff
changeset
|
661 (setq local-enable-local-variables nil) |
11880 | 662 |
23481
4e3bead33d34
(archive-mode): Locally set file-precious-flag.
Richard M. Stallman <rms@gnu.org>
parents:
23467
diff
changeset
|
663 ;; Prevent loss of data when saving the file. |
4e3bead33d34
(archive-mode): Locally set file-precious-flag.
Richard M. Stallman <rms@gnu.org>
parents:
23467
diff
changeset
|
664 (make-local-variable 'file-precious-flag) |
4e3bead33d34
(archive-mode): Locally set file-precious-flag.
Richard M. Stallman <rms@gnu.org>
parents:
23467
diff
changeset
|
665 (setq file-precious-flag t) |
4e3bead33d34
(archive-mode): Locally set file-precious-flag.
Richard M. Stallman <rms@gnu.org>
parents:
23467
diff
changeset
|
666 |
11880 | 667 (make-local-variable 'archive-read-only) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
668 ;; Archives which are inside other archives and whose |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
669 ;; names are invalid for this OS, can't be written. |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
670 (setq archive-read-only |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
671 (or (not (file-writable-p (buffer-file-name))) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
672 (and archive-subfile-mode |
22174
18a455216af7
(archive-file-name-invalid-regexp): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
22096
diff
changeset
|
673 (string-match file-name-invalid-regexp |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
674 (aref archive-subfile-mode 0))))) |
11880 | 675 |
676 ;; Should we use a local copy when accessing from outside Emacs? | |
677 (make-local-variable 'archive-local-name) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
678 |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
679 ;; An archive can contain another archive whose name is invalid |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
680 ;; on local filesystem. Treat such archives as remote. |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
681 (or archive-remote |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
682 (setq archive-remote |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
683 (or (string-match archive-remote-regexp (buffer-file-name)) |
22174
18a455216af7
(archive-file-name-invalid-regexp): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
22096
diff
changeset
|
684 (string-match file-name-invalid-regexp |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
685 (buffer-file-name))))) |
11880 | 686 |
687 (setq major-mode 'archive-mode) | |
688 (setq mode-name (concat typename "-Archive")) | |
689 ;; Run archive-foo-mode-hook and archive-mode-hook | |
62714
ec0621e2b94f
(archive-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
61414
diff
changeset
|
690 (run-mode-hooks (archive-name "mode-hook") 'archive-mode-hook) |
11880 | 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) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
697 (setq archive-file-name-coding-system |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
698 (or file-name-coding-system |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
699 default-file-name-coding-system |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
700 locale-coding-system)) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
701 (if default-enable-multibyte-characters |
89483 | 702 (set-buffer-multibyte 'to)) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
703 (archive-summarize nil) |
11880 | 704 (setq buffer-read-only t)))) |
705 | |
706 ;; Archive mode is suitable only for specially formatted data. | |
707 (put 'archive-mode 'mode-class 'special) | |
708 | |
61414
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
709 (let ((item1 '(archive-subfile-mode " Archive"))) |
11880 | 710 (or (member item1 minor-mode-alist) |
61414
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
711 (setq minor-mode-alist (cons item1 minor-mode-alist)))) |
11880 | 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) | |
20767
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
720 ((looking-at "..-l[hz][0-9ds]-") 'lzh) |
11880 | 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) | |
77330
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
726 ;; This pattern modelled on the BSD/GNU+Linux `file' command. |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
727 ;; Have seen capital "LHA's", and file has lower case "LHa's" too. |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
728 ;; Note this regexp is also in archive-exe-p. |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
729 ((looking-at "MZ\\(.\\|\n\\)\\{34\\}LH[aA]'s SFX ") 'lzh-exe) |
38409
153f1b1f2efd
Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
38072
diff
changeset
|
730 (t (error "Buffer format not recognized"))))) |
11880 | 731 ;; ------------------------------------------------------------------------- |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
732 (defun archive-summarize (&optional shut-up) |
11880 | 733 "Parse the contents of the archive file in the current buffer. |
734 Place a dired-like listing on the front; | |
735 then narrow to it, so that only that listing | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
736 is visible (and the real data of the buffer is hidden). |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
737 Optional argument SHUT-UP, if non-nil, means don't print messages |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
738 when parsing the archive." |
11880 | 739 (widen) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
740 (let ((inhibit-read-only t)) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
741 (or shut-up |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
742 (message "Parsing archive file...")) |
11880 | 743 (buffer-disable-undo (current-buffer)) |
744 (setq archive-files (funcall (archive-name "summarize"))) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
745 (or shut-up |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
746 (message "Parsing archive file...done.")) |
11880 | 747 (setq archive-proper-file-start (point-marker)) |
748 (narrow-to-region (point-min) (point)) | |
749 (set-buffer-modified-p nil) | |
750 (buffer-enable-undo)) | |
751 (goto-char archive-file-list-start) | |
752 (archive-next-line 0)) | |
753 | |
754 (defun archive-resummarize () | |
755 "Recreate the contents listing of an archive." | |
756 (let ((modified (buffer-modified-p)) | |
757 (no (archive-get-lineno)) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
758 (inhibit-read-only t)) |
11880 | 759 (widen) |
760 (delete-region (point-min) archive-proper-file-start) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
761 (archive-summarize t) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
762 (restore-buffer-modified-p modified) |
11880 | 763 (goto-char archive-file-list-start) |
764 (archive-next-line no))) | |
765 | |
766 (defun archive-summarize-files (files) | |
16291 | 767 "Insert a description of a list of files annotated with proper mouse face." |
11880 | 768 (setq archive-file-list-start (point-marker)) |
769 (setq archive-file-name-indent (if files (aref (car files) 1) 0)) | |
770 ;; We don't want to do an insert for each element since that takes too | |
771 ;; long when the archive -- which has to be moved in memory -- is large. | |
772 (insert | |
773 (apply | |
774 (function concat) | |
775 (mapcar | |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
776 (lambda (fil) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
777 ;; Using `concat' here copies the text also, so we can add |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
778 ;; properties without problems. |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
779 (let ((text (concat (aref fil 0) "\n"))) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
780 (if (featurep 'xemacs) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
781 () ; out of luck |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
782 (add-text-properties |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
783 (aref fil 1) (aref fil 2) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
784 '(mouse-face highlight |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
785 help-echo "mouse-2: extract this file into a buffer") |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
786 text)) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
787 text)) |
11880 | 788 files))) |
789 (setq archive-file-list-end (point-marker))) | |
790 | |
791 (defun archive-alternate-display () | |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
792 "Toggle alternative display. |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
793 To avoid very long lines archive mode does not show all information. |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
794 This function changes the set of information shown for each files." |
11880 | 795 (interactive) |
796 (setq archive-alternate-display (not archive-alternate-display)) | |
797 (archive-resummarize)) | |
798 ;; ------------------------------------------------------------------------- | |
799 ;; Section: Local archive copy handling | |
800 | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
801 (defun archive-unique-fname (fname dir) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
802 "Make sure a file FNAME can be created uniquely in directory DIR. |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
803 |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
804 If FNAME can be uniquely created in DIR, it is returned unaltered. |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
805 If FNAME is something our underlying filesystem can't grok, or if another |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
806 file by that name already exists in DIR, a unique new name is generated |
37645
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
807 using `make-temp-file', and the generated name is returned." |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
808 (let ((fullname (expand-file-name fname dir)) |
22174
18a455216af7
(archive-file-name-invalid-regexp): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
22096
diff
changeset
|
809 (alien (string-match file-name-invalid-regexp fname))) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
810 (if (or alien (file-exists-p fullname)) |
37645
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
811 (make-temp-file |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
812 (expand-file-name |
49238
86973b914660
(archive-arc-rename-entry): Fix error message.
Kim F. Storm <storm@cua.dk>
parents:
49166
diff
changeset
|
813 (if (if (fboundp 'msdos-long-file-names) |
86973b914660
(archive-arc-rename-entry): Fix error message.
Kim F. Storm <storm@cua.dk>
parents:
49166
diff
changeset
|
814 (not (msdos-long-file-names))) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
815 "am" |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
816 "arc-mode.") |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
817 dir)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
818 fullname))) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
819 |
11880 | 820 (defun archive-maybe-copy (archive) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
821 (let ((coding-system-for-write 'no-conversion)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
822 (if archive-remote |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
823 (let ((start (point-max)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
824 ;; Sometimes ARCHIVE is invalid while its actual name, as |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
825 ;; recorded in its parent archive, is not. For example, an |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
826 ;; archive bar.zip inside another archive foo.zip gets a name |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
827 ;; "foo.zip:bar.zip", which is invalid on DOS/Windows. |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
828 ;; So use the actual name if available. |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
829 (archive-name |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
830 (or (and archive-subfile-mode (aref archive-subfile-mode 0)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
831 archive))) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
832 (setq archive-local-name |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
833 (archive-unique-fname archive-name archive-tmpdir)) |
68586
5c6fd061a6f9
(archive-maybe-copy): Fix the way directories in the archive are created
Eli Zaretskii <eliz@gnu.org>
parents:
67138
diff
changeset
|
834 ;; Maked sure all the leading directories in |
5c6fd061a6f9
(archive-maybe-copy): Fix the way directories in the archive are created
Eli Zaretskii <eliz@gnu.org>
parents:
67138
diff
changeset
|
835 ;; archive-local-name exist under archive-tmpdir, so that |
5c6fd061a6f9
(archive-maybe-copy): Fix the way directories in the archive are created
Eli Zaretskii <eliz@gnu.org>
parents:
67138
diff
changeset
|
836 ;; the directory structure recorded in the archive is |
5c6fd061a6f9
(archive-maybe-copy): Fix the way directories in the archive are created
Eli Zaretskii <eliz@gnu.org>
parents:
67138
diff
changeset
|
837 ;; reconstructed in the temporary directory. |
5c6fd061a6f9
(archive-maybe-copy): Fix the way directories in the archive are created
Eli Zaretskii <eliz@gnu.org>
parents:
67138
diff
changeset
|
838 (make-directory (file-name-directory archive-local-name) t) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
839 (save-restriction |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
840 (widen) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
841 (write-region start (point-max) archive-local-name nil 'nomessage)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
842 archive-local-name) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
843 (if (buffer-modified-p) (save-buffer)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
844 archive))) |
11880 | 845 |
846 (defun archive-maybe-update (unchanged) | |
847 (if archive-remote | |
848 (let ((name archive-local-name) | |
849 (modified (buffer-modified-p)) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
850 (coding-system-for-read 'no-conversion) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
851 (lno (archive-get-lineno)) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
852 (inhibit-read-only t)) |
11880 | 853 (if unchanged nil |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
854 (setq archive-files nil) |
11880 | 855 (erase-buffer) |
856 (insert-file-contents name) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
857 (archive-mode t) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
858 (goto-char archive-file-list-start) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
859 (archive-next-line lno)) |
11880 | 860 (archive-delete-local name) |
861 (if (not unchanged) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
862 (message |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
863 "Buffer `%s' must be saved for changes to take effect" |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
864 (buffer-name (current-buffer)))) |
11880 | 865 (set-buffer-modified-p (or modified (not unchanged)))))) |
866 | |
867 (defun archive-delete-local (name) | |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
868 "Delete file NAME and its parents up to and including `archive-tmpdir'." |
11880 | 869 (let ((again t) |
870 (top (directory-file-name (file-name-as-directory archive-tmpdir)))) | |
871 (condition-case nil | |
872 (delete-file name) | |
873 (error nil)) | |
874 (while again | |
875 (setq name (directory-file-name (file-name-directory name))) | |
876 (condition-case nil | |
877 (delete-directory name) | |
878 (error nil)) | |
879 (if (string= name top) (setq again nil))))) | |
880 ;; ------------------------------------------------------------------------- | |
881 ;; Section: Member extraction | |
882 | |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
883 (defun archive-file-name-handler (op &rest args) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
884 (or (eq op 'file-exists-p) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
885 (let ((file-name-handler-alist nil)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
886 (apply op args)))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
887 |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
888 (defun archive-set-buffer-as-visiting-file (filename) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
889 "Set the current buffer as if it were visiting FILENAME." |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
890 (save-excursion |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
891 (goto-char (point-min)) |
70544
2400f78c17e8
(archive-set-buffer-as-visiting-file): Bind buffer-undo-list
Juri Linkov <juri@jurta.org>
parents:
70388
diff
changeset
|
892 (let ((buffer-undo-list t) |
2400f78c17e8
(archive-set-buffer-as-visiting-file): Bind buffer-undo-list
Juri Linkov <juri@jurta.org>
parents:
70388
diff
changeset
|
893 (coding |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
894 (or coding-system-for-read |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
895 (and set-auto-coding-function |
24381
b3c0f3ad64d8
(archive-set-buffer-as-visiting-file): Save
Eli Zaretskii <eliz@gnu.org>
parents:
23481
diff
changeset
|
896 (save-excursion |
b3c0f3ad64d8
(archive-set-buffer-as-visiting-file): Save
Eli Zaretskii <eliz@gnu.org>
parents:
23481
diff
changeset
|
897 (funcall set-auto-coding-function |
b3c0f3ad64d8
(archive-set-buffer-as-visiting-file): Save
Eli Zaretskii <eliz@gnu.org>
parents:
23481
diff
changeset
|
898 filename (- (point-max) (point-min))))) |
72054
bf3518b64c99
(archive-set-buffer-as-visiting-file): Comment fix.
Eli Zaretskii <eliz@gnu.org>
parents:
70946
diff
changeset
|
899 ;; dos-w32.el defines the function |
bf3518b64c99
(archive-set-buffer-as-visiting-file): Comment fix.
Eli Zaretskii <eliz@gnu.org>
parents:
70946
diff
changeset
|
900 ;; find-buffer-file-type-coding-system for DOS/Windows |
bf3518b64c99
(archive-set-buffer-as-visiting-file): Comment fix.
Eli Zaretskii <eliz@gnu.org>
parents:
70946
diff
changeset
|
901 ;; systems which preserves the coding-system of existing files. |
bf3518b64c99
(archive-set-buffer-as-visiting-file): Comment fix.
Eli Zaretskii <eliz@gnu.org>
parents:
70946
diff
changeset
|
902 ;; (That function is called via file-coding-system-alist.) |
bf3518b64c99
(archive-set-buffer-as-visiting-file): Comment fix.
Eli Zaretskii <eliz@gnu.org>
parents:
70946
diff
changeset
|
903 ;; Here, we want it to act as if the extracted file existed. |
bf3518b64c99
(archive-set-buffer-as-visiting-file): Comment fix.
Eli Zaretskii <eliz@gnu.org>
parents:
70946
diff
changeset
|
904 ;; The following let-binding of file-name-handler-alist forces |
bf3518b64c99
(archive-set-buffer-as-visiting-file): Comment fix.
Eli Zaretskii <eliz@gnu.org>
parents:
70946
diff
changeset
|
905 ;; find-file-not-found-set-buffer-file-coding-system to ignore |
bf3518b64c99
(archive-set-buffer-as-visiting-file): Comment fix.
Eli Zaretskii <eliz@gnu.org>
parents:
70946
diff
changeset
|
906 ;; the file's name (see dos-w32.el). |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
907 (let ((file-name-handler-alist |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
908 '(("" . archive-file-name-handler)))) |
70946
f3c65e2e68b3
(archive-set-buffer-as-visiting-file): Call
Kenichi Handa <handa@m17n.org>
parents:
70679
diff
changeset
|
909 (car (find-operation-coding-system |
f3c65e2e68b3
(archive-set-buffer-as-visiting-file): Call
Kenichi Handa <handa@m17n.org>
parents:
70679
diff
changeset
|
910 'insert-file-contents |
f3c65e2e68b3
(archive-set-buffer-as-visiting-file): Call
Kenichi Handa <handa@m17n.org>
parents:
70679
diff
changeset
|
911 (cons filename (current-buffer)) t)))))) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
912 (if (and (not coding-system-for-read) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
913 (not enable-multibyte-characters)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
914 (setq coding |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
915 (coding-system-change-text-conversion coding 'raw-text))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
916 (if (and coding |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
917 (not (eq coding 'no-conversion))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
918 (decode-coding-region (point-min) (point-max) coding) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
919 (setq last-coding-system-used coding)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
920 (set-buffer-modified-p nil) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
921 (kill-local-variable 'buffer-file-coding-system) |
50835
b7770bea6205
(archive-set-buffer-as-visiting-file): Use
Kenichi Handa <handa@m17n.org>
parents:
50136
diff
changeset
|
922 (after-insert-file-set-coding (- (point-max) (point-min)))))) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
923 |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
924 (define-obsolete-function-alias 'archive-mouse-extract 'archive-extract "22.1") |
11880 | 925 |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
926 (defun archive-extract (&optional other-window-p event) |
11880 | 927 "In archive mode, extract this entry of the archive into its own buffer." |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
928 (interactive (list nil last-input-event)) |
67138
aa8ad01ef0c1
(archive-extract): Use `posn-set-point' instead of `mouse-set-point'
John Paul Wallington <jpw@pobox.com>
parents:
66124
diff
changeset
|
929 (if event (posn-set-point (event-end event))) |
11880 | 930 (let* ((view-p (eq other-window-p 'view)) |
931 (descr (archive-get-descr)) | |
932 (ename (aref descr 0)) | |
933 (iname (aref descr 1)) | |
934 (archive-buffer (current-buffer)) | |
935 (arcdir default-directory) | |
936 (archive (buffer-file-name)) | |
937 (arcname (file-name-nondirectory archive)) | |
938 (bufname (concat (file-name-nondirectory iname) " (" arcname ")")) | |
939 (extractor (archive-name "extract")) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
940 ;; Members with file names which aren't valid for the |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
941 ;; underlying filesystem, are treated as read-only. |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
942 (read-only-p (or archive-read-only |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
943 view-p |
22174
18a455216af7
(archive-file-name-invalid-regexp): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
22096
diff
changeset
|
944 (string-match file-name-invalid-regexp ename))) |
69331
619b0c2000a6
* arc-mode.el (archive-extract): Check if an existing buffer name
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
945 (arcfilename (expand-file-name (concat arcname ":" iname))) |
11880 | 946 (buffer (get-buffer bufname)) |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
947 (just-created nil) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
948 (file-name-coding archive-file-name-coding-system)) |
69331
619b0c2000a6
* arc-mode.el (archive-extract): Check if an existing buffer name
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
949 (if (and buffer |
619b0c2000a6
* arc-mode.el (archive-extract): Check if an existing buffer name
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
950 (string= (buffer-file-name buffer) arcfilename)) |
11880 | 951 nil |
952 (setq archive (archive-maybe-copy archive)) | |
69331
619b0c2000a6
* arc-mode.el (archive-extract): Check if an existing buffer name
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
953 (setq bufname (generate-new-buffer-name bufname)) |
11880 | 954 (setq buffer (get-buffer-create bufname)) |
955 (setq just-created t) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
956 (with-current-buffer buffer |
69331
619b0c2000a6
* arc-mode.el (archive-extract): Check if an existing buffer name
Chong Yidong <cyd@stupidchicken.com>
parents:
68651
diff
changeset
|
957 (setq buffer-file-name arcfilename) |
11880 | 958 (setq buffer-file-truename |
959 (abbreviate-file-name buffer-file-name)) | |
960 ;; Set the default-directory to the dir of the superior buffer. | |
961 (setq default-directory arcdir) | |
962 (make-local-variable 'archive-superior-buffer) | |
963 (setq archive-superior-buffer archive-buffer) | |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
964 (add-hook 'write-file-functions 'archive-write-file-member nil t) |
11880 | 965 (setq archive-subfile-mode descr) |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
966 (setq archive-file-name-coding-system file-name-coding) |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
967 (if (and |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
968 (null |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
969 (let (;; We may have to encode file name arguement for |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
970 ;; external programs. |
22834
926aae368e61
(archive-set-buffer-as-visiting-file): Give FILENAME
Kenichi Handa <handa@m17n.org>
parents:
22830
diff
changeset
|
971 (coding-system-for-write |
926aae368e61
(archive-set-buffer-as-visiting-file): Give FILENAME
Kenichi Handa <handa@m17n.org>
parents:
22830
diff
changeset
|
972 (and enable-multibyte-characters |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
973 archive-file-name-coding-system)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
974 ;; We read an archive member by no-conversion at |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
975 ;; first, then decode appropriately by calling |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
976 ;; archive-set-buffer-as-visiting-file later. |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
977 (coding-system-for-read 'no-conversion)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
978 (condition-case err |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
979 (if (fboundp extractor) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
980 (funcall extractor archive ename) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
981 (archive-*-extract archive ename |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
982 (symbol-value extractor))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
983 (error |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
984 (ding (message "%s" (error-message-string err))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
985 nil)))) |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
986 just-created) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
987 (progn |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
988 (set-buffer-modified-p nil) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
989 (kill-buffer buffer)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
990 (archive-set-buffer-as-visiting-file ename) |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
991 (goto-char (point-min)) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
992 (rename-buffer bufname) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
993 (setq buffer-read-only read-only-p) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
994 (setq buffer-undo-list nil) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
995 (set-buffer-modified-p nil) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
996 (setq buffer-saved-size (buffer-size)) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
997 (normal-mode) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
998 ;; Just in case an archive occurs inside another archive. |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
999 (when (derived-mode-p 'archive-mode) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1000 (setq archive-remote t) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1001 (if read-only-p (setq archive-read-only t)) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1002 ;; We will write out the archive ourselves if it is |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1003 ;; part of another archive. |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1004 (remove-hook 'write-contents-functions 'archive-write-file t)) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1005 (run-hooks 'archive-extract-hooks) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1006 (if archive-read-only |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1007 (message "Note: altering this archive is not implemented.")))) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1008 (archive-maybe-update t)) |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1009 (or (not (buffer-name buffer)) |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1010 (cond |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1011 (view-p (view-buffer buffer (and just-created 'kill-buffer))) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1012 ((eq other-window-p 'display) (display-buffer buffer)) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1013 (other-window-p (switch-to-buffer-other-window buffer)) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1014 (t (switch-to-buffer buffer)))))) |
11880 | 1015 |
1016 (defun archive-*-extract (archive name command) | |
1017 (let* ((default-directory (file-name-as-directory archive-tmpdir)) | |
1018 (tmpfile (expand-file-name (file-name-nondirectory name) | |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1019 default-directory)) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1020 exit-status success) |
11880 | 1021 (make-directory (directory-file-name default-directory) t) |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1022 (setq exit-status |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1023 (apply 'call-process |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1024 (car command) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1025 nil |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1026 nil |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1027 nil |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1028 (append (cdr command) (list archive name)))) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1029 (cond ((and (numberp exit-status) (= exit-status 0)) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1030 (if (not (file-exists-p tmpfile)) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1031 (ding (message "`%s': no such file or directory" tmpfile)) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1032 (insert-file-contents tmpfile) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1033 (setq success t))) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1034 ((numberp exit-status) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1035 (ding |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1036 (message "`%s' exited with status %d" (car command) exit-status))) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1037 ((stringp exit-status) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1038 (ding (message "`%s' aborted: %s" (car command) exit-status))) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1039 (t |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1040 (ding (message "`%s' failed" (car command))))) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1041 (archive-delete-local tmpfile) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1042 success)) |
11880 | 1043 |
1044 (defun archive-extract-by-stdout (archive name command) | |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1045 (apply 'call-process |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1046 (car command) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1047 nil |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1048 t |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1049 nil |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1050 (append (cdr command) (list archive name)))) |
11880 | 1051 |
1052 (defun archive-extract-other-window () | |
1053 "In archive mode, find this member in another window." | |
1054 (interactive) | |
1055 (archive-extract t)) | |
1056 | |
1057 (defun archive-display-other-window () | |
1058 "In archive mode, display this member in another window." | |
1059 (interactive) | |
1060 (archive-extract 'display)) | |
1061 | |
1062 (defun archive-view () | |
1063 "In archive mode, view the member on this line." | |
1064 (interactive) | |
1065 (archive-extract 'view)) | |
1066 | |
1067 (defun archive-add-new-member (arcbuf name) | |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
1068 "Add current buffer to the archive in ARCBUF naming it NAME." |
11880 | 1069 (interactive |
1070 (list (get-buffer | |
1071 (read-buffer "Buffer containing archive: " | |
1072 ;; Find first archive buffer and suggest that | |
1073 (let ((bufs (buffer-list))) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1074 (while (and bufs |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1075 (not (with-current-buffer (car bufs) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1076 (derived-mode-p 'archive-mode)))) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1077 (setq bufs (cdr bufs))) |
11880 | 1078 (if bufs |
1079 (car bufs) | |
1080 (error "There are no archive buffers"))) | |
1081 t)) | |
1082 (read-string "File name in archive: " | |
1083 (if buffer-file-name | |
1084 (file-name-nondirectory buffer-file-name) | |
1085 "")))) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1086 (with-current-buffer arcbuf |
11880 | 1087 (or (eq major-mode 'archive-mode) |
1088 (error "Buffer is not an archive buffer")) | |
1089 (if archive-read-only | |
1090 (error "Archive is read-only"))) | |
1091 (if (eq arcbuf (current-buffer)) | |
1092 (error "An archive buffer cannot be added to itself")) | |
1093 (if (string= name "") | |
1094 (error "Archive members may not be given empty names")) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1095 (let ((func (with-current-buffer arcbuf |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1096 (archive-name "add-new-member"))) |
11880 | 1097 (membuf (current-buffer))) |
1098 (if (fboundp func) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1099 (with-current-buffer arcbuf |
11880 | 1100 (funcall func buffer-file-name membuf name)) |
1101 (error "Adding a new member is not supported for this archive type")))) | |
1102 ;; ------------------------------------------------------------------------- | |
1103 ;; Section: IO stuff | |
1104 | |
1105 (defun archive-write-file-member () | |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1106 (save-excursion |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1107 (save-restriction |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1108 (message "Updating archive...") |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1109 (widen) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1110 (let ((writer (with-current-buffer archive-superior-buffer |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1111 (archive-name "write-file-member"))) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1112 (archive (with-current-buffer archive-superior-buffer |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1113 (archive-maybe-copy (buffer-file-name))))) |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1114 (if (fboundp writer) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1115 (funcall writer archive archive-subfile-mode) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1116 (archive-*-write-file-member archive |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1117 archive-subfile-mode |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1118 (symbol-value writer))) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1119 (set-buffer-modified-p nil) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1120 (message "Updating archive...done")) |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1121 (set-buffer archive-superior-buffer) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1122 (if (not archive-remote) (revert-buffer) (archive-maybe-update nil)))) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1123 ;; Restore the value of last-coding-system-used, so that basic-save-buffer |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1124 ;; won't reset the coding-system of this archive member. |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1125 (if (local-variable-p 'archive-member-coding-system) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1126 (setq last-coding-system-used archive-member-coding-system)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1127 t) |
11880 | 1128 |
1129 (defun archive-*-write-file-member (archive descr command) | |
1130 (let* ((ename (aref descr 0)) | |
1131 (tmpfile (expand-file-name ename archive-tmpdir)) | |
1132 (top (directory-file-name (file-name-as-directory archive-tmpdir))) | |
1133 (default-directory (file-name-as-directory top))) | |
1134 (unwind-protect | |
1135 (progn | |
1136 (make-directory (file-name-directory tmpfile) t) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1137 ;; If the member is itself an archive, write it without |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1138 ;; the dired-like listing we created. |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1139 (if (eq major-mode 'archive-mode) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1140 (archive-write-file tmpfile) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1141 (write-region (point-min) (point-max) tmpfile nil 'nomessage)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1142 ;; basic-save-buffer needs last-coding-system-used to have |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1143 ;; the value used to write the file, so save it before any |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1144 ;; further processing clobbers it (we restore it in |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1145 ;; archive-write-file-member, above). |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1146 (setq archive-member-coding-system last-coding-system-used) |
11880 | 1147 (if (aref descr 3) |
1148 ;; Set the file modes, but make sure we can read it. | |
1149 (set-file-modes tmpfile (logior ?\400 (aref descr 3)))) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1150 (setq ename |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1151 (encode-coding-string ename archive-file-name-coding-system)) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1152 (let* ((coding-system-for-write 'no-conversion) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1153 (exitcode (apply 'call-process |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1154 (car command) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1155 nil |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1156 nil |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1157 nil |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1158 (append (cdr command) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1159 (list archive ename))))) |
11880 | 1160 (if (equal exitcode 0) |
1161 nil | |
1162 (error "Updating was unsuccessful (%S)" exitcode)))) | |
1163 (archive-delete-local tmpfile)))) | |
1164 | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1165 (defun archive-write-file (&optional file) |
11880 | 1166 (save-excursion |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1167 (let ((coding-system-for-write 'no-conversion)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1168 (write-region archive-proper-file-start (point-max) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1169 (or file buffer-file-name) nil t) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1170 (set-buffer-modified-p nil)) |
11880 | 1171 t)) |
1172 ;; ------------------------------------------------------------------------- | |
1173 ;; Section: Marking and unmarking. | |
1174 | |
1175 (defun archive-flag-deleted (p &optional type) | |
1176 "In archive mode, mark this member to be deleted from the archive. | |
1177 With a prefix argument, mark that many files." | |
1178 (interactive "p") | |
1179 (or type (setq type ?D)) | |
1180 (beginning-of-line) | |
1181 (let ((sign (if (>= p 0) +1 -1)) | |
1182 (modified (buffer-modified-p)) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1183 (inhibit-read-only t)) |
11880 | 1184 (while (not (zerop p)) |
1185 (if (archive-get-descr t) | |
1186 (progn | |
1187 (delete-char 1) | |
1188 (insert type))) | |
1189 (forward-line sign) | |
1190 (setq p (- p sign))) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1191 (restore-buffer-modified-p modified)) |
11880 | 1192 (archive-next-line 0)) |
1193 | |
1194 (defun archive-unflag (p) | |
1195 "In archive mode, un-mark this member if it is marked to be deleted. | |
1196 With a prefix argument, un-mark that many files forward." | |
1197 (interactive "p") | |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
1198 (archive-flag-deleted p ?\s)) |
11880 | 1199 |
1200 (defun archive-unflag-backwards (p) | |
1201 "In archive mode, un-mark this member if it is marked to be deleted. | |
1202 With a prefix argument, un-mark that many members backward." | |
1203 (interactive "p") | |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
1204 (archive-flag-deleted (- p) ?\s)) |
11880 | 1205 |
1206 (defun archive-unmark-all-files () | |
1207 "Remove all marks." | |
1208 (interactive) | |
1209 (let ((modified (buffer-modified-p)) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1210 (inhibit-read-only t)) |
11880 | 1211 (save-excursion |
1212 (goto-char archive-file-list-start) | |
1213 (while (< (point) archive-file-list-end) | |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
1214 (or (= (following-char) ?\s) |
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
1215 (progn (delete-char 1) (insert ?\s))) |
11880 | 1216 (forward-line 1))) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1217 (restore-buffer-modified-p modified))) |
11880 | 1218 |
1219 (defun archive-mark (p) | |
1220 "In archive mode, mark this member for group operations. | |
1221 With a prefix argument, mark that many members. | |
1222 Use \\[archive-unmark-all-files] to remove all marks." | |
1223 (interactive "p") | |
1224 (archive-flag-deleted p ?*)) | |
1225 | |
1226 (defun archive-get-marked (mark &optional default) | |
1227 (let (files) | |
1228 (save-excursion | |
1229 (goto-char archive-file-list-start) | |
1230 (while (< (point) archive-file-list-end) | |
1231 (if (= (following-char) mark) | |
1232 (setq files (cons (archive-get-descr) files))) | |
1233 (forward-line 1))) | |
1234 (or (nreverse files) | |
1235 (and default | |
1236 (list (archive-get-descr)))))) | |
1237 ;; ------------------------------------------------------------------------- | |
1238 ;; Section: Operate | |
1239 | |
1240 (defun archive-next-line (p) | |
1241 (interactive "p") | |
1242 (forward-line p) | |
1243 (or (eobp) | |
1244 (forward-char archive-file-name-indent))) | |
1245 | |
1246 (defun archive-previous-line (p) | |
1247 (interactive "p") | |
1248 (archive-next-line (- p))) | |
1249 | |
1250 (defun archive-chmod-entry (new-mode) | |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
1251 "Change the protection bits associated with all marked or this member. |
11880 | 1252 The new protection bits can either be specified as an octal number or |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
1253 as a relative change like \"g+rw\" as for chmod(2)." |
11880 | 1254 (interactive "sNew mode (octal or relative): ") |
1255 (if archive-read-only (error "Archive is read-only")) | |
1256 (let ((func (archive-name "chmod-entry"))) | |
1257 (if (fboundp func) | |
1258 (progn | |
1259 (funcall func new-mode (archive-get-marked ?* t)) | |
1260 (archive-resummarize)) | |
1261 (error "Setting mode bits is not supported for this archive type")))) | |
1262 | |
1263 (defun archive-chown-entry (new-uid) | |
1264 "Change the owner of all marked or this member." | |
1265 (interactive "nNew uid: ") | |
1266 (if archive-read-only (error "Archive is read-only")) | |
1267 (let ((func (archive-name "chown-entry"))) | |
1268 (if (fboundp func) | |
1269 (progn | |
1270 (funcall func new-uid (archive-get-marked ?* t)) | |
1271 (archive-resummarize)) | |
1272 (error "Setting owner is not supported for this archive type")))) | |
1273 | |
1274 (defun archive-chgrp-entry (new-gid) | |
1275 "Change the group of all marked or this member." | |
1276 (interactive "nNew gid: ") | |
1277 (if archive-read-only (error "Archive is read-only")) | |
1278 (let ((func (archive-name "chgrp-entry"))) | |
1279 (if (fboundp func) | |
1280 (progn | |
1281 (funcall func new-gid (archive-get-marked ?* t)) | |
1282 (archive-resummarize)) | |
1283 (error "Setting group is not supported for this archive type")))) | |
1284 | |
1285 (defun archive-expunge () | |
1286 "Do the flagged deletions." | |
1287 (interactive) | |
1288 (let (files) | |
1289 (save-excursion | |
1290 (goto-char archive-file-list-start) | |
1291 (while (< (point) archive-file-list-end) | |
1292 (if (= (following-char) ?D) | |
1293 (setq files (cons (aref (archive-get-descr) 0) files))) | |
1294 (forward-line 1))) | |
1295 (setq files (nreverse files)) | |
1296 (and files | |
1297 (or (not archive-read-only) | |
1298 (error "Archive is read-only")) | |
1299 (or (yes-or-no-p (format "Really delete %d member%s? " | |
1300 (length files) | |
1301 (if (null (cdr files)) "" "s"))) | |
1302 (error "Operation aborted")) | |
1303 (let ((archive (archive-maybe-copy (buffer-file-name))) | |
1304 (expunger (archive-name "expunge"))) | |
1305 (if (fboundp expunger) | |
1306 (funcall expunger archive files) | |
1307 (archive-*-expunge archive files (symbol-value expunger))) | |
1308 (archive-maybe-update nil) | |
1309 (if archive-remote | |
1310 (archive-resummarize) | |
1311 (revert-buffer)))))) | |
1312 | |
1313 (defun archive-*-expunge (archive files command) | |
1314 (apply 'call-process | |
1315 (car command) | |
1316 nil | |
1317 nil | |
1318 nil | |
1319 (append (cdr command) (cons archive files)))) | |
1320 | |
1321 (defun archive-rename-entry (newname) | |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1322 "Change the name associated with this entry in the archive file." |
11880 | 1323 (interactive "sNew name: ") |
1324 (if archive-read-only (error "Archive is read-only")) | |
1325 (if (string= newname "") | |
1326 (error "Archive members may not be given empty names")) | |
1327 (let ((func (archive-name "rename-entry")) | |
1328 (descr (archive-get-descr))) | |
1329 (if (fboundp func) | |
1330 (progn | |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1331 (funcall func |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1332 (encode-coding-string newname |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1333 archive-file-name-coding-system) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1334 descr) |
11880 | 1335 (archive-resummarize)) |
1336 (error "Renaming is not supported for this archive type")))) | |
1337 | |
1338 ;; Revert the buffer and recompute the dired-like listing. | |
23383
7af3fdca3189
(archive-mode-revert): Arg no-auto-save renamed from no-autosave.
Karl Heuer <kwzh@gnu.org>
parents:
22834
diff
changeset
|
1339 (defun archive-mode-revert (&optional no-auto-save no-confirm) |
11880 | 1340 (let ((no (archive-get-lineno))) |
1341 (setq archive-files nil) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1342 (let ((revert-buffer-function nil) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1343 (coding-system-for-read 'no-conversion)) |
11880 | 1344 (revert-buffer t t)) |
1345 (archive-mode) | |
1346 (goto-char archive-file-list-start) | |
1347 (archive-next-line no))) | |
1348 | |
1349 (defun archive-undo () | |
1350 "Undo in an archive buffer. | |
1351 This doesn't recover lost files, it just undoes changes in the buffer itself." | |
1352 (interactive) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1353 (let ((inhibit-read-only t)) |
11880 | 1354 (undo))) |
1355 ;; ------------------------------------------------------------------------- | |
1356 ;; Section: Arc Archives | |
1357 | |
1358 (defun archive-arc-summarize () | |
1359 (let ((p 1) | |
1360 (totalsize 0) | |
1361 (maxlen 8) | |
1362 files | |
1363 visual) | |
1364 (while (and (< (+ p 29) (point-max)) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1365 (= (byte-after p) ?\C-z) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1366 (> (byte-after (1+ p)) 0)) |
11880 | 1367 (let* ((namefld (buffer-substring (+ p 2) (+ p 2 13))) |
1368 (fnlen (or (string-match "\0" namefld) 13)) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1369 (efnname (decode-coding-string (substring namefld 0 fnlen) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1370 archive-file-name-coding-system)) |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1371 ;; Convert to float to avoid overflow for very large files. |
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1372 (csize (archive-l-e (+ p 15) 4 'float)) |
11880 | 1373 (moddate (archive-l-e (+ p 19) 2)) |
1374 (modtime (archive-l-e (+ p 21) 2)) | |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1375 (ucsize (archive-l-e (+ p 25) 4 'float)) |
11880 | 1376 (fiddle (string= efnname (upcase efnname))) |
1377 (ifnname (if fiddle (downcase efnname) efnname)) | |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1378 (text (format " %8.0f %-11s %-8s %s" |
11880 | 1379 ucsize |
1380 (archive-dosdate moddate) | |
1381 (archive-dostime modtime) | |
1382 ifnname))) | |
1383 (setq maxlen (max maxlen fnlen) | |
1384 totalsize (+ totalsize ucsize) | |
1385 visual (cons (vector text | |
1386 (- (length text) (length ifnname)) | |
1387 (length text)) | |
1388 visual) | |
1389 files (cons (vector efnname ifnname fiddle nil (1- p)) | |
1390 files) | |
70679
ff708eaf43ab
(archive-arc-summarize, archive-lzh-summarize): Convert csize to integer when
Eli Zaretskii <eliz@gnu.org>
parents:
70544
diff
changeset
|
1391 ;; p needs to stay an integer, since we use it in char-after |
ff708eaf43ab
(archive-arc-summarize, archive-lzh-summarize): Convert csize to integer when
Eli Zaretskii <eliz@gnu.org>
parents:
70544
diff
changeset
|
1392 ;; above. Passing through `round' limits the compressed size |
ff708eaf43ab
(archive-arc-summarize, archive-lzh-summarize): Convert csize to integer when
Eli Zaretskii <eliz@gnu.org>
parents:
70544
diff
changeset
|
1393 ;; to most-positive-fixnum, but if the compressed size exceeds |
ff708eaf43ab
(archive-arc-summarize, archive-lzh-summarize): Convert csize to integer when
Eli Zaretskii <eliz@gnu.org>
parents:
70544
diff
changeset
|
1394 ;; that, we cannot visit the archive anyway. |
ff708eaf43ab
(archive-arc-summarize, archive-lzh-summarize): Convert csize to integer when
Eli Zaretskii <eliz@gnu.org>
parents:
70544
diff
changeset
|
1395 p (+ p 29 (round csize))))) |
11880 | 1396 (goto-char (point-min)) |
1397 (let ((dash (concat "- -------- ----------- -------- " | |
1398 (make-string maxlen ?-) | |
1399 "\n"))) | |
1400 (insert "M Length Date Time File\n" | |
1401 dash) | |
1402 (archive-summarize-files (nreverse visual)) | |
1403 (insert dash | |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1404 (format " %8.0f %d file%s" |
11880 | 1405 totalsize |
1406 (length files) | |
1407 (if (= 1 (length files)) "" "s")) | |
1408 "\n")) | |
1409 (apply 'vector (nreverse files)))) | |
1410 | |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1411 (defun archive-arc-rename-entry (newname descr) |
11880 | 1412 (if (string-match "[:\\\\/]" newname) |
49238
86973b914660
(archive-arc-rename-entry): Fix error message.
Kim F. Storm <storm@cua.dk>
parents:
49166
diff
changeset
|
1413 (error "File names in arc files must not contain a directory component")) |
11880 | 1414 (if (> (length newname) 12) |
1415 (error "File names in arc files are limited to 12 characters")) | |
1416 (let ((name (concat newname (substring "\0\0\0\0\0\0\0\0\0\0\0\0\0" | |
1417 (length newname)))) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1418 (inhibit-read-only t)) |
11880 | 1419 (save-restriction |
1420 (save-excursion | |
1421 (widen) | |
1422 (goto-char (+ archive-proper-file-start (aref descr 4) 2)) | |
1423 (delete-char 13) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1424 (insert-unibyte name))))) |
11880 | 1425 ;; ------------------------------------------------------------------------- |
1426 ;; Section: Lzh Archives | |
1427 | |
77330
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1428 (defun archive-lzh-summarize (&optional start) |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1429 (let ((p (or start 1)) ;; 1 for .lzh, something further on for .exe |
11880 | 1430 (totalsize 0) |
1431 (maxlen 8) | |
1432 files | |
1433 visual) | |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1434 (while (progn (goto-char p) ;beginning of a base header. |
20767
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1435 (looking-at "\\(.\\|\n\\)\\(.\\|\n\\)-l[hz][0-9ds]-")) |
89483 | 1436 (let* ((hsize (byte-after p)) ;size of the base header (level 0 and 1) |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1437 ;; Convert to float to avoid overflow for very large files. |
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1438 (csize (archive-l-e (+ p 7) 4 'float)) ;size of a compressed file to follow (level 0 and 2), |
51158
00d0f607793b
(archive-lzh-summarize): Calculate correct total
Richard M. Stallman <rms@gnu.org>
parents:
50835
diff
changeset
|
1439 ;size of extended headers + the compressed file to follow (level 1). |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1440 (ucsize (archive-l-e (+ p 11) 4 'float)) ;size of an uncompressed file. |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1441 (time1 (archive-l-e (+ p 15) 2)) ;date/time (MSDOS format in level 0, 1 headers |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1442 (time2 (archive-l-e (+ p 17) 2)) ;and UNIX format in level 2 header.) |
89483 | 1443 (hdrlvl (byte-after (+ p 20))) ;header level |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1444 thsize ;total header size (base + extensions) |
77274
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1445 fnlen efnname osid fiddle ifnname width p2 |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1446 neh ;beginning of next extension header (level 1 and 2) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1447 mode modestr uid gid text dir prname |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1448 gname uname modtime moddate) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1449 (if (= hdrlvl 3) (error "can't handle lzh level 3 header type")) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1450 (when (or (= hdrlvl 0) (= hdrlvl 1)) |
89483 | 1451 (setq fnlen (byte-after (+ p 21))) ;filename length |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1452 (setq efnname (let ((str (buffer-substring (+ p 22) (+ p 22 fnlen)))) ;filename from offset 22 |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1453 (decode-coding-string |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1454 str archive-file-name-coding-system))) |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1455 (setq p2 (+ p 22 fnlen))) ; |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1456 (if (= hdrlvl 1) |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1457 (setq neh (+ p2 3)) ;specific to level 1 header |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1458 (if (= hdrlvl 2) |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1459 (setq neh (+ p 24)))) ;specific to level 2 header |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1460 (if neh ;if level 1 or 2 we expect extension headers to follow |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1461 (let* ((ehsize (archive-l-e neh 2)) ;size of the extension header |
89483 | 1462 (etype (byte-after (+ neh 2)))) ;extension type |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1463 (while (not (= ehsize 0)) |
20767
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1464 (cond |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1465 ((= etype 1) ;file name |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1466 (let ((i (+ neh 3))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1467 (while (< i (+ neh ehsize)) |
89483 | 1468 (setq efnname (concat efnname (char-to-string (byte-after i)))) |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1469 (setq i (1+ i))))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1470 ((= etype 2) ;directory name |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1471 (let ((i (+ neh 3))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1472 (while (< i (+ neh ehsize)) |
49238
86973b914660
(archive-arc-rename-entry): Fix error message.
Kim F. Storm <storm@cua.dk>
parents:
49166
diff
changeset
|
1473 (setq dir (concat dir |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1474 (if (= (byte-after i) |
20767
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1475 255) |
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1476 "/" |
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1477 (char-to-string |
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1478 (char-after i))))) |
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1479 (setq i (1+ i))))) |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1480 ((= etype 80) ;Unix file permission |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1481 (setq mode (archive-l-e (+ neh 3) 2))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1482 ((= etype 81) ;UNIX file group/user ID |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1483 (progn (setq uid (archive-l-e (+ neh 3) 2)) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1484 (setq gid (archive-l-e (+ neh 5) 2)))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1485 ((= etype 82) ;UNIX file group name |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1486 (let ((i (+ neh 3))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1487 (while (< i (+ neh ehsize)) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1488 (setq gname (concat gname (char-to-string (char-after i)))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1489 (setq i (1+ i))))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1490 ((= etype 83) ;UNIX file user name |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1491 (let ((i (+ neh 3))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1492 (while (< i (+ neh ehsize)) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1493 (setq uname (concat uname (char-to-string (char-after i)))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1494 (setq i (1+ i))))) |
20767
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1495 ) |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1496 (setq neh (+ neh ehsize)) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1497 (setq ehsize (archive-l-e neh 2)) |
89483 | 1498 (setq etype (byte-after (+ neh 2)))) |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1499 ;;get total header size for level 1 and 2 headers |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1500 (setq thsize (- neh p)))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1501 (if (= hdrlvl 0) ;total header size |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1502 (setq thsize hsize)) |
77274
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1503 ;; OS ID field not present in level 0 header, use code 0 "generic" |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1504 ;; in that case as per lha program header.c get_header() |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1505 (setq osid (cond ((= hdrlvl 0) 0) |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1506 ((= hdrlvl 1) (char-after (+ p 22 fnlen 2))) |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1507 ((= hdrlvl 2) (char-after (+ p 23))))) |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1508 ;; Filename fiddling must follow the lha program, otherwise the name |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1509 ;; passed to "lha pq" etc won't match (which for an extract silently |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1510 ;; results in no output). As of version 1.14i it goes from the OS ID, |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1511 ;; - For 'M' MSDOS: msdos_to_unix_filename() downcases always, and |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1512 ;; converts "\" to "/". |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1513 ;; - For 0 generic: generic_to_unix_filename() downcases if there's |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1514 ;; no lower case already present, and converts "\" to "/". |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1515 ;; - For 'm' MacOS: macos_to_unix_filename() changes "/" to ":" and |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1516 ;; ":" to "/" |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1517 (setq fiddle (cond ((= ?M osid) t) |
d966323ac214
(archive-lzh-summarize): Only apply the "downcase if all upcase" rule
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
1518 ((= 0 osid) (string= efnname (upcase efnname))))) |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1519 (setq ifnname (if fiddle (downcase efnname) efnname)) |
49238
86973b914660
(archive-arc-rename-entry): Fix error message.
Kim F. Storm <storm@cua.dk>
parents:
49166
diff
changeset
|
1520 (setq prname (if dir (concat dir ifnname) ifnname)) |
49509
389fbac8d443
(archive-lzh-summarize): Fix previous change.
Juanma Barranquero <lekktu@gmail.com>
parents:
49437
diff
changeset
|
1521 (setq width (if prname (string-width prname) 0)) |
20767
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1522 (setq modestr (if mode (archive-int-to-mode mode) "??????????")) |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1523 (setq moddate (if (= hdrlvl 2) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1524 (archive-unixdate time1 time2) ;level 2 header in UNIX format |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1525 (archive-dosdate time2))) ;level 0 and 1 header in DOS format |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1526 (setq modtime (if (= hdrlvl 2) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1527 (archive-unixtime time1 time2) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1528 (archive-dostime time1))) |
20767
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1529 (setq text (if archive-alternate-display |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1530 (format " %8.0f %5S %5S %s" |
11880 | 1531 ucsize |
1532 (or uid "?") | |
1533 (or gid "?") | |
1534 ifnname) | |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1535 (format " %10s %8.0f %-11s %-8s %s" |
11880 | 1536 modestr |
1537 ucsize | |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1538 moddate |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1539 modtime |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1540 prname))) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1541 (setq maxlen (max maxlen width) |
11880 | 1542 totalsize (+ totalsize ucsize) |
1543 visual (cons (vector text | |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1544 (- (length text) (length prname)) |
11880 | 1545 (length text)) |
1546 visual) | |
20767
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1547 files (cons (vector prname ifnname fiddle mode (1- p)) |
51158
00d0f607793b
(archive-lzh-summarize): Calculate correct total
Richard M. Stallman <rms@gnu.org>
parents:
50835
diff
changeset
|
1548 files)) |
00d0f607793b
(archive-lzh-summarize): Calculate correct total
Richard M. Stallman <rms@gnu.org>
parents:
50835
diff
changeset
|
1549 (cond ((= hdrlvl 1) |
70679
ff708eaf43ab
(archive-arc-summarize, archive-lzh-summarize): Convert csize to integer when
Eli Zaretskii <eliz@gnu.org>
parents:
70544
diff
changeset
|
1550 ;; p needs to stay an integer, since we use it in goto-char |
ff708eaf43ab
(archive-arc-summarize, archive-lzh-summarize): Convert csize to integer when
Eli Zaretskii <eliz@gnu.org>
parents:
70544
diff
changeset
|
1551 ;; above. Passing through `round' limits the compressed size |
ff708eaf43ab
(archive-arc-summarize, archive-lzh-summarize): Convert csize to integer when
Eli Zaretskii <eliz@gnu.org>
parents:
70544
diff
changeset
|
1552 ;; to most-positive-fixnum, but if the compressed size exceeds |
ff708eaf43ab
(archive-arc-summarize, archive-lzh-summarize): Convert csize to integer when
Eli Zaretskii <eliz@gnu.org>
parents:
70544
diff
changeset
|
1553 ;; that, we cannot visit the archive anyway. |
ff708eaf43ab
(archive-arc-summarize, archive-lzh-summarize): Convert csize to integer when
Eli Zaretskii <eliz@gnu.org>
parents:
70544
diff
changeset
|
1554 (setq p (+ p hsize 2 (round csize)))) |
51158
00d0f607793b
(archive-lzh-summarize): Calculate correct total
Richard M. Stallman <rms@gnu.org>
parents:
50835
diff
changeset
|
1555 ((or (= hdrlvl 2) (= hdrlvl 0)) |
70679
ff708eaf43ab
(archive-arc-summarize, archive-lzh-summarize): Convert csize to integer when
Eli Zaretskii <eliz@gnu.org>
parents:
70544
diff
changeset
|
1556 (setq p (+ p thsize 2 (round csize))))) |
51158
00d0f607793b
(archive-lzh-summarize): Calculate correct total
Richard M. Stallman <rms@gnu.org>
parents:
50835
diff
changeset
|
1557 )) |
11880 | 1558 (goto-char (point-min)) |
1559 (let ((dash (concat (if archive-alternate-display | |
1560 "- -------- ----- ----- " | |
1561 "- ---------- -------- ----------- -------- ") | |
1562 (make-string maxlen ?-) | |
1563 "\n")) | |
1564 (header (if archive-alternate-display | |
1565 "M Length Uid Gid File\n" | |
1566 "M Filemode Length Date Time File\n")) | |
1567 (sumline (if archive-alternate-display | |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1568 " %8.0f %d file%s" |
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1569 " %8.0f %d file%s"))) |
11880 | 1570 (insert header dash) |
1571 (archive-summarize-files (nreverse visual)) | |
1572 (insert dash | |
1573 (format sumline | |
1574 totalsize | |
1575 (length files) | |
1576 (if (= 1 (length files)) "" "s")) | |
1577 "\n")) | |
1578 (apply 'vector (nreverse files)))) | |
1579 | |
1580 (defconst archive-lzh-alternate-display t) | |
1581 | |
1582 (defun archive-lzh-extract (archive name) | |
1583 (archive-extract-by-stdout archive name archive-lzh-extract)) | |
1584 | |
1585 (defun archive-lzh-resum (p count) | |
1586 (let ((sum 0)) | |
1587 (while (> count 0) | |
1588 (setq count (1- count) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1589 sum (+ sum (byte-after p)) |
11880 | 1590 p (1+ p))) |
1591 (logand sum 255))) | |
1592 | |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1593 (defun archive-lzh-rename-entry (newname descr) |
11880 | 1594 (save-restriction |
1595 (save-excursion | |
1596 (widen) | |
1597 (let* ((p (+ archive-proper-file-start (aref descr 4))) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1598 (oldhsize (byte-after p)) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1599 (oldfnlen (byte-after (+ p 21))) |
11880 | 1600 (newfnlen (length newname)) |
1601 (newhsize (+ oldhsize newfnlen (- oldfnlen))) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1602 (inhibit-read-only t)) |
11880 | 1603 (if (> newhsize 255) |
1604 (error "The file name is too long")) | |
1605 (goto-char (+ p 21)) | |
1606 (delete-char (1+ oldfnlen)) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1607 (insert-unibyte newfnlen newname) |
11880 | 1608 (goto-char p) |
1609 (delete-char 2) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1610 (insert-unibyte newhsize (archive-lzh-resum p newhsize)))))) |
11880 | 1611 |
1612 (defun archive-lzh-ogm (newval files errtxt ofs) | |
64086
2aeabf7911c9
(archive-lzh-ogm): Reorder save excursion/restriction.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63891
diff
changeset
|
1613 (save-excursion |
2aeabf7911c9
(archive-lzh-ogm): Reorder save excursion/restriction.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63891
diff
changeset
|
1614 (save-restriction |
11880 | 1615 (widen) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1616 (dolist (fil files) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1617 (let* ((p (+ archive-proper-file-start (aref fil 4))) |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1618 (hsize (byte-after p)) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1619 (fnlen (byte-after (+ p 21))) |
11880 | 1620 (p2 (+ p 22 fnlen)) |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1621 (creator (if (>= (- hsize fnlen) 24) (byte-after (+ p2 2)) 0)) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1622 (inhibit-read-only t)) |
11880 | 1623 (if (= creator ?U) |
1624 (progn | |
1625 (or (numberp newval) | |
1626 (setq newval (funcall newval (archive-l-e (+ p2 ofs) 2)))) | |
1627 (goto-char (+ p2 ofs)) | |
1628 (delete-char 2) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1629 (insert-unibyte (logand newval 255) (lsh newval -8)) |
11880 | 1630 (goto-char (1+ p)) |
1631 (delete-char 1) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1632 (insert-unibyte (archive-lzh-resum (1+ p) hsize))) |
11880 | 1633 (message "Member %s does not have %s field" |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1634 (aref fil 1) errtxt))))))) |
11880 | 1635 |
1636 (defun archive-lzh-chown-entry (newuid files) | |
1637 (archive-lzh-ogm newuid files "an uid" 10)) | |
1638 | |
1639 (defun archive-lzh-chgrp-entry (newgid files) | |
1640 (archive-lzh-ogm newgid files "a gid" 12)) | |
1641 | |
1642 (defun archive-lzh-chmod-entry (newmode files) | |
1643 (archive-lzh-ogm | |
1644 ;; This should work even though newmode will be dynamically accessed. | |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1645 (lambda (old) (archive-calc-mode old newmode t)) |
11880 | 1646 files "a unix-style mode" 8)) |
77330
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1647 |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1648 ;; ------------------------------------------------------------------------- |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1649 ;; Section: Lzh Self-Extracting .exe Archives |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1650 ;; |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1651 ;; No support for modifying these files. It looks like the lha for unix |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1652 ;; program (as of version 1.14i) can't create or retain the DOS exe part. |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1653 ;; If you do an "lha a" on a .exe for instance it renames and writes to a |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1654 ;; plain .lzh. |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1655 |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1656 (defun archive-lzh-exe-summarize () |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1657 "Summarize the contents of an LZH self-extracting exe, for `archive-mode'." |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1658 |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1659 ;; Skip the initial executable code part and apply archive-lzh-summarize |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1660 ;; to the archive part proper. The "-lh5-" etc regexp here for the start |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1661 ;; is the same as in archive-find-type. |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1662 ;; |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1663 ;; The lha program (version 1.14i) does this in skip_msdos_sfx1_code() by |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1664 ;; a similar scan. It looks for "..-l..-" plus for level 0 or 1 a test of |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1665 ;; the header checksum, or level 2 a test of the "attribute" and size. |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1666 ;; |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1667 (re-search-forward "..-l[hz][0-9ds]-" nil) |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1668 (archive-lzh-summarize (match-beginning 0))) |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1669 |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1670 ;; `archive-lzh-extract' runs "lha pq", and that works for .exe as well as |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1671 ;; .lzh files |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1672 (defalias 'archive-lzh-exe-extract 'archive-lzh-extract |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1673 "Extract a member from an LZH self-extracting exe, for `archive-mode'.") |
1b3aff56da73
(archive-find-type): lzh-exe for lzh self-extracting exe.
Chong Yidong <cyd@stupidchicken.com>
parents:
77274
diff
changeset
|
1674 |
11880 | 1675 ;; ------------------------------------------------------------------------- |
1676 ;; Section: Zip Archives | |
1677 | |
1678 (defun archive-zip-summarize () | |
1679 (goto-char (- (point-max) (- 22 18))) | |
1680 (search-backward-regexp "[P]K\005\006") | |
48226
65903e252ec1
(archive-zip-summarize): Don't hardcode (point-min) = 1.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45363
diff
changeset
|
1681 (let ((p (+ (point-min) (archive-l-e (+ (point) 16) 4))) |
11880 | 1682 (maxlen 8) |
1683 (totalsize 0) | |
1684 files | |
1685 visual) | |
1686 (while (string= "PK\001\002" (buffer-substring p (+ p 4))) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1687 (let* ((creator (byte-after (+ p 5))) |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1688 ;; (method (archive-l-e (+ p 10) 2)) |
11880 | 1689 (modtime (archive-l-e (+ p 12) 2)) |
1690 (moddate (archive-l-e (+ p 14) 2)) | |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1691 ;; Convert to float to avoid overflow for very large files. |
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1692 (ucsize (archive-l-e (+ p 24) 4 'float)) |
11880 | 1693 (fnlen (archive-l-e (+ p 28) 2)) |
1694 (exlen (archive-l-e (+ p 30) 2)) | |
12304
3cf4df625c3b
(archive-zip-summarize): Handle per-file comments in central directory.
Richard M. Stallman <rms@gnu.org>
parents:
12024
diff
changeset
|
1695 (fclen (archive-l-e (+ p 32) 2)) |
11880 | 1696 (lheader (archive-l-e (+ p 42) 4)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1697 (efnname (let ((str (buffer-substring (+ p 46) (+ p 46 fnlen)))) |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1698 (decode-coding-string |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1699 str archive-file-name-coding-system))) |
11880 | 1700 (isdir (and (= ucsize 0) |
1701 (string= (file-name-nondirectory efnname) ""))) | |
1702 (mode (cond ((memq creator '(2 3)) ; Unix + VMS | |
1703 (archive-l-e (+ p 40) 2)) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1704 ((memq creator '(0 5 6 7 10 11 15)) ; Dos etc. |
11880 | 1705 (logior ?\444 |
1706 (if isdir (logior 16384 ?\111) 0) | |
1707 (if (zerop | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1708 (logand 1 (byte-after (+ p 38)))) |
11880 | 1709 ?\222 0))) |
1710 (t nil))) | |
1711 (modestr (if mode (archive-int-to-mode mode) "??????????")) | |
1712 (fiddle (and archive-zip-case-fiddle | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1713 (not (not (memq creator '(0 2 4 5 9)))) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1714 (string= (upcase efnname) efnname))) |
11880 | 1715 (ifnname (if fiddle (downcase efnname) efnname)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1716 (width (string-width ifnname)) |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1717 (text (format " %10s %8.0f %-11s %-8s %s" |
11880 | 1718 modestr |
1719 ucsize | |
1720 (archive-dosdate moddate) | |
1721 (archive-dostime modtime) | |
1722 ifnname))) | |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1723 (setq maxlen (max maxlen width) |
11880 | 1724 totalsize (+ totalsize ucsize) |
1725 visual (cons (vector text | |
1726 (- (length text) (length ifnname)) | |
1727 (length text)) | |
1728 visual) | |
1729 files (cons (if isdir | |
1730 nil | |
1731 (vector efnname ifnname fiddle mode | |
1732 (list (1- p) lheader))) | |
1733 files) | |
12304
3cf4df625c3b
(archive-zip-summarize): Handle per-file comments in central directory.
Richard M. Stallman <rms@gnu.org>
parents:
12024
diff
changeset
|
1734 p (+ p 46 fnlen exlen fclen)))) |
11880 | 1735 (goto-char (point-min)) |
1736 (let ((dash (concat "- ---------- -------- ----------- -------- " | |
1737 (make-string maxlen ?-) | |
1738 "\n"))) | |
1739 (insert "M Filemode Length Date Time File\n" | |
1740 dash) | |
1741 (archive-summarize-files (nreverse visual)) | |
1742 (insert dash | |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1743 (format " %8.0f %d file%s" |
11880 | 1744 totalsize |
1745 (length files) | |
1746 (if (= 1 (length files)) "" "s")) | |
1747 "\n")) | |
1748 (apply 'vector (nreverse files)))) | |
1749 | |
1750 (defun archive-zip-extract (archive name) | |
45362
854ecfb3a883
(archive-zip-use-pkzip): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
43679
diff
changeset
|
1751 (if (equal (car archive-zip-extract) "pkzip") |
11880 | 1752 (archive-*-extract archive name archive-zip-extract) |
1753 (archive-extract-by-stdout archive name archive-zip-extract))) | |
1754 | |
1755 (defun archive-zip-write-file-member (archive descr) | |
1756 (archive-*-write-file-member | |
1757 archive | |
1758 descr | |
1759 (if (aref descr 2) archive-zip-update-case archive-zip-update))) | |
1760 | |
1761 (defun archive-zip-chmod-entry (newmode files) | |
1762 (save-restriction | |
1763 (save-excursion | |
1764 (widen) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1765 (dolist (fil files) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1766 (let* ((p (+ archive-proper-file-start (car (aref fil 4)))) |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1767 (creator (byte-after (+ p 5))) |
11880 | 1768 (oldmode (aref fil 3)) |
1769 (newval (archive-calc-mode oldmode newmode t)) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1770 (inhibit-read-only t)) |
11880 | 1771 (cond ((memq creator '(2 3)) ; Unix + VMS |
1772 (goto-char (+ p 40)) | |
1773 (delete-char 2) | |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1774 (insert-unibyte (logand newval 255) (lsh newval -8))) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1775 ((memq creator '(0 5 6 7 10 11 15)) ; Dos etc. |
11880 | 1776 (goto-char (+ p 38)) |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1777 (insert-unibyte (logior (logand (byte-after (point)) 254) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1778 (logand (logxor 1 (lsh newval -7)) 1))) |
11880 | 1779 (delete-char 1)) |
1780 (t (message "Don't know how to change mode for this member")))) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1781 )))) |
11880 | 1782 ;; ------------------------------------------------------------------------- |
1783 ;; Section: Zoo Archives | |
1784 | |
1785 (defun archive-zoo-summarize () | |
1786 (let ((p (1+ (archive-l-e 25 4))) | |
1787 (maxlen 8) | |
1788 (totalsize 0) | |
1789 files | |
1790 visual) | |
1791 (while (and (string= "\334\247\304\375" (buffer-substring p (+ p 4))) | |
1792 (> (archive-l-e (+ p 6) 4) 0)) | |
1793 (let* ((next (1+ (archive-l-e (+ p 6) 4))) | |
1794 (moddate (archive-l-e (+ p 14) 2)) | |
1795 (modtime (archive-l-e (+ p 16) 2)) | |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1796 ;; Convert to float to avoid overflow for very large files. |
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1797 (ucsize (archive-l-e (+ p 20) 4 'float)) |
11880 | 1798 (namefld (buffer-substring (+ p 38) (+ p 38 13))) |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1799 (dirtype (byte-after (+ p 4))) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1800 (lfnlen (if (= dirtype 2) (byte-after (+ p 56)) 0)) |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1801 (ldirlen (if (= dirtype 2) (byte-after (+ p 57)) 0)) |
20239
5bf13ca1dbac
(archive-zoo-summarize): Properly handle the case of
Andreas Schwab <schwab@suse.de>
parents:
19998
diff
changeset
|
1802 (fnlen (or (string-match "\0" namefld) 13)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1803 (efnname (let ((str |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1804 (concat |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1805 (if (> ldirlen 0) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1806 (concat (buffer-substring |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1807 (+ p 58 lfnlen) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1808 (+ p 58 lfnlen ldirlen -1)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1809 "/") |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1810 "") |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1811 (if (> lfnlen 0) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1812 (buffer-substring (+ p 58) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1813 (+ p 58 lfnlen -1)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1814 (substring namefld 0 fnlen))))) |
88954
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1815 (decode-coding-string |
363e137c2601
(archive-file-name-coding-system): New variable.
Kenichi Handa <handa@m17n.org>
parents:
42704
diff
changeset
|
1816 str archive-file-name-coding-system))) |
13339
13b7b667b18f
(archive-zoo-summarize): Handle archives with long file names.
Richard M. Stallman <rms@gnu.org>
parents:
12791
diff
changeset
|
1817 (fiddle (and (= lfnlen 0) (string= efnname (upcase efnname)))) |
11880 | 1818 (ifnname (if fiddle (downcase efnname) efnname)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1819 (width (string-width ifnname)) |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1820 (text (format " %8.0f %-11s %-8s %s" |
11880 | 1821 ucsize |
1822 (archive-dosdate moddate) | |
1823 (archive-dostime modtime) | |
1824 ifnname))) | |
32484
bb1bfa010bf3
(archive-zoo-summarize): Fix from gnu.emacs.bug.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29681
diff
changeset
|
1825 (setq maxlen (max maxlen width) |
11880 | 1826 totalsize (+ totalsize ucsize) |
1827 visual (cons (vector text | |
1828 (- (length text) (length ifnname)) | |
1829 (length text)) | |
1830 visual) | |
1831 files (cons (vector efnname ifnname fiddle nil (1- p)) | |
1832 files) | |
1833 p next))) | |
1834 (goto-char (point-min)) | |
1835 (let ((dash (concat "- -------- ----------- -------- " | |
1836 (make-string maxlen ?-) | |
1837 "\n"))) | |
1838 (insert "M Length Date Time File\n" | |
1839 dash) | |
1840 (archive-summarize-files (nreverse visual)) | |
1841 (insert dash | |
70388
000b130bfb7d
(archive-l-e): New optional argument `float' means generate a float value.
Eli Zaretskii <eliz@gnu.org>
parents:
69331
diff
changeset
|
1842 (format " %8.0f %d file%s" |
11880 | 1843 totalsize |
1844 (length files) | |
1845 (if (= 1 (length files)) "" "s")) | |
1846 "\n")) | |
1847 (apply 'vector (nreverse files)))) | |
1848 | |
1849 (defun archive-zoo-extract (archive name) | |
1850 (archive-extract-by-stdout archive name archive-zoo-extract)) | |
1851 ;; ------------------------------------------------------------------------- | |
23467
dd5bbd8db2f5
(arc-mode): Provide arc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
23383
diff
changeset
|
1852 ;; This line was a mistake; it is kept now for compatibility. |
dd5bbd8db2f5
(arc-mode): Provide arc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
23383
diff
changeset
|
1853 ;; rms 15 Oct 98 |
11880 | 1854 (provide 'archive-mode) |
1855 | |
23467
dd5bbd8db2f5
(arc-mode): Provide arc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
23383
diff
changeset
|
1856 (provide 'arc-mode) |
dd5bbd8db2f5
(arc-mode): Provide arc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
23383
diff
changeset
|
1857 |
61414
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
1858 ;; arch-tag: e5966a01-35ec-4f27-8095-a043a79b457b |
38409
153f1b1f2efd
Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
38072
diff
changeset
|
1859 ;;; arc-mode.el ends here |