tm 7.102.
[elisp/apel.git] / emu-mule.el
1 ;;; emu-mule.el --- emu module for Mule 1.* and Mule 2.*
2
3 ;; Copyright (C) 1995,1996,1997 MORIOKA Tomohiko
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Version: $Id: emu-mule.el,v 7.60 1997/01/29 15:48:26 morioka Exp $
7 ;; Keywords: emulation, compatibility, Mule
8
9 ;; This file is part of emu.
10
11 ;; This program is free software; you can redistribute it and/or
12 ;; modify it under the terms of the GNU General Public License as
13 ;; published by the Free Software Foundation; either version 2, or (at
14 ;; your option) any later version.
15
16 ;; This program is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 ;; General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Code:
27
28 ;;; @ version specific features
29 ;;;
30
31 (cond (running-emacs-19
32        (require 'emu-19)
33        
34        ;; Suggested by SASAKI Osamu <osamu@shuugr.bekkoame.or.jp>
35        ;; (cf. [os2-emacs-ja:78])
36        (defun fontset-pixel-size (fontset)
37          (let* ((font (get-font-info
38                        (aref (cdr (get-fontset-info fontset)) 0)))
39                 (open (aref font 4)))
40            (if (= open 1)
41                (aref font 5)
42              (if (= open 0)
43                  (let ((pat (aref font 1)))
44                    (if (string-match "-[0-9]+-" pat)
45                        (string-to-number
46                         (substring
47                          pat (1+ (match-beginning 0)) (1- (match-end 0))))
48                      0)))
49              )))
50        )
51       (running-emacs-18
52        (require 'emu-18)
53        (defun tl:make-overlay (beg end &optional buffer type))
54        (defun tl:overlay-put (overlay prop value))
55        ))
56
57
58 ;;; @ character set
59 ;;;
60
61 (defalias 'find-non-ascii-charset-string 'find-charset-string)
62 (defalias 'find-non-ascii-charset-region 'find-charset-region)
63
64 (defalias 'charset-bytes        'char-bytes)
65 (defalias 'charset-description  'char-description)
66 (defalias 'charset-registry     'char-registry)
67 (defalias 'charset-columns      'char-width)
68 (defalias 'charset-direction    'char-direction)
69
70
71 ;;; @ coding system
72 ;;;
73
74 (defun encode-coding-region (start end coding-system)
75   "Encode the text between START and END to CODING-SYSTEM.
76 \[emu-mule.el; EMACS 20 emulating function]"
77   (code-convert-region start end *internal* coding-system)
78   )
79
80 (defun decode-coding-string (str coding-system)
81   "Decode the string STR which is encoded in CODING-SYSTEM.
82 \[emu-mule.el]"
83   (let ((len (length str))
84         ret)
85     (while (and
86             (< 0 len)
87             (null
88              (setq ret
89                    (code-convert-string (substring str 0 len)
90                                         coding-system *internal*))
91              ))
92       (setq len (1- len))
93       )
94     (concat ret (substring str len))
95     ))
96
97 (defalias 'detect-coding-region 'code-detect-region)
98
99 (defalias 'set-buffer-file-coding-system 'set-file-coding-system)
100
101 (defmacro as-binary-process (&rest body)
102   (` (let (selective-display    ; Disable ^M to nl translation.
103            ;; Mule
104            mc-flag      
105            (default-process-coding-system (cons *noconv* *noconv*))
106            program-coding-system-alist)
107        (,@ body)
108        )))
109
110 (defmacro as-binary-input-file (&rest body)
111   (` (let (mc-flag
112            (file-coding-system-for-read *noconv*)
113            )
114        (,@ body)
115        )))
116
117 (defmacro as-binary-output-file (&rest body)
118   (` (let (mc-flag
119            (file-coding-system *noconv*)
120            )
121        (,@ body)
122        )))
123
124 (defalias 'set-process-input-coding-system 'set-process-coding-system)
125
126
127 ;;; @ MIME charset
128 ;;;
129
130 (defvar charsets-mime-charset-alist
131   (list
132    (cons (list lc-ascii)                                'us-ascii)
133    (cons (list lc-ascii lc-ltn1)                        'iso-8859-1)
134    (cons (list lc-ascii lc-ltn2)                        'iso-8859-2)
135    (cons (list lc-ascii lc-ltn3)                        'iso-8859-3)
136    (cons (list lc-ascii lc-ltn4)                        'iso-8859-4)
137 ;;;(cons (list lc-ascii lc-crl)                         'iso-8859-5)
138    (cons (list lc-ascii lc-crl)                         'koi8-r)
139    (cons (list lc-ascii lc-arb)                         'iso-8859-6)
140    (cons (list lc-ascii lc-grk)                         'iso-8859-7)
141    (cons (list lc-ascii lc-hbw)                         'iso-8859-8)
142    (cons (list lc-ascii lc-ltn5)                        'iso-8859-9)
143    (cons (list lc-ascii lc-roman lc-jpold lc-jp)        'iso-2022-jp)
144    (cons (list lc-ascii lc-kr)                          'euc-kr)
145    (cons (list lc-ascii lc-cn)                          'gb2312)
146    (cons (list lc-ascii lc-big5-1 lc-big5-2)            'big5)
147    (cons (list lc-ascii lc-roman lc-ltn1 lc-grk
148                lc-jpold lc-cn lc-jp lc-kr lc-jp2)       'iso-2022-jp-2)
149    (cons (list lc-ascii lc-roman lc-ltn1 lc-grk
150                lc-jpold lc-cn lc-jp lc-kr lc-jp2
151                lc-cns1 lc-cns2)                         'iso-2022-int-1)
152    (cons (list lc-ascii lc-roman
153                lc-ltn1 lc-ltn2 lc-crl lc-grk
154                lc-jpold lc-cn lc-jp lc-kr lc-jp2
155                lc-cns1 lc-cns2 lc-cns3 lc-cns4
156                lc-cns5 lc-cns6 lc-cns7)                 'iso-2022-int-1)
157    ))
158
159 (defvar default-mime-charset 'x-ctext)
160
161 (defvar mime-charset-coding-system-alist
162   '((iso-8859-1      . *ctext*)
163     (x-ctext         . *ctext*)
164     (gb2312          . *euc-china*)
165     (koi8-r          . *koi8*)
166     (iso-2022-jp-2   . *iso-2022-ss2-7*)
167     (x-iso-2022-jp-2 . *iso-2022-ss2-7*)
168     (shift_jis       . *sjis*)
169     (x-shiftjis      . *sjis*)
170     ))
171
172 (defun mime-charset-to-coding-system (charset &optional lbt)
173   (if (stringp charset)
174       (setq charset (intern (downcase charset)))
175     )
176   (let ((cs
177          (or (cdr (assq charset mime-charset-coding-system-alist))
178              (let ((cs (intern (concat "*" (symbol-name charset) "*"))))
179                (and (coding-system-p cs) cs)
180                ))))
181     (if (or (null lbt)
182             (null cs))
183         cs
184       (intern (concat (symbol-name cs) (symbol-name lbt)))
185       )))
186
187 (defun detect-mime-charset-region (start end)
188   "Return MIME charset for region between START and END.
189 \[emu-mule.el]"
190   (charsets-to-mime-charset
191    (cons lc-ascii (find-charset-region start end))))
192
193 (defun encode-mime-charset-region (start end charset)
194   "Encode the text between START and END as MIME CHARSET.
195 \[emu-mule.el]"
196   (let ((cs (mime-charset-to-coding-system charset)))
197     (if cs
198         (code-convert start end *internal* cs)
199       )))
200
201 (defun decode-mime-charset-region (start end charset)
202   "Decode the text between START and END as MIME CHARSET.
203 \[emu-mule.el]"
204   (let ((cs (mime-charset-to-coding-system charset)))
205     (if cs
206         (code-convert start end cs *internal*)
207       )))
208
209 (defun encode-mime-charset-string (string charset)
210   "Encode the STRING as MIME CHARSET. [emu-mule.el]"
211   (let ((cs (mime-charset-to-coding-system charset)))
212     (if cs
213         (code-convert-string string *internal* cs)
214       string)))
215
216 (defun decode-mime-charset-string (string charset)
217   "Decode the STRING which is encoded in MIME CHARSET. [emu-mule.el]"
218   (let ((cs (mime-charset-to-coding-system charset)))
219     (if cs
220         (decode-coding-string string cs)
221       string)))
222
223
224 ;;; @ character
225 ;;;
226
227 (defalias 'char-charset 'char-leading-char)
228
229 (defalias 'char-length 'char-bytes)
230
231 (defalias 'char-columns 'char-width)
232
233
234 ;;; @ string
235 ;;;
236
237 (defalias 'string-columns 'string-width)
238
239 (defalias 'string-to-int-list 'string-to-char-list)
240
241 (or (fboundp 'truncate-string)
242 ;;; Imported from Mule-2.3
243 (defun truncate-string (str width &optional start-column)
244   "Truncate STR to fit in WIDTH columns.
245 Optional non-nil arg START-COLUMN specifies the starting column.
246 \[emu-mule.el; Mule 2.3 emulating function]"
247   (or start-column
248       (setq start-column 0))
249   (let ((max-width (string-width str))
250         (len (length str))
251         (from 0)
252         (column 0)
253         to-prev to ch)
254     (if (>= width max-width)
255         (setq width max-width))
256     (if (>= start-column width)
257         ""
258       (while (< column start-column)
259         (setq ch (aref str from)
260               column (+ column (char-width ch))
261               from (+ from (char-bytes ch))))
262       (if (< width max-width)
263           (progn
264             (setq to from)
265             (while (<= column width)
266               (setq ch (aref str to)
267                     column (+ column (char-width ch))
268                     to-prev to
269                     to (+ to (char-bytes ch))))
270             (setq to to-prev)))
271       (substring str from to))))
272 ;;;
273   )
274
275
276 ;;; @ regulation
277 ;;;
278
279 (defun regulate-latin-char (chr)
280   (cond ((and (<= ?\e$B#A\e(B chr)(<= chr ?\e$B#Z\e(B))
281          (+ (- chr ?\e$B#A\e(B) ?A)
282          )
283         ((and (<= ?\e$B#a\e(B chr)(<= chr ?\e$B#z\e(B))
284          (+ (- chr ?\e$B#a\e(B) ?a)
285          )
286         ((eq chr ?\e$B!%\e(B) ?.)
287         ((eq chr ?\e$B!$\e(B) ?,)
288         (t chr)
289         ))
290
291 (defun regulate-latin-string (str)
292   (let ((len (length str))
293         (i 0)
294         chr (dest ""))
295     (while (< i len)
296       (setq chr (sref str i))
297       (setq dest (concat dest
298                          (char-to-string (regulate-latin-char chr))))
299       (setq i (+ i (char-bytes chr)))
300       )
301     dest))
302
303
304 ;;; @ end
305 ;;;
306
307 (provide 'emu-mule)
308
309 ;;; emu-mule.el ends here