2019-06-25 20:34:57 +00:00
|
|
|
|
;;; tar-mode.el --- simple editing of tar files from GNU Emacs -*- lexical-binding:t -*-
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2021-01-01 09:13:56 +00:00
|
|
|
|
;; Copyright (C) 1990-1991, 1993-2021 Free Software Foundation, Inc.
|
1992-07-22 02:58:21 +00:00
|
|
|
|
|
1992-07-14 21:51:51 +00:00
|
|
|
|
;; Author: Jamie Zawinski <jwz@lucid.com>
|
2019-05-25 20:43:06 +00:00
|
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
1992-07-16 21:47:34 +00:00
|
|
|
|
;; Created: 04 Apr 1990
|
1992-07-17 20:24:00 +00:00
|
|
|
|
;; Keywords: unix
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1996-01-14 07:34:30 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
1992-07-14 21:51:51 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; This package attempts to make dealing with Unix 'tar' archives easier.
|
|
|
|
|
;; When this code is loaded, visiting a file whose name ends in '.tar' will
|
|
|
|
|
;; cause the contents of that archive file to be displayed in a Dired-like
|
|
|
|
|
;; listing. It is then possible to use the customary Dired keybindings to
|
|
|
|
|
;; extract sub-files from that archive, either by reading them into their own
|
|
|
|
|
;; editor buffers, or by copying them directly to arbitrary files on disk.
|
|
|
|
|
;; It is also possible to delete sub-files from within the tar file and write
|
|
|
|
|
;; the modified archive back to disk, or to edit sub-files within the archive
|
|
|
|
|
;; and re-insert the modified files into the archive. See the documentation
|
|
|
|
|
;; string of tar-mode for more info.
|
|
|
|
|
|
|
|
|
|
;; This code now understands the extra fields that GNU tar adds to tar files.
|
|
|
|
|
|
|
|
|
|
;; Do not attempt to use tar-mode.el with crypt.el, you will lose.
|
|
|
|
|
|
2003-02-04 12:29:42 +00:00
|
|
|
|
;; *************** TO DO ***************
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;;
|
|
|
|
|
;; o chmod should understand "a+x,og-w".
|
|
|
|
|
;;
|
|
|
|
|
;; o The code is less efficient that it could be - in a lot of places, I
|
|
|
|
|
;; pull a 512-character string out of the buffer and parse it, when I could
|
|
|
|
|
;; be parsing it in place, not garbaging a string. Should redo that.
|
|
|
|
|
;;
|
|
|
|
|
;; o I'd like a command that searches for a string/regexp in every subfile
|
|
|
|
|
;; of an archive, where <esc> would leave you in a subfile-edit buffer.
|
|
|
|
|
;; (Like the Meta-R command of the Zmacs mail reader.)
|
|
|
|
|
;;
|
2003-02-04 12:29:42 +00:00
|
|
|
|
;; o Sometimes (but not always) reverting the tar-file buffer does not
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; re-grind the listing, and you are staring at the binary tar data.
|
|
|
|
|
;; Typing 'g' again immediately after that will always revert and re-grind
|
|
|
|
|
;; it, though. I have no idea why this happens.
|
|
|
|
|
;;
|
|
|
|
|
;; o Tar-mode interacts poorly with crypt.el and zcat.el because the tar
|
|
|
|
|
;; write-file-hook actually writes the file. Instead it should remove the
|
|
|
|
|
;; header (and conspire to put it back afterwards) so that other write-file
|
|
|
|
|
;; hooks which frob the buffer have a chance to do their dirty work. There
|
|
|
|
|
;; might be a problem if the tar write-file-hook does not come *first* on
|
|
|
|
|
;; the list.
|
|
|
|
|
;;
|
2003-02-04 12:29:42 +00:00
|
|
|
|
;; o Block files, sparse files, continuation files, and the various header
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; types aren't editable. Actually I don't know that they work at all.
|
|
|
|
|
|
|
|
|
|
;; Rationale:
|
|
|
|
|
|
|
|
|
|
;; Why does tar-mode edit the file itself instead of using tar?
|
|
|
|
|
|
|
|
|
|
;; That means that you can edit tar files which you don't have room for
|
|
|
|
|
;; on your local disk.
|
|
|
|
|
|
|
|
|
|
;; I don't know about recent features in gnu tar, but old versions of tar
|
|
|
|
|
;; can't replace a file in the middle of a tar file with a new version.
|
|
|
|
|
;; Tar-mode can. I don't think tar can do things like chmod the subfiles.
|
|
|
|
|
;; An implementation which involved unpacking and repacking the file into
|
|
|
|
|
;; some scratch directory would be very wasteful, and wouldn't be able to
|
|
|
|
|
;; preserve the file owners.
|
1994-04-25 23:34:17 +00:00
|
|
|
|
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;;; Bugs:
|
|
|
|
|
|
2008-05-29 05:25:22 +00:00
|
|
|
|
;; - Rename on ././@LongLink files
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;; - Revert confirmation displays the raw data temporarily.
|
|
|
|
|
|
1992-07-14 21:51:51 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(eval-when-compile (require 'cl-lib))
|
2019-02-17 21:07:43 +00:00
|
|
|
|
(require 'arc-mode)
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
|
1998-02-01 17:46:32 +00:00
|
|
|
|
(defgroup tar nil
|
|
|
|
|
"Simple editing of tar files."
|
|
|
|
|
:prefix "tar-"
|
|
|
|
|
:group 'data)
|
|
|
|
|
|
|
|
|
|
(defcustom tar-anal-blocksize 20
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"The blocksize of tar files written by Emacs, or nil, meaning don't care.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
The blocksize of a tar file is not really the size of the blocks; rather, it is
|
2003-02-04 12:29:42 +00:00
|
|
|
|
the number of blocks written with one system call. When tarring to a tape,
|
1991-03-11 01:37:34 +00:00
|
|
|
|
this is the size of the *tape* blocks, but when writing to a file, it doesn't
|
|
|
|
|
matter much. The only noticeable difference is that if a tar file does not
|
|
|
|
|
have a blocksize of 20, tar will tell you that; all this really controls is
|
1998-02-01 17:46:32 +00:00
|
|
|
|
how many null padding bytes go on the end of the tar file."
|
2019-06-25 20:34:57 +00:00
|
|
|
|
:type '(choice integer (const nil)))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
1998-02-01 17:46:32 +00:00
|
|
|
|
(defcustom tar-update-datestamp nil
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"Non-nil means Tar mode should play fast and loose with sub-file datestamps.
|
1995-02-26 22:06:49 +00:00
|
|
|
|
If this is true, then editing and saving a tar file entry back into its
|
1991-03-11 01:37:34 +00:00
|
|
|
|
tar file will update its datestamp. If false, the datestamp is unchanged.
|
|
|
|
|
You may or may not want this - it is good in that you can tell when a file
|
|
|
|
|
in a tar archive has been changed, but it is bad for the same reason that
|
2003-02-04 12:29:42 +00:00
|
|
|
|
editing a file in the tar archive at all is bad - the changed version of
|
1998-02-01 17:46:32 +00:00
|
|
|
|
the file never exists on disk."
|
2019-06-25 20:34:57 +00:00
|
|
|
|
:type 'boolean)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
1998-02-01 17:46:32 +00:00
|
|
|
|
(defcustom tar-mode-show-date nil
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"Non-nil means Tar mode should show the date/time of each subfile.
|
1998-02-01 17:46:32 +00:00
|
|
|
|
This information is useful, but it takes screen space away from file names."
|
2019-06-25 20:34:57 +00:00
|
|
|
|
:type 'boolean)
|
1995-02-26 22:06:49 +00:00
|
|
|
|
|
2019-10-14 03:41:45 +00:00
|
|
|
|
(defcustom tar-copy-preserve-time nil
|
|
|
|
|
"Non-nil means that Tar mode preserves the timestamp when copying files."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:version "27.1")
|
|
|
|
|
|
1993-04-16 19:36:29 +00:00
|
|
|
|
(defvar tar-parse-info nil)
|
2013-05-09 01:42:00 +00:00
|
|
|
|
(defvar tar-superior-buffer nil
|
|
|
|
|
"Buffer containing the tar archive from which a member was extracted.")
|
|
|
|
|
(defvar tar-superior-descriptor nil
|
|
|
|
|
"Tar descriptor for a member extracted from an archive.")
|
2002-07-31 07:14:35 +00:00
|
|
|
|
(defvar tar-file-name-coding-system nil)
|
1993-07-24 08:42:00 +00:00
|
|
|
|
|
|
|
|
|
(put 'tar-superior-buffer 'permanent-local t)
|
|
|
|
|
(put 'tar-superior-descriptor 'permanent-local t)
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
|
|
|
|
|
;; The Tar data is made up of bytes and better manipulated as bytes
|
|
|
|
|
;; and can be very large, so insert/delete can be costly. The summary we
|
2011-11-14 23:59:56 +00:00
|
|
|
|
;; want to display may contain non-ascii chars, of course, so we'd like it
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;; to be multibyte. We used to keep both in the same buffer and switch
|
|
|
|
|
;; from/to uni/multibyte. But this had several downsides:
|
|
|
|
|
;; - set-buffer-multibyte has an O(N^2) worst case that tends to be triggered
|
|
|
|
|
;; here, so it gets atrociously slow on large Tar files.
|
|
|
|
|
;; - need to widen/narrow the buffer to show/hide the raw data, and need to
|
|
|
|
|
;; maintain a tar-header-offset that keeps track of the boundary between
|
|
|
|
|
;; the two.
|
|
|
|
|
;; - can't use markers because they're not preserved by set-buffer-multibyte.
|
|
|
|
|
;; So instead, we now keep the two pieces of data in separate buffers, and
|
|
|
|
|
;; use the new buffer-swap-text primitive when we need to change which data
|
|
|
|
|
;; is associated with "the" buffer.
|
Prefer defvar-local in remaining libraries
* lisp/align.el (align-mode-rules-list)
(align-mode-exclude-rules-list):
* lisp/bookmark.el (bookmark-current-bookmark)
(bookmark-annotation-name)
(bookmark--annotation-from-bookmark-list):
* lisp/calc/calc-embed.el (calc-embedded-all-active)
(calc-embedded-some-active):
* lisp/comint.el (comint-password-function):
* lisp/completion.el (completion-syntax-table):
* lisp/dframe.el (dframe-track-mouse-function)
(dframe-help-echo-function, dframe-mouse-click-function)
(dframe-mouse-position-function, dframe-timer)
(dframe-attached-frame, dframe-controlled):
* lisp/ehelp.el (electric-help-orig-major-mode):
* lisp/eshell/esh-util.el (eshell-path-env):
* lisp/expand.el (expand-pos, expand-index, expand-point):
* lisp/face-remap.el (text-scale-mode-remapping)
(text-scale-mode-lighter, text-scale-mode-amount)
(text-scale-remap-header-line, buffer-face-mode-remapping):
* lisp/ffap.el (ffap-menu-alist):
* lisp/files-x.el (connection-local-variables-alist):
* lisp/foldout.el (foldout-fold-list, foldout-mode-line-string):
* lisp/follow.el (follow-start-end-invalid):
* lisp/forms.el (forms--mode-setup):
* lisp/gnus/message.el (message-cross-post-old-target)
(message-options):
* lisp/help-mode.el (help-xref-stack, help-xref-forward-stack)
(help-xref-stack-item, help-xref-stack-forward-item):
* lisp/hexl.el (hexl-mode--old-var-vals, hexl-ascii-overlay):
* lisp/hilit-chg.el (hilit-chg-string):
* lisp/ido.el (ido-eoinput):
* lisp/imenu.el (imenu-generic-expression)
(imenu-create-index-function, imenu-default-goto-function)
(imenu-prev-index-position-function)
(imenu-extract-index-name-function, imenu-name-lookup-function)
(imenu-syntax-alist, imenu-case-fold-search):
* lisp/jka-compr.el (jka-compr-really-do-compress):
* lisp/language/ethio-util.el (ethio-prefer-ascii-space):
* lisp/leim/quail/hangul.el (hangul-input-method-help-text):
* lisp/leim/quail/japanese.el (quail-japanese-package-saved):
* lisp/linum.el (linum-overlays, linum-available):
* lisp/man.el (Man-original-frame, Man-arguments, Man--sections)
(Man--refpages, Man-page-list, Man-current-page)
(Man-page-mode-string):
* lisp/pcomplete.el (pcomplete-current-completions)
(pcomplete-last-completion-length)
(pcomplete-last-completion-stub, pcomplete-last-completion-raw)
(pcomplete-last-window-config, pcomplete-window-restore-timer):
* lisp/reveal.el (reveal-open-spots, reveal-last-tick):
* lisp/ruler-mode.el (ruler-mode):
* lisp/scroll-lock.el (scroll-lock-preserve-screen-pos-save):
* lisp/server.el (server-buffer-clients, server-existing-buffer):
* lisp/tab-line.el (tab-line-exclude):
* lisp/tar-mode.el (tar-data-buffer, tar-data-swapped):
* lisp/thumbs.el (thumbs-current-tmp-filename)
(thumbs-current-image-filename, thumbs-extra-images)
(thumbs-image-num, thumbs-buffer, thumbs-marked-list):
* lisp/tutorial.el (tutorial--point-before-chkeys)
(tutorial--point-after-chkeys, tutorial--lang):
* lisp/url/url-vars.el (url-current-object)
(url-current-mime-headers, url-current-lastloc):
* lisp/view.el (view-mode, view-old-buffer-read-only)
(view-old-Helper-return-blurb, view-page-size)
(view-half-page-size, view-last-regexp, view-return-to-alist)
(view-exit-action, view-overlay):
* lisp/wid-edit.el (widget-global-map, widget-field-new)
(widget-field-list, widget-field-last, widget-field-was):
* lisp/woman.el (woman-imenu-done): Prefer defvar-local.
2021-02-02 08:55:40 +00:00
|
|
|
|
(defvar-local tar-data-buffer nil
|
|
|
|
|
"Buffer that holds the actual raw tar bytes.")
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
|
Prefer defvar-local in remaining libraries
* lisp/align.el (align-mode-rules-list)
(align-mode-exclude-rules-list):
* lisp/bookmark.el (bookmark-current-bookmark)
(bookmark-annotation-name)
(bookmark--annotation-from-bookmark-list):
* lisp/calc/calc-embed.el (calc-embedded-all-active)
(calc-embedded-some-active):
* lisp/comint.el (comint-password-function):
* lisp/completion.el (completion-syntax-table):
* lisp/dframe.el (dframe-track-mouse-function)
(dframe-help-echo-function, dframe-mouse-click-function)
(dframe-mouse-position-function, dframe-timer)
(dframe-attached-frame, dframe-controlled):
* lisp/ehelp.el (electric-help-orig-major-mode):
* lisp/eshell/esh-util.el (eshell-path-env):
* lisp/expand.el (expand-pos, expand-index, expand-point):
* lisp/face-remap.el (text-scale-mode-remapping)
(text-scale-mode-lighter, text-scale-mode-amount)
(text-scale-remap-header-line, buffer-face-mode-remapping):
* lisp/ffap.el (ffap-menu-alist):
* lisp/files-x.el (connection-local-variables-alist):
* lisp/foldout.el (foldout-fold-list, foldout-mode-line-string):
* lisp/follow.el (follow-start-end-invalid):
* lisp/forms.el (forms--mode-setup):
* lisp/gnus/message.el (message-cross-post-old-target)
(message-options):
* lisp/help-mode.el (help-xref-stack, help-xref-forward-stack)
(help-xref-stack-item, help-xref-stack-forward-item):
* lisp/hexl.el (hexl-mode--old-var-vals, hexl-ascii-overlay):
* lisp/hilit-chg.el (hilit-chg-string):
* lisp/ido.el (ido-eoinput):
* lisp/imenu.el (imenu-generic-expression)
(imenu-create-index-function, imenu-default-goto-function)
(imenu-prev-index-position-function)
(imenu-extract-index-name-function, imenu-name-lookup-function)
(imenu-syntax-alist, imenu-case-fold-search):
* lisp/jka-compr.el (jka-compr-really-do-compress):
* lisp/language/ethio-util.el (ethio-prefer-ascii-space):
* lisp/leim/quail/hangul.el (hangul-input-method-help-text):
* lisp/leim/quail/japanese.el (quail-japanese-package-saved):
* lisp/linum.el (linum-overlays, linum-available):
* lisp/man.el (Man-original-frame, Man-arguments, Man--sections)
(Man--refpages, Man-page-list, Man-current-page)
(Man-page-mode-string):
* lisp/pcomplete.el (pcomplete-current-completions)
(pcomplete-last-completion-length)
(pcomplete-last-completion-stub, pcomplete-last-completion-raw)
(pcomplete-last-window-config, pcomplete-window-restore-timer):
* lisp/reveal.el (reveal-open-spots, reveal-last-tick):
* lisp/ruler-mode.el (ruler-mode):
* lisp/scroll-lock.el (scroll-lock-preserve-screen-pos-save):
* lisp/server.el (server-buffer-clients, server-existing-buffer):
* lisp/tab-line.el (tab-line-exclude):
* lisp/tar-mode.el (tar-data-buffer, tar-data-swapped):
* lisp/thumbs.el (thumbs-current-tmp-filename)
(thumbs-current-image-filename, thumbs-extra-images)
(thumbs-image-num, thumbs-buffer, thumbs-marked-list):
* lisp/tutorial.el (tutorial--point-before-chkeys)
(tutorial--point-after-chkeys, tutorial--lang):
* lisp/url/url-vars.el (url-current-object)
(url-current-mime-headers, url-current-lastloc):
* lisp/view.el (view-mode, view-old-buffer-read-only)
(view-old-Helper-return-blurb, view-page-size)
(view-half-page-size, view-last-regexp, view-return-to-alist)
(view-exit-action, view-overlay):
* lisp/wid-edit.el (widget-global-map, widget-field-new)
(widget-field-list, widget-field-last, widget-field-was):
* lisp/woman.el (woman-imenu-done): Prefer defvar-local.
2021-02-02 08:55:40 +00:00
|
|
|
|
(defvar-local tar-data-swapped nil
|
2008-12-30 21:59:52 +00:00
|
|
|
|
"If non-nil, `tar-data-buffer' indeed holds raw tar bytes.")
|
|
|
|
|
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(defun tar-data-swapped-p ()
|
|
|
|
|
"Return non-nil if the tar-data is in `tar-data-buffer'."
|
2008-12-30 21:59:52 +00:00
|
|
|
|
(and (buffer-live-p tar-data-buffer)
|
|
|
|
|
;; Sanity check to try and make sure tar-data-swapped tracks the swap
|
|
|
|
|
;; state correctly: the raw data is expected to be always larger than
|
|
|
|
|
;; the summary.
|
|
|
|
|
(progn
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(cl-assert (or (= (buffer-size tar-data-buffer) (buffer-size))
|
2009-10-17 04:36:11 +00:00
|
|
|
|
(eq tar-data-swapped
|
|
|
|
|
(> (buffer-size tar-data-buffer) (buffer-size)))))
|
2008-12-30 21:59:52 +00:00
|
|
|
|
tar-data-swapped)))
|
2008-12-26 16:38:00 +00:00
|
|
|
|
|
|
|
|
|
(defun tar-swap-data ()
|
|
|
|
|
"Swap buffer contents between current buffer and `tar-data-buffer'.
|
|
|
|
|
Preserve the modified states of the buffers and set `buffer-swapped-with'."
|
|
|
|
|
(let ((data-buffer-modified-p (buffer-modified-p tar-data-buffer))
|
|
|
|
|
(current-buffer-modified-p (buffer-modified-p)))
|
|
|
|
|
(buffer-swap-text tar-data-buffer)
|
2008-12-30 21:59:52 +00:00
|
|
|
|
(setq tar-data-swapped (not tar-data-swapped))
|
|
|
|
|
(restore-buffer-modified-p data-buffer-modified-p)
|
2008-12-26 16:38:00 +00:00
|
|
|
|
(with-current-buffer tar-data-buffer
|
2008-12-30 21:59:52 +00:00
|
|
|
|
(restore-buffer-modified-p current-buffer-modified-p))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
|
|
|
|
;;; down to business.
|
|
|
|
|
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(cl-defstruct (tar-header
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(:constructor nil)
|
|
|
|
|
(:type vector)
|
|
|
|
|
:named
|
|
|
|
|
(:constructor
|
|
|
|
|
make-tar-header (data-start name mode uid gid size date checksum
|
|
|
|
|
link-type link-name magic uname gname dmaj dmin)))
|
|
|
|
|
data-start name mode uid gid size date checksum link-type link-name
|
2008-05-29 05:25:22 +00:00
|
|
|
|
magic uname gname dmaj dmin
|
|
|
|
|
;; Start of the header can be nil (meaning it's 512 bytes before data-start)
|
|
|
|
|
;; or a marker (in case the header uses LongLink thingies).
|
|
|
|
|
header-start)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
|
|
|
|
(defconst tar-name-offset 0)
|
|
|
|
|
(defconst tar-mode-offset (+ tar-name-offset 100))
|
|
|
|
|
(defconst tar-uid-offset (+ tar-mode-offset 8))
|
|
|
|
|
(defconst tar-gid-offset (+ tar-uid-offset 8))
|
|
|
|
|
(defconst tar-size-offset (+ tar-gid-offset 8))
|
|
|
|
|
(defconst tar-time-offset (+ tar-size-offset 12))
|
|
|
|
|
(defconst tar-chk-offset (+ tar-time-offset 12))
|
|
|
|
|
(defconst tar-linkp-offset (+ tar-chk-offset 8))
|
|
|
|
|
(defconst tar-link-offset (+ tar-linkp-offset 1))
|
|
|
|
|
;;; GNU-tar specific slots.
|
|
|
|
|
(defconst tar-magic-offset (+ tar-link-offset 100))
|
|
|
|
|
(defconst tar-uname-offset (+ tar-magic-offset 8))
|
|
|
|
|
(defconst tar-gname-offset (+ tar-uname-offset 32))
|
|
|
|
|
(defconst tar-dmaj-offset (+ tar-gname-offset 32))
|
|
|
|
|
(defconst tar-dmin-offset (+ tar-dmaj-offset 8))
|
2008-04-22 22:51:00 +00:00
|
|
|
|
(defconst tar-prefix-offset (+ tar-dmin-offset 8))
|
|
|
|
|
(defconst tar-end-offset (+ tar-prefix-offset 155))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(defun tar-roundup-512 (s)
|
|
|
|
|
"Round S up to the next multiple of 512."
|
|
|
|
|
(ash (ash (+ s 511) -9) 9))
|
2011-02-01 21:22:21 +00:00
|
|
|
|
|
2019-12-30 16:17:03 +00:00
|
|
|
|
(defun tar-header-block-tokenize (pos coding &optional disable-slash)
|
1993-07-31 22:35:20 +00:00
|
|
|
|
"Return a `tar-header' structure.
|
2003-02-04 12:29:42 +00:00
|
|
|
|
This is a list of name, mode, uid, gid, size,
|
2019-12-30 16:17:03 +00:00
|
|
|
|
write-date, checksum, link-type, and link-name.
|
|
|
|
|
CODING is our best guess for decoding non-ASCII file names.
|
|
|
|
|
DISABLE-SLASH, if non-nil, means don't decide an entry is a directory
|
|
|
|
|
based on the trailing slash, only based on the \"link-type\" field
|
|
|
|
|
of the file header. This is used for \"old GNU\" Tar format."
|
2009-03-13 15:37:03 +00:00
|
|
|
|
(if (> (+ pos 512) (point-max)) (error "Malformed Tar header"))
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(cl-assert (zerop (mod (- pos (point-min)) 512)))
|
|
|
|
|
(cl-assert (not enable-multibyte-characters))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(let ((string (buffer-substring pos (setq pos (+ pos 512)))))
|
|
|
|
|
(when ;(some 'plusp string) ; <-- oops, massive cycle hog!
|
|
|
|
|
(or (not (= 0 (aref string 0))) ; This will do.
|
|
|
|
|
(not (= 0 (aref string 101))))
|
|
|
|
|
(let* ((name-end tar-mode-offset)
|
|
|
|
|
(link-end (1- tar-magic-offset))
|
|
|
|
|
(uname-end (1- tar-gname-offset))
|
|
|
|
|
(gname-end (1- tar-dmaj-offset))
|
|
|
|
|
(link-p (aref string tar-linkp-offset))
|
|
|
|
|
(magic-str (substring string tar-magic-offset
|
2009-01-12 03:37:13 +00:00
|
|
|
|
;; The magic string is actually 6bytes
|
|
|
|
|
;; of magic string plus 2bytes of version
|
|
|
|
|
;; which we here ignore.
|
|
|
|
|
(- tar-uname-offset 2)))
|
|
|
|
|
;; The magic string is "ustar\0" for POSIX format, and
|
|
|
|
|
;; "ustar " for GNU Tar's format.
|
|
|
|
|
(uname-valid-p (car (member magic-str '("ustar " "ustar\0"))))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
name linkname
|
|
|
|
|
(nulsexp "[^\000]*\000"))
|
|
|
|
|
(when (string-match nulsexp string tar-name-offset)
|
|
|
|
|
(setq name-end (min name-end (1- (match-end 0)))))
|
|
|
|
|
(when (string-match nulsexp string tar-link-offset)
|
|
|
|
|
(setq link-end (min link-end (1- (match-end 0)))))
|
|
|
|
|
(when (string-match nulsexp string tar-uname-offset)
|
|
|
|
|
(setq uname-end (min uname-end (1- (match-end 0)))))
|
|
|
|
|
(when (string-match nulsexp string tar-gname-offset)
|
|
|
|
|
(setq gname-end (min gname-end (1- (match-end 0)))))
|
|
|
|
|
(setq name (substring string tar-name-offset name-end)
|
|
|
|
|
link-p (if (or (= link-p 0) (= link-p ?0))
|
|
|
|
|
nil
|
|
|
|
|
(- link-p ?0)))
|
|
|
|
|
(setq linkname (substring string tar-link-offset link-end))
|
2009-01-12 03:37:13 +00:00
|
|
|
|
(when (and (equal uname-valid-p "ustar\0")
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(string-match nulsexp string tar-prefix-offset)
|
|
|
|
|
(> (match-end 0) (1+ tar-prefix-offset)))
|
|
|
|
|
(setq name (concat (substring string tar-prefix-offset
|
|
|
|
|
(1- (match-end 0)))
|
|
|
|
|
"/" name)))
|
2018-01-25 18:35:13 +00:00
|
|
|
|
(setq name
|
|
|
|
|
(decode-coding-string name coding)
|
|
|
|
|
linkname
|
|
|
|
|
(decode-coding-string linkname coding))
|
2019-12-30 16:17:03 +00:00
|
|
|
|
(if (and (null link-p) (null disable-slash) (string-match "/\\'" name))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(setq link-p 5)) ; directory
|
|
|
|
|
|
|
|
|
|
(if (and (equal name "././@LongLink")
|
2009-06-04 20:48:16 +00:00
|
|
|
|
;; Supposedly @LongLink is only used for GNUTAR
|
|
|
|
|
;; format (i.e. "ustar ") but some POSIX Tar files
|
|
|
|
|
;; (with "ustar\0") have been seen using it as well.
|
|
|
|
|
(member magic-str '("ustar " "ustar\0")))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
;; This is a GNU Tar long-file-name header.
|
|
|
|
|
(let* ((size (tar-parse-octal-integer
|
|
|
|
|
string tar-size-offset tar-time-offset))
|
2019-12-30 16:17:03 +00:00
|
|
|
|
;; The long name is in the next 512-byte block.
|
|
|
|
|
;; We've already moved POS there, when we computed
|
|
|
|
|
;; STRING above.
|
2011-02-01 21:22:21 +00:00
|
|
|
|
(name (decode-coding-string
|
2019-12-30 16:17:03 +00:00
|
|
|
|
;; -1 so as to strip the terminating 0 byte.
|
2010-09-27 05:00:46 +00:00
|
|
|
|
(buffer-substring pos (+ pos size -1)) coding))
|
2019-12-30 16:17:03 +00:00
|
|
|
|
;; Tokenize the header of the _real_ file entry,
|
|
|
|
|
;; which is further 512 bytes into the archive.
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(descriptor (tar-header-block-tokenize
|
2019-12-30 16:17:03 +00:00
|
|
|
|
(+ pos (tar-roundup-512 size)) coding
|
|
|
|
|
;; Don't intuit directories from
|
|
|
|
|
;; the trailing slash, because the
|
|
|
|
|
;; truncated name might by chance end
|
|
|
|
|
;; in a slash.
|
|
|
|
|
'ignore-trailing-slash)))
|
|
|
|
|
;; Fix the descriptor of the real file entry by using
|
|
|
|
|
;; the information from the long name entry.
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(cond
|
|
|
|
|
((eq link-p (- ?L ?0)) ;GNUTYPE_LONGNAME.
|
|
|
|
|
(setf (tar-header-name descriptor) name))
|
|
|
|
|
((eq link-p (- ?K ?0)) ;GNUTYPE_LONGLINK.
|
|
|
|
|
(setf (tar-header-link-name descriptor) name))
|
|
|
|
|
(t
|
|
|
|
|
(message "Unrecognized GNU Tar @LongLink format")))
|
2019-12-30 16:17:03 +00:00
|
|
|
|
;; Fix the "link-type" attribute, based on the long name.
|
|
|
|
|
(if (and (null (tar-header-link-type descriptor))
|
|
|
|
|
(string-match "/\\'" name))
|
|
|
|
|
(setf (tar-header-link-type descriptor) 5)) ; directory
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(setf (tar-header-header-start descriptor)
|
|
|
|
|
(copy-marker (- pos 512) t))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
descriptor)
|
2011-02-01 21:22:21 +00:00
|
|
|
|
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(make-tar-header
|
|
|
|
|
(copy-marker pos nil)
|
|
|
|
|
name
|
|
|
|
|
(tar-parse-octal-integer string tar-mode-offset tar-uid-offset)
|
|
|
|
|
(tar-parse-octal-integer string tar-uid-offset tar-gid-offset)
|
|
|
|
|
(tar-parse-octal-integer string tar-gid-offset tar-size-offset)
|
|
|
|
|
(tar-parse-octal-integer string tar-size-offset tar-time-offset)
|
New (TICKS . HZ) timestamp format
This follows on a suggestion by Stefan Monnier in:
https://lists.gnu.org/r/emacs-devel/2018-08/msg00991.html
(Bug#32902).
* doc/lispref/buffers.texi (Modification Time):
* doc/lispref/os.texi (Processor Run Time, Time Calculations)
* doc/lispref/processes.texi (System Processes):
* doc/lispref/text.texi (Undo):
Let the "Time of Day" section cover timestamp format details.
* doc/lispref/os.texi (Time of Day):
Say that timestamp internal format should not be assumed.
Document new (ticks . hz) format. Omit mention of seconds-to-time
since it is now just an alias for encode-time.
(Time Conversion): Document encode-time extension.
* etc/NEWS: Mention changes.
* lisp/calendar/cal-dst.el (calendar-system-time-basis): Now const.
* lisp/calendar/cal-dst.el (calendar-absolute-from-time)
(calendar-time-from-absolute)
(calendar-next-time-zone-transition):
* lisp/emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
Simplify by using bignums, (TICKS . HZ), and new encode-time.
* lisp/emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
Simplify by using bignums and new encode-time.
* lisp/calendar/parse-time.el (parse-iso8601-time-string):
Handle DST more accurately, by using new encode-time.
* lisp/calendar/time-date.el (seconds-to-time):
* lisp/calendar/timeclock.el (timeclock-seconds-to-time):
Now just an alias for encode-time.
* lisp/calendar/time-date.el (days-to-time):
* lisp/emacs-lisp/timer.el (timer--time-setter):
* lisp/net/ntlm.el (ntlm-compute-timestamp):
* lisp/obsolete/vc-arch.el (vc-arch-add-tagline):
* lisp/org/org-id.el (org-id-uuid, org-id-time-to-b36):
* lisp/tar-mode (tar-octal-time):
Don't assume timestamps default to list form.
* lisp/tar-mode.el (tar-parse-octal-long-integer):
Now an obsolete alias for tar-parse-octal-integer.
* src/keyboard.c (decode_timer): Adjust to changes to
time decoding functions elsewhere.
* src/timefns.c: Include bignum.h, limits.h.
(FASTER_TIMEFNS): New macro.
(WARN_OBSOLETE_TIMESTAMPS, CURRENT_TIME_LIST)
(timespec_hz, trillion, ztrillion):
New constants.
(make_timeval): Use TIME_T_MAX instead of its definiens.
(check_time_validity, time_add, time_subtract):
Remove. All uses removed.
(disassemble_lisp_time): Remove; old code now folded into
decode_lisp_time. All callers changed.
(invalid_hz, s_ns_to_double, ticks_hz_list4, mpz_set_time)
(timespec_mpz, timespec_ticks, time_hz_ticks)
(lisp_time_hz_ticks, lisp_time_seconds)
(time_form_stamp, lisp_time_form_stamp, decode_ticks_hz)
(decode_lisp_time, mpz_time, list4_to_timespec):
New functions.
(decode_float_time, decode_time_components, lisp_to_timespec):
Adjust to new struct lisp_time, which does not lose
information like the old one did.
(enum timeform): New enum.
(decode_time_components): New arg FORM. All callers changed.
RESULT and DRESULT are now mutually exclusive; no callers need
to change because of this.
(decode_time_components, lisp_time_struct)
(lisp_seconds_argument, time_arith, make_lisp_time, Ffloat_time)
(Fencode_time):
Add support for (TICKS . HZ) form.
(DECODE_SECS_ONLY): New constant.
(lisp_time_struct): 2nd arg is now enum timeform, not int.
All callers changed.
(check_tm_member): Support bignums.m
(Fencode_time): Add new two-arg functionality.
* src/systime.h (struct lisp_time): Now ticks+hz rather than
hi+lo+us+ps, since ticks+hz does not lose info.
* test/src/systime-tests.el (time-equal-p-nil-nil):
New test.
2018-10-03 16:10:01 +00:00
|
|
|
|
(tar-parse-octal-integer string tar-time-offset tar-chk-offset)
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(tar-parse-octal-integer string tar-chk-offset tar-linkp-offset)
|
|
|
|
|
link-p
|
|
|
|
|
linkname
|
|
|
|
|
uname-valid-p
|
2009-10-17 04:36:11 +00:00
|
|
|
|
(when uname-valid-p
|
|
|
|
|
(decode-coding-string
|
|
|
|
|
(substring string tar-uname-offset uname-end) coding))
|
|
|
|
|
(when uname-valid-p
|
|
|
|
|
(decode-coding-string
|
|
|
|
|
(substring string tar-gname-offset gname-end) coding))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(tar-parse-octal-integer string tar-dmaj-offset tar-dmin-offset)
|
|
|
|
|
(tar-parse-octal-integer string tar-dmin-offset tar-prefix-offset)
|
|
|
|
|
))))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2008-05-29 05:25:22 +00:00
|
|
|
|
;; Pseudo-field.
|
|
|
|
|
(defun tar-header-data-end (descriptor)
|
|
|
|
|
(let* ((data-start (tar-header-data-start descriptor))
|
|
|
|
|
(link-type (tar-header-link-type descriptor))
|
2012-08-13 10:34:25 +00:00
|
|
|
|
(size (tar-header-size descriptor)))
|
|
|
|
|
(+ data-start
|
|
|
|
|
;; Ignore size for files of type 1-6
|
|
|
|
|
(if (and (not (memq link-type '(1 2 3 4 5 6))) (> size 0))
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(tar-roundup-512 size)
|
|
|
|
|
0))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
|
|
|
|
(defun tar-parse-octal-integer (string &optional start end)
|
|
|
|
|
(if (null start) (setq start 0))
|
|
|
|
|
(if (null end) (setq end (length string)))
|
|
|
|
|
(if (= (aref string start) 0)
|
|
|
|
|
0
|
|
|
|
|
(let ((n 0))
|
|
|
|
|
(while (< start end)
|
|
|
|
|
(setq n (if (< (aref string start) ?0) n
|
1995-02-26 22:06:49 +00:00
|
|
|
|
(+ (* n 8) (- (aref string start) ?0)))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
start (1+ start)))
|
|
|
|
|
n)))
|
|
|
|
|
|
New (TICKS . HZ) timestamp format
This follows on a suggestion by Stefan Monnier in:
https://lists.gnu.org/r/emacs-devel/2018-08/msg00991.html
(Bug#32902).
* doc/lispref/buffers.texi (Modification Time):
* doc/lispref/os.texi (Processor Run Time, Time Calculations)
* doc/lispref/processes.texi (System Processes):
* doc/lispref/text.texi (Undo):
Let the "Time of Day" section cover timestamp format details.
* doc/lispref/os.texi (Time of Day):
Say that timestamp internal format should not be assumed.
Document new (ticks . hz) format. Omit mention of seconds-to-time
since it is now just an alias for encode-time.
(Time Conversion): Document encode-time extension.
* etc/NEWS: Mention changes.
* lisp/calendar/cal-dst.el (calendar-system-time-basis): Now const.
* lisp/calendar/cal-dst.el (calendar-absolute-from-time)
(calendar-time-from-absolute)
(calendar-next-time-zone-transition):
* lisp/emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
Simplify by using bignums, (TICKS . HZ), and new encode-time.
* lisp/emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
Simplify by using bignums and new encode-time.
* lisp/calendar/parse-time.el (parse-iso8601-time-string):
Handle DST more accurately, by using new encode-time.
* lisp/calendar/time-date.el (seconds-to-time):
* lisp/calendar/timeclock.el (timeclock-seconds-to-time):
Now just an alias for encode-time.
* lisp/calendar/time-date.el (days-to-time):
* lisp/emacs-lisp/timer.el (timer--time-setter):
* lisp/net/ntlm.el (ntlm-compute-timestamp):
* lisp/obsolete/vc-arch.el (vc-arch-add-tagline):
* lisp/org/org-id.el (org-id-uuid, org-id-time-to-b36):
* lisp/tar-mode (tar-octal-time):
Don't assume timestamps default to list form.
* lisp/tar-mode.el (tar-parse-octal-long-integer):
Now an obsolete alias for tar-parse-octal-integer.
* src/keyboard.c (decode_timer): Adjust to changes to
time decoding functions elsewhere.
* src/timefns.c: Include bignum.h, limits.h.
(FASTER_TIMEFNS): New macro.
(WARN_OBSOLETE_TIMESTAMPS, CURRENT_TIME_LIST)
(timespec_hz, trillion, ztrillion):
New constants.
(make_timeval): Use TIME_T_MAX instead of its definiens.
(check_time_validity, time_add, time_subtract):
Remove. All uses removed.
(disassemble_lisp_time): Remove; old code now folded into
decode_lisp_time. All callers changed.
(invalid_hz, s_ns_to_double, ticks_hz_list4, mpz_set_time)
(timespec_mpz, timespec_ticks, time_hz_ticks)
(lisp_time_hz_ticks, lisp_time_seconds)
(time_form_stamp, lisp_time_form_stamp, decode_ticks_hz)
(decode_lisp_time, mpz_time, list4_to_timespec):
New functions.
(decode_float_time, decode_time_components, lisp_to_timespec):
Adjust to new struct lisp_time, which does not lose
information like the old one did.
(enum timeform): New enum.
(decode_time_components): New arg FORM. All callers changed.
RESULT and DRESULT are now mutually exclusive; no callers need
to change because of this.
(decode_time_components, lisp_time_struct)
(lisp_seconds_argument, time_arith, make_lisp_time, Ffloat_time)
(Fencode_time):
Add support for (TICKS . HZ) form.
(DECODE_SECS_ONLY): New constant.
(lisp_time_struct): 2nd arg is now enum timeform, not int.
All callers changed.
(check_tm_member): Support bignums.m
(Fencode_time): Add new two-arg functionality.
* src/systime.h (struct lisp_time): Now ticks+hz rather than
hi+lo+us+ps, since ticks+hz does not lose info.
* test/src/systime-tests.el (time-equal-p-nil-nil):
New test.
2018-10-03 16:10:01 +00:00
|
|
|
|
(define-obsolete-function-alias 'tar-parse-octal-long-integer
|
2019-06-25 20:34:57 +00:00
|
|
|
|
#'tar-parse-octal-integer "27.1")
|
1995-02-26 22:06:49 +00:00
|
|
|
|
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(defun tar-parse-octal-integer-safe (string)
|
2021-09-14 06:43:18 +00:00
|
|
|
|
(if (zerop (length string)) (error "Empty string"))
|
2005-11-10 18:00:37 +00:00
|
|
|
|
(mapc (lambda (c)
|
|
|
|
|
(if (or (< c ?0) (> c ?7))
|
|
|
|
|
(error "`%c' is not an octal digit" c)))
|
|
|
|
|
string)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(tar-parse-octal-integer string))
|
|
|
|
|
|
2015-01-27 21:25:56 +00:00
|
|
|
|
(defun tar-new-regular-file-header (filename &optional size time)
|
|
|
|
|
"Return a Tar header for a regular file.
|
|
|
|
|
The header will lack a proper checksum; use `tar-header-block-checksum'
|
|
|
|
|
to compute one, or request `tar-header-serialize' to do that.
|
|
|
|
|
|
2021-09-14 06:43:18 +00:00
|
|
|
|
Other `tar-mode' facilities may also require the data-start header
|
2015-01-27 21:25:56 +00:00
|
|
|
|
field to be set to a valid value.
|
|
|
|
|
|
|
|
|
|
If SIZE is not given or nil, it defaults to 0.
|
|
|
|
|
If TIME is not given or nil, assume now."
|
|
|
|
|
(make-tar-header
|
|
|
|
|
nil
|
|
|
|
|
filename
|
|
|
|
|
#o644 0 0 (or size 0)
|
|
|
|
|
(or time (current-time))
|
|
|
|
|
nil ; checksum
|
|
|
|
|
nil nil
|
|
|
|
|
nil nil nil nil nil))
|
|
|
|
|
|
|
|
|
|
(defun tar--pad-to (pos)
|
|
|
|
|
(make-string (+ pos (- (point)) (point-min)) 0))
|
|
|
|
|
|
|
|
|
|
(defun tar--put-at (pos val &optional fmt mask)
|
|
|
|
|
(when val
|
|
|
|
|
(insert (tar--pad-to pos)
|
|
|
|
|
(if fmt
|
|
|
|
|
(format fmt (if mask (logand mask val) val))
|
|
|
|
|
val))))
|
|
|
|
|
|
|
|
|
|
(defun tar-header-serialize (header &optional update-checksum)
|
|
|
|
|
"Return the serialization of a Tar HEADER as a string.
|
|
|
|
|
This function calls `tar-header-block-check-checksum' to ensure the
|
|
|
|
|
checksum is correct.
|
|
|
|
|
|
|
|
|
|
If UPDATE-CHECKSUM is non-nil, update HEADER with the newly-computed
|
|
|
|
|
checksum before doing the check."
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(set-buffer-multibyte nil)
|
|
|
|
|
(let ((encoded-name
|
|
|
|
|
(encode-coding-string (tar-header-name header)
|
|
|
|
|
tar-file-name-coding-system)))
|
|
|
|
|
(unless (< (length encoded-name) 99)
|
|
|
|
|
;; FIXME: Implement it.
|
|
|
|
|
(error "Long file name support is not implemented"))
|
|
|
|
|
(insert encoded-name))
|
|
|
|
|
(tar--put-at tar-mode-offset (tar-header-mode header) "%6o\0 " #o777777)
|
|
|
|
|
(tar--put-at tar-uid-offset (tar-header-uid header) "%6o\0 " #o777777)
|
|
|
|
|
(tar--put-at tar-gid-offset (tar-header-gid header) "%6o\0 " #o777777)
|
|
|
|
|
(tar--put-at tar-size-offset (tar-header-size header) "%11o ")
|
|
|
|
|
(insert (tar--pad-to tar-time-offset)
|
|
|
|
|
(tar-octal-time (tar-header-date header))
|
|
|
|
|
" ")
|
|
|
|
|
;; Omit tar-header-checksum (tar-chk-offset) for now.
|
|
|
|
|
(tar--put-at tar-linkp-offset (tar-header-link-type header))
|
|
|
|
|
(tar--put-at tar-link-offset (tar-header-link-name header))
|
|
|
|
|
(when (tar-header-magic header)
|
|
|
|
|
(tar--put-at tar-magic-offset (tar-header-magic header))
|
|
|
|
|
(tar--put-at tar-uname-offset (tar-header-uname header))
|
|
|
|
|
(tar--put-at tar-gname-offset (tar-header-gname header))
|
|
|
|
|
(tar--put-at tar-dmaj-offset (tar-header-dmaj header) "%7o\0" #o7777777)
|
|
|
|
|
(tar--put-at tar-dmin-offset (tar-header-dmin header) "%7o\0" #o7777777))
|
|
|
|
|
(tar--put-at 512 "")
|
|
|
|
|
(let ((ck (tar-header-block-checksum (buffer-string))))
|
|
|
|
|
(goto-char (+ (point-min) tar-chk-offset))
|
|
|
|
|
(delete-char 8)
|
|
|
|
|
(insert (format "%6o\0 " ck))
|
|
|
|
|
(when update-checksum
|
|
|
|
|
(setf (tar-header-checksum header) ck))
|
|
|
|
|
(tar-header-block-check-checksum (buffer-string)
|
|
|
|
|
(tar-header-checksum header)
|
|
|
|
|
(tar-header-name header)))
|
|
|
|
|
;; .
|
|
|
|
|
(buffer-string)))
|
|
|
|
|
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
1994-06-23 17:52:44 +00:00
|
|
|
|
(defun tar-header-block-checksum (string)
|
1993-07-31 22:35:20 +00:00
|
|
|
|
"Compute and return a tar-acceptable checksum for this block."
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(cl-assert (not (multibyte-string-p string)))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(let* ((chk-field-start tar-chk-offset)
|
|
|
|
|
(chk-field-end (+ chk-field-start 8))
|
|
|
|
|
(sum 0)
|
|
|
|
|
(i 0))
|
|
|
|
|
;; Add up all of the characters except the ones in the checksum field.
|
|
|
|
|
;; Add that field as if it were filled with spaces.
|
|
|
|
|
(while (< i chk-field-start)
|
|
|
|
|
(setq sum (+ sum (aref string i))
|
|
|
|
|
i (1+ i)))
|
|
|
|
|
(setq i chk-field-end)
|
|
|
|
|
(while (< i 512)
|
|
|
|
|
(setq sum (+ sum (aref string i))
|
|
|
|
|
i (1+ i)))
|
|
|
|
|
(+ sum (* 32 8))))
|
|
|
|
|
|
1994-06-23 17:52:44 +00:00
|
|
|
|
(defun tar-header-block-check-checksum (hblock desired-checksum file-name)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
"Beep and print a warning if the checksum doesn't match."
|
1994-06-23 17:52:44 +00:00
|
|
|
|
(if (not (= desired-checksum (tar-header-block-checksum hblock)))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(progn (beep) (message "Invalid checksum for file %s!" file-name))))
|
|
|
|
|
|
1995-02-26 22:06:49 +00:00
|
|
|
|
(defun tar-clip-time-string (time)
|
2019-08-23 03:44:59 +00:00
|
|
|
|
(declare (obsolete format-time-string "27.1"))
|
2021-12-16 17:40:22 +00:00
|
|
|
|
(let ((system-time-locale "C"))
|
|
|
|
|
(format-time-string " %b %e %H:%M %Y" time)))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2000-06-05 07:44:59 +00:00
|
|
|
|
(defun tar-grind-file-mode (mode)
|
2017-08-13 14:38:29 +00:00
|
|
|
|
"Construct a `rw-r--r--' string indicating MODE.
|
2020-05-08 20:14:03 +00:00
|
|
|
|
MODE should be an integer which is a file mode value.
|
|
|
|
|
For instance, if mode is #o700, then it produces `rwx------'."
|
2021-04-12 16:46:47 +00:00
|
|
|
|
(declare (obsolete file-modes-number-to-symbolic "28.1"))
|
2020-05-08 20:14:03 +00:00
|
|
|
|
(substring (file-modes-number-to-symbolic mode) 1))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
1994-06-23 17:52:44 +00:00
|
|
|
|
(defun tar-header-block-summarize (tar-hblock &optional mod-p)
|
2000-06-05 07:44:59 +00:00
|
|
|
|
"Return a line similar to the output of `tar -vtf'."
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(let ((name (tar-header-name tar-hblock))
|
|
|
|
|
(mode (tar-header-mode tar-hblock))
|
|
|
|
|
(uid (tar-header-uid tar-hblock))
|
|
|
|
|
(gid (tar-header-gid tar-hblock))
|
|
|
|
|
(uname (tar-header-uname tar-hblock))
|
|
|
|
|
(gname (tar-header-gname tar-hblock))
|
|
|
|
|
(size (tar-header-size tar-hblock))
|
|
|
|
|
(time (tar-header-date tar-hblock))
|
2005-11-10 18:00:37 +00:00
|
|
|
|
;; (ck (tar-header-checksum tar-hblock))
|
2000-06-05 07:44:59 +00:00
|
|
|
|
(type (tar-header-link-type tar-hblock))
|
|
|
|
|
(link-name (tar-header-link-name tar-hblock)))
|
2021-04-12 16:46:47 +00:00
|
|
|
|
(format "%c%s %7s/%-7s %7s%s %s%s"
|
2000-06-05 07:44:59 +00:00
|
|
|
|
(if mod-p ?* ? )
|
2021-04-12 16:46:47 +00:00
|
|
|
|
(file-modes-number-to-symbolic
|
|
|
|
|
mode
|
|
|
|
|
(cond ((or (eq type nil) (eq type 0)) ?-)
|
|
|
|
|
((eq type 1) ?h) ; link
|
|
|
|
|
((eq type 2) ?l) ; symlink
|
|
|
|
|
((eq type 3) ?c) ; char special
|
|
|
|
|
((eq type 4) ?b) ; block special
|
|
|
|
|
((eq type 5) ?d) ; directory
|
|
|
|
|
((eq type 6) ?p) ; FIFO/pipe
|
|
|
|
|
((eq type 20) ?*) ; directory listing
|
|
|
|
|
((eq type 28) ?L) ; next has longname
|
|
|
|
|
((eq type 29) ?M) ; multivolume continuation
|
|
|
|
|
((eq type 35) ?S) ; sparse
|
|
|
|
|
((eq type 38) ?V) ; volume header
|
|
|
|
|
((eq type 55) ?H) ; pax global extended header
|
|
|
|
|
((eq type 72) ?X) ; pax extended header
|
|
|
|
|
(t ?\s)
|
|
|
|
|
))
|
2000-06-05 07:44:59 +00:00
|
|
|
|
(if (= 0 (length uname)) uid uname)
|
|
|
|
|
(if (= 0 (length gname)) gid gname)
|
|
|
|
|
size
|
2019-08-23 03:44:59 +00:00
|
|
|
|
(if tar-mode-show-date
|
2019-08-23 08:44:49 +00:00
|
|
|
|
(format-time-string " %Y-%m-%d %H:%M" time)
|
2019-08-23 03:44:59 +00:00
|
|
|
|
"")
|
2001-06-17 11:23:58 +00:00
|
|
|
|
(propertize name
|
|
|
|
|
'mouse-face 'highlight
|
|
|
|
|
'help-echo "mouse-2: extract this file into a buffer")
|
2000-06-05 07:44:59 +00:00
|
|
|
|
(if (or (eq type 1) (eq type 2))
|
|
|
|
|
(concat (if (= type 1) " ==> " " --> ") link-name)
|
|
|
|
|
""))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2002-03-08 09:54:42 +00:00
|
|
|
|
(defun tar-untar-buffer ()
|
2002-09-27 20:55:33 +00:00
|
|
|
|
"Extract all archive members in the tar-file into the current directory."
|
2002-03-08 09:54:42 +00:00
|
|
|
|
(interactive)
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;; FIXME: make it work even if we're not in tar-mode.
|
2019-06-25 17:54:35 +00:00
|
|
|
|
(let ((data-buf (if (tar-data-swapped-p) tar-data-buffer
|
|
|
|
|
(current-buffer)))
|
2019-05-25 23:44:41 +00:00
|
|
|
|
(reporter (make-progress-reporter "Extracting")))
|
2019-06-25 17:54:35 +00:00
|
|
|
|
(with-current-buffer data-buf
|
|
|
|
|
(cl-assert (not enable-multibyte-characters)))
|
|
|
|
|
(dolist (descriptor tar-parse-info)
|
|
|
|
|
(let* ((orig (tar-header-name descriptor))
|
|
|
|
|
;; Note that default-directory may have different values
|
|
|
|
|
;; in the tar-mode and data buffers, so we stick to the
|
|
|
|
|
;; absolute file name from now on.
|
|
|
|
|
(name (expand-file-name orig))
|
|
|
|
|
(dir (if (eq (tar-header-link-type descriptor) 5)
|
|
|
|
|
name
|
|
|
|
|
(file-name-directory name)))
|
|
|
|
|
(link-desc (tar--describe-as-link descriptor))
|
|
|
|
|
(start (tar-header-data-start descriptor))
|
|
|
|
|
(end (+ start (tar-header-size descriptor))))
|
|
|
|
|
(unless (file-directory-p name)
|
|
|
|
|
(progress-reporter-update reporter name)
|
|
|
|
|
(if (and dir (not (file-exists-p dir)))
|
|
|
|
|
(make-directory dir t))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(unless (file-directory-p name)
|
2019-06-25 17:54:35 +00:00
|
|
|
|
(with-current-buffer data-buf
|
2019-05-25 23:44:41 +00:00
|
|
|
|
(let ((coding-system-for-write 'no-conversion)
|
|
|
|
|
(write-region-inhibit-fsync t))
|
2016-12-17 23:01:52 +00:00
|
|
|
|
(when link-desc
|
|
|
|
|
(lwarn '(tar link) :warning
|
|
|
|
|
"Extracted `%s', %s, as a normal file"
|
|
|
|
|
name link-desc))
|
2019-05-25 23:44:41 +00:00
|
|
|
|
(write-region start end name nil :nomessage)))
|
2019-06-25 17:54:35 +00:00
|
|
|
|
(set-file-modes name (tar-header-mode descriptor))))))
|
|
|
|
|
(progress-reporter-done reporter)))
|
2002-03-08 09:54:42 +00:00
|
|
|
|
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(defun tar-summarize-buffer ()
|
2008-05-27 20:08:21 +00:00
|
|
|
|
"Parse the contents of the tar file in the current buffer."
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(cl-assert (tar-data-swapped-p))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(let* ((modified (buffer-modified-p))
|
|
|
|
|
(result '())
|
|
|
|
|
(pos (point-min))
|
2008-12-26 16:38:00 +00:00
|
|
|
|
(coding tar-file-name-coding-system)
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(progress-reporter
|
2008-05-28 17:43:58 +00:00
|
|
|
|
(with-current-buffer tar-data-buffer
|
|
|
|
|
(make-progress-reporter "Parsing tar file..."
|
|
|
|
|
(point-min) (point-max))))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
descriptor)
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(with-current-buffer tar-data-buffer
|
2009-03-13 15:37:03 +00:00
|
|
|
|
(while (and (< pos (point-max))
|
2008-12-26 16:38:00 +00:00
|
|
|
|
(setq descriptor (tar-header-block-tokenize pos coding)))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(let ((size (tar-header-size descriptor)))
|
2006-01-21 06:45:38 +00:00
|
|
|
|
(if (< size 0)
|
|
|
|
|
(error "%s has size %s - corrupted"
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(tar-header-name descriptor) size)))
|
|
|
|
|
;;
|
|
|
|
|
;; This is just too slow. Don't really need it anyway....
|
|
|
|
|
;;(tar-header-block-check-checksum
|
|
|
|
|
;; hblock (tar-header-block-checksum hblock)
|
|
|
|
|
;; (tar-header-name descriptor))
|
2011-02-01 21:22:21 +00:00
|
|
|
|
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(push descriptor result)
|
|
|
|
|
(setq pos (tar-header-data-end descriptor))
|
|
|
|
|
(progress-reporter-update progress-reporter pos)))
|
|
|
|
|
|
2020-12-07 10:10:22 +00:00
|
|
|
|
(setq-local tar-parse-info (nreverse result))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;; A tar file should end with a block or two of nulls,
|
|
|
|
|
;; but let's not get a fatal error if it doesn't.
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(if (null descriptor)
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(progress-reporter-done progress-reporter)
|
|
|
|
|
(message "Warning: premature EOF parsing tar file"))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(goto-char (point-min))
|
2018-01-28 21:27:32 +00:00
|
|
|
|
(let ((create-lockfiles nil) ; avoid changing dir mtime by lock_file
|
2012-09-30 16:54:43 +00:00
|
|
|
|
(inhibit-read-only t)
|
2006-01-21 06:45:38 +00:00
|
|
|
|
(total-summaries
|
2019-06-25 20:34:57 +00:00
|
|
|
|
(mapconcat #'tar-header-block-summarize tar-parse-info "\n")))
|
2012-09-30 16:54:43 +00:00
|
|
|
|
(insert total-summaries "\n")
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(restore-buffer-modified-p modified))))
|
1993-07-31 22:35:20 +00:00
|
|
|
|
|
Move keymap initialization into declaration.
* lisp/textmodes/enriched.el (enriched-mode-map):
* lisp/textmodes/bib-mode.el (bib-mode-map):
* lisp/term/lk201.el (lk201-function-map):
* lisp/tar-mode.el (tar-mode-map):
* lisp/replace.el (occur-mode-map):
* lisp/progmodes/idlwave.el (idlwave-rinfo-mouse-map, idlwave-rinfo-map):
* lisp/progmodes/idlw-help.el (idlwave-help-mode-map):
* lisp/progmodes/gdb-mi.el (gdb-memory-format-menu, gdb-memory-unit-menu):
* lisp/play/solitaire.el (solitaire-mode-map):
* lisp/play/snake.el (snake-mode-map, snake-null-map):
* lisp/play/pong.el (pong-mode-map):
* lisp/play/handwrite.el (menu-bar-handwrite-map):
* lisp/play/gametree.el (gametree-mode-map):
* lisp/net/rcirc.el (rcirc-mode-map, rcirc-browse-url-map
(rcirc-multiline-minor-mode-map, rcirc-track-minor-mode-map):
* lisp/net/newst-plainview.el (newsticker-menu, newsticker-mode-map)
(newsticker--url-keymap):
* lisp/net/net-utils.el (nslookup-mode-map, ftp-mode-map):
* lisp/menu-bar.el (menu-bar-file-menu, menu-bar-i-search-menu)
(menu-bar-search-menu, menu-bar-replace-menu, menu-bar-goto-menu)
(menu-bar-edit-menu, menu-bar-custom-menu)
(menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
(menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
(menu-bar-line-wrapping-menu, menu-bar-options-menu)
(menu-bar-games-menu, menu-bar-encryption-decryption-menu)
(menu-bar-tools-menu, menu-bar-describe-menu)
(menu-bar-search-documentation-menu, menu-bar-manuals-menu)
(menu-bar-help-menu):
* lisp/mail/rmailsum.el (rmail-summary-mode-map):
* lisp/kmacro.el (kmacro-step-edit-map):
* lisp/ibuffer.el (ibuffer-mode-groups-popup, ibuffer-mode-map)
(ibuffer-mode-operate-map):
* lisp/hi-lock.el (hi-lock-menu, hi-lock-map):
* lisp/emulation/vip.el (vip-mode-map):
* lisp/emacs-lisp/re-builder.el (reb-lisp-mode-map):
* lisp/bookmark.el (bookmark-bmenu-mode-map):
* lisp/help-mode.el (help-mode-map):
* lisp/erc/erc-list.el (erc-list-menu-mode-map):
* lisp/org/org-remember.el (org-remember-mode-map):
* lisp/org/org-src.el (org-src-mode-map): Move initialization into declaration.
2011-02-10 16:56:00 +00:00
|
|
|
|
(defvar tar-mode-map
|
|
|
|
|
(let ((map (make-keymap)))
|
|
|
|
|
(suppress-keymap map)
|
|
|
|
|
(define-key map " " 'tar-next-line)
|
|
|
|
|
(define-key map "C" 'tar-copy)
|
|
|
|
|
(define-key map "d" 'tar-flag-deleted)
|
|
|
|
|
(define-key map "\^D" 'tar-flag-deleted)
|
|
|
|
|
(define-key map "e" 'tar-extract)
|
|
|
|
|
(define-key map "f" 'tar-extract)
|
|
|
|
|
(define-key map "\C-m" 'tar-extract)
|
|
|
|
|
(define-key map [mouse-2] 'tar-mouse-extract)
|
|
|
|
|
(define-key map "g" 'revert-buffer)
|
|
|
|
|
(define-key map "n" 'tar-next-line)
|
|
|
|
|
(define-key map "\^N" 'tar-next-line)
|
|
|
|
|
(define-key map [down] 'tar-next-line)
|
|
|
|
|
(define-key map "o" 'tar-extract-other-window)
|
|
|
|
|
(define-key map "p" 'tar-previous-line)
|
|
|
|
|
(define-key map "\^P" 'tar-previous-line)
|
|
|
|
|
(define-key map [up] 'tar-previous-line)
|
2015-01-27 21:25:56 +00:00
|
|
|
|
(define-key map "I" 'tar-new-entry)
|
Move keymap initialization into declaration.
* lisp/textmodes/enriched.el (enriched-mode-map):
* lisp/textmodes/bib-mode.el (bib-mode-map):
* lisp/term/lk201.el (lk201-function-map):
* lisp/tar-mode.el (tar-mode-map):
* lisp/replace.el (occur-mode-map):
* lisp/progmodes/idlwave.el (idlwave-rinfo-mouse-map, idlwave-rinfo-map):
* lisp/progmodes/idlw-help.el (idlwave-help-mode-map):
* lisp/progmodes/gdb-mi.el (gdb-memory-format-menu, gdb-memory-unit-menu):
* lisp/play/solitaire.el (solitaire-mode-map):
* lisp/play/snake.el (snake-mode-map, snake-null-map):
* lisp/play/pong.el (pong-mode-map):
* lisp/play/handwrite.el (menu-bar-handwrite-map):
* lisp/play/gametree.el (gametree-mode-map):
* lisp/net/rcirc.el (rcirc-mode-map, rcirc-browse-url-map
(rcirc-multiline-minor-mode-map, rcirc-track-minor-mode-map):
* lisp/net/newst-plainview.el (newsticker-menu, newsticker-mode-map)
(newsticker--url-keymap):
* lisp/net/net-utils.el (nslookup-mode-map, ftp-mode-map):
* lisp/menu-bar.el (menu-bar-file-menu, menu-bar-i-search-menu)
(menu-bar-search-menu, menu-bar-replace-menu, menu-bar-goto-menu)
(menu-bar-edit-menu, menu-bar-custom-menu)
(menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
(menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
(menu-bar-line-wrapping-menu, menu-bar-options-menu)
(menu-bar-games-menu, menu-bar-encryption-decryption-menu)
(menu-bar-tools-menu, menu-bar-describe-menu)
(menu-bar-search-documentation-menu, menu-bar-manuals-menu)
(menu-bar-help-menu):
* lisp/mail/rmailsum.el (rmail-summary-mode-map):
* lisp/kmacro.el (kmacro-step-edit-map):
* lisp/ibuffer.el (ibuffer-mode-groups-popup, ibuffer-mode-map)
(ibuffer-mode-operate-map):
* lisp/hi-lock.el (hi-lock-menu, hi-lock-map):
* lisp/emulation/vip.el (vip-mode-map):
* lisp/emacs-lisp/re-builder.el (reb-lisp-mode-map):
* lisp/bookmark.el (bookmark-bmenu-mode-map):
* lisp/help-mode.el (help-mode-map):
* lisp/erc/erc-list.el (erc-list-menu-mode-map):
* lisp/org/org-remember.el (org-remember-mode-map):
* lisp/org/org-src.el (org-src-mode-map): Move initialization into declaration.
2011-02-10 16:56:00 +00:00
|
|
|
|
(define-key map "R" 'tar-rename-entry)
|
|
|
|
|
(define-key map "u" 'tar-unflag)
|
|
|
|
|
(define-key map "v" 'tar-view)
|
2012-04-16 18:46:46 +00:00
|
|
|
|
(define-key map "w" 'woman-tar-extract-file)
|
Move keymap initialization into declaration.
* lisp/textmodes/enriched.el (enriched-mode-map):
* lisp/textmodes/bib-mode.el (bib-mode-map):
* lisp/term/lk201.el (lk201-function-map):
* lisp/tar-mode.el (tar-mode-map):
* lisp/replace.el (occur-mode-map):
* lisp/progmodes/idlwave.el (idlwave-rinfo-mouse-map, idlwave-rinfo-map):
* lisp/progmodes/idlw-help.el (idlwave-help-mode-map):
* lisp/progmodes/gdb-mi.el (gdb-memory-format-menu, gdb-memory-unit-menu):
* lisp/play/solitaire.el (solitaire-mode-map):
* lisp/play/snake.el (snake-mode-map, snake-null-map):
* lisp/play/pong.el (pong-mode-map):
* lisp/play/handwrite.el (menu-bar-handwrite-map):
* lisp/play/gametree.el (gametree-mode-map):
* lisp/net/rcirc.el (rcirc-mode-map, rcirc-browse-url-map
(rcirc-multiline-minor-mode-map, rcirc-track-minor-mode-map):
* lisp/net/newst-plainview.el (newsticker-menu, newsticker-mode-map)
(newsticker--url-keymap):
* lisp/net/net-utils.el (nslookup-mode-map, ftp-mode-map):
* lisp/menu-bar.el (menu-bar-file-menu, menu-bar-i-search-menu)
(menu-bar-search-menu, menu-bar-replace-menu, menu-bar-goto-menu)
(menu-bar-edit-menu, menu-bar-custom-menu)
(menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
(menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
(menu-bar-line-wrapping-menu, menu-bar-options-menu)
(menu-bar-games-menu, menu-bar-encryption-decryption-menu)
(menu-bar-tools-menu, menu-bar-describe-menu)
(menu-bar-search-documentation-menu, menu-bar-manuals-menu)
(menu-bar-help-menu):
* lisp/mail/rmailsum.el (rmail-summary-mode-map):
* lisp/kmacro.el (kmacro-step-edit-map):
* lisp/ibuffer.el (ibuffer-mode-groups-popup, ibuffer-mode-map)
(ibuffer-mode-operate-map):
* lisp/hi-lock.el (hi-lock-menu, hi-lock-map):
* lisp/emulation/vip.el (vip-mode-map):
* lisp/emacs-lisp/re-builder.el (reb-lisp-mode-map):
* lisp/bookmark.el (bookmark-bmenu-mode-map):
* lisp/help-mode.el (help-mode-map):
* lisp/erc/erc-list.el (erc-list-menu-mode-map):
* lisp/org/org-remember.el (org-remember-mode-map):
* lisp/org/org-src.el (org-src-mode-map): Move initialization into declaration.
2011-02-10 16:56:00 +00:00
|
|
|
|
(define-key map "x" 'tar-expunge)
|
|
|
|
|
(define-key map "\177" 'tar-unflag-backwards)
|
|
|
|
|
(define-key map "E" 'tar-extract-other-window)
|
|
|
|
|
(define-key map "M" 'tar-chmod-entry)
|
|
|
|
|
(define-key map "G" 'tar-chgrp-entry)
|
|
|
|
|
(define-key map "O" 'tar-chown-entry)
|
|
|
|
|
;; Let mouse-1 follow the link.
|
|
|
|
|
(define-key map [follow-link] 'mouse-face)
|
|
|
|
|
|
|
|
|
|
;; Get rid of the Edit menu bar item to save space.
|
|
|
|
|
(define-key map [menu-bar edit] 'undefined)
|
|
|
|
|
|
|
|
|
|
map)
|
|
|
|
|
"Local keymap for Tar mode listings.")
|
2006-01-21 06:45:38 +00:00
|
|
|
|
|
2021-02-23 02:51:12 +00:00
|
|
|
|
(easy-menu-define tar-mode-immediate-menu tar-mode-map
|
|
|
|
|
"Immediate menu for Tar mode."
|
|
|
|
|
'("Immediate"
|
|
|
|
|
["Find This File" tar-extract]
|
|
|
|
|
["Find in Other Window" tar-extract-other-window]
|
|
|
|
|
["Display in Other Window" tar-display-other-window]
|
|
|
|
|
["View This File" tar-view]
|
|
|
|
|
["Read Man Page (WoMan)" woman-tar-extract-file]))
|
|
|
|
|
|
|
|
|
|
(easy-menu-define tar-mode-mark-menu tar-mode-map
|
|
|
|
|
"Mark menu for Tar mode."
|
|
|
|
|
'("Mark"
|
|
|
|
|
["Unflag" tar-unflag]
|
|
|
|
|
["Flag" tar-flag-deleted]
|
|
|
|
|
["Unmark All" tar-clear-modification-flags]))
|
|
|
|
|
|
|
|
|
|
(easy-menu-define tar-mode-operate-menu tar-mode-map
|
|
|
|
|
"Operate menu for Tar mode."
|
|
|
|
|
'("Operate"
|
|
|
|
|
["Expunge Marked Files" tar-expunge]
|
|
|
|
|
["Copy to..." tar-copy]
|
|
|
|
|
["Rename to..." tar-rename-entry]
|
|
|
|
|
["Change Mode..." tar-chmod-entry]
|
|
|
|
|
["Change Group..." tar-chgrp-entry]
|
|
|
|
|
["Change Owner..." tar-chown-entry]))
|
|
|
|
|
|
Move keymap initialization into declaration.
* lisp/textmodes/enriched.el (enriched-mode-map):
* lisp/textmodes/bib-mode.el (bib-mode-map):
* lisp/term/lk201.el (lk201-function-map):
* lisp/tar-mode.el (tar-mode-map):
* lisp/replace.el (occur-mode-map):
* lisp/progmodes/idlwave.el (idlwave-rinfo-mouse-map, idlwave-rinfo-map):
* lisp/progmodes/idlw-help.el (idlwave-help-mode-map):
* lisp/progmodes/gdb-mi.el (gdb-memory-format-menu, gdb-memory-unit-menu):
* lisp/play/solitaire.el (solitaire-mode-map):
* lisp/play/snake.el (snake-mode-map, snake-null-map):
* lisp/play/pong.el (pong-mode-map):
* lisp/play/handwrite.el (menu-bar-handwrite-map):
* lisp/play/gametree.el (gametree-mode-map):
* lisp/net/rcirc.el (rcirc-mode-map, rcirc-browse-url-map
(rcirc-multiline-minor-mode-map, rcirc-track-minor-mode-map):
* lisp/net/newst-plainview.el (newsticker-menu, newsticker-mode-map)
(newsticker--url-keymap):
* lisp/net/net-utils.el (nslookup-mode-map, ftp-mode-map):
* lisp/menu-bar.el (menu-bar-file-menu, menu-bar-i-search-menu)
(menu-bar-search-menu, menu-bar-replace-menu, menu-bar-goto-menu)
(menu-bar-edit-menu, menu-bar-custom-menu)
(menu-bar-showhide-fringe-ind-menu, menu-bar-showhide-fringe-menu)
(menu-bar-showhide-scroll-bar-menu, menu-bar-showhide-menu)
(menu-bar-line-wrapping-menu, menu-bar-options-menu)
(menu-bar-games-menu, menu-bar-encryption-decryption-menu)
(menu-bar-tools-menu, menu-bar-describe-menu)
(menu-bar-search-documentation-menu, menu-bar-manuals-menu)
(menu-bar-help-menu):
* lisp/mail/rmailsum.el (rmail-summary-mode-map):
* lisp/kmacro.el (kmacro-step-edit-map):
* lisp/ibuffer.el (ibuffer-mode-groups-popup, ibuffer-mode-map)
(ibuffer-mode-operate-map):
* lisp/hi-lock.el (hi-lock-menu, hi-lock-map):
* lisp/emulation/vip.el (vip-mode-map):
* lisp/emacs-lisp/re-builder.el (reb-lisp-mode-map):
* lisp/bookmark.el (bookmark-bmenu-mode-map):
* lisp/help-mode.el (help-mode-map):
* lisp/erc/erc-list.el (erc-list-menu-mode-map):
* lisp/org/org-remember.el (org-remember-mode-map):
* lisp/org/org-src.el (org-src-mode-map): Move initialization into declaration.
2011-02-10 16:56:00 +00:00
|
|
|
|
|
1991-03-11 01:37:34 +00:00
|
|
|
|
;; tar mode is suitable only for specially formatted data.
|
|
|
|
|
(put 'tar-mode 'mode-class 'special)
|
|
|
|
|
(put 'tar-subfile-mode 'mode-class 'special)
|
|
|
|
|
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(defun tar-change-major-mode-hook ()
|
|
|
|
|
;; Bring the actual Tar data back into the main buffer.
|
2008-12-26 16:38:00 +00:00
|
|
|
|
(when (tar-data-swapped-p) (tar-swap-data))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;; Throw away the summary.
|
|
|
|
|
(when (buffer-live-p tar-data-buffer) (kill-buffer tar-data-buffer)))
|
|
|
|
|
|
|
|
|
|
(defun tar-mode-kill-buffer-hook ()
|
|
|
|
|
(if (buffer-live-p tar-data-buffer) (kill-buffer tar-data-buffer)))
|
|
|
|
|
|
1993-06-01 21:42:03 +00:00
|
|
|
|
;;;###autoload
|
2011-02-01 21:22:21 +00:00
|
|
|
|
(define-derived-mode tar-mode special-mode "Tar"
|
1991-03-11 01:37:34 +00:00
|
|
|
|
"Major mode for viewing a tar file as a dired-like listing of its contents.
|
2003-02-04 12:29:42 +00:00
|
|
|
|
You can move around using the usual cursor motion commands.
|
2021-03-08 11:50:22 +00:00
|
|
|
|
Letters no longer insert themselves.\\<tar-mode-map>
|
|
|
|
|
Type \\[tar-extract] to pull a file out of the tar file and into its own buffer;
|
1994-03-31 17:16:37 +00:00
|
|
|
|
or click mouse-2 on the file's line in the Tar mode buffer.
|
2021-03-08 11:50:22 +00:00
|
|
|
|
Type \\[tar-copy] to copy an entry from the tar file into another file on disk.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2021-03-08 11:50:22 +00:00
|
|
|
|
If you edit a sub-file of this archive (as with the \\[tar-extract] command) and
|
2005-11-10 18:00:37 +00:00
|
|
|
|
save it with \\[save-buffer], the contents of that buffer will be
|
2003-02-04 12:29:42 +00:00
|
|
|
|
saved back into the tar-file buffer; in this way you can edit a file
|
1991-03-11 01:37:34 +00:00
|
|
|
|
inside of a tar archive without extracting it and re-archiving it.
|
|
|
|
|
|
1993-07-31 22:35:20 +00:00
|
|
|
|
See also: variables `tar-update-datestamp' and `tar-anal-blocksize'.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
\\{tar-mode-map}"
|
2012-03-16 07:21:23 +00:00
|
|
|
|
(and buffer-file-name
|
|
|
|
|
(file-writable-p buffer-file-name)
|
|
|
|
|
(setq buffer-read-only nil)) ; undo what `special-mode' did
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(make-local-variable 'tar-parse-info)
|
2020-12-07 10:10:22 +00:00
|
|
|
|
(setq-local require-final-newline nil) ; binary data, dude...
|
|
|
|
|
(setq-local local-enable-local-variables nil)
|
|
|
|
|
(setq-local next-line-add-newlines nil)
|
|
|
|
|
(setq-local tar-file-name-coding-system
|
|
|
|
|
(or file-name-coding-system
|
|
|
|
|
default-file-name-coding-system
|
|
|
|
|
locale-coding-system))
|
1998-10-17 19:22:41 +00:00
|
|
|
|
;; Prevent loss of data when saving the file.
|
2020-12-07 10:10:22 +00:00
|
|
|
|
(setq-local file-precious-flag t)
|
2005-03-17 23:58:09 +00:00
|
|
|
|
(buffer-disable-undo)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(widen)
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;; Now move the Tar data into an auxiliary buffer, so we can use the main
|
|
|
|
|
;; buffer for the summary.
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(cl-assert (not (tar-data-swapped-p)))
|
2020-12-07 10:10:22 +00:00
|
|
|
|
(setq-local revert-buffer-function #'tar-mode-revert)
|
2009-01-07 02:15:37 +00:00
|
|
|
|
;; We started using write-contents-functions, but this hook is not
|
|
|
|
|
;; used during auto-save, so we now use
|
|
|
|
|
;; write-region-annotate-functions which hooks at a lower-level.
|
2019-06-25 20:34:57 +00:00
|
|
|
|
(add-hook 'write-region-annotate-functions #'tar-write-region-annotate nil t)
|
|
|
|
|
(add-hook 'kill-buffer-hook #'tar-mode-kill-buffer-hook nil t)
|
|
|
|
|
(add-hook 'change-major-mode-hook #'tar-change-major-mode-hook nil t)
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;; Tar data is made of bytes, not chars.
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(set-buffer-multibyte nil) ;Hopefully a no-op.
|
2020-12-07 10:10:22 +00:00
|
|
|
|
(setq-local tar-data-buffer (generate-new-buffer
|
|
|
|
|
(format " *tar-data %s*"
|
|
|
|
|
(file-name-nondirectory
|
|
|
|
|
(or buffer-file-name (buffer-name))))))
|
2009-03-13 15:37:03 +00:00
|
|
|
|
(condition-case err
|
|
|
|
|
(progn
|
|
|
|
|
(tar-swap-data)
|
|
|
|
|
(tar-summarize-buffer)
|
|
|
|
|
(tar-next-line 0))
|
|
|
|
|
(error
|
|
|
|
|
;; If summarizing caused an error, then maybe the buffer doesn't contain
|
|
|
|
|
;; tar data. Rather than show a mysterious empty buffer, let's
|
|
|
|
|
;; revert to fundamental-mode.
|
|
|
|
|
(fundamental-mode)
|
|
|
|
|
(signal (car err) (cdr err)))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2012-04-16 18:46:46 +00:00
|
|
|
|
(autoload 'woman-tar-extract-file "woman"
|
|
|
|
|
"In tar mode, run the WoMan man-page browser on this file." t)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2010-05-03 02:29:46 +00:00
|
|
|
|
(define-minor-mode tar-subfile-mode
|
1991-03-11 01:37:34 +00:00
|
|
|
|
"Minor mode for editing an element of a tar-file.
|
2018-07-02 03:34:53 +00:00
|
|
|
|
|
|
|
|
|
This mode arranges for \"saving\" this buffer to write the data
|
|
|
|
|
into the tar-file buffer that it came from. The changes will
|
|
|
|
|
actually appear on disk when you save the tar-file's buffer."
|
2010-05-03 02:29:46 +00:00
|
|
|
|
;; Don't do this, because it is redundant and wastes mode line space.
|
|
|
|
|
;; :lighter " TarFile"
|
2021-04-12 03:47:14 +00:00
|
|
|
|
:lighter nil
|
1993-04-16 19:36:29 +00:00
|
|
|
|
(or (and (boundp 'tar-superior-buffer) tar-superior-buffer)
|
1993-07-31 22:35:20 +00:00
|
|
|
|
(error "This buffer is not an element of a tar file"))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(cond (tar-subfile-mode
|
2019-06-25 20:34:57 +00:00
|
|
|
|
(add-hook 'write-file-functions #'tar-subfile-save-buffer nil t)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
;; turn off auto-save.
|
1998-05-11 18:49:42 +00:00
|
|
|
|
(auto-save-mode -1)
|
2010-05-03 02:29:46 +00:00
|
|
|
|
(setq buffer-auto-save-file-name nil))
|
1993-07-31 22:35:20 +00:00
|
|
|
|
(t
|
2019-06-25 20:34:57 +00:00
|
|
|
|
(remove-hook 'write-file-functions #'tar-subfile-save-buffer t))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
|
|
|
|
|
1993-07-31 22:35:20 +00:00
|
|
|
|
;; Revert the buffer and recompute the dired-like listing.
|
1998-10-06 23:18:33 +00:00
|
|
|
|
(defun tar-mode-revert (&optional no-auto-save no-confirm)
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
(let ((revert-buffer-function nil))
|
2008-12-26 16:38:00 +00:00
|
|
|
|
(if (tar-data-swapped-p) (tar-swap-data))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;; FIXME: If we ask for confirmation, the user will be temporarily
|
|
|
|
|
;; looking at the raw data.
|
|
|
|
|
(revert-buffer no-auto-save no-confirm 'preserve-modes)
|
|
|
|
|
;; Recompute the summary.
|
2008-12-26 16:38:00 +00:00
|
|
|
|
(if (buffer-live-p tar-data-buffer) (kill-buffer tar-data-buffer))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(tar-mode))
|
2008-12-26 16:38:00 +00:00
|
|
|
|
(unless (tar-data-swapped-p) (tar-swap-data))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
|
|
|
|
|
2002-02-20 09:04:25 +00:00
|
|
|
|
(defun tar-next-line (arg)
|
|
|
|
|
"Move cursor vertically down ARG lines and to the start of the filename."
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(interactive "p")
|
2002-02-20 09:04:25 +00:00
|
|
|
|
(forward-line arg)
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(goto-char (or (next-single-property-change (point) 'mouse-face) (point))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2002-02-20 09:04:25 +00:00
|
|
|
|
(defun tar-previous-line (arg)
|
|
|
|
|
"Move cursor vertically up ARG lines and to the start of the filename."
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(interactive "p")
|
2002-02-20 09:04:25 +00:00
|
|
|
|
(tar-next-line (- arg)))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2015-01-27 21:25:56 +00:00
|
|
|
|
(defun tar-current-position ()
|
|
|
|
|
"Return the `tar-parse-info' index for the current line."
|
|
|
|
|
(count-lines (point-min) (line-beginning-position)))
|
|
|
|
|
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(defun tar-current-descriptor (&optional noerror)
|
1993-07-31 22:35:20 +00:00
|
|
|
|
"Return the tar-descriptor of the current line, or signals an error."
|
1991-03-11 01:37:34 +00:00
|
|
|
|
;; I wish lines had plists, like in ZMACS...
|
2015-01-27 21:25:56 +00:00
|
|
|
|
(or (nth (tar-current-position)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
tar-parse-info)
|
|
|
|
|
(if noerror
|
|
|
|
|
nil
|
1994-03-31 17:16:37 +00:00
|
|
|
|
(error "This line does not describe a tar-file entry"))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2016-12-17 23:01:52 +00:00
|
|
|
|
(defun tar--describe-as-link (descriptor)
|
2013-06-21 03:08:47 +00:00
|
|
|
|
(let ((link-p (tar-header-link-type descriptor)))
|
1994-03-31 17:16:37 +00:00
|
|
|
|
(if link-p
|
2016-12-17 23:01:52 +00:00
|
|
|
|
(cond ((eq link-p 5) "a directory")
|
|
|
|
|
((eq link-p 20) "a tar directory header")
|
|
|
|
|
((eq link-p 28) "a next has longname")
|
|
|
|
|
((eq link-p 29) "a multivolume-continuation")
|
|
|
|
|
((eq link-p 35) "a sparse entry")
|
|
|
|
|
((eq link-p 38) "a volume header")
|
|
|
|
|
((eq link-p 55) "a pax global extended header")
|
|
|
|
|
((eq link-p 72) "a pax extended header")
|
|
|
|
|
(t "a link")))))
|
|
|
|
|
|
|
|
|
|
(defun tar--check-descriptor (descriptor)
|
|
|
|
|
(let ((link-desc (tar--describe-as-link descriptor)))
|
|
|
|
|
(when link-desc
|
|
|
|
|
(error "This is %s, not a real file" link-desc))))
|
2013-06-21 03:08:47 +00:00
|
|
|
|
|
|
|
|
|
(defun tar-get-descriptor ()
|
|
|
|
|
(let* ((descriptor (tar-current-descriptor))
|
|
|
|
|
(size (tar-header-size descriptor)))
|
|
|
|
|
(tar--check-descriptor descriptor)
|
2007-07-15 14:36:26 +00:00
|
|
|
|
(if (zerop size) (message "This is a zero-length file"))
|
1994-03-31 17:16:37 +00:00
|
|
|
|
descriptor))
|
|
|
|
|
|
2013-06-21 03:08:47 +00:00
|
|
|
|
(defun tar-get-file-descriptor (file)
|
|
|
|
|
;; Used by package.el.
|
|
|
|
|
(let ((desc ()))
|
|
|
|
|
(dolist (hdr tar-parse-info)
|
|
|
|
|
(when (equal file (tar-header-name hdr))
|
|
|
|
|
(setq desc hdr)))
|
|
|
|
|
(tar--check-descriptor desc)
|
|
|
|
|
desc))
|
|
|
|
|
|
1994-03-31 17:16:37 +00:00
|
|
|
|
(defun tar-mouse-extract (event)
|
|
|
|
|
"Extract a file whose tar directory line you click on."
|
|
|
|
|
(interactive "e")
|
2008-02-12 21:20:05 +00:00
|
|
|
|
(with-current-buffer (window-buffer (posn-window (event-end event)))
|
1994-03-31 17:16:37 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (posn-point (event-end event)))
|
|
|
|
|
;; Just make sure this doesn't get an error.
|
|
|
|
|
(tar-get-descriptor)))
|
|
|
|
|
(select-window (posn-window (event-end event)))
|
|
|
|
|
(goto-char (posn-point (event-end event)))
|
|
|
|
|
(tar-extract))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2007-05-23 12:38:59 +00:00
|
|
|
|
(defun tar-file-name-handler (op &rest args)
|
|
|
|
|
"Helper function for `tar-extract'."
|
|
|
|
|
(or (eq op 'file-exists-p)
|
|
|
|
|
(let ((file-name-handler-alist nil))
|
|
|
|
|
(apply op args))))
|
|
|
|
|
|
2013-06-21 03:08:47 +00:00
|
|
|
|
(defun tar--extract (descriptor)
|
|
|
|
|
"Extract this entry of the tar file into its own buffer."
|
|
|
|
|
(let* ((name (tar-header-name descriptor))
|
|
|
|
|
(size (tar-header-size descriptor))
|
|
|
|
|
(start (tar-header-data-start descriptor))
|
|
|
|
|
(end (+ start size))
|
|
|
|
|
(tarname (buffer-name))
|
|
|
|
|
(bufname (concat (file-name-nondirectory name)
|
|
|
|
|
" ("
|
|
|
|
|
tarname
|
|
|
|
|
")"))
|
|
|
|
|
(buffer (generate-new-buffer bufname)))
|
|
|
|
|
(with-current-buffer tar-data-buffer
|
|
|
|
|
(let (coding)
|
|
|
|
|
(narrow-to-region start end)
|
|
|
|
|
(goto-char start)
|
|
|
|
|
(setq coding (or coding-system-for-read
|
|
|
|
|
(and set-auto-coding-function
|
|
|
|
|
(funcall set-auto-coding-function
|
|
|
|
|
name (- end start)))
|
|
|
|
|
;; The following binding causes
|
|
|
|
|
;; find-buffer-file-type-coding-system
|
|
|
|
|
;; (defined on dos-w32.el) to act as if
|
|
|
|
|
;; the file being extracted existed, so
|
|
|
|
|
;; that the file's contents' encoding and
|
|
|
|
|
;; EOL format are auto-detected.
|
|
|
|
|
(let ((file-name-handler-alist
|
|
|
|
|
'(("" . tar-file-name-handler))))
|
|
|
|
|
(car (find-operation-coding-system
|
|
|
|
|
'insert-file-contents
|
|
|
|
|
(cons name (current-buffer)) t)))))
|
|
|
|
|
(if (or (not coding)
|
|
|
|
|
(eq (coding-system-type coding) 'undecided))
|
|
|
|
|
(setq coding (detect-coding-region start end t)))
|
2018-01-25 18:35:13 +00:00
|
|
|
|
(if (coding-system-get coding :for-unibyte)
|
2013-06-21 03:08:47 +00:00
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(set-buffer-multibyte nil)))
|
|
|
|
|
(widen)
|
2014-08-28 19:18:24 +00:00
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(setq buffer-undo-list t))
|
|
|
|
|
(decode-coding-region start end coding buffer)
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(setq buffer-undo-list nil))))
|
2013-06-21 03:08:47 +00:00
|
|
|
|
buffer))
|
|
|
|
|
|
2020-08-06 09:51:22 +00:00
|
|
|
|
(defun tar-goto-file (file)
|
|
|
|
|
"Go to FILE in the current buffer.
|
|
|
|
|
FILE should be a relative file name. If FILE can't be found,
|
|
|
|
|
return nil. Otherwise point is returned."
|
|
|
|
|
(let ((start (point))
|
|
|
|
|
found)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (and (not found)
|
|
|
|
|
(not (eobp)))
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(when-let ((descriptor (ignore-errors (tar-get-descriptor))))
|
|
|
|
|
(when (equal (tar-header-name descriptor) file)
|
|
|
|
|
(setq found t))))
|
|
|
|
|
(if (not found)
|
|
|
|
|
(progn
|
|
|
|
|
(goto-char start)
|
|
|
|
|
nil)
|
|
|
|
|
(point))))
|
|
|
|
|
|
|
|
|
|
(defun tar-next-file-displayer (file regexp n)
|
|
|
|
|
"Return a closure to display the next file after FILE that matches REGEXP."
|
|
|
|
|
(let ((short (replace-regexp-in-string "\\`.*!" "" file))
|
|
|
|
|
next)
|
|
|
|
|
;; The tar buffer chops off leading "./", so do the same
|
|
|
|
|
;; here.
|
|
|
|
|
(setq short (replace-regexp-in-string "\\`\\./" "" file))
|
|
|
|
|
(tar-goto-file short)
|
|
|
|
|
(while (and (not next)
|
|
|
|
|
;; Stop if we reach the end/start of the buffer.
|
|
|
|
|
(if (> n 0)
|
|
|
|
|
(not (eobp))
|
|
|
|
|
(not (save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(bobp)))))
|
|
|
|
|
(tar-next-line n)
|
|
|
|
|
(when-let ((descriptor (ignore-errors (tar-get-descriptor))))
|
|
|
|
|
(let ((candidate (tar-header-name descriptor))
|
|
|
|
|
(buffer (current-buffer)))
|
|
|
|
|
(when (and candidate
|
|
|
|
|
(string-match-p regexp candidate))
|
|
|
|
|
(setq next (lambda ()
|
|
|
|
|
(kill-buffer (current-buffer))
|
|
|
|
|
(switch-to-buffer buffer)
|
|
|
|
|
(tar-extract)))))))
|
|
|
|
|
(unless next
|
|
|
|
|
;; If we didn't find a next/prev file, then restore
|
|
|
|
|
;; point.
|
|
|
|
|
(tar-goto-file short))
|
|
|
|
|
next))
|
|
|
|
|
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(defun tar-extract (&optional other-window-p)
|
1994-02-07 05:59:31 +00:00
|
|
|
|
"In Tar mode, extract this entry of the tar file into its own buffer."
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let* ((view-p (eq other-window-p 'view))
|
1994-03-31 17:16:37 +00:00
|
|
|
|
(descriptor (tar-get-descriptor))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(name (tar-header-name descriptor))
|
2013-06-21 03:08:47 +00:00
|
|
|
|
(tar-buffer (current-buffer))
|
|
|
|
|
(tarname (buffer-name))
|
|
|
|
|
(read-only-p (or buffer-read-only view-p))
|
|
|
|
|
(new-buffer-file-name (expand-file-name
|
|
|
|
|
;; `:' is not allowed on Windows
|
|
|
|
|
(concat tarname "!"
|
Use string-search instead of string-match[-p]
`string-search` is easier to understand, less error-prone, much
faster, does not pollute the regexp cache, and does not mutate global
state. Use it where applicable and obviously safe (erring on the
conservative side).
* admin/authors.el (authors-canonical-file-name)
(authors-scan-change-log):
* lisp/apropos.el (apropos-command)
(apropos-documentation-property, apropos-symbols-internal):
* lisp/arc-mode.el (archive-arc-summarize)
(archive-zoo-summarize):
* lisp/calc/calc-aent.el (math-read-factor):
* lisp/calc/calc-ext.el (math-read-big-expr)
(math-format-nice-expr, math-format-number-fancy):
* lisp/calc/calc-forms.el (math-read-angle-brackets):
* lisp/calc/calc-graph.el (calc-graph-set-range):
* lisp/calc/calc-keypd.el (calc-keypad-press):
* lisp/calc/calc-lang.el (tex, latex, math-read-big-rec):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-user-define-permanent, math-define-exp):
* lisp/calc/calc.el (calc-record, calcDigit-key)
(calc-count-lines):
* lisp/calc/calcalg2.el (calc-solve-for, calc-poly-roots)
(math-do-integral):
* lisp/calc/calcalg3.el (calc-find-root, calc-find-minimum)
(calc-get-fit-variables):
* lisp/cedet/ede/speedbar.el (ede-tag-expand):
* lisp/cedet/semantic/java.el (semantic-java-expand-tag):
* lisp/cedet/semantic/sb.el (semantic-sb-show-extra)
(semantic-sb-expand-group):
* lisp/cedet/semantic/wisent/python.el
(semantic-python-instance-variable-p):
* lisp/cus-edit.el (get):
* lisp/descr-text.el (describe-text-sexp):
* lisp/dired-aux.el (dired-compress-file):
* lisp/dired-x.el (dired-make-relative-symlink):
* lisp/dired.el (dired-glob-regexp):
* lisp/dos-fns.el (dos-convert-standard-filename, dos-8+3-filename):
* lisp/edmacro.el (edmacro-format-keys):
* lisp/emacs-lisp/eieio-opt.el (eieio-sb-expand):
* lisp/emacs-lisp/eieio-speedbar.el (eieio-speedbar-object-expand):
* lisp/emacs-lisp/lisp-mnt.el (lm-keywords-list):
* lisp/emacs-lisp/warnings.el (display-warning):
* lisp/emulation/viper-ex.el (viper-ex-read-file-name)
(ex-print-display-lines):
* lisp/env.el (read-envvar-name, setenv):
* lisp/epa-mail.el (epa-mail-encrypt):
* lisp/epg.el (epg--start):
* lisp/erc/erc-backend.el (erc-parse-server-response):
* lisp/erc/erc-dcc.el (erc-dcc-member):
* lisp/erc/erc-speedbar.el (erc-speedbar-expand-server)
(erc-speedbar-expand-channel, erc-speedbar-expand-user):
* lisp/erc/erc.el (erc-send-input):
* lisp/eshell/em-glob.el (eshell-glob-entries):
* lisp/eshell/esh-proc.el (eshell-needs-pipe-p):
* lisp/eshell/esh-util.el (eshell-convert):
* lisp/eshell/esh-var.el (eshell-envvar-names):
* lisp/faces.el (x-resolve-font-name):
* lisp/ffap.el (ffap-file-at-point):
* lisp/files.el (wildcard-to-regexp, shell-quote-wildcard-pattern):
* lisp/forms.el (forms--update):
* lisp/frameset.el (frameset-filter-unshelve-param):
* lisp/gnus/gnus-art.el (article-decode-charset):
* lisp/gnus/gnus-kill.el (gnus-kill-parse-rn-kill-file):
* lisp/gnus/gnus-mlspl.el (gnus-group-split-fancy):
* lisp/gnus/gnus-msg.el (gnus-summary-resend-message-insert-gcc)
(gnus-inews-insert-gcc):
* lisp/gnus/gnus-rfc1843.el (rfc1843-decode-article-body):
* lisp/gnus/gnus-search.el (gnus-search-indexed-parse-output)
(gnus-search--complete-key-data):
* lisp/gnus/gnus-spec.el (gnus-parse-simple-format):
* lisp/gnus/gnus-sum.el (gnus-summary-refer-article):
* lisp/gnus/gnus-util.el (gnus-extract-address-components)
(gnus-newsgroup-directory-form):
* lisp/gnus/gnus-uu.el (gnus-uu-grab-view):
* lisp/gnus/gnus.el (gnus-group-native-p, gnus-short-group-name):
* lisp/gnus/message.el (message-check-news-header-syntax)
(message-make-message-id, message-user-mail-address)
(message-make-fqdn, message-get-reply-headers, message-followup):
* lisp/gnus/mm-decode.el (mm-dissect-buffer):
* lisp/gnus/nnheader.el (nnheader-insert):
* lisp/gnus/nnimap.el (nnimap-process-quirk)
(nnimap-imap-ranges-to-gnus-ranges):
* lisp/gnus/nnmaildir.el (nnmaildir--ensure-suffix):
* lisp/gnus/nnmairix.el (nnmairix-determine-original-group-from-path):
* lisp/gnus/nnrss.el (nnrss-match-macro):
* lisp/gnus/nntp.el (nntp-find-group-and-number):
* lisp/help-fns.el (help--symbol-completion-table-affixation):
* lisp/help.el (help-function-arglist):
* lisp/hippie-exp.el (he-concat-directory-file-name):
* lisp/htmlfontify.el (hfy-relstub):
* lisp/ido.el (ido-make-prompt, ido-complete, ido-copy-current-word)
(ido-exhibit):
* lisp/image/image-converter.el (image-convert-p):
* lisp/info-xref.el (info-xref-docstrings):
* lisp/info.el (Info-toc-build, Info-follow-reference)
(Info-backward-node, Info-finder-find-node)
(Info-speedbar-expand-node):
* lisp/international/mule-diag.el (print-fontset-element):
* lisp/language/korea-util.el (default-korean-keyboard):
* lisp/linum.el (linum-after-change):
* lisp/mail/ietf-drums.el (ietf-drums-parse-address):
* lisp/mail/mail-utils.el (mail-dont-reply-to):
* lisp/mail/rfc2047.el (rfc2047-encode-1, rfc2047-decode-string):
* lisp/mail/rfc2231.el (rfc2231-parse-string):
* lisp/mail/rmailkwd.el (rmail-set-label):
* lisp/mail/rmailsum.el (rmail-header-summary):
* lisp/mail/smtpmail.el (smtpmail-maybe-append-domain)
(smtpmail-user-mail-address):
* lisp/mail/uce.el (uce-reply-to-uce):
* lisp/man.el (Man-default-man-entry):
* lisp/mh-e/mh-alias.el (mh-alias-gecos-name)
(mh-alias-minibuffer-confirm-address):
* lisp/mh-e/mh-comp.el (mh-forwarded-letter-subject):
* lisp/mh-e/mh-speed.el (mh-speed-parse-flists-output):
* lisp/mh-e/mh-utils.el (mh-collect-folder-names-filter)
(mh-folder-completion-function):
* lisp/minibuffer.el (completion--make-envvar-table)
(completion-file-name-table, completion-flex-try-completion)
(completion-flex-all-completions):
* lisp/mpc.el (mpc--proc-quote-string, mpc-cmd-special-tag-p)
(mpc-constraints-tag-lookup):
* lisp/net/ange-ftp.el (ange-ftp-send-cmd)
(ange-ftp-allow-child-lookup):
* lisp/net/mailcap.el (mailcap-mime-types):
* lisp/net/mairix.el (mairix-search-thread-this-article):
* lisp/net/pop3.el (pop3-open-server):
* lisp/net/soap-client.el (soap-decode-xs-complex-type):
* lisp/net/socks.el (socks-filter):
* lisp/nxml/nxml-outln.el (nxml-highlighted-qname):
* lisp/nxml/rng-cmpct.el (rng-c-expand-name, rng-c-expand-datatype):
* lisp/nxml/rng-uri.el (rng-uri-file-name-1):
* lisp/obsolete/complete.el (partial-completion-mode)
(PC-do-completion):
* lisp/obsolete/longlines.el (longlines-encode-string):
* lisp/obsolete/nnir.el (nnir-compose-result):
* lisp/obsolete/terminal.el (te-quote-arg-for-sh):
* lisp/obsolete/tpu-edt.el (tpu-check-search-case):
* lisp/obsolete/url-ns.el (isPlainHostName):
* lisp/pcmpl-unix.el (pcomplete/scp):
* lisp/play/dunnet.el (dun-listify-string2, dun-get-path)
(dun-unix-parse, dun-doassign, dun-cat, dun-batch-unix-interface):
* lisp/progmodes/ebnf2ps.el: (ebnf-eps-header-footer-comment):
* lisp/progmodes/gdb-mi.el (gdb-var-delete)
(gdb-speedbar-expand-node, gdbmi-bnf-incomplete-record-result):
* lisp/progmodes/gud.el (gud-find-expr):
* lisp/progmodes/idlw-help.el (idlwave-do-context-help1):
* lisp/progmodes/idlw-shell.el (idlwave-shell-mode)
(idlwave-shell-filter-hidden-output, idlwave-shell-filter):
* lisp/progmodes/idlwave.el (idlwave-skip-label-or-case)
(idlwave-routine-info):
* lisp/progmodes/octave.el (inferior-octave-completion-at-point):
* lisp/progmodes/sh-script.el (sh-add-completer):
* lisp/progmodes/sql.el (defun):
* lisp/progmodes/xscheme.el (xscheme-process-filter):
* lisp/replace.el (query-replace-compile-replacement)
(map-query-replace-regexp):
* lisp/shell.el (shell--command-completion-data)
(shell-environment-variable-completion):
* lisp/simple.el (display-message-or-buffer):
* lisp/speedbar.el (speedbar-dired, speedbar-tag-file)
(speedbar-tag-expand):
* lisp/subr.el (split-string-and-unquote):
* lisp/tar-mode.el (tar-extract):
* lisp/term.el (term-command-hook, serial-read-name):
* lisp/textmodes/bibtex.el (bibtex-print-help-message):
* lisp/textmodes/ispell.el (ispell-lookup-words, ispell-filter)
(ispell-parse-output, ispell-buffer-local-parsing):
* lisp/textmodes/reftex-cite.el (reftex-do-citation):
* lisp/textmodes/reftex-parse.el (reftex-notice-new):
* lisp/textmodes/reftex-ref.el (reftex-show-entry):
* lisp/textmodes/reftex.el (reftex-compile-variables):
* lisp/textmodes/tex-mode.el (tex-send-command)
(tex-start-tex, tex-append):
* lisp/thingatpt.el (thing-at-point-url-at-point):
* lisp/tmm.el (tmm-add-one-shortcut):
* lisp/transient.el (transient-format-key):
* lisp/url/url-auth.el (url-basic-auth)
(url-digest-auth-directory-id-assoc):
* lisp/url/url-news.el (url-news):
* lisp/url/url-util.el (url-parse-query-string):
* lisp/vc/vc-cvs.el (vc-cvs-parse-entry):
* lisp/wid-browse.el (widget-browse-sexp):
* lisp/woman.el (woman-parse-colon-path, woman-mini-help)
(WoMan-getpage-in-background, woman-negative-vertical-space):
* lisp/xml.el:
* test/lisp/emacs-lisp/check-declare-tests.el
(check-declare-tests-warn):
* test/lisp/files-tests.el
(files-tests-file-name-non-special-dired-compress-handler):
* test/lisp/net/network-stream-tests.el (server-process-filter):
* test/src/coding-tests.el (ert-test-unibyte-buffer-dos-eol-decode):
Use `string-search` instead of `string-match` and `string-match-p`.
2021-08-09 09:20:00 +00:00
|
|
|
|
(if (string-search "/" name)
|
2013-06-21 03:08:47 +00:00
|
|
|
|
name
|
|
|
|
|
;; Make sure `name' contains a /
|
|
|
|
|
;; so set-auto-mode doesn't try
|
|
|
|
|
;; to look at `tarname' for hints.
|
|
|
|
|
(concat "./" name)))))
|
|
|
|
|
(buffer (get-file-buffer new-buffer-file-name))
|
|
|
|
|
(just-created nil))
|
|
|
|
|
(unless buffer
|
|
|
|
|
(setq buffer (tar--extract descriptor))
|
|
|
|
|
(setq just-created t)
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(setq buffer-file-name new-buffer-file-name)
|
|
|
|
|
(setq buffer-file-truename
|
|
|
|
|
(abbreviate-file-name buffer-file-name))
|
2019-02-17 21:07:43 +00:00
|
|
|
|
(archive-try-jka-compr) ;Pretty ugly hack :-(
|
2013-06-21 03:08:47 +00:00
|
|
|
|
;; Force buffer-file-coding-system to what
|
|
|
|
|
;; decode-coding-region actually used.
|
|
|
|
|
(set-buffer-file-coding-system last-coding-system-used t)
|
|
|
|
|
;; Set the default-directory to the dir of the
|
|
|
|
|
;; superior buffer.
|
|
|
|
|
(setq default-directory
|
|
|
|
|
(with-current-buffer tar-buffer
|
|
|
|
|
default-directory))
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(normal-mode) ; pick a mode.
|
2020-12-07 10:10:22 +00:00
|
|
|
|
(setq-local tar-superior-buffer tar-buffer)
|
|
|
|
|
(setq-local tar-superior-descriptor descriptor)
|
2013-06-21 03:08:47 +00:00
|
|
|
|
(setq buffer-read-only read-only-p)
|
|
|
|
|
(tar-subfile-mode 1)))
|
|
|
|
|
(cond
|
|
|
|
|
(view-p
|
|
|
|
|
(view-buffer buffer (and just-created 'kill-buffer-if-not-modified)))
|
|
|
|
|
((eq other-window-p 'display) (display-buffer buffer))
|
|
|
|
|
(other-window-p (switch-to-buffer-other-window buffer))
|
|
|
|
|
(t (switch-to-buffer buffer)))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun tar-extract-other-window ()
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"In Tar mode, find this entry of the tar file in another window."
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(tar-extract t))
|
|
|
|
|
|
1993-07-31 22:35:20 +00:00
|
|
|
|
(defun tar-display-other-window ()
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"In Tar mode, display this entry of the tar file in another window."
|
1993-07-31 22:35:20 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(tar-extract 'display))
|
|
|
|
|
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(defun tar-view ()
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"In Tar mode, view the tar file entry on this line."
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(tar-extract 'view))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun tar-read-file-name (&optional prompt)
|
1993-07-31 22:35:20 +00:00
|
|
|
|
"Read a file name with this line's entry as the default."
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(or prompt (setq prompt "Copy to: "))
|
|
|
|
|
(let* ((default-file (expand-file-name
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(tar-header-name (tar-current-descriptor))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(target (expand-file-name
|
|
|
|
|
(read-file-name prompt
|
|
|
|
|
(file-name-directory default-file)
|
|
|
|
|
default-file nil))))
|
|
|
|
|
(if (or (string= "" (file-name-nondirectory target))
|
|
|
|
|
(file-directory-p target))
|
|
|
|
|
(setq target (concat (if (string-match "/$" target)
|
|
|
|
|
(substring target 0 (1- (match-end 0)))
|
|
|
|
|
target)
|
|
|
|
|
"/"
|
|
|
|
|
(file-name-nondirectory default-file))))
|
|
|
|
|
target))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun tar-copy (&optional to-file)
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"In Tar mode, extract this entry of the tar file into a file on disk.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
If TO-FILE is not supplied, it is prompted for, defaulting to the name of
|
2019-10-14 03:41:45 +00:00
|
|
|
|
the current tar-entry.
|
|
|
|
|
|
|
|
|
|
If `tar-copy-preserve-time' is non-nil, the original
|
|
|
|
|
timestamp (if present in the tar file) will be used on the
|
|
|
|
|
extracted file."
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(interactive (list (tar-read-file-name)))
|
1994-03-31 17:16:37 +00:00
|
|
|
|
(let* ((descriptor (tar-get-descriptor))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(name (tar-header-name descriptor))
|
|
|
|
|
(size (tar-header-size descriptor))
|
2019-10-14 03:41:45 +00:00
|
|
|
|
(date (tar-header-date descriptor))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(start (tar-header-data-start descriptor))
|
1995-07-25 20:27:07 +00:00
|
|
|
|
(end (+ start size))
|
|
|
|
|
(inhibit-file-name-handlers inhibit-file-name-handlers)
|
|
|
|
|
(inhibit-file-name-operation inhibit-file-name-operation))
|
2009-11-07 18:19:48 +00:00
|
|
|
|
(with-current-buffer
|
|
|
|
|
(if (tar-data-swapped-p) tar-data-buffer (current-buffer))
|
1995-07-25 20:27:07 +00:00
|
|
|
|
;; Inhibit compressing a subfile again if *both* name and
|
|
|
|
|
;; to-file are handled by jka-compr
|
2009-11-07 18:19:48 +00:00
|
|
|
|
(if (and (eq (find-file-name-handler name 'write-region)
|
|
|
|
|
'jka-compr-handler)
|
|
|
|
|
(eq (find-file-name-handler to-file 'write-region)
|
|
|
|
|
'jka-compr-handler))
|
1995-07-25 20:27:07 +00:00
|
|
|
|
(setq inhibit-file-name-handlers
|
|
|
|
|
(cons 'jka-compr-handler
|
|
|
|
|
(and (eq inhibit-file-name-operation 'write-region)
|
|
|
|
|
inhibit-file-name-handlers))
|
|
|
|
|
inhibit-file-name-operation 'write-region))
|
2002-07-31 07:14:35 +00:00
|
|
|
|
(let ((coding-system-for-write 'no-conversion))
|
2019-10-14 03:41:45 +00:00
|
|
|
|
(write-region start end to-file nil nil nil t))
|
|
|
|
|
(when (and tar-copy-preserve-time
|
|
|
|
|
date)
|
Add ‘nofollow’ flag to set-file-times
This is a companion to the recent set-file-modes patch.
It adds support for a ‘nofollow’ flag to set-file-times (Bug#39773).
Like the set-file-modes patch, it needs work in the w32 port.
* admin/merge-gnulib (GNULIB_MODULES): Add futimens, utimensat.
Remove utimens.
* doc/lispref/files.texi (Changing Files):
* etc/NEWS: Mention the change.
* lib/gnulib.mk.in, m4/gnulib-comp.m4: Regenerate.
* lisp/files.el (copy-directory):
* lisp/gnus/gnus-cloud.el (gnus-cloud-replace-file):
* lisp/net/tramp-adb.el (tramp-adb-handle-copy-file):
* lisp/net/tramp-smb.el (tramp-smb-handle-copy-file):
* lisp/tar-mode.el (tar-copy):
* test/lisp/filenotify-tests.el (file-notify-test03-events):
* test/lisp/files-tests.el:
(files-tests-file-name-non-special-set-file-times):
* test/lisp/net/tramp-tests.el (tramp-test22-file-times):
When setting file times, avoid following symbolic links
when the file is not supposed to be a symbolic link.
* lib/futimens.c, lib/utimensat.c, m4/futimens.m4, m4/utimensat.m4:
New files, copied from Gnulib.
* lisp/gnus/gnus-cloud.el (gnus-cloud-replace-file):
When creating a file that is not supposed to exist already,
use the excl flag to check this.
* lisp/net/tramp-adb.el (tramp-adb-handle-set-file-times):
* lisp/net/tramp-sh.el (tramp-sh-handle-set-file-times):
* lisp/net/tramp-sudoedit.el (tramp-sudoedit-handle-set-file-times):
Accept an optional FLAG arg that is currently ignored,
and add a FIXME comment for it.
* lisp/net/tramp-gvfs.el (tramp-gvfs-handle-set-file-times):
* src/fileio.c (Fset_file_times):
Support an optional FLAG arg.
* src/fileio.c (Fcopy_file): Use futimens instead of set_file_times,
as it’s simpler and is a POSIX API.
* src/sysdep.c (set_file_times): Move from here ...
* src/w32.c (set_file_times): ... to here, and make it static,
since it is now used only in w32.c. Presumably w32.c should also
add support for futimens and utimensat (the POSIX APIs, which
Emacs now uses) and it can remove fdutimens (the Gnulib API,
which Emacs no longer uses).
2020-03-07 20:04:05 +00:00
|
|
|
|
(set-file-times to-file date 'nofollow)))
|
1994-04-25 18:26:20 +00:00
|
|
|
|
(message "Copied tar entry %s to %s" name to-file)))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
2015-01-27 21:25:56 +00:00
|
|
|
|
(defun tar-new-entry (filename &optional index)
|
|
|
|
|
"Insert a new empty regular file before point."
|
|
|
|
|
(interactive "*sFile name: ")
|
2019-06-25 20:34:57 +00:00
|
|
|
|
(let* ((index (or index (tar-current-position)))
|
2015-01-27 21:25:56 +00:00
|
|
|
|
(d-list (and (not (zerop index))
|
|
|
|
|
(nthcdr (+ -1 index) tar-parse-info)))
|
|
|
|
|
(pos (if d-list
|
|
|
|
|
(tar-header-data-end (car d-list))
|
|
|
|
|
(point-min)))
|
|
|
|
|
(new-descriptor
|
|
|
|
|
(tar-new-regular-file-header filename)))
|
|
|
|
|
;; Update the data buffer; fill the missing descriptor fields.
|
|
|
|
|
(with-current-buffer tar-data-buffer
|
|
|
|
|
(goto-char pos)
|
|
|
|
|
(insert (tar-header-serialize new-descriptor t))
|
|
|
|
|
(setf (tar-header-data-start new-descriptor)
|
|
|
|
|
(copy-marker (point) nil)))
|
|
|
|
|
;; Update tar-parse-info.
|
|
|
|
|
(if d-list
|
|
|
|
|
(setcdr d-list (cons new-descriptor (cdr d-list)))
|
|
|
|
|
(setq tar-parse-info (cons new-descriptor tar-parse-info)))
|
|
|
|
|
;; Update the listing buffer.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(forward-line index)
|
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(insert (tar-header-block-summarize new-descriptor) ?\n)))
|
|
|
|
|
;; .
|
|
|
|
|
index))
|
|
|
|
|
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(defun tar-flag-deleted (p &optional unflag)
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"In Tar mode, mark this sub-file to be deleted from the tar file.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
With a prefix argument, mark that many files."
|
|
|
|
|
(interactive "p")
|
|
|
|
|
(beginning-of-line)
|
2019-06-25 20:34:57 +00:00
|
|
|
|
(dotimes (_ (abs p))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(if (tar-current-descriptor unflag) ; barf if we're not on an entry-line.
|
|
|
|
|
(progn
|
|
|
|
|
(delete-char 1)
|
|
|
|
|
(insert (if unflag " " "D"))))
|
|
|
|
|
(forward-line (if (< p 0) -1 1)))
|
|
|
|
|
(if (eobp) nil (forward-char 36)))
|
|
|
|
|
|
|
|
|
|
(defun tar-unflag (p)
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"In Tar mode, un-mark this sub-file if it is marked to be deleted.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
With a prefix argument, un-mark that many files forward."
|
|
|
|
|
(interactive "p")
|
|
|
|
|
(tar-flag-deleted p t))
|
|
|
|
|
|
|
|
|
|
(defun tar-unflag-backwards (p)
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"In Tar mode, un-mark this sub-file if it is marked to be deleted.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
With a prefix argument, un-mark that many files backward."
|
|
|
|
|
(interactive "p")
|
|
|
|
|
(tar-flag-deleted (- p) t))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun tar-expunge-internal ()
|
|
|
|
|
"Expunge the tar-entry specified by the current line."
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(let ((descriptor (tar-current-descriptor)))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
;;
|
|
|
|
|
;; delete the current line...
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(delete-region (line-beginning-position) (line-beginning-position 2))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
;;
|
|
|
|
|
;; delete the data pointer...
|
|
|
|
|
(setq tar-parse-info (delq descriptor tar-parse-info))
|
|
|
|
|
;;
|
|
|
|
|
;; delete the data from inside the file...
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(with-current-buffer tar-data-buffer
|
|
|
|
|
(delete-region (or (tar-header-header-start descriptor)
|
|
|
|
|
(- (tar-header-data-start descriptor) 512))
|
|
|
|
|
(tar-header-data-end descriptor)))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun tar-expunge (&optional noconfirm)
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"In Tar mode, delete all the archived files flagged for deletion.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
This does not modify the disk image; you must save the tar file itself
|
|
|
|
|
for this to be permanent."
|
|
|
|
|
(interactive)
|
|
|
|
|
(if (or noconfirm
|
1995-04-14 20:46:11 +00:00
|
|
|
|
(y-or-n-p "Expunge files marked for deletion? "))
|
2002-07-31 07:14:35 +00:00
|
|
|
|
(let ((n 0))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(save-excursion
|
2000-06-14 12:47:27 +00:00
|
|
|
|
(goto-char (point-min))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(while (not (eobp))
|
2017-07-07 03:53:19 +00:00
|
|
|
|
(if (= (following-char) ?D)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(progn (tar-expunge-internal)
|
|
|
|
|
(setq n (1+ n)))
|
|
|
|
|
(forward-line 1)))
|
|
|
|
|
;; after doing the deletions, add any padding that may be necessary.
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(tar-pad-to-blocksize))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(if (zerop n)
|
1995-04-14 20:46:11 +00:00
|
|
|
|
(message "Nothing to expunge.")
|
|
|
|
|
(message "%s files expunged. Be sure to save this buffer." n)))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun tar-clear-modification-flags ()
|
1993-07-31 22:35:20 +00:00
|
|
|
|
"Remove the stars at the beginning of each line."
|
1995-04-08 18:04:43 +00:00
|
|
|
|
(interactive)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(save-excursion
|
2000-06-14 12:47:27 +00:00
|
|
|
|
(goto-char (point-min))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(while (not (eobp))
|
2006-11-27 14:07:26 +00:00
|
|
|
|
(if (not (eq (following-char) ?\s))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(progn (delete-char 1) (insert " ")))
|
|
|
|
|
(forward-line 1))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun tar-chown-entry (new-uid)
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"Change the user-id associated with this entry in the tar file.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
If this tar file was written by GNU tar, then you will be able to edit
|
|
|
|
|
the user id as a string; otherwise, you must edit it as a number.
|
|
|
|
|
You can force editing as a number by calling this with a prefix arg.
|
|
|
|
|
This does not modify the disk image; you must save the tar file itself
|
|
|
|
|
for this to be permanent."
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list
|
|
|
|
|
(let ((descriptor (tar-current-descriptor)))
|
|
|
|
|
(if (or current-prefix-arg
|
|
|
|
|
(not (tar-header-magic descriptor)))
|
|
|
|
|
(read-number
|
|
|
|
|
"New UID number: "
|
|
|
|
|
(format "%s" (tar-header-uid descriptor)))
|
|
|
|
|
(read-string "New UID string: " (tar-header-uname descriptor))))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(cond ((stringp new-uid)
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(setf (tar-header-uname (tar-current-descriptor)) new-uid)
|
2009-10-17 04:36:11 +00:00
|
|
|
|
(tar-alter-one-field tar-uname-offset
|
|
|
|
|
(concat (encode-coding-string
|
|
|
|
|
new-uid tar-file-name-coding-system)
|
|
|
|
|
"\000")))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(t
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(setf (tar-header-uid (tar-current-descriptor)) new-uid)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(tar-alter-one-field tar-uid-offset
|
|
|
|
|
(concat (substring (format "%6o" new-uid) 0 6) "\000 ")))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun tar-chgrp-entry (new-gid)
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"Change the group-id associated with this entry in the tar file.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
If this tar file was written by GNU tar, then you will be able to edit
|
|
|
|
|
the group id as a string; otherwise, you must edit it as a number.
|
|
|
|
|
You can force editing as a number by calling this with a prefix arg.
|
|
|
|
|
This does not modify the disk image; you must save the tar file itself
|
|
|
|
|
for this to be permanent."
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list
|
|
|
|
|
(let ((descriptor (tar-current-descriptor)))
|
|
|
|
|
(if (or current-prefix-arg
|
|
|
|
|
(not (tar-header-magic descriptor)))
|
|
|
|
|
(read-number
|
|
|
|
|
"New GID number: "
|
|
|
|
|
(format "%s" (tar-header-gid descriptor)))
|
|
|
|
|
(read-string "New GID string: " (tar-header-gname descriptor))))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(cond ((stringp new-gid)
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(setf (tar-header-gname (tar-current-descriptor)) new-gid)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(tar-alter-one-field tar-gname-offset
|
2009-10-17 04:36:11 +00:00
|
|
|
|
(concat (encode-coding-string
|
|
|
|
|
new-gid tar-file-name-coding-system)
|
|
|
|
|
"\000")))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(t
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(setf (tar-header-gid (tar-current-descriptor)) new-gid)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(tar-alter-one-field tar-gid-offset
|
|
|
|
|
(concat (substring (format "%6o" new-gid) 0 6) "\000 ")))))
|
|
|
|
|
|
|
|
|
|
(defun tar-rename-entry (new-name)
|
2005-11-10 18:00:37 +00:00
|
|
|
|
"Change the name associated with this entry in the tar file.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
This does not modify the disk image; you must save the tar file itself
|
|
|
|
|
for this to be permanent."
|
|
|
|
|
(interactive
|
|
|
|
|
(list (read-string "New name: "
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(tar-header-name (tar-current-descriptor)))))
|
2021-09-14 06:43:18 +00:00
|
|
|
|
(if (string= "" new-name) (error "Zero length name"))
|
2002-07-31 07:14:35 +00:00
|
|
|
|
(let ((encoded-new-name (encode-coding-string new-name
|
2008-05-29 05:25:22 +00:00
|
|
|
|
tar-file-name-coding-system))
|
|
|
|
|
(descriptor (tar-current-descriptor))
|
|
|
|
|
(prefix nil))
|
|
|
|
|
(when (tar-header-header-start descriptor)
|
|
|
|
|
;; FIXME: Make it work for ././@LongLink.
|
|
|
|
|
(error "Rename with @LongLink format is not implemented"))
|
|
|
|
|
|
|
|
|
|
(when (and (> (length encoded-new-name) 98)
|
|
|
|
|
(string-match "/" encoded-new-name
|
|
|
|
|
(- (length encoded-new-name) 99))
|
|
|
|
|
(< (match-beginning 0) 155))
|
2009-01-16 02:38:58 +00:00
|
|
|
|
(unless (equal (tar-header-magic descriptor) "ustar\0")
|
|
|
|
|
(tar-alter-one-field tar-magic-offset (concat "ustar\0" "00")))
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(setq prefix (substring encoded-new-name 0 (match-beginning 0)))
|
|
|
|
|
(setq encoded-new-name (substring encoded-new-name (match-end 0))))
|
|
|
|
|
|
2021-09-14 06:43:18 +00:00
|
|
|
|
(if (> (length encoded-new-name) 98) (error "Name too long"))
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(setf (tar-header-name descriptor) new-name)
|
2002-07-31 07:14:35 +00:00
|
|
|
|
(tar-alter-one-field 0
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(substring (concat encoded-new-name (make-string 99 0)) 0 99))
|
|
|
|
|
(if prefix
|
|
|
|
|
(tar-alter-one-field tar-prefix-offset
|
|
|
|
|
(substring (concat prefix (make-string 155 0)) 0 155)))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun tar-chmod-entry (new-mode)
|
2006-01-21 06:45:38 +00:00
|
|
|
|
"Change the protection bits associated with this entry in the tar file.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
This does not modify the disk image; you must save the tar file itself
|
|
|
|
|
for this to be permanent."
|
|
|
|
|
(interactive (list (tar-parse-octal-integer-safe
|
|
|
|
|
(read-string "New protection (octal): "))))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(setf (tar-header-mode (tar-current-descriptor)) new-mode)
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(tar-alter-one-field tar-mode-offset
|
|
|
|
|
(concat (substring (format "%6o" new-mode) 0 6) "\000 ")))
|
|
|
|
|
|
|
|
|
|
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(defun tar-alter-one-field (data-position new-data-string &optional descriptor)
|
|
|
|
|
(unless descriptor (setq descriptor (tar-current-descriptor)))
|
|
|
|
|
;;
|
|
|
|
|
;; update the header-line.
|
|
|
|
|
(let ((col (current-column)))
|
|
|
|
|
(delete-region (line-beginning-position)
|
|
|
|
|
(prog2 (forward-line 1)
|
|
|
|
|
(point)
|
|
|
|
|
;; Insert the new text after the old, before deleting,
|
|
|
|
|
;; to preserve markers such as the window start.
|
|
|
|
|
(insert (tar-header-block-summarize descriptor) "\n")))
|
|
|
|
|
(forward-line -1) (move-to-column col))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(cl-assert (tar-data-swapped-p))
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(with-current-buffer tar-data-buffer
|
|
|
|
|
(let* ((start (- (tar-header-data-start descriptor) 512)))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;;
|
|
|
|
|
;; delete the old field and insert a new one.
|
|
|
|
|
(goto-char (+ start data-position))
|
|
|
|
|
(delete-region (point) (+ (point) (length new-data-string))) ; <--
|
More CL cleanups and reduction of use of cl.el.
* woman.el, winner.el, vc/vc-rcs.el, vc/vc-hooks.el, vc/vc-hg.el:
* vc/vc-git.el, vc/vc-dir.el, vc/vc-bzr.el, vc/vc-annotate.el:
* textmodes/tex-mode.el, textmodes/sgml-mode.el, tar-mode.el:
* strokes.el, ses.el, server.el, progmodes/js.el, progmodes/gdb-mi.el:
* progmodes/flymake.el, progmodes/ebrowse.el, progmodes/compile.el:
* play/tetris.el, play/snake.el, play/pong.el, play/landmark.el:
* play/hanoi.el, play/decipher.el, play/5x5.el, nxml/nxml-mode.el:
* net/secrets.el, net/quickurl.el, midnight.el, mail/footnote.el:
* image-dired.el, ibuffer.el, ibuf-macs.el, ibuf-ext.el, hexl.el:
* eshell/eshell.el, eshell/esh-io.el, eshell/esh-ext.el:
* eshell/esh-cmd.el, eshell/em-ls.el, eshell/em-hist.el:
* eshell/em-cmpl.el, eshell/em-banner.el:
* url/url.el, url/url-queue.el, url/url-parse.el, url/url-http.el:
* url/url-future.el, url/url-dav.el, url/url-cookie.el:
* calendar/parse-time.el, test/eshell.el: Use cl-lib.
* wid-browse.el, wdired.el, vc/vc.el, vc/vc-mtn.el, vc/vc-cvs.el:
* vc/vc-arch.el, tree-widget.el, textmodes/texinfo.el:
* textmodes/refill.el, textmodes/css-mode.el, term/tvi970.el:
* term/ns-win.el, term.el, shell.el, ps-samp.el:
* progmodes/perl-mode.el, progmodes/pascal.el, progmodes/gud.el:
* progmodes/glasses.el, progmodes/etags.el, progmodes/cwarn.el:
* play/gamegrid.el, play/bubbles.el, novice.el, notifications.el:
* net/zeroconf.el, net/xesam.el, net/snmp-mode.el, net/mairix.el:
* net/ldap.el, net/eudc.el, net/browse-url.el, man.el:
* mail/mailheader.el, mail/feedmail.el:
* url/url-util.el, url/url-privacy.el, url/url-nfs.el, url/url-misc.el:
* url/url-methods.el, url/url-gw.el, url/url-file.el, url/url-expand.el:
Dont use CL.
* ibuf-ext.el (ibuffer-mark-old-buffers): Use float-time.
* eshell/esh-opt.el (eshell-eval-using-options): Quote code with
`lambda' rather than with `quote'.
(eshell-do-opt): Adjust accordingly.
(eshell-process-option): Simplify.
* eshell/esh-var.el:
* eshell/em-script.el: Require `esh-opt' for eshell-eval-using-options.
* emacs-pcase.el (pcase--dontcare-upats, pcase--let*)
(pcase--expand, pcase--u1): Rename pcase's internal `dontcare' pattern
to `pcase--dontcare'.
* emacs-cl.el (labels): Mark obsolete.
(cl--letf, letf): Move to cl-lib.
(cl--letf*, letf*): Remove.
* emacs-cl-lib.el (cl-nth-value): Use defalias.
* emacs-cl-macs.el (cl-dolist, cl-dotimes): Add indent rule.
(cl-progv): Rewrite.
(cl--letf, cl-letf): Move from cl.el.
(cl-letf*): New macro.
* emacs-cl-extra.el (cl--progv-before, cl--progv-after): Remove.
2012-07-11 23:13:41 +00:00
|
|
|
|
(cl-assert (not (or enable-multibyte-characters
|
|
|
|
|
(multibyte-string-p new-data-string))))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(insert new-data-string)
|
|
|
|
|
;;
|
|
|
|
|
;; compute a new checksum and insert it.
|
|
|
|
|
(let ((chk (tar-header-block-checksum
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(buffer-substring start (+ start 512)))))
|
|
|
|
|
(goto-char (+ start tar-chk-offset))
|
|
|
|
|
(delete-region (point) (+ (point) 8))
|
|
|
|
|
(insert (format "%6o\0 " chk))
|
|
|
|
|
(setf (tar-header-checksum descriptor) chk)
|
|
|
|
|
;;
|
|
|
|
|
;; ok, make sure we didn't botch it.
|
|
|
|
|
(tar-header-block-check-checksum
|
|
|
|
|
(buffer-substring start (+ start 512))
|
|
|
|
|
chk (tar-header-name descriptor))
|
|
|
|
|
))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
|
|
|
|
|
1992-07-27 06:59:29 +00:00
|
|
|
|
(defun tar-octal-time (timeval)
|
New (TICKS . HZ) timestamp format
This follows on a suggestion by Stefan Monnier in:
https://lists.gnu.org/r/emacs-devel/2018-08/msg00991.html
(Bug#32902).
* doc/lispref/buffers.texi (Modification Time):
* doc/lispref/os.texi (Processor Run Time, Time Calculations)
* doc/lispref/processes.texi (System Processes):
* doc/lispref/text.texi (Undo):
Let the "Time of Day" section cover timestamp format details.
* doc/lispref/os.texi (Time of Day):
Say that timestamp internal format should not be assumed.
Document new (ticks . hz) format. Omit mention of seconds-to-time
since it is now just an alias for encode-time.
(Time Conversion): Document encode-time extension.
* etc/NEWS: Mention changes.
* lisp/calendar/cal-dst.el (calendar-system-time-basis): Now const.
* lisp/calendar/cal-dst.el (calendar-absolute-from-time)
(calendar-time-from-absolute)
(calendar-next-time-zone-transition):
* lisp/emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
Simplify by using bignums, (TICKS . HZ), and new encode-time.
* lisp/emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
Simplify by using bignums and new encode-time.
* lisp/calendar/parse-time.el (parse-iso8601-time-string):
Handle DST more accurately, by using new encode-time.
* lisp/calendar/time-date.el (seconds-to-time):
* lisp/calendar/timeclock.el (timeclock-seconds-to-time):
Now just an alias for encode-time.
* lisp/calendar/time-date.el (days-to-time):
* lisp/emacs-lisp/timer.el (timer--time-setter):
* lisp/net/ntlm.el (ntlm-compute-timestamp):
* lisp/obsolete/vc-arch.el (vc-arch-add-tagline):
* lisp/org/org-id.el (org-id-uuid, org-id-time-to-b36):
* lisp/tar-mode (tar-octal-time):
Don't assume timestamps default to list form.
* lisp/tar-mode.el (tar-parse-octal-long-integer):
Now an obsolete alias for tar-parse-octal-integer.
* src/keyboard.c (decode_timer): Adjust to changes to
time decoding functions elsewhere.
* src/timefns.c: Include bignum.h, limits.h.
(FASTER_TIMEFNS): New macro.
(WARN_OBSOLETE_TIMESTAMPS, CURRENT_TIME_LIST)
(timespec_hz, trillion, ztrillion):
New constants.
(make_timeval): Use TIME_T_MAX instead of its definiens.
(check_time_validity, time_add, time_subtract):
Remove. All uses removed.
(disassemble_lisp_time): Remove; old code now folded into
decode_lisp_time. All callers changed.
(invalid_hz, s_ns_to_double, ticks_hz_list4, mpz_set_time)
(timespec_mpz, timespec_ticks, time_hz_ticks)
(lisp_time_hz_ticks, lisp_time_seconds)
(time_form_stamp, lisp_time_form_stamp, decode_ticks_hz)
(decode_lisp_time, mpz_time, list4_to_timespec):
New functions.
(decode_float_time, decode_time_components, lisp_to_timespec):
Adjust to new struct lisp_time, which does not lose
information like the old one did.
(enum timeform): New enum.
(decode_time_components): New arg FORM. All callers changed.
RESULT and DRESULT are now mutually exclusive; no callers need
to change because of this.
(decode_time_components, lisp_time_struct)
(lisp_seconds_argument, time_arith, make_lisp_time, Ffloat_time)
(Fencode_time):
Add support for (TICKS . HZ) form.
(DECODE_SECS_ONLY): New constant.
(lisp_time_struct): 2nd arg is now enum timeform, not int.
All callers changed.
(check_tm_member): Support bignums.m
(Fencode_time): Add new two-arg functionality.
* src/systime.h (struct lisp_time): Now ticks+hz rather than
hi+lo+us+ps, since ticks+hz does not lose info.
* test/src/systime-tests.el (time-equal-p-nil-nil):
New test.
2018-10-03 16:10:01 +00:00
|
|
|
|
;; Format a timestamp as 11 octal digits.
|
New function time-convert
This replaces the awkward reuse of encode-time to both convert
calendrical timestamps to Lisp timestamps, and to convert Lisp
timestamps to other forms. Now, encode-time does just the
former and the new function does just the latter.
The new function builds on a suggestion by Lars Ingebrigtsen in:
https://lists.gnu.org/r/emacs-devel/2019-07/msg00801.html
and refined by Stefan Monnier in:
https://lists.gnu.org/r/emacs-devel/2019-07/msg00803.html
* doc/lispref/os.texi (Time of Day, Time Conversion):
* doc/misc/emacs-mime.texi (time-date):
* etc/NEWS: Update documentation.
* lisp/calendar/cal-dst.el (calendar-next-time-zone-transition):
* lisp/calendar/time-date.el (seconds-to-time, days-to-time):
* lisp/calendar/timeclock.el (timeclock-seconds-to-time):
* lisp/cedet/ede/detect.el (ede-detect-qtest):
* lisp/completion.el (cmpl-hours-since-origin):
* lisp/ecomplete.el (ecomplete-add-item):
* lisp/emacs-lisp/cl-extra.el (cl--random-time):
* lisp/emacs-lisp/timer.el (timer--time-setter)
(timer-next-integral-multiple-of-time):
* lisp/find-lisp.el (find-lisp-format-time):
* lisp/gnus/gnus-diary.el (gnus-user-format-function-d):
* lisp/gnus/gnus-group.el (gnus-group-set-timestamp):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-show-org-agenda):
* lisp/gnus/nnrss.el (nnrss-normalize-date):
* lisp/gnus/nnspool.el (nnspool-request-newgroups):
* lisp/net/ntlm.el (ntlm-compute-timestamp):
* lisp/net/pop3.el (pop3-uidl-dele):
* lisp/obsolete/vc-arch.el (vc-arch-add-tagline):
* lisp/org/org-clock.el (org-clock-get-clocked-time)
(org-clock-resolve, org-resolve-clocks, org-clock-in)
(org-clock-out, org-clock-sum):
* lisp/org/org-id.el (org-id-uuid, org-id-time-to-b36):
* lisp/org/ox-publish.el (org-publish-cache-ctime-of-src):
* lisp/proced.el (proced-format-time):
* lisp/progmodes/cc-cmds.el (c-progress-init)
(c-progress-update):
* lisp/progmodes/cperl-mode.el (cperl-time-fontification):
* lisp/progmodes/flymake.el (flymake--schedule-timer-maybe):
* lisp/progmodes/vhdl-mode.el (vhdl-update-progress-info)
(vhdl-fix-case-region-1):
* lisp/tar-mode.el (tar-octal-time):
* lisp/time.el (emacs-uptime):
* lisp/url/url-auth.el (url-digest-auth-make-cnonce):
* lisp/url/url-util.el (url-lazy-message):
* lisp/vc/vc-cvs.el (vc-cvs-parse-entry):
* lisp/vc/vc-hg.el (vc-hg-state-fast):
* lisp/xt-mouse.el (xterm-mouse-event):
* test/lisp/emacs-lisp/timer-tests.el:
(timer-next-integral-multiple-of-time-2):
Use time-convert, not encode-time.
* lisp/calendar/icalendar.el (icalendar--decode-isodatetime):
Don’t use now-removed FORM argument for encode-time.
It wasn’t crucial anyway.
* lisp/emacs-lisp/byte-opt.el (side-effect-free-fns): Add time-convert.
* lisp/emacs-lisp/elint.el (elint-unknown-builtin-args):
Update encode-time signature to match current arg set.
* lisp/emacs-lisp/timer.el (timer-next-integral-multiple-of-time):
Use timer-convert with t rather than doing it by hand.
* src/timefns.c (time_hz_ticks, time_form_stamp, lisp_time_form_stamp):
Remove; no longer needed.
(decode_lisp_time): Rturn the form instead of having a *PFORM arg.
All uses changed.
(time_arith): Just return TICKS if HZ is 1.
(Fencode_time): Remove argument FORM. All callers changed.
Do not attempt to encode time values; just encode
decoded (calendrical) times.
Unless CURRENT_TIME_LIST, just return VALUE since HZ is 1.
(Ftime_convert): New function, which does the time value
conversion that bleeding-edge encode-time formerly did.
Return TIME if it is easy to see that it is already
of the correct form.
(Fcurrent_time): Mention in doc that the form is planned to change.
* test/src/timefns-tests.el (decode-then-encode-time):
Don’t use (encode-time nil).
2019-08-06 00:38:52 +00:00
|
|
|
|
(format "%011o" (time-convert timeval 'integer)))
|
1992-07-27 06:59:29 +00:00
|
|
|
|
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(defun tar-subfile-save-buffer ()
|
1993-07-31 22:35:20 +00:00
|
|
|
|
"In tar subfile mode, save this buffer into its parent tar-file buffer.
|
|
|
|
|
This doesn't write anything to disk; you must save the parent tar-file buffer
|
1991-03-11 01:37:34 +00:00
|
|
|
|
to make your changes permanent."
|
|
|
|
|
(interactive)
|
1993-04-16 19:36:29 +00:00
|
|
|
|
(if (not (and (boundp 'tar-superior-buffer) tar-superior-buffer))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(error "This buffer has no superior tar file buffer"))
|
1993-04-16 19:36:29 +00:00
|
|
|
|
(if (not (and (boundp 'tar-superior-descriptor) tar-superior-descriptor))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(error "This buffer doesn't have an index into its superior tar file!"))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(let ((subfile (current-buffer))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(coding buffer-file-coding-system)
|
|
|
|
|
(descriptor tar-superior-descriptor)
|
|
|
|
|
subfile-size)
|
|
|
|
|
(with-current-buffer tar-superior-buffer
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(let* ((start (tar-header-data-start descriptor))
|
|
|
|
|
(size (tar-header-size descriptor))
|
2008-05-28 17:43:58 +00:00
|
|
|
|
(head (memq descriptor tar-parse-info)))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(if (not head)
|
|
|
|
|
(error "Can't find this tar file entry in its parent tar file!"))
|
|
|
|
|
(with-current-buffer tar-data-buffer
|
|
|
|
|
;; delete the old data...
|
|
|
|
|
(let* ((data-start start)
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(data-end (+ data-start (tar-roundup-512 size))))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(narrow-to-region data-start data-end)
|
|
|
|
|
(delete-region (point-min) (point-max))
|
|
|
|
|
;; insert the new data...
|
|
|
|
|
(goto-char data-start)
|
|
|
|
|
(let ((dest (current-buffer)))
|
|
|
|
|
(with-current-buffer subfile
|
|
|
|
|
(save-restriction
|
|
|
|
|
(widen)
|
|
|
|
|
(encode-coding-region (point-min) (point-max) coding dest))))
|
|
|
|
|
(setq subfile-size (- (point-max) (point-min)))
|
|
|
|
|
;;
|
|
|
|
|
;; pad the new data out to a multiple of 512...
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(let ((subfile-size-pad (tar-roundup-512 subfile-size)))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert (make-string (- subfile-size-pad subfile-size) 0))
|
|
|
|
|
;;
|
2008-05-27 20:08:21 +00:00
|
|
|
|
;; update the data of this files...
|
|
|
|
|
(setf (tar-header-size descriptor) subfile-size)
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;;
|
|
|
|
|
;; Update the size field in the header block.
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(widen))))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;;
|
2008-05-29 05:25:22 +00:00
|
|
|
|
;; alter the descriptor-line and header
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;;
|
|
|
|
|
(let ((position (- (length tar-parse-info) (length head))))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(forward-line position)
|
2008-05-29 05:25:22 +00:00
|
|
|
|
(tar-alter-one-field tar-size-offset (format "%11o " subfile-size))
|
|
|
|
|
;;
|
|
|
|
|
;; Maybe update the datestamp.
|
|
|
|
|
(when tar-update-datestamp
|
|
|
|
|
(tar-alter-one-field tar-time-offset
|
|
|
|
|
(concat (tar-octal-time (current-time)) " "))))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
;; After doing the insertion, add any necessary final padding.
|
|
|
|
|
(tar-pad-to-blocksize))
|
|
|
|
|
(set-buffer-modified-p t) ; mark the tar file as modified
|
|
|
|
|
(tar-next-line 0))
|
|
|
|
|
(set-buffer-modified-p nil) ; mark the tar subfile as unmodified
|
1995-04-14 20:46:11 +00:00
|
|
|
|
(message "Saved into tar-buffer `%s'. Be sure to save that buffer!"
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(buffer-name tar-superior-buffer))
|
1998-05-22 05:00:25 +00:00
|
|
|
|
;; Prevent basic-save-buffer from changing our coding-system.
|
|
|
|
|
(setq last-coding-system-used buffer-file-coding-system)
|
1993-07-31 22:35:20 +00:00
|
|
|
|
;; Prevent ordinary saving from happening.
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
t))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
|
|
|
|
|
|
1998-11-16 01:17:06 +00:00
|
|
|
|
;; When this function is called, it is sure that the buffer is unibyte.
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(defun tar-pad-to-blocksize ()
|
|
|
|
|
"If we are being anal about tar file blocksizes, fix up the current buffer.
|
|
|
|
|
Leaves the region wide."
|
|
|
|
|
(if (null tar-anal-blocksize)
|
|
|
|
|
nil
|
|
|
|
|
(let* ((last-desc (nth (1- (length tar-parse-info)) tar-parse-info))
|
2008-05-27 20:08:21 +00:00
|
|
|
|
(start (tar-header-data-start last-desc))
|
|
|
|
|
(link-p (tar-header-link-type last-desc))
|
|
|
|
|
(size (if link-p 0 (tar-header-size last-desc)))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(data-end (+ start size))
|
|
|
|
|
(bbytes (ash tar-anal-blocksize 9))
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(pad-to (+ bbytes (* bbytes (/ (- data-end (point-min)) bbytes)))))
|
1991-03-11 01:37:34 +00:00
|
|
|
|
;; If the padding after the last data is too long, delete some;
|
|
|
|
|
;; else insert some until we are padded out to the right number of blocks.
|
|
|
|
|
;;
|
Use buffer-swap-text to separate summary and raw data.
(tar-header-offset): Remove.
(tar-parse-info, tar-header-offset, tar-file-name-coding-system):
Not permanent any more.
(tar-data-buffer): New var.
(tar-data-swapped-p, tar-change-major-mode-hook)
(tar-mode-kill-buffer-hook): New funs.
(tar-untar-buffer, tar-summarize-buffer, tar-mode, tar-mode-revert)
(tar-extract, tar-copy, tar-expunge-internal, tar-expunge)
(tar-clear-modification-flags, tar-alter-one-field)
(tar-subfile-save-buffer, tar-pad-to-blocksize, tar-mode-write-file):
Change accordingly.
2008-05-27 17:58:40 +00:00
|
|
|
|
(with-current-buffer tar-data-buffer
|
|
|
|
|
(let ((goal-end (+ (point-min) pad-to)))
|
|
|
|
|
(if (> (point-max) goal-end)
|
|
|
|
|
(delete-region goal-end (point-max))
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert (make-string (- goal-end (point-max)) ?\0))))))))
|
2008-12-30 21:59:52 +00:00
|
|
|
|
|
|
|
|
|
|
2009-01-07 02:15:37 +00:00
|
|
|
|
;; Used in write-region-annotate-functions to write tar-files out correctly.
|
2011-04-19 13:44:55 +00:00
|
|
|
|
(defun tar-write-region-annotate (start _end)
|
2009-01-07 02:15:37 +00:00
|
|
|
|
;; When called from write-file (and auto-save), `start' is nil.
|
|
|
|
|
;; When called from M-x write-region, we assume the user wants to save
|
|
|
|
|
;; (part of) the summary, not the tar data.
|
|
|
|
|
(unless (or start (not (tar-data-swapped-p)))
|
2008-12-31 09:58:49 +00:00
|
|
|
|
(tar-clear-modification-flags)
|
2009-01-07 02:15:37 +00:00
|
|
|
|
(set-buffer tar-data-buffer)
|
|
|
|
|
nil))
|
2008-12-30 21:59:52 +00:00
|
|
|
|
|
1991-03-11 01:37:34 +00:00
|
|
|
|
(provide 'tar-mode)
|
|
|
|
|
|
1992-05-30 21:11:25 +00:00
|
|
|
|
;;; tar-mode.el ends here
|