Mercurial > emacs
annotate lisp/arc-mode.el @ 64565:e4fcf58d872c
(widget-default-create, widget-after-change, widget-default-format-handler,
widget-checklist-add-item, widget-radio-add-item, widget-choose,
widget-specify-secret, widget-field-value-create, widget-field-value-get,
widget-editable-list-format-handler, widget-editable-list-entry-create,
widget-group-value-create, widget-documentation-link-add,
widget-documentation-string-value-create): "?\ " -> "?\s".
(widget-convert-text): Doc fix.
(widget-narrow-to-field, widget-field-find, widget-url-link-action,
widget-emacs-library-link-action, widget-color-notify): Fix typos in docstrings.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 21 Jul 2005 11:41:54 +0000 |
parents | 54d2ccd509bc |
children | 41bb365f41c4 187d6a1f84f7 |
rev | line source |
---|---|
11880 | 1 ;;; arc-mode.el --- simple editing of archives |
2 | |
61414
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
3 ;; Copyright (C) 1995, 1997, 1998, 2003, 2005 Free Software Foundation, Inc. |
11880 | 4 |
53397
2843dc1a9a6f
Update author email addr.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
5 ;; Author: Morten Welinder <terra@gnu.org> |
11880 | 6 ;; Keywords: archives msdog editing major-mode |
7 ;; Favourite-brand-of-beer: None, I hate beer. | |
8 | |
14169 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64091 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
11880 | 25 |
26 ;;; Commentary: | |
14169 | 27 |
11880 | 28 ;; NAMING: "arc" is short for "archive" and does not refer specifically |
29 ;; to files whose name end in ".arc" | |
30 ;; | |
31 ;; This code does not decode any files internally, although it does | |
32 ;; understand the directory level of the archives. For this reason, | |
33 ;; you should expect this code to need more fiddling than tar-mode.el | |
34 ;; (although it at present has fewer bugs :-) In particular, I have | |
35 ;; not tested this under Ms-Dog myself. | |
36 ;; ------------------------------------- | |
37 ;; INTERACTION: arc-mode.el should play together with | |
38 ;; | |
39 ;; * ange-ftp.el: Remote archives (i.e., ones that ange-ftp has brought | |
40 ;; to you) are handled by doing all updates on a local | |
41 ;; copy. When you make changes to a remote file the | |
42 ;; changes will first take effect when the archive buffer | |
43 ;; is saved. You will be warned about this. | |
44 ;; | |
45 ;; * dos-fns.el: (Part of Emacs 19). You get automatic ^M^J <--> ^J | |
46 ;; conversion. | |
47 ;; | |
48 ;; arc-mode.el does not work well with crypt++.el; for the archives as | |
49 ;; such this could be fixed (but wouldn't be useful) by declaring such | |
50 ;; archives to be "remote". For the members this is a general Emacs | |
51 ;; problem that 19.29's file formats may fix. | |
52 ;; ------------------------------------- | |
53 ;; ARCHIVE TYPES: Currently only the archives below are handled, but the | |
54 ;; structure for handling just about anything is in place. | |
55 ;; | |
56 ;; Arc Lzh Zip Zoo | |
57 ;; -------------------------------- | |
58 ;; View listing Intern Intern Intern Intern | |
59 ;; Extract member Y Y Y Y | |
60 ;; Save changed member Y Y Y Y | |
61 ;; Add new member N N N N | |
62 ;; Delete member Y Y Y Y | |
63 ;; Rename member Y Y N N | |
64 ;; Chmod - Y Y - | |
65 ;; Chown - Y - - | |
66 ;; Chgrp - Y - - | |
67 ;; | |
68 ;; Special thanks to Bill Brodie <wbrodie@panix.com> for very useful tips | |
69 ;; on the first released version of this package. | |
70 ;; | |
71 ;; This code is partly based on tar-mode.el from Emacs. | |
72 ;; ------------------------------------- | |
73 ;; ARCHIVE STRUCTURES: | |
74 ;; (This is mostly for myself.) | |
75 ;; | |
76 ;; ARC A series of (header,file). No interactions among members. | |
77 ;; | |
78 ;; LZH A series of (header,file). Headers are checksummed. No | |
79 ;; interaction among members. | |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
80 ;; 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
|
81 ;; 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
|
82 ;; 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
|
83 ;; 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
|
84 ;; 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
|
85 ;; http://www.osirusoft.com/joejared/lzhformat.html |
11880 | 86 ;; |
87 ;; ZIP A series of (lheader,fil) followed by a "central directory" | |
88 ;; which is a series of (cheader) followed by an end-of- | |
89 ;; central-dir record possibly followed by junk. The e-o-c-d | |
90 ;; links to c-d. cheaders link to lheaders which are basically | |
91 ;; cut-down versions of the cheaders. | |
92 ;; | |
93 ;; ZOO An archive header followed by a series of (header,file). | |
94 ;; Each member header points to the next. The archive is | |
95 ;; terminated by a bogus header with a zero next link. | |
96 ;; ------------------------------------- | |
42704 | 97 ;; HOOKS: `foo' means one of the supported archive types. |
11880 | 98 ;; |
99 ;; archive-mode-hook | |
100 ;; archive-foo-mode-hook | |
101 ;; archive-extract-hooks | |
102 | |
103 ;;; Code: | |
104 | |
105 ;; ------------------------------------------------------------------------- | |
106 ;; Section: Configuration. | |
107 | |
19926 | 108 (defgroup archive nil |
109 "Simple editing of archives." | |
110 :group 'data) | |
111 | |
112 (defgroup archive-arc nil | |
113 "ARC-specific options to archive." | |
114 :group 'archive) | |
115 | |
116 (defgroup archive-lzh nil | |
117 "LZH-specific options to archive." | |
118 :group 'archive) | |
11880 | 119 |
19926 | 120 (defgroup archive-zip nil |
121 "ZIP-specific options to archive." | |
122 :group 'archive) | |
123 | |
124 (defgroup archive-zoo nil | |
125 "ZOO-specific options to archive." | |
126 :group 'archive) | |
127 | |
128 (defcustom archive-tmpdir | |
43679 | 129 ;; make-temp-name is safe here because we use this name |
130 ;; to create a directory. | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
131 (make-temp-name |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
132 (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
|
133 temporary-file-directory)) |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
134 "Directory for temporary files made by `arc-mode.el'." |
19926 | 135 :type 'directory |
136 :group 'archive) | |
11880 | 137 |
19926 | 138 (defcustom archive-remote-regexp "^/[^/:]*[^/:.]:" |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
139 "*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
|
140 A non-local file is one whose file name is not proper outside Emacs. |
19926 | 141 A local copy of the archive will be used when updating." |
142 :type 'regexp | |
143 :group 'archive) | |
11880 | 144 |
19926 | 145 (defcustom archive-extract-hooks nil |
146 "*Hooks to run when an archive member has been extracted." | |
147 :type 'hook | |
148 :group 'archive) | |
11880 | 149 ;; ------------------------------ |
150 ;; Arc archive configuration | |
151 | |
152 ;; We always go via a local file since there seems to be no reliable way | |
153 ;; to extract to stdout without junk getting added. | |
19926 | 154 (defcustom archive-arc-extract |
11880 | 155 '("arc" "x") |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
156 "*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
|
157 Extraction should happen to the current directory. Archive and member |
19926 | 158 name will be added." |
159 :type '(list (string :tag "Program") | |
160 (repeat :tag "Options" | |
161 :inline t | |
162 (string :format "%v"))) | |
163 :group 'archive-arc) | |
11880 | 164 |
19926 | 165 (defcustom archive-arc-expunge |
11880 | 166 '("arc" "d") |
167 "*Program and its options to run in order to delete arc file members. | |
19926 | 168 Archive and member names will be added." |
169 :type '(list (string :tag "Program") | |
170 (repeat :tag "Options" | |
171 :inline t | |
172 (string :format "%v"))) | |
173 :group 'archive-arc) | |
11880 | 174 |
19926 | 175 (defcustom archive-arc-write-file-member |
11880 | 176 '("arc" "u") |
177 "*Program and its options to run in order to update an arc file member. | |
19926 | 178 Archive and member name will be added." |
179 :type '(list (string :tag "Program") | |
180 (repeat :tag "Options" | |
181 :inline t | |
182 (string :format "%v"))) | |
183 :group 'archive-arc) | |
11880 | 184 ;; ------------------------------ |
185 ;; Lzh archive configuration | |
186 | |
19926 | 187 (defcustom archive-lzh-extract |
11880 | 188 '("lha" "pq") |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
189 "*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
|
190 Extraction should happen to standard output. Archive and member name will |
19926 | 191 be added." |
192 :type '(list (string :tag "Program") | |
193 (repeat :tag "Options" | |
194 :inline t | |
195 (string :format "%v"))) | |
196 :group 'archive-lzh) | |
11880 | 197 |
19926 | 198 (defcustom archive-lzh-expunge |
11880 | 199 '("lha" "d") |
200 "*Program and its options to run in order to delete lzh file members. | |
19926 | 201 Archive and member names will be added." |
202 :type '(list (string :tag "Program") | |
203 (repeat :tag "Options" | |
204 :inline t | |
205 (string :format "%v"))) | |
206 :group 'archive-lzh) | |
11880 | 207 |
19926 | 208 (defcustom archive-lzh-write-file-member |
11880 | 209 '("lha" "a") |
210 "*Program and its options to run in order to update an lzh file member. | |
19926 | 211 Archive and member name will be added." |
212 :type '(list (string :tag "Program") | |
213 (repeat :tag "Options" | |
214 :inline t | |
215 (string :format "%v"))) | |
216 :group 'archive-lzh) | |
11880 | 217 ;; ------------------------------ |
218 ;; Zip archive configuration | |
219 | |
19926 | 220 (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
|
221 (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
|
222 (executable-find "pkunzip")) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
223 '("pkunzip" "-e" "-o-") |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
224 '("unzip" "-qq" "-c")) |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
225 "*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
|
226 Extraction should happen to standard output. Archive and member name will |
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
227 be added. If `archive-zip-use-pkzip' is non-nil then this program is |
19926 | 228 expected to extract to a file junking the directory part of the name." |
229 :type '(list (string :tag "Program") | |
230 (repeat :tag "Options" | |
231 :inline t | |
232 (string :format "%v"))) | |
233 :group 'archive-zip) | |
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 | |
16291 | 455 (defvar archive-files nil |
456 "Vector of file descriptors. | |
457 Each descriptor is a vector of the form | |
458 [EXT-FILE-NAME INT-FILE-NAME CASE-FIDDLED MODE ...]") | |
11880 | 459 (make-variable-buffer-local 'archive-files) |
12024
8e31a35ac027
(archive-lemacs): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
11887
diff
changeset
|
460 |
11880 | 461 ;; ------------------------------------------------------------------------- |
462 ;; Section: Support functions. | |
463 | |
464 (defsubst archive-name (suffix) | |
465 (intern (concat "archive-" (symbol-name archive-subtype) "-" suffix))) | |
466 | |
467 (defun archive-l-e (str &optional len) | |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
468 "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
|
469 Alternatively, STR may be a buffer position in the current buffer |
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
470 in which case a second argument, length LEN, should be supplied." |
11880 | 471 (if (stringp str) |
472 (setq len (length str)) | |
473 (setq str (buffer-substring str (+ str len)))) | |
474 (let ((result 0) | |
475 (i 0)) | |
476 (while (< i len) | |
477 (setq i (1+ i) | |
478 result (+ (ash result 8) (aref str (- len i))))) | |
479 result)) | |
480 | |
481 (defun archive-int-to-mode (mode) | |
37645
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
482 "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
|
483 ;; 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
|
484 (string |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
485 (if (zerop (logand 8192 mode)) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
486 (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
|
487 ?c) ; completeness |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
488 (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
|
489 (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
|
490 (if (zerop (logand 64 mode)) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
491 (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
|
492 (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
|
493 (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
|
494 (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
|
495 (if (zerop (logand 8 mode)) |
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
496 (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
|
497 (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
|
498 (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
|
499 (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
|
500 (if (zerop (logand 1 mode)) ?- ?x))) |
11880 | 501 |
502 (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
|
503 "From the integer OLDMODE and the string NEWMODE calculate a new file mode. |
11880 | 504 NEWMODE may be an octal number including a leading zero in which case it |
505 will become the new mode.\n | |
506 NEWMODE may also be a relative specification like \"og-rwx\" in which case | |
507 OLDMODE will be modified accordingly just like chmod(2) would have done.\n | |
508 If optional third argument ERROR is non-nil an error will be signaled if | |
509 the mode is invalid. If ERROR is nil then nil will be returned." | |
510 (cond ((string-match "^0[0-7]*$" newmode) | |
511 (let ((result 0) | |
512 (len (length newmode)) | |
513 (i 1)) | |
514 (while (< i len) | |
515 (setq result (+ (lsh result 3) (aref newmode i) (- ?0)) | |
516 i (1+ i))) | |
517 (logior (logand oldmode 65024) result))) | |
518 ((string-match "^\\([agou]+\\)\\([---+=]\\)\\([rwxst]+\\)$" newmode) | |
519 (let ((who 0) | |
520 (result oldmode) | |
521 (op (aref newmode (match-beginning 2))) | |
522 (bits 0) | |
523 (i (match-beginning 3))) | |
524 (while (< i (match-end 3)) | |
525 (let ((rwx (aref newmode i))) | |
526 (setq bits (logior bits (cond ((= rwx ?r) 292) | |
527 ((= rwx ?w) 146) | |
528 ((= rwx ?x) 73) | |
529 ((= rwx ?s) 3072) | |
530 ((= rwx ?t) 512))) | |
531 i (1+ i)))) | |
532 (while (< who (match-end 1)) | |
533 (let* ((whoc (aref newmode who)) | |
534 (whomask (cond ((= whoc ?a) 4095) | |
535 ((= whoc ?u) 1472) | |
536 ((= whoc ?g) 2104) | |
537 ((= whoc ?o) 7)))) | |
538 (if (= op ?=) | |
539 (setq result (logand result (lognot whomask)))) | |
540 (if (= op ?-) | |
541 (setq result (logand result (lognot (logand whomask bits)))) | |
542 (setq result (logior result (logand whomask bits))))) | |
543 (setq who (1+ who))) | |
544 result)) | |
545 (t | |
546 (if error | |
547 (error "Invalid mode specification: %s" newmode))))) | |
548 | |
549 (defun archive-dosdate (date) | |
550 "Stringify dos packed DATE record." | |
551 (let ((year (+ 1980 (logand (ash date -9) 127))) | |
552 (month (logand (ash date -5) 15)) | |
553 (day (logand date 31))) | |
554 (if (or (> month 12) (< month 1)) | |
555 "" | |
556 (format "%2d-%s-%d" | |
557 day | |
558 (aref ["Jan" "Feb" "Mar" "Apr" "May" "Jun" | |
559 "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"] (1- month)) | |
560 year)))) | |
561 | |
562 (defun archive-dostime (time) | |
563 "Stringify dos packed TIME record." | |
564 (let ((hour (logand (ash time -11) 31)) | |
39180
f952f4f3d625
(archive-dostime): Fix a typo in minutes' computation.
Eli Zaretskii <eliz@gnu.org>
parents:
38409
diff
changeset
|
565 (minute (logand (ash time -5) 63)) |
11880 | 566 (second (* 2 (logand time 31)))) ; 2 seconds resolution |
567 (format "%02d:%02d:%02d" hour minute second))) | |
568 | |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
569 (defun archive-unixdate (low high) |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
570 "Stringify Unix (LOW HIGH) date." |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
571 (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
|
572 (format "%s-%s-%s" |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
573 (substring str 8 10) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
574 (substring str 4 7) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
575 (substring str 20 24)))) |
11880 | 576 |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
577 (defun archive-unixtime (low high) |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
578 "Stringify Unix (LOW HIGH) time." |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
579 (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
|
580 (substring str 11 19))) |
11880 | 581 |
582 (defun archive-get-lineno () | |
583 (if (>= (point) archive-file-list-start) | |
584 (count-lines archive-file-list-start | |
585 (save-excursion (beginning-of-line) (point))) | |
586 0)) | |
587 | |
588 (defun archive-get-descr (&optional noerror) | |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
589 "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
|
590 Does not signal an error if optional argument NOERROR is non-nil." |
11880 | 591 (let ((no (archive-get-lineno))) |
592 (if (and (>= (point) archive-file-list-start) | |
593 (< no (length archive-files))) | |
594 (let ((item (aref archive-files no))) | |
595 (if (vectorp item) | |
596 item | |
597 (if (not noerror) | |
598 (error "Entry is not a regular member of the archive")))) | |
599 (if (not noerror) | |
600 (error "Line does not describe a member of the archive"))))) | |
601 ;; ------------------------------------------------------------------------- | |
602 ;; Section: the mode definition | |
603 | |
12437
c3597b66e4bf
(archive-mode): Add autoload cookie.
Richard M. Stallman <rms@gnu.org>
parents:
12304
diff
changeset
|
604 ;;;###autoload |
11880 | 605 (defun archive-mode (&optional force) |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
606 "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
|
607 You can move around using the usual cursor motion commands. |
11880 | 608 Letters no longer insert themselves. |
609 Type `e' to pull a file out of the archive and into its own buffer; | |
610 or click mouse-2 on the file's line in the archive mode buffer. | |
611 | |
612 If you edit a sub-file of this archive (as with the `e' command) and | |
613 save it, the contents of that buffer will be saved back into the | |
614 archive. | |
615 | |
616 \\{archive-mode-map}" | |
617 ;; This is not interactive because you shouldn't be turning this | |
618 ;; mode on and off. You can corrupt things that way. | |
619 (if (zerop (buffer-size)) | |
620 ;; At present we cannot create archives from scratch | |
621 (funcall default-major-mode) | |
622 (if (and (not force) archive-files) nil | |
623 (let* ((type (archive-find-type)) | |
37645
3fa9dd549e89
(archive-int-to-mode): Construct the string directly.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32484
diff
changeset
|
624 (typename (capitalize (symbol-name type)))) |
11880 | 625 (kill-all-local-variables) |
626 (make-local-variable 'archive-subtype) | |
627 (setq archive-subtype type) | |
628 | |
629 ;; Buffer contains treated image of file before the file contents | |
630 (make-local-variable 'revert-buffer-function) | |
631 (setq revert-buffer-function 'archive-mode-revert) | |
632 (auto-save-mode 0) | |
633 | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
634 ;; 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
|
635 (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
|
636 (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
|
637 |
11880 | 638 (make-local-variable 'require-final-newline) |
639 (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
|
640 (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
|
641 (setq local-enable-local-variables nil) |
11880 | 642 |
23481
4e3bead33d34
(archive-mode): Locally set file-precious-flag.
Richard M. Stallman <rms@gnu.org>
parents:
23467
diff
changeset
|
643 ;; 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
|
644 (make-local-variable 'file-precious-flag) |
4e3bead33d34
(archive-mode): Locally set file-precious-flag.
Richard M. Stallman <rms@gnu.org>
parents:
23467
diff
changeset
|
645 (setq file-precious-flag t) |
4e3bead33d34
(archive-mode): Locally set file-precious-flag.
Richard M. Stallman <rms@gnu.org>
parents:
23467
diff
changeset
|
646 |
11880 | 647 (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
|
648 ;; 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
|
649 ;; 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
|
650 (setq archive-read-only |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
651 (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
|
652 (and archive-subfile-mode |
22174
18a455216af7
(archive-file-name-invalid-regexp): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
22096
diff
changeset
|
653 (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
|
654 (aref archive-subfile-mode 0))))) |
11880 | 655 |
656 ;; Should we use a local copy when accessing from outside Emacs? | |
657 (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
|
658 |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
659 ;; 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
|
660 ;; 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
|
661 (or archive-remote |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
662 (setq archive-remote |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
663 (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
|
664 (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
|
665 (buffer-file-name))))) |
11880 | 666 |
667 (setq major-mode 'archive-mode) | |
668 (setq mode-name (concat typename "-Archive")) | |
669 ;; 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
|
670 (run-mode-hooks (archive-name "mode-hook") 'archive-mode-hook) |
11880 | 671 (use-local-map archive-mode-map)) |
672 | |
673 (make-local-variable 'archive-proper-file-start) | |
674 (make-local-variable 'archive-file-list-start) | |
675 (make-local-variable 'archive-file-list-end) | |
676 (make-local-variable 'archive-file-name-indent) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
677 (archive-summarize nil) |
11880 | 678 (setq buffer-read-only t)))) |
679 | |
680 ;; Archive mode is suitable only for specially formatted data. | |
681 (put 'archive-mode 'mode-class 'special) | |
682 | |
61414
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
683 (let ((item1 '(archive-subfile-mode " Archive"))) |
11880 | 684 (or (member item1 minor-mode-alist) |
61414
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
685 (setq minor-mode-alist (cons item1 minor-mode-alist)))) |
11880 | 686 ;; ------------------------------------------------------------------------- |
687 (defun archive-find-type () | |
688 (widen) | |
689 (goto-char (point-min)) | |
690 ;; The funny [] here make it unlikely that the .elc file will be treated | |
691 ;; as an archive by other software. | |
692 (let (case-fold-search) | |
693 (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
|
694 ((looking-at "..-l[hz][0-9ds]-") 'lzh) |
11880 | 695 ((looking-at "....................[\334]\247\304\375") 'zoo) |
696 ((and (looking-at "\C-z") ; signature too simple, IMHO | |
697 (string-match "\\.[aA][rR][cC]$" | |
698 (or buffer-file-name (buffer-name)))) | |
699 'arc) | |
38409
153f1b1f2efd
Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
38072
diff
changeset
|
700 (t (error "Buffer format not recognized"))))) |
11880 | 701 ;; ------------------------------------------------------------------------- |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
702 (defun archive-summarize (&optional shut-up) |
11880 | 703 "Parse the contents of the archive file in the current buffer. |
704 Place a dired-like listing on the front; | |
705 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
|
706 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
|
707 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
|
708 when parsing the archive." |
11880 | 709 (widen) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
710 (set-buffer-multibyte nil) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
711 (let ((inhibit-read-only t)) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
712 (or shut-up |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
713 (message "Parsing archive file...")) |
11880 | 714 (buffer-disable-undo (current-buffer)) |
715 (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
|
716 (or shut-up |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
717 (message "Parsing archive file...done.")) |
11880 | 718 (setq archive-proper-file-start (point-marker)) |
719 (narrow-to-region (point-min) (point)) | |
720 (set-buffer-modified-p nil) | |
721 (buffer-enable-undo)) | |
722 (goto-char archive-file-list-start) | |
723 (archive-next-line 0)) | |
724 | |
725 (defun archive-resummarize () | |
726 "Recreate the contents listing of an archive." | |
727 (let ((modified (buffer-modified-p)) | |
728 (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
|
729 (inhibit-read-only t)) |
11880 | 730 (widen) |
731 (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
|
732 (archive-summarize t) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
733 (restore-buffer-modified-p modified) |
11880 | 734 (goto-char archive-file-list-start) |
735 (archive-next-line no))) | |
736 | |
737 (defun archive-summarize-files (files) | |
16291 | 738 "Insert a description of a list of files annotated with proper mouse face." |
11880 | 739 (setq archive-file-list-start (point-marker)) |
740 (setq archive-file-name-indent (if files (aref (car files) 1) 0)) | |
741 ;; We don't want to do an insert for each element since that takes too | |
742 ;; long when the archive -- which has to be moved in memory -- is large. | |
743 (insert | |
744 (apply | |
745 (function concat) | |
746 (mapcar | |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
747 (lambda (fil) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
748 ;; 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
|
749 ;; properties without problems. |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
750 (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
|
751 (if (featurep 'xemacs) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
752 () ; out of luck |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
753 (add-text-properties |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
754 (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
|
755 '(mouse-face highlight |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
756 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
|
757 text)) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
758 text)) |
11880 | 759 files))) |
760 (setq archive-file-list-end (point-marker))) | |
761 | |
762 (defun archive-alternate-display () | |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
763 "Toggle alternative display. |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
764 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
|
765 This function changes the set of information shown for each files." |
11880 | 766 (interactive) |
767 (setq archive-alternate-display (not archive-alternate-display)) | |
768 (archive-resummarize)) | |
769 ;; ------------------------------------------------------------------------- | |
770 ;; Section: Local archive copy handling | |
771 | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
772 (defun archive-unique-fname (fname dir) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
773 "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
|
774 |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
775 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
|
776 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
|
777 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
|
778 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
|
779 (let ((fullname (expand-file-name fname dir)) |
22174
18a455216af7
(archive-file-name-invalid-regexp): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
22096
diff
changeset
|
780 (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
|
781 (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
|
782 (make-temp-file |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
783 (expand-file-name |
49238
86973b914660
(archive-arc-rename-entry): Fix error message.
Kim F. Storm <storm@cua.dk>
parents:
49166
diff
changeset
|
784 (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
|
785 (not (msdos-long-file-names))) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
786 "am" |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
787 "arc-mode.") |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
788 dir)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
789 fullname))) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
790 |
11880 | 791 (defun archive-maybe-copy (archive) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
792 (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
|
793 (if archive-remote |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
794 (let ((start (point-max)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
795 ;; 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
|
796 ;; 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
|
797 ;; 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
|
798 ;; "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
|
799 ;; 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
|
800 (archive-name |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
801 (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
|
802 archive))) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
803 (make-directory archive-tmpdir t) |
55184
9e01303c94ac
(archive-maybe-copy): If ARCHIVE includes leading
Eli Zaretskii <eliz@gnu.org>
parents:
53397
diff
changeset
|
804 ;; If ARCHIVE includes leading directories, make sure they |
9e01303c94ac
(archive-maybe-copy): If ARCHIVE includes leading
Eli Zaretskii <eliz@gnu.org>
parents:
53397
diff
changeset
|
805 ;; exist under archive-tmpdir. |
9e01303c94ac
(archive-maybe-copy): If ARCHIVE includes leading
Eli Zaretskii <eliz@gnu.org>
parents:
53397
diff
changeset
|
806 (let ((arch-dir (file-name-directory archive))) |
9e01303c94ac
(archive-maybe-copy): If ARCHIVE includes leading
Eli Zaretskii <eliz@gnu.org>
parents:
53397
diff
changeset
|
807 (if arch-dir |
9e01303c94ac
(archive-maybe-copy): If ARCHIVE includes leading
Eli Zaretskii <eliz@gnu.org>
parents:
53397
diff
changeset
|
808 (make-directory (concat |
9e01303c94ac
(archive-maybe-copy): If ARCHIVE includes leading
Eli Zaretskii <eliz@gnu.org>
parents:
53397
diff
changeset
|
809 (file-name-as-directory archive-tmpdir) |
9e01303c94ac
(archive-maybe-copy): If ARCHIVE includes leading
Eli Zaretskii <eliz@gnu.org>
parents:
53397
diff
changeset
|
810 arch-dir) |
9e01303c94ac
(archive-maybe-copy): If ARCHIVE includes leading
Eli Zaretskii <eliz@gnu.org>
parents:
53397
diff
changeset
|
811 t))) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
812 (setq archive-local-name |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
813 (archive-unique-fname archive-name archive-tmpdir)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
814 (save-restriction |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
815 (widen) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
816 (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
|
817 archive-local-name) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
818 (if (buffer-modified-p) (save-buffer)) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
819 archive))) |
11880 | 820 |
821 (defun archive-maybe-update (unchanged) | |
822 (if archive-remote | |
823 (let ((name archive-local-name) | |
824 (modified (buffer-modified-p)) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
825 (coding-system-for-read 'no-conversion) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
826 (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
|
827 (inhibit-read-only t)) |
11880 | 828 (if unchanged nil |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
829 (setq archive-files nil) |
11880 | 830 (erase-buffer) |
831 (insert-file-contents name) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
832 (archive-mode t) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
833 (goto-char archive-file-list-start) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
834 (archive-next-line lno)) |
11880 | 835 (archive-delete-local name) |
836 (if (not unchanged) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
837 (message |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
838 "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
|
839 (buffer-name (current-buffer)))) |
11880 | 840 (set-buffer-modified-p (or modified (not unchanged)))))) |
841 | |
842 (defun archive-delete-local (name) | |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
843 "Delete file NAME and its parents up to and including `archive-tmpdir'." |
11880 | 844 (let ((again t) |
845 (top (directory-file-name (file-name-as-directory archive-tmpdir)))) | |
846 (condition-case nil | |
847 (delete-file name) | |
848 (error nil)) | |
849 (while again | |
850 (setq name (directory-file-name (file-name-directory name))) | |
851 (condition-case nil | |
852 (delete-directory name) | |
853 (error nil)) | |
854 (if (string= name top) (setq again nil))))) | |
855 ;; ------------------------------------------------------------------------- | |
856 ;; Section: Member extraction | |
857 | |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
858 (defun archive-file-name-handler (op &rest args) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
859 (or (eq op 'file-exists-p) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
860 (let ((file-name-handler-alist nil)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
861 (apply op args)))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
862 |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
863 (defun archive-set-buffer-as-visiting-file (filename) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
864 "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
|
865 (save-excursion |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
866 (goto-char (point-min)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
867 (let ((coding |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
868 (or coding-system-for-read |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
869 (and set-auto-coding-function |
24381
b3c0f3ad64d8
(archive-set-buffer-as-visiting-file): Save
Eli Zaretskii <eliz@gnu.org>
parents:
23481
diff
changeset
|
870 (save-excursion |
b3c0f3ad64d8
(archive-set-buffer-as-visiting-file): Save
Eli Zaretskii <eliz@gnu.org>
parents:
23481
diff
changeset
|
871 (funcall set-auto-coding-function |
b3c0f3ad64d8
(archive-set-buffer-as-visiting-file): Save
Eli Zaretskii <eliz@gnu.org>
parents:
23481
diff
changeset
|
872 filename (- (point-max) (point-min))))) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
873 ;; dos-w32.el defines find-operation-coding-system for |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
874 ;; DOS/Windows systems which preserves the coding-system |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
875 ;; of existing files. We want it to act here as if the |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
876 ;; extracted file existed. |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
877 (let ((file-name-handler-alist |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
878 '(("" . archive-file-name-handler)))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
879 (car (find-operation-coding-system 'insert-file-contents |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
880 filename t)))))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
881 (if (and (not coding-system-for-read) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
882 (not enable-multibyte-characters)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
883 (setq coding |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
884 (coding-system-change-text-conversion coding 'raw-text))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
885 (if (and coding |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
886 (not (eq coding 'no-conversion))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
887 (decode-coding-region (point-min) (point-max) coding) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
888 (setq last-coding-system-used coding)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
889 (set-buffer-modified-p nil) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
890 (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
|
891 (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
|
892 |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
893 (define-obsolete-function-alias 'archive-mouse-extract 'archive-extract "22.1") |
11880 | 894 |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
895 (defun archive-extract (&optional other-window-p event) |
11880 | 896 "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
|
897 (interactive (list nil last-input-event)) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
898 (if event (mouse-set-point event)) |
11880 | 899 (let* ((view-p (eq other-window-p 'view)) |
900 (descr (archive-get-descr)) | |
901 (ename (aref descr 0)) | |
902 (iname (aref descr 1)) | |
903 (archive-buffer (current-buffer)) | |
904 (arcdir default-directory) | |
905 (archive (buffer-file-name)) | |
906 (arcname (file-name-nondirectory archive)) | |
907 (bufname (concat (file-name-nondirectory iname) " (" arcname ")")) | |
908 (extractor (archive-name "extract")) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
909 ;; 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
|
910 ;; 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
|
911 (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
|
912 view-p |
22174
18a455216af7
(archive-file-name-invalid-regexp): Remove.
Eli Zaretskii <eliz@gnu.org>
parents:
22096
diff
changeset
|
913 (string-match file-name-invalid-regexp ename))) |
11880 | 914 (buffer (get-buffer bufname)) |
915 (just-created nil)) | |
916 (if buffer | |
917 nil | |
918 (setq archive (archive-maybe-copy archive)) | |
919 (setq buffer (get-buffer-create bufname)) | |
920 (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
|
921 (with-current-buffer buffer |
11880 | 922 (setq buffer-file-name |
923 (expand-file-name (concat arcname ":" iname))) | |
924 (setq buffer-file-truename | |
925 (abbreviate-file-name buffer-file-name)) | |
926 ;; Set the default-directory to the dir of the superior buffer. | |
927 (setq default-directory arcdir) | |
928 (make-local-variable 'archive-superior-buffer) | |
929 (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
|
930 (add-hook 'write-file-functions 'archive-write-file-member nil t) |
11880 | 931 (setq archive-subfile-mode descr) |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
932 (if (and |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
933 (null |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
934 (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
|
935 ;; external programs. |
22834
926aae368e61
(archive-set-buffer-as-visiting-file): Give FILENAME
Kenichi Handa <handa@m17n.org>
parents:
22830
diff
changeset
|
936 (coding-system-for-write |
926aae368e61
(archive-set-buffer-as-visiting-file): Give FILENAME
Kenichi Handa <handa@m17n.org>
parents:
22830
diff
changeset
|
937 (and enable-multibyte-characters |
926aae368e61
(archive-set-buffer-as-visiting-file): Give FILENAME
Kenichi Handa <handa@m17n.org>
parents:
22830
diff
changeset
|
938 file-name-coding-system)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
939 ;; 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
|
940 ;; first, then decode appropriately by calling |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
941 ;; archive-set-buffer-as-visiting-file later. |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
942 (coding-system-for-read 'no-conversion)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
943 (condition-case err |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
944 (if (fboundp extractor) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
945 (funcall extractor archive ename) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
946 (archive-*-extract archive ename |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
947 (symbol-value extractor))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
948 (error |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
949 (ding (message "%s" (error-message-string err))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
950 nil)))) |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
951 just-created) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
952 (progn |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
953 (set-buffer-modified-p nil) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
954 (kill-buffer buffer)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
955 (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
|
956 (goto-char (point-min)) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
957 (rename-buffer bufname) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
958 (setq buffer-read-only read-only-p) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
959 (setq buffer-undo-list nil) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
960 (set-buffer-modified-p nil) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
961 (setq buffer-saved-size (buffer-size)) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
962 (normal-mode) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
963 ;; 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
|
964 (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
|
965 (setq archive-remote t) |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
966 (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
|
967 ;; 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
|
968 ;; part of another archive. |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
969 (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
|
970 (run-hooks 'archive-extract-hooks) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
971 (if archive-read-only |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
972 (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
|
973 (archive-maybe-update t)) |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
974 (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
|
975 (cond |
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
976 (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
|
977 ((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
|
978 (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
|
979 (t (switch-to-buffer buffer)))))) |
11880 | 980 |
981 (defun archive-*-extract (archive name command) | |
982 (let* ((default-directory (file-name-as-directory archive-tmpdir)) | |
983 (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
|
984 default-directory)) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
985 exit-status success) |
11880 | 986 (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
|
987 (setq exit-status |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
988 (apply 'call-process |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
989 (car command) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
990 nil |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
991 nil |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
992 nil |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
993 (append (cdr command) (list archive name)))) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
994 (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
|
995 (if (not (file-exists-p tmpfile)) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
996 (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
|
997 (insert-file-contents tmpfile) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
998 (setq success t))) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
999 ((numberp exit-status) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1000 (ding |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1001 (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
|
1002 ((stringp exit-status) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1003 (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
|
1004 (t |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1005 (ding (message "`%s' failed" (car command))))) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1006 (archive-delete-local tmpfile) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1007 success)) |
11880 | 1008 |
1009 (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
|
1010 (apply 'call-process |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1011 (car command) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1012 nil |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1013 t |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1014 nil |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1015 (append (cdr command) (list archive name)))) |
11880 | 1016 |
1017 (defun archive-extract-other-window () | |
1018 "In archive mode, find this member in another window." | |
1019 (interactive) | |
1020 (archive-extract t)) | |
1021 | |
1022 (defun archive-display-other-window () | |
1023 "In archive mode, display this member in another window." | |
1024 (interactive) | |
1025 (archive-extract 'display)) | |
1026 | |
1027 (defun archive-view () | |
1028 "In archive mode, view the member on this line." | |
1029 (interactive) | |
1030 (archive-extract 'view)) | |
1031 | |
1032 (defun archive-add-new-member (arcbuf name) | |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
1033 "Add current buffer to the archive in ARCBUF naming it NAME." |
11880 | 1034 (interactive |
1035 (list (get-buffer | |
1036 (read-buffer "Buffer containing archive: " | |
1037 ;; Find first archive buffer and suggest that | |
1038 (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
|
1039 (while (and bufs |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1040 (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
|
1041 (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
|
1042 (setq bufs (cdr bufs))) |
11880 | 1043 (if bufs |
1044 (car bufs) | |
1045 (error "There are no archive buffers"))) | |
1046 t)) | |
1047 (read-string "File name in archive: " | |
1048 (if buffer-file-name | |
1049 (file-name-nondirectory buffer-file-name) | |
1050 "")))) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1051 (with-current-buffer arcbuf |
11880 | 1052 (or (eq major-mode 'archive-mode) |
1053 (error "Buffer is not an archive buffer")) | |
1054 (if archive-read-only | |
1055 (error "Archive is read-only"))) | |
1056 (if (eq arcbuf (current-buffer)) | |
1057 (error "An archive buffer cannot be added to itself")) | |
1058 (if (string= name "") | |
1059 (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
|
1060 (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
|
1061 (archive-name "add-new-member"))) |
11880 | 1062 (membuf (current-buffer))) |
1063 (if (fboundp func) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1064 (with-current-buffer arcbuf |
11880 | 1065 (funcall func buffer-file-name membuf name)) |
1066 (error "Adding a new member is not supported for this archive type")))) | |
1067 ;; ------------------------------------------------------------------------- | |
1068 ;; Section: IO stuff | |
1069 | |
1070 (defun archive-write-file-member () | |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1071 (save-excursion |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1072 (save-restriction |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1073 (message "Updating archive...") |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1074 (widen) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1075 (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
|
1076 (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
|
1077 (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
|
1078 (archive-maybe-copy (buffer-file-name))))) |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1079 (if (fboundp writer) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1080 (funcall writer archive archive-subfile-mode) |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1081 (archive-*-write-file-member archive |
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1082 archive-subfile-mode |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1083 (symbol-value writer))) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1084 (set-buffer-modified-p nil) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1085 (message "Updating archive...done")) |
21570
e21c343b0c6e
(archive-extract-by-stdout): Don't use
Eli Zaretskii <eliz@gnu.org>
parents:
20767
diff
changeset
|
1086 (set-buffer archive-superior-buffer) |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1087 (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
|
1088 ;; 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
|
1089 ;; 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
|
1090 (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
|
1091 (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
|
1092 t) |
11880 | 1093 |
1094 (defun archive-*-write-file-member (archive descr command) | |
1095 (let* ((ename (aref descr 0)) | |
1096 (tmpfile (expand-file-name ename archive-tmpdir)) | |
1097 (top (directory-file-name (file-name-as-directory archive-tmpdir))) | |
1098 (default-directory (file-name-as-directory top))) | |
1099 (unwind-protect | |
1100 (progn | |
1101 (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
|
1102 ;; 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
|
1103 ;; the dired-like listing we created. |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1104 (if (eq major-mode 'archive-mode) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1105 (archive-write-file tmpfile) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1106 (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
|
1107 ;; 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
|
1108 ;; 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
|
1109 ;; 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
|
1110 ;; archive-write-file-member, above). |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1111 (setq archive-member-coding-system last-coding-system-used) |
11880 | 1112 (if (aref descr 3) |
1113 ;; Set the file modes, but make sure we can read it. | |
1114 (set-file-modes tmpfile (logior ?\400 (aref descr 3)))) | |
22834
926aae368e61
(archive-set-buffer-as-visiting-file): Give FILENAME
Kenichi Handa <handa@m17n.org>
parents:
22830
diff
changeset
|
1115 (if enable-multibyte-characters |
926aae368e61
(archive-set-buffer-as-visiting-file): Give FILENAME
Kenichi Handa <handa@m17n.org>
parents:
22830
diff
changeset
|
1116 (setq ename |
926aae368e61
(archive-set-buffer-as-visiting-file): Give FILENAME
Kenichi Handa <handa@m17n.org>
parents:
22830
diff
changeset
|
1117 (encode-coding-string ename file-name-coding-system))) |
11880 | 1118 (let ((exitcode (apply 'call-process |
1119 (car command) | |
1120 nil | |
1121 nil | |
1122 nil | |
1123 (append (cdr command) (list archive ename))))) | |
1124 (if (equal exitcode 0) | |
1125 nil | |
1126 (error "Updating was unsuccessful (%S)" exitcode)))) | |
1127 (archive-delete-local tmpfile)))) | |
1128 | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1129 (defun archive-write-file (&optional file) |
11880 | 1130 (save-excursion |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1131 (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
|
1132 (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
|
1133 (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
|
1134 (set-buffer-modified-p nil)) |
11880 | 1135 t)) |
1136 ;; ------------------------------------------------------------------------- | |
1137 ;; Section: Marking and unmarking. | |
1138 | |
1139 (defun archive-flag-deleted (p &optional type) | |
1140 "In archive mode, mark this member to be deleted from the archive. | |
1141 With a prefix argument, mark that many files." | |
1142 (interactive "p") | |
1143 (or type (setq type ?D)) | |
1144 (beginning-of-line) | |
1145 (let ((sign (if (>= p 0) +1 -1)) | |
1146 (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
|
1147 (inhibit-read-only t)) |
11880 | 1148 (while (not (zerop p)) |
1149 (if (archive-get-descr t) | |
1150 (progn | |
1151 (delete-char 1) | |
1152 (insert type))) | |
1153 (forward-line sign) | |
1154 (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
|
1155 (restore-buffer-modified-p modified)) |
11880 | 1156 (archive-next-line 0)) |
1157 | |
1158 (defun archive-unflag (p) | |
1159 "In archive mode, un-mark this member if it is marked to be deleted. | |
1160 With a prefix argument, un-mark that many files forward." | |
1161 (interactive "p") | |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
1162 (archive-flag-deleted p ?\s)) |
11880 | 1163 |
1164 (defun archive-unflag-backwards (p) | |
1165 "In archive mode, un-mark this member if it is marked to be deleted. | |
1166 With a prefix argument, un-mark that many members backward." | |
1167 (interactive "p") | |
64528
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
1168 (archive-flag-deleted (- p) ?\s)) |
11880 | 1169 |
1170 (defun archive-unmark-all-files () | |
1171 "Remove all marks." | |
1172 (interactive) | |
1173 (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
|
1174 (inhibit-read-only t)) |
11880 | 1175 (save-excursion |
1176 (goto-char archive-file-list-start) | |
1177 (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
|
1178 (or (= (following-char) ?\s) |
54d2ccd509bc
(archive-get-descr, archive-alternate-display): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents:
64091
diff
changeset
|
1179 (progn (delete-char 1) (insert ?\s))) |
11880 | 1180 (forward-line 1))) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1181 (restore-buffer-modified-p modified))) |
11880 | 1182 |
1183 (defun archive-mark (p) | |
1184 "In archive mode, mark this member for group operations. | |
1185 With a prefix argument, mark that many members. | |
1186 Use \\[archive-unmark-all-files] to remove all marks." | |
1187 (interactive "p") | |
1188 (archive-flag-deleted p ?*)) | |
1189 | |
1190 (defun archive-get-marked (mark &optional default) | |
1191 (let (files) | |
1192 (save-excursion | |
1193 (goto-char archive-file-list-start) | |
1194 (while (< (point) archive-file-list-end) | |
1195 (if (= (following-char) mark) | |
1196 (setq files (cons (archive-get-descr) files))) | |
1197 (forward-line 1))) | |
1198 (or (nreverse files) | |
1199 (and default | |
1200 (list (archive-get-descr)))))) | |
1201 ;; ------------------------------------------------------------------------- | |
1202 ;; Section: Operate | |
1203 | |
1204 (defun archive-next-line (p) | |
1205 (interactive "p") | |
1206 (forward-line p) | |
1207 (or (eobp) | |
1208 (forward-char archive-file-name-indent))) | |
1209 | |
1210 (defun archive-previous-line (p) | |
1211 (interactive "p") | |
1212 (archive-next-line (- p))) | |
1213 | |
1214 (defun archive-chmod-entry (new-mode) | |
12791
61bbb487bf2c
Standardize layout of doc strings.
Richard M. Stallman <rms@gnu.org>
parents:
12756
diff
changeset
|
1215 "Change the protection bits associated with all marked or this member. |
11880 | 1216 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
|
1217 as a relative change like \"g+rw\" as for chmod(2)." |
11880 | 1218 (interactive "sNew mode (octal or relative): ") |
1219 (if archive-read-only (error "Archive is read-only")) | |
1220 (let ((func (archive-name "chmod-entry"))) | |
1221 (if (fboundp func) | |
1222 (progn | |
1223 (funcall func new-mode (archive-get-marked ?* t)) | |
1224 (archive-resummarize)) | |
1225 (error "Setting mode bits is not supported for this archive type")))) | |
1226 | |
1227 (defun archive-chown-entry (new-uid) | |
1228 "Change the owner of all marked or this member." | |
1229 (interactive "nNew uid: ") | |
1230 (if archive-read-only (error "Archive is read-only")) | |
1231 (let ((func (archive-name "chown-entry"))) | |
1232 (if (fboundp func) | |
1233 (progn | |
1234 (funcall func new-uid (archive-get-marked ?* t)) | |
1235 (archive-resummarize)) | |
1236 (error "Setting owner is not supported for this archive type")))) | |
1237 | |
1238 (defun archive-chgrp-entry (new-gid) | |
1239 "Change the group of all marked or this member." | |
1240 (interactive "nNew gid: ") | |
1241 (if archive-read-only (error "Archive is read-only")) | |
1242 (let ((func (archive-name "chgrp-entry"))) | |
1243 (if (fboundp func) | |
1244 (progn | |
1245 (funcall func new-gid (archive-get-marked ?* t)) | |
1246 (archive-resummarize)) | |
1247 (error "Setting group is not supported for this archive type")))) | |
1248 | |
1249 (defun archive-expunge () | |
1250 "Do the flagged deletions." | |
1251 (interactive) | |
1252 (let (files) | |
1253 (save-excursion | |
1254 (goto-char archive-file-list-start) | |
1255 (while (< (point) archive-file-list-end) | |
1256 (if (= (following-char) ?D) | |
1257 (setq files (cons (aref (archive-get-descr) 0) files))) | |
1258 (forward-line 1))) | |
1259 (setq files (nreverse files)) | |
1260 (and files | |
1261 (or (not archive-read-only) | |
1262 (error "Archive is read-only")) | |
1263 (or (yes-or-no-p (format "Really delete %d member%s? " | |
1264 (length files) | |
1265 (if (null (cdr files)) "" "s"))) | |
1266 (error "Operation aborted")) | |
1267 (let ((archive (archive-maybe-copy (buffer-file-name))) | |
1268 (expunger (archive-name "expunge"))) | |
1269 (if (fboundp expunger) | |
1270 (funcall expunger archive files) | |
1271 (archive-*-expunge archive files (symbol-value expunger))) | |
1272 (archive-maybe-update nil) | |
1273 (if archive-remote | |
1274 (archive-resummarize) | |
1275 (revert-buffer)))))) | |
1276 | |
1277 (defun archive-*-expunge (archive files command) | |
1278 (apply 'call-process | |
1279 (car command) | |
1280 nil | |
1281 nil | |
1282 nil | |
1283 (append (cdr command) (cons archive files)))) | |
1284 | |
1285 (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
|
1286 "Change the name associated with this entry in the archive file." |
11880 | 1287 (interactive "sNew name: ") |
1288 (if archive-read-only (error "Archive is read-only")) | |
1289 (if (string= newname "") | |
1290 (error "Archive members may not be given empty names")) | |
1291 (let ((func (archive-name "rename-entry")) | |
1292 (descr (archive-get-descr))) | |
1293 (if (fboundp func) | |
1294 (progn | |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1295 (funcall func |
22834
926aae368e61
(archive-set-buffer-as-visiting-file): Give FILENAME
Kenichi Handa <handa@m17n.org>
parents:
22830
diff
changeset
|
1296 (if enable-multibyte-characters |
926aae368e61
(archive-set-buffer-as-visiting-file): Give FILENAME
Kenichi Handa <handa@m17n.org>
parents:
22830
diff
changeset
|
1297 (encode-coding-string newname file-name-coding-system) |
926aae368e61
(archive-set-buffer-as-visiting-file): Give FILENAME
Kenichi Handa <handa@m17n.org>
parents:
22830
diff
changeset
|
1298 newname) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1299 descr) |
11880 | 1300 (archive-resummarize)) |
1301 (error "Renaming is not supported for this archive type")))) | |
1302 | |
1303 ;; 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
|
1304 (defun archive-mode-revert (&optional no-auto-save no-confirm) |
11880 | 1305 (let ((no (archive-get-lineno))) |
1306 (setq archive-files nil) | |
22062
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1307 (let ((revert-buffer-function nil) |
029145c16497
(archive-tmpdir): Make the prefix of the temporary
Eli Zaretskii <eliz@gnu.org>
parents:
21570
diff
changeset
|
1308 (coding-system-for-read 'no-conversion)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1309 (set-buffer-multibyte nil) |
11880 | 1310 (revert-buffer t t)) |
1311 (archive-mode) | |
1312 (goto-char archive-file-list-start) | |
1313 (archive-next-line no))) | |
1314 | |
1315 (defun archive-undo () | |
1316 "Undo in an archive buffer. | |
1317 This doesn't recover lost files, it just undoes changes in the buffer itself." | |
1318 (interactive) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1319 (let ((inhibit-read-only t)) |
11880 | 1320 (undo))) |
1321 ;; ------------------------------------------------------------------------- | |
1322 ;; Section: Arc Archives | |
1323 | |
1324 (defun archive-arc-summarize () | |
1325 (let ((p 1) | |
1326 (totalsize 0) | |
1327 (maxlen 8) | |
1328 files | |
1329 visual) | |
1330 (while (and (< (+ p 29) (point-max)) | |
1331 (= (char-after p) ?\C-z) | |
1332 (> (char-after (1+ p)) 0)) | |
1333 (let* ((namefld (buffer-substring (+ p 2) (+ p 2 13))) | |
1334 (fnlen (or (string-match "\0" namefld) 13)) | |
1335 (efnname (substring namefld 0 fnlen)) | |
1336 (csize (archive-l-e (+ p 15) 4)) | |
1337 (moddate (archive-l-e (+ p 19) 2)) | |
1338 (modtime (archive-l-e (+ p 21) 2)) | |
1339 (ucsize (archive-l-e (+ p 25) 4)) | |
1340 (fiddle (string= efnname (upcase efnname))) | |
1341 (ifnname (if fiddle (downcase efnname) efnname)) | |
1342 (text (format " %8d %-11s %-8s %s" | |
1343 ucsize | |
1344 (archive-dosdate moddate) | |
1345 (archive-dostime modtime) | |
1346 ifnname))) | |
1347 (setq maxlen (max maxlen fnlen) | |
1348 totalsize (+ totalsize ucsize) | |
1349 visual (cons (vector text | |
1350 (- (length text) (length ifnname)) | |
1351 (length text)) | |
1352 visual) | |
1353 files (cons (vector efnname ifnname fiddle nil (1- p)) | |
1354 files) | |
1355 p (+ p 29 csize)))) | |
1356 (goto-char (point-min)) | |
1357 (let ((dash (concat "- -------- ----------- -------- " | |
1358 (make-string maxlen ?-) | |
1359 "\n"))) | |
1360 (insert "M Length Date Time File\n" | |
1361 dash) | |
1362 (archive-summarize-files (nreverse visual)) | |
1363 (insert dash | |
1364 (format " %8d %d file%s" | |
1365 totalsize | |
1366 (length files) | |
1367 (if (= 1 (length files)) "" "s")) | |
1368 "\n")) | |
1369 (apply 'vector (nreverse files)))) | |
1370 | |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1371 (defun archive-arc-rename-entry (newname descr) |
11880 | 1372 (if (string-match "[:\\\\/]" newname) |
49238
86973b914660
(archive-arc-rename-entry): Fix error message.
Kim F. Storm <storm@cua.dk>
parents:
49166
diff
changeset
|
1373 (error "File names in arc files must not contain a directory component")) |
11880 | 1374 (if (> (length newname) 12) |
1375 (error "File names in arc files are limited to 12 characters")) | |
1376 (let ((name (concat newname (substring "\0\0\0\0\0\0\0\0\0\0\0\0\0" | |
1377 (length newname)))) | |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1378 (inhibit-read-only t)) |
11880 | 1379 (save-restriction |
1380 (save-excursion | |
1381 (widen) | |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1382 (set-buffer-multibyte nil) |
11880 | 1383 (goto-char (+ archive-proper-file-start (aref descr 4) 2)) |
1384 (delete-char 13) | |
1385 (insert name))))) | |
1386 ;; ------------------------------------------------------------------------- | |
1387 ;; Section: Lzh Archives | |
1388 | |
1389 (defun archive-lzh-summarize () | |
1390 (let ((p 1) | |
1391 (totalsize 0) | |
1392 (maxlen 8) | |
1393 files | |
1394 visual) | |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1395 (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
|
1396 (looking-at "\\(.\\|\n\\)\\(.\\|\n\\)-l[hz][0-9ds]-")) |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1397 (let* ((hsize (char-after p)) ;size of the base header (level 0 and 1) |
51158
00d0f607793b
(archive-lzh-summarize): Calculate correct total
Richard M. Stallman <rms@gnu.org>
parents:
50835
diff
changeset
|
1398 (csize (archive-l-e (+ p 7) 4)) ;size of a compressed file to follow (level 0 and 2), |
00d0f607793b
(archive-lzh-summarize): Calculate correct total
Richard M. Stallman <rms@gnu.org>
parents:
50835
diff
changeset
|
1399 ;size of extended headers + the compressed file to follow (level 1). |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1400 (ucsize (archive-l-e (+ p 11) 4)) ;size of an uncompressed file. |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1401 (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
|
1402 (time2 (archive-l-e (+ p 17) 2)) ;and UNIX format in level 2 header.) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1403 (hdrlvl (char-after (+ p 20))) ;header level |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1404 thsize ;total header size (base + extensions) |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1405 fnlen efnname fiddle ifnname width p2 |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1406 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
|
1407 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
|
1408 gname uname modtime moddate) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1409 (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
|
1410 (when (or (= hdrlvl 0) (= hdrlvl 1)) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1411 (setq fnlen (char-after (+ p 21))) ;filename length |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1412 (setq efnname (let ((str (buffer-substring (+ p 22) (+ p 22 fnlen)))) ;filename from offset 22 |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1413 (if file-name-coding-system |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1414 (decode-coding-string str file-name-coding-system) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1415 (string-as-multibyte str)))) |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1416 (setq p2 (+ p 22 fnlen))) ; |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1417 (if (= hdrlvl 1) |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1418 (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
|
1419 (if (= hdrlvl 2) |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1420 (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
|
1421 (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
|
1422 (let* ((ehsize (archive-l-e neh 2)) ;size of the extension header |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1423 (etype (char-after (+ neh 2)))) ;extension type |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1424 (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
|
1425 (cond |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1426 ((= etype 1) ;file name |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1427 (let ((i (+ neh 3))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1428 (while (< i (+ neh ehsize)) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1429 (setq efnname (concat efnname (char-to-string (char-after i)))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1430 (setq i (1+ i))))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1431 ((= etype 2) ;directory name |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1432 (let ((i (+ neh 3))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1433 (while (< i (+ neh ehsize)) |
49238
86973b914660
(archive-arc-rename-entry): Fix error message.
Kim F. Storm <storm@cua.dk>
parents:
49166
diff
changeset
|
1434 (setq dir (concat dir |
20767
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1435 (if (= (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
|
1436 255) |
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1437 "/" |
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1438 (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
|
1439 (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
|
1440 (setq i (1+ i))))) |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1441 ((= etype 80) ;Unix file permission |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1442 (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
|
1443 ((= 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
|
1444 (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
|
1445 (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
|
1446 ((= etype 82) ;UNIX file group name |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1447 (let ((i (+ neh 3))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1448 (while (< i (+ neh ehsize)) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1449 (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
|
1450 (setq i (1+ i))))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1451 ((= etype 83) ;UNIX file user name |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1452 (let ((i (+ neh 3))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1453 (while (< i (+ neh ehsize)) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1454 (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
|
1455 (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
|
1456 ) |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1457 (setq neh (+ neh ehsize)) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1458 (setq ehsize (archive-l-e neh 2)) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1459 (setq etype (char-after (+ neh 2)))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1460 ;;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
|
1461 (setq thsize (- neh p)))) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1462 (if (= hdrlvl 0) ;total header size |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1463 (setq thsize hsize)) |
49509
389fbac8d443
(archive-lzh-summarize): Fix previous change.
Juanma Barranquero <lekktu@gmail.com>
parents:
49437
diff
changeset
|
1464 (setq fiddle (if efnname (string= efnname (upcase efnname)))) |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1465 (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
|
1466 (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
|
1467 (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
|
1468 (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
|
1469 (setq moddate (if (= hdrlvl 2) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1470 (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
|
1471 (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
|
1472 (setq modtime (if (= hdrlvl 2) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1473 (archive-unixtime time1 time2) |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1474 (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
|
1475 (setq text (if archive-alternate-display |
11880 | 1476 (format " %8d %5S %5S %s" |
1477 ucsize | |
1478 (or uid "?") | |
1479 (or gid "?") | |
1480 ifnname) | |
1481 (format " %10s %8d %-11s %-8s %s" | |
1482 modestr | |
1483 ucsize | |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1484 moddate |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1485 modtime |
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1486 prname))) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1487 (setq maxlen (max maxlen width) |
11880 | 1488 totalsize (+ totalsize ucsize) |
1489 visual (cons (vector text | |
49437
3a18e49975cb
(archive-unixdate): Corrected the date field string.
Richard M. Stallman <rms@gnu.org>
parents:
49238
diff
changeset
|
1490 (- (length text) (length prname)) |
11880 | 1491 (length text)) |
1492 visual) | |
20767
ad6c6f1bd674
(archive-find-type): Accept d or s after digit, for lzh.
Richard M. Stallman <rms@gnu.org>
parents:
20239
diff
changeset
|
1493 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
|
1494 files)) |
00d0f607793b
(archive-lzh-summarize): Calculate correct total
Richard M. Stallman <rms@gnu.org>
parents:
50835
diff
changeset
|
1495 (cond ((= hdrlvl 1) |
00d0f607793b
(archive-lzh-summarize): Calculate correct total
Richard M. Stallman <rms@gnu.org>
parents:
50835
diff
changeset
|
1496 (setq p (+ p hsize 2 csize))) |
00d0f607793b
(archive-lzh-summarize): Calculate correct total
Richard M. Stallman <rms@gnu.org>
parents:
50835
diff
changeset
|
1497 ((or (= hdrlvl 2) (= hdrlvl 0)) |
00d0f607793b
(archive-lzh-summarize): Calculate correct total
Richard M. Stallman <rms@gnu.org>
parents:
50835
diff
changeset
|
1498 (setq p (+ p thsize 2 csize)))) |
00d0f607793b
(archive-lzh-summarize): Calculate correct total
Richard M. Stallman <rms@gnu.org>
parents:
50835
diff
changeset
|
1499 )) |
11880 | 1500 (goto-char (point-min)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1501 (set-buffer-multibyte default-enable-multibyte-characters) |
11880 | 1502 (let ((dash (concat (if archive-alternate-display |
1503 "- -------- ----- ----- " | |
1504 "- ---------- -------- ----------- -------- ") | |
1505 (make-string maxlen ?-) | |
1506 "\n")) | |
1507 (header (if archive-alternate-display | |
1508 "M Length Uid Gid File\n" | |
1509 "M Filemode Length Date Time File\n")) | |
1510 (sumline (if archive-alternate-display | |
1511 " %8d %d file%s" | |
1512 " %8d %d file%s"))) | |
1513 (insert header dash) | |
1514 (archive-summarize-files (nreverse visual)) | |
1515 (insert dash | |
1516 (format sumline | |
1517 totalsize | |
1518 (length files) | |
1519 (if (= 1 (length files)) "" "s")) | |
1520 "\n")) | |
1521 (apply 'vector (nreverse files)))) | |
1522 | |
1523 (defconst archive-lzh-alternate-display t) | |
1524 | |
1525 (defun archive-lzh-extract (archive name) | |
1526 (archive-extract-by-stdout archive name archive-lzh-extract)) | |
1527 | |
1528 (defun archive-lzh-resum (p count) | |
1529 (let ((sum 0)) | |
1530 (while (> count 0) | |
1531 (setq count (1- count) | |
1532 sum (+ sum (char-after p)) | |
1533 p (1+ p))) | |
1534 (logand sum 255))) | |
1535 | |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1536 (defun archive-lzh-rename-entry (newname descr) |
11880 | 1537 (save-restriction |
1538 (save-excursion | |
1539 (widen) | |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1540 (set-buffer-multibyte nil) |
11880 | 1541 (let* ((p (+ archive-proper-file-start (aref descr 4))) |
1542 (oldhsize (char-after p)) | |
1543 (oldfnlen (char-after (+ p 21))) | |
1544 (newfnlen (length newname)) | |
1545 (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
|
1546 (inhibit-read-only t)) |
11880 | 1547 (if (> newhsize 255) |
1548 (error "The file name is too long")) | |
1549 (goto-char (+ p 21)) | |
1550 (delete-char (1+ oldfnlen)) | |
1551 (insert newfnlen newname) | |
1552 (goto-char p) | |
1553 (delete-char 2) | |
1554 (insert newhsize (archive-lzh-resum p newhsize)))))) | |
1555 | |
1556 (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
|
1557 (save-excursion |
2aeabf7911c9
(archive-lzh-ogm): Reorder save excursion/restriction.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63891
diff
changeset
|
1558 (save-restriction |
11880 | 1559 (widen) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1560 (set-buffer-multibyte nil) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1561 (dolist (fil files) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1562 (let* ((p (+ archive-proper-file-start (aref fil 4))) |
11880 | 1563 (hsize (char-after p)) |
1564 (fnlen (char-after (+ p 21))) | |
1565 (p2 (+ p 22 fnlen)) | |
1566 (creator (if (>= (- hsize fnlen) 24) (char-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
|
1567 (inhibit-read-only t)) |
11880 | 1568 (if (= creator ?U) |
1569 (progn | |
1570 (or (numberp newval) | |
1571 (setq newval (funcall newval (archive-l-e (+ p2 ofs) 2)))) | |
1572 (goto-char (+ p2 ofs)) | |
1573 (delete-char 2) | |
1574 (insert (logand newval 255) (lsh newval -8)) | |
1575 (goto-char (1+ p)) | |
1576 (delete-char 1) | |
1577 (insert (archive-lzh-resum (1+ p) hsize))) | |
1578 (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
|
1579 (aref fil 1) errtxt))))))) |
11880 | 1580 |
1581 (defun archive-lzh-chown-entry (newuid files) | |
1582 (archive-lzh-ogm newuid files "an uid" 10)) | |
1583 | |
1584 (defun archive-lzh-chgrp-entry (newgid files) | |
1585 (archive-lzh-ogm newgid files "a gid" 12)) | |
1586 | |
1587 (defun archive-lzh-chmod-entry (newmode files) | |
1588 (archive-lzh-ogm | |
1589 ;; 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
|
1590 (lambda (old) (archive-calc-mode old newmode t)) |
11880 | 1591 files "a unix-style mode" 8)) |
1592 ;; ------------------------------------------------------------------------- | |
1593 ;; Section: Zip Archives | |
1594 | |
1595 (defun archive-zip-summarize () | |
1596 (goto-char (- (point-max) (- 22 18))) | |
1597 (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
|
1598 (let ((p (+ (point-min) (archive-l-e (+ (point) 16) 4))) |
11880 | 1599 (maxlen 8) |
1600 (totalsize 0) | |
1601 files | |
1602 visual) | |
1603 (while (string= "PK\001\002" (buffer-substring p (+ p 4))) | |
1604 (let* ((creator (char-after (+ p 5))) | |
63891
d7d21c20c225
(archive-extract): Make it work as a mouse binding.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
63889
diff
changeset
|
1605 ;; (method (archive-l-e (+ p 10) 2)) |
11880 | 1606 (modtime (archive-l-e (+ p 12) 2)) |
1607 (moddate (archive-l-e (+ p 14) 2)) | |
1608 (ucsize (archive-l-e (+ p 24) 4)) | |
1609 (fnlen (archive-l-e (+ p 28) 2)) | |
1610 (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
|
1611 (fclen (archive-l-e (+ p 32) 2)) |
11880 | 1612 (lheader (archive-l-e (+ p 42) 4)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1613 (efnname (let ((str (buffer-substring (+ p 46) (+ p 46 fnlen)))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1614 (if file-name-coding-system |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1615 (decode-coding-string str file-name-coding-system) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1616 (string-as-multibyte str)))) |
11880 | 1617 (isdir (and (= ucsize 0) |
1618 (string= (file-name-nondirectory efnname) ""))) | |
1619 (mode (cond ((memq creator '(2 3)) ; Unix + VMS | |
1620 (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
|
1621 ((memq creator '(0 5 6 7 10 11 15)) ; Dos etc. |
11880 | 1622 (logior ?\444 |
1623 (if isdir (logior 16384 ?\111) 0) | |
1624 (if (zerop | |
1625 (logand 1 (char-after (+ p 38)))) | |
1626 ?\222 0))) | |
1627 (t nil))) | |
1628 (modestr (if mode (archive-int-to-mode mode) "??????????")) | |
1629 (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
|
1630 (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
|
1631 (string= (upcase efnname) efnname))) |
11880 | 1632 (ifnname (if fiddle (downcase efnname) efnname)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1633 (width (string-width ifnname)) |
11880 | 1634 (text (format " %10s %8d %-11s %-8s %s" |
1635 modestr | |
1636 ucsize | |
1637 (archive-dosdate moddate) | |
1638 (archive-dostime modtime) | |
1639 ifnname))) | |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1640 (setq maxlen (max maxlen width) |
11880 | 1641 totalsize (+ totalsize ucsize) |
1642 visual (cons (vector text | |
1643 (- (length text) (length ifnname)) | |
1644 (length text)) | |
1645 visual) | |
1646 files (cons (if isdir | |
1647 nil | |
1648 (vector efnname ifnname fiddle mode | |
1649 (list (1- p) lheader))) | |
1650 files) | |
12304
3cf4df625c3b
(archive-zip-summarize): Handle per-file comments in central directory.
Richard M. Stallman <rms@gnu.org>
parents:
12024
diff
changeset
|
1651 p (+ p 46 fnlen exlen fclen)))) |
11880 | 1652 (goto-char (point-min)) |
1653 (let ((dash (concat "- ---------- -------- ----------- -------- " | |
1654 (make-string maxlen ?-) | |
1655 "\n"))) | |
1656 (insert "M Filemode Length Date Time File\n" | |
1657 dash) | |
1658 (archive-summarize-files (nreverse visual)) | |
1659 (insert dash | |
1660 (format " %8d %d file%s" | |
1661 totalsize | |
1662 (length files) | |
1663 (if (= 1 (length files)) "" "s")) | |
1664 "\n")) | |
1665 (apply 'vector (nreverse files)))) | |
1666 | |
1667 (defun archive-zip-extract (archive name) | |
45362
854ecfb3a883
(archive-zip-use-pkzip): Variable deleted.
Richard M. Stallman <rms@gnu.org>
parents:
43679
diff
changeset
|
1668 (if (equal (car archive-zip-extract) "pkzip") |
11880 | 1669 (archive-*-extract archive name archive-zip-extract) |
1670 (archive-extract-by-stdout archive name archive-zip-extract))) | |
1671 | |
1672 (defun archive-zip-write-file-member (archive descr) | |
1673 (archive-*-write-file-member | |
1674 archive | |
1675 descr | |
1676 (if (aref descr 2) archive-zip-update-case archive-zip-update))) | |
1677 | |
1678 (defun archive-zip-chmod-entry (newmode files) | |
1679 (save-restriction | |
1680 (save-excursion | |
1681 (widen) | |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1682 (set-buffer-multibyte nil) |
63889
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1683 (dolist (fil files) |
abe14daaa679
Bind inhibit-read-only rather than buffer-read-only.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62714
diff
changeset
|
1684 (let* ((p (+ archive-proper-file-start (car (aref fil 4)))) |
11880 | 1685 (creator (char-after (+ p 5))) |
1686 (oldmode (aref fil 3)) | |
1687 (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
|
1688 (inhibit-read-only t)) |
11880 | 1689 (cond ((memq creator '(2 3)) ; Unix + VMS |
1690 (goto-char (+ p 40)) | |
1691 (delete-char 2) | |
1692 (insert (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
|
1693 ((memq creator '(0 5 6 7 10 11 15)) ; Dos etc. |
11880 | 1694 (goto-char (+ p 38)) |
1695 (insert (logior (logand (char-after (point)) 254) | |
1696 (logand (logxor 1 (lsh newval -7)) 1))) | |
1697 (delete-char 1)) | |
1698 (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
|
1699 )))) |
11880 | 1700 ;; ------------------------------------------------------------------------- |
1701 ;; Section: Zoo Archives | |
1702 | |
1703 (defun archive-zoo-summarize () | |
1704 (let ((p (1+ (archive-l-e 25 4))) | |
1705 (maxlen 8) | |
1706 (totalsize 0) | |
1707 files | |
1708 visual) | |
1709 (while (and (string= "\334\247\304\375" (buffer-substring p (+ p 4))) | |
1710 (> (archive-l-e (+ p 6) 4) 0)) | |
1711 (let* ((next (1+ (archive-l-e (+ p 6) 4))) | |
1712 (moddate (archive-l-e (+ p 14) 2)) | |
1713 (modtime (archive-l-e (+ p 16) 2)) | |
1714 (ucsize (archive-l-e (+ p 20) 4)) | |
1715 (namefld (buffer-substring (+ p 38) (+ p 38 13))) | |
13339
13b7b667b18f
(archive-zoo-summarize): Handle archives with long file names.
Richard M. Stallman <rms@gnu.org>
parents:
12791
diff
changeset
|
1716 (dirtype (char-after (+ p 4))) |
13b7b667b18f
(archive-zoo-summarize): Handle archives with long file names.
Richard M. Stallman <rms@gnu.org>
parents:
12791
diff
changeset
|
1717 (lfnlen (if (= dirtype 2) (char-after (+ p 56)) 0)) |
13b7b667b18f
(archive-zoo-summarize): Handle archives with long file names.
Richard M. Stallman <rms@gnu.org>
parents:
12791
diff
changeset
|
1718 (ldirlen (if (= dirtype 2) (char-after (+ p 57)) 0)) |
20239
5bf13ca1dbac
(archive-zoo-summarize): Properly handle the case of
Andreas Schwab <schwab@suse.de>
parents:
19998
diff
changeset
|
1719 (fnlen (or (string-match "\0" namefld) 13)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1720 (efnname (let ((str |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1721 (concat |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1722 (if (> ldirlen 0) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1723 (concat (buffer-substring |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1724 (+ p 58 lfnlen) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1725 (+ p 58 lfnlen ldirlen -1)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1726 "/") |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1727 "") |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1728 (if (> lfnlen 0) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1729 (buffer-substring (+ p 58) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1730 (+ p 58 lfnlen -1)) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1731 (substring namefld 0 fnlen))))) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1732 (if file-name-coding-system |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1733 (decode-coding-string str file-name-coding-system) |
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1734 (string-as-multibyte str)))) |
13339
13b7b667b18f
(archive-zoo-summarize): Handle archives with long file names.
Richard M. Stallman <rms@gnu.org>
parents:
12791
diff
changeset
|
1735 (fiddle (and (= lfnlen 0) (string= efnname (upcase efnname)))) |
11880 | 1736 (ifnname (if fiddle (downcase efnname) efnname)) |
22830
d79de5a60ee8
(archive-summarize): Set buffer unibyte before
Eli Zaretskii <eliz@gnu.org>
parents:
22782
diff
changeset
|
1737 (width (string-width ifnname)) |
11880 | 1738 (text (format " %8d %-11s %-8s %s" |
1739 ucsize | |
1740 (archive-dosdate moddate) | |
1741 (archive-dostime modtime) | |
1742 ifnname))) | |
32484
bb1bfa010bf3
(archive-zoo-summarize): Fix from gnu.emacs.bug.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
29681
diff
changeset
|
1743 (setq maxlen (max maxlen width) |
11880 | 1744 totalsize (+ totalsize ucsize) |
1745 visual (cons (vector text | |
1746 (- (length text) (length ifnname)) | |
1747 (length text)) | |
1748 visual) | |
1749 files (cons (vector efnname ifnname fiddle nil (1- p)) | |
1750 files) | |
1751 p next))) | |
1752 (goto-char (point-min)) | |
1753 (let ((dash (concat "- -------- ----------- -------- " | |
1754 (make-string maxlen ?-) | |
1755 "\n"))) | |
1756 (insert "M Length Date Time File\n" | |
1757 dash) | |
1758 (archive-summarize-files (nreverse visual)) | |
1759 (insert dash | |
1760 (format " %8d %d file%s" | |
1761 totalsize | |
1762 (length files) | |
1763 (if (= 1 (length files)) "" "s")) | |
1764 "\n")) | |
1765 (apply 'vector (nreverse files)))) | |
1766 | |
1767 (defun archive-zoo-extract (archive name) | |
1768 (archive-extract-by-stdout archive name archive-zoo-extract)) | |
1769 ;; ------------------------------------------------------------------------- | |
23467
dd5bbd8db2f5
(arc-mode): Provide arc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
23383
diff
changeset
|
1770 ;; 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
|
1771 ;; rms 15 Oct 98 |
11880 | 1772 (provide 'archive-mode) |
1773 | |
23467
dd5bbd8db2f5
(arc-mode): Provide arc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
23383
diff
changeset
|
1774 (provide 'arc-mode) |
dd5bbd8db2f5
(arc-mode): Provide arc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
23383
diff
changeset
|
1775 |
61414
9918f801db35
(archive-mode-map): Move initialization into
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
55184
diff
changeset
|
1776 ;; arch-tag: e5966a01-35ec-4f27-8095-a043a79b457b |
38409
153f1b1f2efd
Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
38072
diff
changeset
|
1777 ;;; arc-mode.el ends here |