forked from skk-dev/ddskk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tar-util.el
146 lines (122 loc) · 5.28 KB
/
tar-util.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
;;; tar-util.el --- utility for tar archive
;; Copyright (C) 2016 Tsuyoshi Kitamoto <tsuyoshi.kitamoto@gmail.com>
;; Author: Tsuyoshi Kitamoto <tsuyoshi.kitamoto@gmail.com>
;; Maintainer: SKK Development Team
;; URL: https://github.com/skk-dev/ddskk
;; Created: 22 Jan 2016
;; This file is part of Daredevil SKK.
;; This program is free software: you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation, either version 3 of
;; the License, or (at your option) any later version.
;; This program 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
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; 使い方
;; o (tar-salvage-file "~/temp/foo.tar" "foo/bar.el" "~/bar.el")
;; アーカイブ foo.tar の中のファイル bar.el を取り出して、
;; ~/bar.el として保存します。
;; o (tar-list-files "~/temp/foo.tar")
;; アーカイブ foo.tar の中のファイル群をリストで返します。
;;; shut up compiler warning.
(eval-when-compile
(declare-function tar--extract "tar-mode")
(declare-function tar-header-block-tokenize "tar-mode")
(declare-function tar-header-data-end "tar-mode")
(declare-function tar-header-name "tar-mode"))
;;; Code:
(require 'tar-mode)
;;;###autoload
(defun tar-make-descriptor (buffer)
"BUFFER is made by function `tar-raw-buffer'.
Return list like `tar-parse-info', See `tar-mode'.
this function is based on `tar-summarize-buffer'."
(let ((result '())
(pos (point-min))
(coding (or file-name-coding-system
default-file-name-coding-system
locale-coding-system))
descriptor)
(with-current-buffer buffer
(while (and (< pos (point-max))
(setq descriptor (tar-header-block-tokenize pos coding)))
(let ((size (tar-header-size descriptor)))
(if (< size 0)
(error "%s has size %s - corrupted"
(tar-header-name descriptor)
size)))
(push descriptor result)
(setq pos (tar-header-data-end descriptor)))) ; END while
(nreverse result)))
;;;###autoload
(defun tar-file-descriptor (buffer file)
"Return descriptor Structure for match FILE in BUFFER.
BUFFER is made by function `tar-raw-buffer'."
;; (tar-file-descriptor (tar-raw-buffer "/temp/ddskk-16.0.52.tar") "ann")
;; => [tar-header #<marker at 1025 in ddskk-16.0.52.tar>
;; "ddskk-16.0.52/skk-annotation.el" 436 1000 1000 64715 (22169 36584) 7124 nil
;; "" "ustar " "brutus" "brutus" 0 0 nil]
(let ((descriptor (tar-make-descriptor buffer)))
(catch 'match
(dolist (d descriptor)
(when (string-match file (tar-header-name d))
(throw 'match d))))))
;;;###autoload
(defun tar-raw-buffer (archive)
"ARCHIVE is path to tar archive.
Return buffer object."
(let* ((path (expand-file-name archive))
(buffer (file-name-nondirectory path)))
;; バッファ名にtarの拡張子がある場合、バッファのコーディングが適切
;; に設定されない。この結果、以下の2つのskk-getでダウンロードした
;; 以下の2つのファイルが展開されない。
;; 対処として、拡張子を``tar''→``archive''に変更する。
;; - SKK-JISYO.edict.tar
;; - zipcode.tar
;; 参考
;; バッファのコーディングの自動設定は、以下のルートで否決。
;; (tar--extract desc)
;; (funcall set-auto-coding-function name (- end start))
;; (set-auto-coding filename size)
;; (find-auto-coding filename size)
;; (setq head-end (set-auto-mode-1))
;; (inhibit-local-variables-p)
(if (string-match "\\.tar\\b" buffer)
(setq buffer (replace-match "archive" t t buffer)))
(when (get-buffer buffer)
(kill-buffer buffer))
(set-buffer (get-buffer-create buffer))
(set-buffer-multibyte nil)
(insert-file-contents-literally path)
(when (fboundp 'zlib-decompress-region)
(zlib-decompress-region (point-min) ; GNU Emacs 24 以降であれば
(point-max)))) ; 直接 tar.gz いける (事前の gzip -d 不要)
(current-buffer))
;;;###autoload
(defun tar-list-files (archive)
"ARCHIVE is path to tar archive."
(let* ((buffer (tar-raw-buffer archive))
(descriptor (tar-make-descriptor buffer)))
(kill-buffer buffer)
(mapcar #'tar-header-name
descriptor)))
;;;###autoload
(defun tar-salvage-file (archive salvagefile savefile)
"Salvage SALVAGEFILE in ARCHIVE, and save to SAVEFILE."
(let* ((tar-data-buffer (tar-raw-buffer archive))
(desc (tar-file-descriptor tar-data-buffer salvagefile)))
(set-buffer (tar--extract desc))
(kill-buffer tar-data-buffer)
(set-buffer-file-coding-system last-coding-system-used t)
(setq buffer-file-name (expand-file-name savefile))
(basic-save-buffer)
(kill-buffer nil)))
(provide 'tar-util)
;; Local Variables:
;; indent-tabs-mode: nil
;; End:
;;; tar-util.el ends here