Add arch taglines
[gnus] / lisp / mm-util.el
1 ;;; mm-util.el --- Utility functions for Mule and low level things
2 ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 ;;   Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;;      MORIOKA Tomohiko <morioka@jaist.ac.jp>
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (eval-when-compile (require 'cl))
29 (require 'mail-prsvr)
30
31 (eval-and-compile
32   (mapcar
33    (lambda (elem)
34      (let ((nfunc (intern (format "mm-%s" (car elem)))))
35        (if (fboundp (car elem))
36            (defalias nfunc (car elem))
37          (defalias nfunc (cdr elem)))))
38    '((decode-coding-string . (lambda (s a) s))
39      (encode-coding-string . (lambda (s a) s))
40      (encode-coding-region . ignore)
41      (coding-system-list . ignore)
42      (decode-coding-region . ignore)
43      (char-int . identity)
44      (coding-system-equal . equal)
45      (annotationp . ignore)
46      (set-buffer-file-coding-system . ignore)
47      (read-charset
48       . (lambda (prompt)
49           "Return a charset."
50           (intern
51            (completing-read
52             prompt
53             (mapcar (lambda (e) (list (symbol-name (car e))))
54                     mm-mime-mule-charset-alist)
55             nil t))))
56      (subst-char-in-string
57       . (lambda (from to string &optional inplace) ;; stolen (and renamed) from nnheader.el
58           "Replace characters in STRING from FROM to TO.
59           Unless optional argument INPLACE is non-nil, return a new string."
60           (let ((string (if inplace string (copy-sequence string)))
61                 (len (length string))
62                 (idx 0))
63             ;; Replace all occurrences of FROM with TO.
64             (while (< idx len)
65               (when (= (aref string idx) from)
66                 (aset string idx to))
67               (setq idx (1+ idx)))
68             string)))
69      (string-as-unibyte . identity)
70      (string-make-unibyte . identity)
71      (string-as-multibyte . identity)
72      (multibyte-string-p . ignore)
73      ;; It is not a MIME function, but some MIME functions use it.
74      (make-temp-file . (lambda (prefix &optional dir-flag)
75                          (let ((file (expand-file-name
76                                       (make-temp-name prefix)
77                                       (if (fboundp 'temp-directory)
78                                           (temp-directory)
79                                         temporary-file-directory))))
80                            (if dir-flag
81                                (make-directory file))
82                            file)))
83      (insert-byte . insert-char)
84      (multibyte-char-to-unibyte . identity))))
85
86 (eval-and-compile
87   (defalias 'mm-char-or-char-int-p
88     (cond
89      ((fboundp 'char-or-char-int-p) 'char-or-char-int-p)
90      ((fboundp 'char-valid-p) 'char-valid-p)
91      (t 'identity))))
92
93 ;; Fixme:  This seems always to be used to read a MIME charset, so it
94 ;; should be re-named and fixed (in Emacs) to offer completion only on
95 ;; proper charset names (base coding systems which have a
96 ;; mime-charset defined).  XEmacs doesn't believe in mime-charset;
97 ;; test with
98 ;;   `(or (coding-system-get 'iso-8859-1 'mime-charset)
99 ;;        (coding-system-get 'iso-8859-1 :mime-charset))'
100 ;; Actually, there should be an `mm-coding-system-mime-charset'.
101 (eval-and-compile
102   (defalias 'mm-read-coding-system
103     (cond
104      ((fboundp 'read-coding-system)
105       (if (and (featurep 'xemacs)
106                (<= (string-to-number emacs-version) 21.1))
107           (lambda (prompt &optional default-coding-system)
108             (read-coding-system prompt))
109         'read-coding-system))
110      (t (lambda (prompt &optional default-coding-system)
111           "Prompt the user for a coding system."
112           (completing-read
113            prompt (mapcar (lambda (s) (list (symbol-name (car s))))
114                           mm-mime-mule-charset-alist)))))))
115
116 (defvar mm-coding-system-list nil)
117 (defun mm-get-coding-system-list ()
118   "Get the coding system list."
119   (or mm-coding-system-list
120       (setq mm-coding-system-list (mm-coding-system-list))))
121
122 (defun mm-coding-system-p (cs)
123   "Return non-nil if CS is a symbol naming a coding system.
124 In XEmacs, also return non-nil if CS is a coding system object."
125   (if (fboundp 'find-coding-system)
126       (find-coding-system cs)
127     (if (fboundp 'coding-system-p)
128         (coding-system-p cs)
129       ;; Is this branch ever actually useful?
130       (memq cs (mm-get-coding-system-list)))))
131
132 (defvar mm-charset-synonym-alist
133   `(
134     ;; Not in XEmacs, but it's not a proper MIME charset anyhow.
135     ,@(unless (mm-coding-system-p 'x-ctext)
136        '((x-ctext . ctext)))
137     ;; ISO-8859-15 is very similar to ISO-8859-1.  But it's _different_!
138     ,@(unless (mm-coding-system-p 'iso-8859-15)
139        '((iso-8859-15 . iso-8859-1)))
140     ;; BIG-5HKSCS is similar to, but different than, BIG-5.
141     ,@(unless (mm-coding-system-p 'big5-hkscs)
142         '((big5-hkscs . big5)))
143     ;; Windows-1252 is actually a superset of Latin-1.  See also
144     ;; `gnus-article-dumbquotes-map'.
145     ,@(unless (mm-coding-system-p 'windows-1252)
146        (if (mm-coding-system-p 'cp1252)
147            '((windows-1252 . cp1252))
148          '((windows-1252 . iso-8859-1))))
149     ;; Windows-1250 is a variant of Latin-2 heavily used by Microsoft
150     ;; Outlook users in Czech republic. Use this to allow reading of their
151     ;; e-mails. cp1250 should be defined by M-x codepage-setup.
152     ,@(if (and (not (mm-coding-system-p 'windows-1250))
153                (mm-coding-system-p 'cp1250))
154           '((windows-1250 . cp1250)))
155     ;; A Microsoft misunderstanding.
156     ,@(unless (mm-coding-system-p 'ks_c_5601-1987)
157         (if (mm-coding-system-p 'cp949)
158             '((ks_c_5601-1987 . cp949))
159           '((ks_c_5601-1987 . euc-kr))))
160     )
161   "A mapping from invalid charset names to the real charset names.")
162
163 (defvar mm-binary-coding-system
164   (cond
165    ((mm-coding-system-p 'binary) 'binary)
166    ((mm-coding-system-p 'no-conversion) 'no-conversion)
167    (t nil))
168   "100% binary coding system.")
169
170 (defvar mm-text-coding-system
171   (or (if (memq system-type '(windows-nt ms-dos ms-windows))
172           (and (mm-coding-system-p 'raw-text-dos) 'raw-text-dos)
173         (and (mm-coding-system-p 'raw-text) 'raw-text))
174       mm-binary-coding-system)
175   "Text-safe coding system (For removing ^M).")
176
177 (defvar mm-text-coding-system-for-write nil
178   "Text coding system for write.")
179
180 (defvar mm-auto-save-coding-system
181   (cond
182    ((mm-coding-system-p 'utf-8-emacs)   ; Mule 7
183     (if (memq system-type '(windows-nt ms-dos ms-windows))
184         (if (mm-coding-system-p 'utf-8-emacs-dos)
185             'utf-8-emacs-dos mm-binary-coding-system)
186       'utf-8-emacs))
187    ((mm-coding-system-p 'emacs-mule)
188     (if (memq system-type '(windows-nt ms-dos ms-windows))
189         (if (mm-coding-system-p 'emacs-mule-dos)
190             'emacs-mule-dos mm-binary-coding-system)
191       'emacs-mule))
192    ((mm-coding-system-p 'escape-quoted) 'escape-quoted)
193    (t mm-binary-coding-system))
194   "Coding system of auto save file.")
195
196 (defvar mm-universal-coding-system mm-auto-save-coding-system
197   "The universal coding system.")
198
199 ;; Fixme: some of the cars here aren't valid MIME charsets.  That
200 ;; should only matter with XEmacs, though.
201 (defvar mm-mime-mule-charset-alist
202   `((us-ascii ascii)
203     (iso-8859-1 latin-iso8859-1)
204     (iso-8859-2 latin-iso8859-2)
205     (iso-8859-3 latin-iso8859-3)
206     (iso-8859-4 latin-iso8859-4)
207     (iso-8859-5 cyrillic-iso8859-5)
208     ;; Non-mule (X)Emacs uses the last mule-charset for 8bit characters.
209     ;; The fake mule-charset, gnus-koi8-r, tells Gnus that the default
210     ;; charset is koi8-r, not iso-8859-5.
211     (koi8-r cyrillic-iso8859-5 gnus-koi8-r)
212     (iso-8859-6 arabic-iso8859-6)
213     (iso-8859-7 greek-iso8859-7)
214     (iso-8859-8 hebrew-iso8859-8)
215     (iso-8859-9 latin-iso8859-9)
216     (iso-8859-14 latin-iso8859-14)
217     (iso-8859-15 latin-iso8859-15)
218     (viscii vietnamese-viscii-lower)
219     (iso-2022-jp latin-jisx0201 japanese-jisx0208 japanese-jisx0208-1978)
220     (euc-kr korean-ksc5601)
221     (gb2312 chinese-gb2312)
222     (big5 chinese-big5-1 chinese-big5-2)
223     (tibetan tibetan)
224     (thai-tis620 thai-tis620)
225     (iso-2022-7bit ethiopic arabic-1-column arabic-2-column)
226     (iso-2022-jp-2 latin-iso8859-1 greek-iso8859-7
227                    latin-jisx0201 japanese-jisx0208-1978
228                    chinese-gb2312 japanese-jisx0208
229                    korean-ksc5601 japanese-jisx0212
230                    katakana-jisx0201)
231     (iso-2022-int-1 latin-iso8859-1 greek-iso8859-7
232                     latin-jisx0201 japanese-jisx0208-1978
233                     chinese-gb2312 japanese-jisx0208
234                     korean-ksc5601 japanese-jisx0212
235                     chinese-cns11643-1 chinese-cns11643-2)
236     (iso-2022-int-1 latin-iso8859-1 latin-iso8859-2
237                     cyrillic-iso8859-5 greek-iso8859-7
238                     latin-jisx0201 japanese-jisx0208-1978
239                     chinese-gb2312 japanese-jisx0208
240                     korean-ksc5601 japanese-jisx0212
241                     chinese-cns11643-1 chinese-cns11643-2
242                     chinese-cns11643-3 chinese-cns11643-4
243                     chinese-cns11643-5 chinese-cns11643-6
244                     chinese-cns11643-7)
245     ,(if (or (not (fboundp 'charsetp)) ;; non-Mule case
246              (charsetp 'unicode-a)
247              (not (mm-coding-system-p 'mule-utf-8)))
248          '(utf-8 unicode-a unicode-b unicode-c unicode-d unicode-e)
249        ;; If we have utf-8 we're in Mule 5+.
250        (append '(utf-8)
251                (delete 'ascii
252                        (coding-system-get 'mule-utf-8 'safe-charsets)))))
253   "Alist of MIME-charset/MULE-charsets.")
254
255 ;; Correct by construction, but should be unnecessary:
256 ;; XEmacs hates it.
257 (when (and (not (featurep 'xemacs))
258            (fboundp 'coding-system-list)
259            (fboundp 'sort-coding-systems))
260   (setq mm-mime-mule-charset-alist
261         (apply
262          'nconc
263          (mapcar
264           (lambda (cs)
265             (when (and (or (coding-system-get cs :mime-charset) ; Emacs 22
266                            (coding-system-get cs 'mime-charset))
267                        (not (eq t (coding-system-get cs 'safe-charsets))))
268               (list (cons (or (coding-system-get cs :mime-charset)
269                               (coding-system-get cs 'mime-charset))
270                           (delq 'ascii
271                                 (coding-system-get cs 'safe-charsets))))))
272           (sort-coding-systems (coding-system-list 'base-only))))))
273
274 (defvar mm-hack-charsets '(iso-8859-15 iso-2022-jp-2)
275   "A list of special charsets.
276 Valid elements include:
277 `iso-8859-15'    convert ISO-8859-1, -9 to ISO-8859-15 if ISO-8859-15 exists.
278 `iso-2022-jp-2'  convert ISO-2022-jp to ISO-2022-jp-2 if ISO-2022-jp-2 exists."
279 )
280
281 (defvar mm-iso-8859-15-compatible
282   '((iso-8859-1 "\xA4\xA6\xA8\xB4\xB8\xBC\xBD\xBE")
283     (iso-8859-9 "\xA4\xA6\xA8\xB4\xB8\xBC\xBD\xBE\xD0\xDD\xDE\xF0\xFD\xFE"))
284   "ISO-8859-15 exchangeable coding systems and inconvertible characters.")
285
286 (defvar mm-iso-8859-x-to-15-table
287   (and (fboundp 'coding-system-p)
288        (mm-coding-system-p 'iso-8859-15)
289        (mapcar
290         (lambda (cs)
291           (if (mm-coding-system-p (car cs))
292               (let ((c (string-to-char
293                         (decode-coding-string "\341" (car cs)))))
294                 (cons (char-charset c)
295                       (cons
296                        (- (string-to-char
297                            (decode-coding-string "\341" 'iso-8859-15)) c)
298                        (string-to-list (decode-coding-string (car (cdr cs))
299                                                              (car cs))))))
300             '(gnus-charset 0)))
301         mm-iso-8859-15-compatible))
302   "A table of the difference character between ISO-8859-X and ISO-8859-15.")
303
304 (defcustom mm-coding-system-priorities
305   (if (boundp 'current-language-environment)
306       (let ((lang (symbol-value 'current-language-environment)))
307         (cond ((string= lang "Japanese")
308                ;; Japanese users may prefer iso-2022-jp to shift-jis.
309                '(iso-2022-jp iso-2022-jp-2 japanese-shift-jis
310                              iso-latin-1 utf-8)))))
311   "Preferred coding systems for encoding outgoing messages.
312
313 More than one suitable coding system may be found for some text.
314 By default, the coding system with the highest priority is used
315 to encode outgoing messages (see `sort-coding-systems').  If this
316 variable is set, it overrides the default priority."
317   :type '(repeat (symbol :tag "Coding system"))
318   :group 'mime)
319
320 ;; ??
321 (defvar mm-use-find-coding-systems-region
322   (fboundp 'find-coding-systems-region)
323   "Use `find-coding-systems-region' to find proper coding systems.
324
325 Setting it to nil is useful on Emacsen supporting Unicode if sending
326 mail with multiple parts is preferred to sending a Unicode one.")
327
328 ;;; Internal variables:
329
330 ;;; Functions:
331
332 (defun mm-mule-charset-to-mime-charset (charset)
333   "Return the MIME charset corresponding to the given Mule CHARSET."
334   (if (and (fboundp 'find-coding-systems-for-charsets)
335            (fboundp 'sort-coding-systems))
336       (let (mime)
337         (dolist (cs (sort-coding-systems
338                      (copy-sequence
339                       (find-coding-systems-for-charsets (list charset)))))
340           (unless mime
341             (when cs
342               (setq mime (or (coding-system-get cs :mime-charset)
343                              (coding-system-get cs 'mime-charset))))))
344         mime)
345     (let ((alist mm-mime-mule-charset-alist)
346           out)
347       (while alist
348         (when (memq charset (cdar alist))
349           (setq out (caar alist)
350                 alist nil))
351         (pop alist))
352       out)))
353
354 (defun mm-charset-to-coding-system (charset &optional lbt)
355   "Return coding-system corresponding to CHARSET.
356 CHARSET is a symbol naming a MIME charset.
357 If optional argument LBT (`unix', `dos' or `mac') is specified, it is
358 used as the line break code type of the coding system."
359   (when (stringp charset)
360     (setq charset (intern (downcase charset))))
361   (when lbt
362     (setq charset (intern (format "%s-%s" charset lbt))))
363   (cond
364    ((null charset)
365     charset)
366    ;; Running in a non-MULE environment.
367    ((or (null (mm-get-coding-system-list))
368         (not (fboundp 'coding-system-get)))
369     charset)
370    ;; ascii
371    ((eq charset 'us-ascii)
372     'ascii)
373    ;; Check to see whether we can handle this charset.  (This depends
374    ;; on there being some coding system matching each `mime-charset'
375    ;; property defined, as there should be.)
376    ((and (mm-coding-system-p charset)
377 ;;; Doing this would potentially weed out incorrect charsets.
378 ;;;      charset
379 ;;;      (eq charset (coding-system-get charset 'mime-charset))
380          )
381     charset)
382    ;; Translate invalid charsets.
383    ((let ((cs (cdr (assq charset mm-charset-synonym-alist))))
384       (and cs (mm-coding-system-p cs) cs)))
385    ;; Last resort: search the coding system list for entries which
386    ;; have the right mime-charset in case the canonical name isn't
387    ;; defined (though it should be).
388    ((let (cs)
389       ;; mm-get-coding-system-list returns a list of cs without lbt.
390       ;; Do we need -lbt?
391       (dolist (c (mm-get-coding-system-list))
392         (if (and (null cs)
393                  (eq charset (or (coding-system-get c :mime-charset)
394                                  (coding-system-get c 'mime-charset))))
395             (setq cs c)))
396       cs))))
397
398 (eval-and-compile
399   (defvar mm-emacs-mule (and (not (featurep 'xemacs))
400                              (boundp 'default-enable-multibyte-characters)
401                              default-enable-multibyte-characters
402                              (fboundp 'set-buffer-multibyte))
403     "True in Emacs with Mule.")
404
405   (if mm-emacs-mule
406       (defun mm-enable-multibyte ()
407         "Set the multibyte flag of the current buffer.
408 Only do this if the default value of `enable-multibyte-characters' is
409 non-nil.  This is a no-op in XEmacs."
410         (set-buffer-multibyte 'to))
411     (defalias 'mm-enable-multibyte 'ignore))
412
413   (if mm-emacs-mule
414       (defun mm-disable-multibyte ()
415         "Unset the multibyte flag of in the current buffer.
416 This is a no-op in XEmacs."
417         (set-buffer-multibyte nil))
418     (defalias 'mm-disable-multibyte 'ignore)))
419
420 (defun mm-preferred-coding-system (charset)
421   ;; A typo in some Emacs versions.
422   (or (get-charset-property charset 'preferred-coding-system)
423       (get-charset-property charset 'prefered-coding-system)))
424
425 ;; Mule charsets shouldn't be used.
426 (defsubst mm-guess-charset ()
427   "Guess Mule charset from the language environment."
428   (or
429    mail-parse-mule-charset ;; cached mule-charset
430    (progn
431      (setq mail-parse-mule-charset
432            (and (boundp 'current-language-environment)
433                 (car (last
434                       (assq 'charset
435                             (assoc current-language-environment
436                                    language-info-alist))))))
437      (if (or (not mail-parse-mule-charset)
438              (eq mail-parse-mule-charset 'ascii))
439          (setq mail-parse-mule-charset
440                (or (car (last (assq mail-parse-charset
441                                     mm-mime-mule-charset-alist)))
442                    ;; default
443                    'latin-iso8859-1)))
444      mail-parse-mule-charset)))
445
446 (defun mm-charset-after (&optional pos)
447   "Return charset of a character in current buffer at position POS.
448 If POS is nil, it defauls to the current point.
449 If POS is out of range, the value is nil.
450 If the charset is `composition', return the actual one."
451   (let ((char (char-after pos)) charset)
452     (if (< (mm-char-int char) 128)
453         (setq charset 'ascii)
454       ;; charset-after is fake in some Emacsen.
455       (setq charset (and (fboundp 'char-charset) (char-charset char)))
456       (if (eq charset 'composition)     ; Mule 4
457           (let ((p (or pos (point))))
458             (cadr (find-charset-region p (1+ p))))
459         (if (and charset (not (memq charset '(ascii eight-bit-control
460                                                     eight-bit-graphic))))
461             charset
462           (mm-guess-charset))))))
463
464 (defun mm-mime-charset (charset)
465   "Return the MIME charset corresponding to the given Mule CHARSET."
466   (if (eq charset 'unknown)
467       (error "The message contains non-printable characters, please use attachment"))
468   (if (and (fboundp 'coding-system-get) (fboundp 'get-charset-property))
469       ;; This exists in Emacs 20.
470       (or
471        (and (mm-preferred-coding-system charset)
472             (or (coding-system-get
473                  (mm-preferred-coding-system charset) :mime-charset)
474                 (coding-system-get
475                  (mm-preferred-coding-system charset) 'mime-charset)))
476        (and (eq charset 'ascii)
477             'us-ascii)
478        (mm-preferred-coding-system charset)
479        (mm-mule-charset-to-mime-charset charset))
480     ;; This is for XEmacs.
481     (mm-mule-charset-to-mime-charset charset)))
482
483 (defun mm-delete-duplicates (list)
484   "Simple substitute for CL `delete-duplicates', testing with `equal'."
485   (let (result head)
486     (while list
487       (setq head (car list))
488       (setq list (delete head list))
489       (setq result (cons head result)))
490     (nreverse result)))
491
492 ;; Fixme:  This is used in places when it should be testing the
493 ;; default multibyteness.  See mm-default-multibyte-p.
494 (eval-and-compile
495   (if (and (not (featurep 'xemacs))
496            (boundp 'enable-multibyte-characters))
497       (defun mm-multibyte-p ()
498         "Non-nil if multibyte is enabled in the current buffer."
499         enable-multibyte-characters)
500     (defun mm-multibyte-p () (featurep 'mule))))
501
502 (defun mm-default-multibyte-p ()
503   "Return non-nil if the session is multibyte.
504 This affects whether coding conversion should be attempted generally."
505   (if (featurep 'mule)
506       (if (boundp 'default-enable-multibyte-characters)
507           default-enable-multibyte-characters
508         t)))
509
510 (defun mm-iso-8859-x-to-15-region (&optional b e)
511   (if (fboundp 'char-charset)
512       (let (charset item c inconvertible)
513         (save-restriction
514           (if e (narrow-to-region b e))
515           (goto-char (point-min))
516           (skip-chars-forward "\0-\177")
517           (while (not (eobp))
518             (cond
519              ((not (setq item (assq (char-charset (setq c (char-after)))
520                                     mm-iso-8859-x-to-15-table)))
521               (forward-char))
522              ((memq c (cdr (cdr item)))
523               (setq inconvertible t)
524               (forward-char))
525              (t
526               (insert-before-markers (prog1 (+ c (car (cdr item)))
527                                        (delete-char 1)))))
528             (skip-chars-forward "\0-\177")))
529         (not inconvertible))))
530
531 (defun mm-sort-coding-systems-predicate (a b)
532   (let ((priorities
533          (mapcar (lambda (cs)
534                    ;; Note: invalid entries are dropped silently
535                    (and (coding-system-p cs)
536                         (coding-system-base cs)))
537                  mm-coding-system-priorities)))
538     (> (length (memq a priorities))
539        (length (memq b priorities)))))
540
541 (defun mm-find-mime-charset-region (b e &optional hack-charsets)
542   "Return the MIME charsets needed to encode the region between B and E.
543 nil means ASCII, a single-element list represents an appropriate MIME
544 charset, and a longer list means no appropriate charset."
545   (let (charsets)
546     ;; The return possibilities of this function are a mess...
547     (or (and (mm-multibyte-p)
548              mm-use-find-coding-systems-region
549              ;; Find the mime-charset of the most preferred coding
550              ;; system that has one.
551              (let ((systems (find-coding-systems-region b e)))
552                (when mm-coding-system-priorities
553                  (setq systems
554                        (sort systems 'mm-sort-coding-systems-predicate)))
555                (setq systems (delq 'compound-text systems))
556                (unless (equal systems '(undecided))
557                  (while systems
558                    (let* ((head (pop systems))
559                           (cs (or (coding-system-get head :mime-charset)
560                                   (coding-system-get head 'mime-charset))))
561                      ;; The mime-charset (`x-ctext') of
562                      ;; `compound-text' is not in the IANA list.  We
563                      ;; shouldn't normally use anything here with a
564                      ;; mime-charset having an `x-' prefix.
565                      ;; Fixme:  Allow this to be overridden, since
566                      ;; there is existing use of x-ctext.
567                      ;; Also people apparently need the coding system
568                      ;; `iso-2022-jp-3' (which Mule-UCS defines with
569                      ;; mime-charset, though it's not valid).
570                      (if (and cs
571                               (not (string-match "^[Xx]-" (symbol-name cs)))
572                               ;; UTF-16 of any variety is invalid for
573                               ;; text parts and, unfortunately, has
574                               ;; mime-charset defined both in Mule-UCS
575                               ;; and versions of Emacs.  (The name
576                               ;; might be `mule-utf-16...'  or
577                               ;; `utf-16...'.)
578                               (not (string-match "utf-16" (symbol-name cs))))
579                          (setq systems nil
580                                charsets (list cs))))))
581                charsets))
582         ;; Otherwise we're not multibyte, we're XEmacs, or a single
583         ;; coding system won't cover it.
584         (setq charsets
585               (mm-delete-duplicates
586                (mapcar 'mm-mime-charset
587                        (delq 'ascii
588                              (mm-find-charset-region b e))))))
589     (if (and (> (length charsets) 1)
590              (memq 'iso-8859-15 charsets)
591              (memq 'iso-8859-15 hack-charsets)
592              (save-excursion (mm-iso-8859-x-to-15-region b e)))
593         (mapcar (lambda (x) (setq charsets (delq (car x) charsets)))
594                 mm-iso-8859-15-compatible))
595     (if (and (memq 'iso-2022-jp-2 charsets)
596              (memq 'iso-2022-jp-2 hack-charsets))
597         (setq charsets (delq 'iso-2022-jp charsets)))
598     charsets))
599
600 (defmacro mm-with-unibyte-buffer (&rest forms)
601   "Create a temporary buffer, and evaluate FORMS there like `progn'.
602 Use unibyte mode for this."
603   `(let (default-enable-multibyte-characters)
604      (with-temp-buffer ,@forms)))
605 (put 'mm-with-unibyte-buffer 'lisp-indent-function 0)
606 (put 'mm-with-unibyte-buffer 'edebug-form-spec '(body))
607
608 (defmacro mm-with-unibyte-current-buffer (&rest forms)
609   "Evaluate FORMS with current buffer temporarily made unibyte.
610 Also bind `default-enable-multibyte-characters' to nil.
611 Equivalent to `progn' in XEmacs"
612   (let ((multibyte (make-symbol "multibyte"))
613         (buffer (make-symbol "buffer")))
614     `(if mm-emacs-mule
615          (let ((,multibyte enable-multibyte-characters)
616                (,buffer (current-buffer)))
617            (unwind-protect
618                (let (default-enable-multibyte-characters)
619                  (set-buffer-multibyte nil)
620                  ,@forms)
621              (set-buffer ,buffer)
622              (set-buffer-multibyte ,multibyte)))
623        (let (default-enable-multibyte-characters)
624          ,@forms))))
625 (put 'mm-with-unibyte-current-buffer 'lisp-indent-function 0)
626 (put 'mm-with-unibyte-current-buffer 'edebug-form-spec '(body))
627
628 (defmacro mm-with-unibyte (&rest forms)
629   "Eval the FORMS with the default value of `enable-multibyte-characters' nil."
630   `(let (default-enable-multibyte-characters)
631      ,@forms))
632 (put 'mm-with-unibyte 'lisp-indent-function 0)
633 (put 'mm-with-unibyte 'edebug-form-spec '(body))
634
635 (defmacro mm-with-multibyte (&rest forms)
636   "Eval the FORMS with the default value of `enable-multibyte-characters' t."
637   `(let ((default-enable-multibyte-characters t))
638      ,@forms))
639 (put 'mm-with-multibyte 'lisp-indent-function 0)
640 (put 'mm-with-multibyte 'edebug-form-spec '(body))
641
642 (defun mm-find-charset-region (b e)
643   "Return a list of Emacs charsets in the region B to E."
644   (cond
645    ((and (mm-multibyte-p)
646          (fboundp 'find-charset-region))
647     ;; Remove composition since the base charsets have been included.
648     ;; Remove eight-bit-*, treat them as ascii.
649     (let ((css (find-charset-region b e)))
650       (mapcar (lambda (cs) (setq css (delq cs css)))
651               '(composition eight-bit-control eight-bit-graphic
652                             control-1))
653       css))
654    (t
655     ;; We are in a unibyte buffer or XEmacs non-mule, so we futz around a bit.
656     (save-excursion
657       (save-restriction
658         (narrow-to-region b e)
659         (goto-char (point-min))
660         (skip-chars-forward "\0-\177")
661         (if (eobp)
662             '(ascii)
663           (let (charset)
664             (setq charset
665                   (and (boundp 'current-language-environment)
666                        (car (last (assq 'charset
667                                         (assoc current-language-environment
668                                                language-info-alist))))))
669             (if (eq charset 'ascii) (setq charset nil))
670             (or charset
671                 (setq charset
672                       (car (last (assq mail-parse-charset
673                                        mm-mime-mule-charset-alist)))))
674             (list 'ascii (or charset 'latin-iso8859-1)))))))))
675
676 (defun mm-auto-mode-alist ()
677   "Return an `auto-mode-alist' with only the .gz (etc) thingies."
678   (let ((alist auto-mode-alist)
679         out)
680     (while alist
681       (when (listp (cdar alist))
682         (push (car alist) out))
683       (pop alist))
684     (nreverse out)))
685
686 (defvar mm-inhibit-file-name-handlers
687   '(jka-compr-handler image-file-handler)
688   "A list of handlers doing (un)compression (etc) thingies.")
689
690 (defun mm-insert-file-contents (filename &optional visit beg end replace
691                                          inhibit)
692   "Like `insert-file-contents', but only reads in the file.
693 A buffer may be modified in several ways after reading into the buffer due
694 to advanced Emacs features, such as file-name-handlers, format decoding,
695 `find-file-hooks', etc.
696 If INHIBIT is non-nil, inhibit `mm-inhibit-file-name-handlers'.
697   This function ensures that none of these modifications will take place."
698   (let ((format-alist nil)
699         (auto-mode-alist (if inhibit nil (mm-auto-mode-alist)))
700         (default-major-mode 'fundamental-mode)
701         (enable-local-variables nil)
702         (after-insert-file-functions nil)
703         (enable-local-eval nil)
704         (find-file-hooks nil)
705         (inhibit-file-name-operation (if inhibit
706                                          'insert-file-contents
707                                        inhibit-file-name-operation))
708         (inhibit-file-name-handlers
709          (if inhibit
710              (append mm-inhibit-file-name-handlers
711                      inhibit-file-name-handlers)
712            inhibit-file-name-handlers)))
713     (insert-file-contents filename visit beg end replace)))
714
715 (defun mm-append-to-file (start end filename &optional codesys inhibit)
716   "Append the contents of the region to the end of file FILENAME.
717 When called from a function, expects three arguments,
718 START, END and FILENAME.  START and END are buffer positions
719 saying what text to write.
720 Optional fourth argument specifies the coding system to use when
721 encoding the file.
722 If INHIBIT is non-nil, inhibit `mm-inhibit-file-name-handlers'."
723   (let ((coding-system-for-write
724          (or codesys mm-text-coding-system-for-write
725              mm-text-coding-system))
726         (inhibit-file-name-operation (if inhibit
727                                          'append-to-file
728                                        inhibit-file-name-operation))
729         (inhibit-file-name-handlers
730          (if inhibit
731              (append mm-inhibit-file-name-handlers
732                      inhibit-file-name-handlers)
733            inhibit-file-name-handlers)))
734     (write-region start end filename t 'no-message)
735     (message "Appended to %s" filename)))
736
737 (defun mm-write-region (start end filename &optional append visit lockname
738                               coding-system inhibit)
739
740   "Like `write-region'.
741 If INHIBIT is non-nil, inhibit `mm-inhibit-file-name-handlers'."
742   (let ((coding-system-for-write
743          (or coding-system mm-text-coding-system-for-write
744              mm-text-coding-system))
745         (inhibit-file-name-operation (if inhibit
746                                          'write-region
747                                        inhibit-file-name-operation))
748         (inhibit-file-name-handlers
749          (if inhibit
750              (append mm-inhibit-file-name-handlers
751                      inhibit-file-name-handlers)
752            inhibit-file-name-handlers)))
753     (write-region start end filename append visit lockname)))
754
755 (defun mm-image-load-path (&optional package)
756   (let (dir result)
757     (dolist (path load-path (nreverse result))
758       (when (and path
759                  (file-directory-p
760                   (setq dir (concat (file-name-directory
761                                      (directory-file-name path))
762                                     "etc/" (or package "gnus/")))))
763         (push dir result))
764       (push path result))))
765
766 ;; Fixme: This doesn't look useful where it's used.
767 (if (fboundp 'detect-coding-region)
768     (defun mm-detect-coding-region (start end)
769       "Like `detect-coding-region' except returning the best one."
770       (let ((coding-systems
771              (detect-coding-region (point) (point-max))))
772         (or (car-safe coding-systems)
773             coding-systems)))
774   (defun mm-detect-coding-region (start end)
775     (let ((point (point)))
776       (goto-char start)
777       (skip-chars-forward "\0-\177" end)
778       (prog1
779           (if (eq (point) end) 'ascii (mm-guess-charset))
780         (goto-char point)))))
781
782 (if (fboundp 'coding-system-get)
783     (defun mm-detect-mime-charset-region (start end)
784       "Detect MIME charset of the text in the region between START and END."
785       (let ((cs (mm-detect-coding-region start end)))
786         (coding-system-get cs 'mime-charset)))
787   (defun mm-detect-mime-charset-region (start end)
788     "Detect MIME charset of the text in the region between START and END."
789     (let ((cs (mm-detect-coding-region start end)))
790       cs)))
791
792
793 (provide 'mm-util)
794
795 ;;; arch-tag: 94dc5388-825d-4fd1-bfa5-2100aa351238
796 ;;; mm-util.el ends here