-
Notifications
You must be signed in to change notification settings - Fork 10
/
mcs-20.el
225 lines (189 loc) · 7.18 KB
/
mcs-20.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
;;; mcs-20.el --- MIME charset implementation for Emacs 20 and XEmacs/mule -*- lexical-binding: t -*-
;; Copyright (C) 1997,1998,1999,2000 Free Software Foundation, Inc.
;; Author: MORIOKA Tomohiko <[email protected]>
;; Keywords: emulation, compatibility, Mule
;; This file is part of APEL (A Portable Emacs Library).
;; 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 2, 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 GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;; This module requires Emacs 20.0.93, XEmacs 20.3-b5 (with mule)
;; or later.
;;; Code:
(require 'subr-x)
(require 'wid-edit)
;;; @ MIME charset
;;;
(defcustom mime-charset-coding-system-alist
(let ((rest
'((us-ascii . raw-text)
(gb2312 . cn-gb-2312)
(cn-gb . cn-gb-2312)
(iso-2022-jp-2 . iso-2022-7bit-ss2)
(iso-2022-jp-3 . iso-2022-7bit-ss2)
(tis-620 . tis620)
(windows-874 . tis-620)
(cp874 . tis-620)
(x-ctext . ctext)
(unknown . undecided)
(x-unknown . undecided)
))
dest)
(while rest
(unless (coding-system-p (caar rest))
(setq dest (cons (car rest) dest)))
(setq rest (cdr rest))
)
dest)
"Alist MIME CHARSET vs CODING-SYSTEM.
MIME CHARSET and CODING-SYSTEM must be symbol."
:group 'i18n
:type '(repeat (cons symbol coding-system)))
(defcustom mime-charset-to-coding-system-default-method
nil
"Function called when suitable coding-system is not found from MIME-charset.
It must be nil or function.
If it is a function, interface must be (CHARSET LBT CODING-SYSTEM)."
:group 'i18n
:type '(choice function (const nil)))
(defun mime-charset-to-coding-system (charset &optional lbt)
"Return coding-system corresponding with CHARSET.
CHARSET is a symbol whose name is MIME charset.
If optional argument LBT (`CRLF', `LF', `CR', `unix', `dos' or `mac')
is specified, it is used as line break code type of coding-system."
(if (stringp charset)
(setq charset (intern (downcase charset)))
)
(let ((cs (cdr (assq charset mime-charset-coding-system-alist))))
(unless (or (null cs) (coding-system-p cs))
(message
"Invalid coding system: %s. Confirm mime-charset-coding-system-alist."
cs)
(setq cs nil))
(unless cs (setq cs charset))
(if lbt
(setq cs (intern (format "%s-%s" cs
(cond ((eq lbt 'CRLF) 'dos)
((eq lbt 'LF) 'unix)
((eq lbt 'CR) 'mac)
(t lbt)))))
)
(if (coding-system-p cs)
cs
(when mime-charset-to-coding-system-default-method
(funcall mime-charset-to-coding-system-default-method
charset lbt cs)
))))
(provide 'mcs-20)
(require 'mcs-e20)
(defalias 'mime-charset-p 'mime-charset-to-coding-system)
(defvar widget-mime-charset-prompt-value-history nil
"History of input to `widget-mime-charset-prompt-value'.")
(define-widget 'mime-charset 'coding-system
"A mime-charset."
:format "%{%t%}: %v"
:tag "MIME-charset"
:prompt-history 'widget-mime-charset-prompt-value-history
:prompt-value 'widget-mime-charset-prompt-value
:action 'widget-mime-charset-action)
(defun widget-mime-charset-prompt-value (_widget prompt value _unbound)
;; Read mime-charset from minibuffer.
(intern
(completing-read (format "%s (default %s) " prompt value)
(mapcar (lambda (sym)
(list (symbol-name sym)))
(mime-charset-list)))))
(defun widget-mime-charset-action (widget &optional event)
;; Read a mime-charset from the minibuffer.
(let ((answer
(widget-mime-charset-prompt-value
widget
(widget-apply widget :menu-tag-get)
(widget-value widget)
t)))
(widget-value-set widget answer)
(widget-apply widget :notify widget event)
(widget-setup)))
(defcustom default-mime-charset 'x-unknown
"Default value of MIME-charset.
It is used when MIME-charset is not specified.
It must be symbol."
:group 'i18n
:type 'mime-charset)
(defcustom detect-mime-charset-from-coding-system nil
"When non-nil, `detect-mime-charset-region' and `detect-mime-charset-string'
functions decide charset by encodability in destination coding system.
In that case, each car of `charsets-mime-charset-alist' element is ignored."
:group 'i18n
:type 'boolean)
(provide 'mcs-20)
(require 'mcharset)
(defun detect-mime-charset-list (chars)
"Return MIME charset for the list of characters CHARS."
(catch 'found
(mapc (lambda (cons)
(catch 'next
(mapc (lambda (ch) (unless (char-charset ch (car cons))
(throw 'next nil)))
chars)
(throw 'found (cdr cons))))
charsets-mime-charset-alist)
default-mime-charset-for-write))
(defun detect-mime-charset-from-coding-system (start end &optional string)
"Return MIME charset for the region between START and END,
deciding by encodability in destination coding system.
Optional 3rd argument STRING is non-nil, detect MIME charset from STRING.
In that case, START and END are indexes of the string."
(let ((alist charsets-mime-charset-alist)
result)
(while alist
(if (unencodable-char-position
start end (mime-charset-to-coding-system (cdar alist)) nil string)
(setq alist (cdr alist))
(setq result (cdar alist)
alist nil)))
(or result default-mime-charset-for-write)))
(defun detect-mime-charset-string (string)
"Return MIME charset for STRING.
When `detect-mime-charset-from-coding-system' is non-nil,
each car of `charsets-mime-charset-alist' element is ignored."
(if detect-mime-charset-from-coding-system
(detect-mime-charset-from-coding-system 0 (length string) string)
(let ((table (make-hash-table :test 'eq)))
(mapc (lambda (ch) (puthash ch t table))
string)
(detect-mime-charset-list (hash-table-keys table)))))
(defun detect-mime-charset-region (start end)
"Return MIME charset for region between START and END.
When `detect-mime-charset-from-coding-system' is non-nil,
each car of `charsets-mime-charset-alist' element is ignored."
(if detect-mime-charset-from-coding-system
(detect-mime-charset-from-coding-system start end)
(let ((point (min start end))
(table (make-hash-table :test 'eq)))
(setq end (max start end))
(while (< point end)
(puthash (char-after point) t table)
(setq point (1+ point)))
(detect-mime-charset-list (hash-table-keys table)))))
(defun write-region-as-mime-charset (charset start end filename
&optional append visit lockname)
"Like `write-region', q.v., but encode by MIME CHARSET."
(let ((coding-system-for-write
(or (mime-charset-to-coding-system charset)
'binary)))
(write-region start end filename append visit lockname)))
;;; @ end
;;;
(require 'product)
(product-provide (provide 'mcs-20) (require 'apel-ver))
;;; mcs-20.el ends here