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