tm 7.91.
[elisp/apel.git] / emu-mule.el
1 ;;; emu-mule.el --- emu module for Mule 1.* and Mule 2.*
2
3 ;; Copyright (C) 1995,1996 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Version: $Id: emu-mule.el,v 7.58 1996/10/20 00:13:58 morioka Exp $
7 ;; Keywords: emulation, compatibility, Mule
8
9 ;; This file is part of tl (Tiny Library).
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 (defalias 'set-process-input-coding-system 'set-process-coding-system)
118
119
120 ;;; @ MIME charset
121 ;;;
122
123 (defvar charsets-mime-charset-alist
124   (list
125    (cons (list lc-ascii)                                'us-ascii)
126    (cons (list lc-ascii lc-ltn1)                        'iso-8859-1)
127    (cons (list lc-ascii lc-ltn2)                        'iso-8859-2)
128    (cons (list lc-ascii lc-ltn3)                        'iso-8859-3)
129    (cons (list lc-ascii lc-ltn4)                        'iso-8859-4)
130 ;;;(cons (list lc-ascii lc-crl)                         'iso-8859-5)
131    (cons (list lc-ascii lc-crl)                         'koi8-r)
132    (cons (list lc-ascii lc-arb)                         'iso-8859-6)
133    (cons (list lc-ascii lc-grk)                         'iso-8859-7)
134    (cons (list lc-ascii lc-hbw)                         'iso-8859-8)
135    (cons (list lc-ascii lc-ltn5)                        'iso-8859-9)
136    (cons (list lc-ascii lc-roman lc-jpold lc-jp)        'iso-2022-jp)
137    (cons (list lc-ascii lc-kr)                          'euc-kr)
138    (cons (list lc-ascii lc-cn)                          'gb2312)
139    (cons (list lc-ascii lc-big5-1 lc-big5-2)            'big5)
140    (cons (list lc-ascii lc-roman lc-ltn1 lc-grk
141                lc-jpold lc-cn lc-jp lc-kr lc-jp2)       'iso-2022-jp-2)
142    (cons (list lc-ascii lc-roman lc-ltn1 lc-grk
143                lc-jpold lc-cn lc-jp lc-kr lc-jp2
144                lc-cns1 lc-cns2)                         'iso-2022-int-1)
145    (cons (list lc-ascii lc-roman
146                lc-ltn1 lc-ltn2 lc-crl lc-grk
147                lc-jpold lc-cn lc-jp lc-kr lc-jp2
148                lc-cns1 lc-cns2 lc-cns3 lc-cns4
149                lc-cns5 lc-cns6 lc-cns7)                 'iso-2022-int-1)
150    ))
151
152 (defvar default-mime-charset 'x-ctext)
153
154 (defvar mime-charset-coding-system-alist
155   '((iso-8859-1      . *ctext*)
156     (x-ctext         . *ctext*)
157     (gb2312          . *euc-china*)
158     (koi8-r          . *koi8*)
159     (iso-2022-jp-2   . *iso-2022-ss2-7*)
160     (x-iso-2022-jp-2 . *iso-2022-ss2-7*)
161     (shift_jis       . *sjis*)
162     (x-shiftjis      . *sjis*)
163     ))
164
165 (defun mime-charset-to-coding-system (charset &optional lbt)
166   (if (stringp charset)
167       (setq charset (intern (downcase charset)))
168     )
169   (let ((cs
170          (or (cdr (assq charset mime-charset-coding-system-alist))
171              (let ((cs (intern (concat "*" (symbol-name charset) "*"))))
172                (and (coding-system-p cs) cs)
173                ))))
174     (if (or (null lbt)
175             (null cs))
176         cs
177       (intern (concat (symbol-name cs) (symbol-name lbt)))
178       )))
179
180 (defun detect-mime-charset-region (start end)
181   "Return MIME charset for region between START and END.
182 \[emu-mule.el]"
183   (charsets-to-mime-charset
184    (cons lc-ascii (find-charset-region start end))))
185
186 (defun encode-mime-charset-region (start end charset)
187   "Encode the text between START and END as MIME CHARSET.
188 \[emu-mule.el]"
189   (let ((cs (mime-charset-to-coding-system charset)))
190     (if cs
191         (code-convert start end *internal* cs)
192       )))
193
194 (defun decode-mime-charset-region (start end charset)
195   "Decode the text between START and END as MIME CHARSET.
196 \[emu-mule.el]"
197   (let ((cs (mime-charset-to-coding-system charset)))
198     (if cs
199         (code-convert start end cs *internal*)
200       )))
201
202 (defun encode-mime-charset-string (string charset)
203   "Encode the STRING as MIME CHARSET. [emu-mule.el]"
204   (let ((cs (mime-charset-to-coding-system charset)))
205     (if cs
206         (code-convert-string string *internal* cs)
207       string)))
208
209 (defun decode-mime-charset-string (string charset)
210   "Decode the STRING which is encoded in MIME CHARSET. [emu-mule.el]"
211   (let ((cs (mime-charset-to-coding-system charset)))
212     (if cs
213         (decode-coding-string string cs)
214       string)))
215
216
217 ;;; @ character
218 ;;;
219
220 (defalias 'char-charset 'char-leading-char)
221
222 (defalias 'char-length 'char-bytes)
223
224 (defalias 'char-columns 'char-width)
225
226
227 ;;; @ string
228 ;;;
229
230 (defalias 'string-columns 'string-width)
231
232 (defalias 'string-to-int-list 'string-to-char-list)
233
234 (or (fboundp 'truncate-string)
235 ;;; Imported from Mule-2.3
236 (defun truncate-string (str width &optional start-column)
237   "Truncate STR to fit in WIDTH columns.
238 Optional non-nil arg START-COLUMN specifies the starting column.
239 \[emu-mule.el; Mule 2.3 emulating function]"
240   (or start-column
241       (setq start-column 0))
242   (let ((max-width (string-width str))
243         (len (length str))
244         (from 0)
245         (column 0)
246         to-prev to ch)
247     (if (>= width max-width)
248         (setq width max-width))
249     (if (>= start-column width)
250         ""
251       (while (< column start-column)
252         (setq ch (aref str from)
253               column (+ column (char-width ch))
254               from (+ from (char-bytes ch))))
255       (if (< width max-width)
256           (progn
257             (setq to from)
258             (while (<= column width)
259               (setq ch (aref str to)
260                     column (+ column (char-width ch))
261                     to-prev to
262                     to (+ to (char-bytes ch))))
263             (setq to to-prev)))
264       (substring str from to))))
265 ;;;
266   )
267
268
269 ;;; @ regulation
270 ;;;
271
272 (defun regulate-latin-char (chr)
273   (cond ((and (<= ?\e$B#A\e(B chr)(<= chr ?\e$B#Z\e(B))
274          (+ (- chr ?\e$B#A\e(B) ?A)
275          )
276         ((and (<= ?\e$B#a\e(B chr)(<= chr ?\e$B#z\e(B))
277          (+ (- chr ?\e$B#a\e(B) ?a)
278          )
279         ((eq chr ?\e$B!%\e(B) ?.)
280         ((eq chr ?\e$B!$\e(B) ?,)
281         (t chr)
282         ))
283
284 (defun regulate-latin-string (str)
285   (let ((len (length str))
286         (i 0)
287         chr (dest ""))
288     (while (< i len)
289       (setq chr (sref str i))
290       (setq dest (concat dest
291                          (char-to-string (regulate-latin-char chr))))
292       (setq i (+ i (char-bytes chr)))
293       )
294     dest))
295
296
297 ;;; @ end
298 ;;;
299
300 (provide 'emu-mule)
301
302 ;;; emu-mule.el ends here