tm 7.89.
[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.57 1996/10/01 13:24:13 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)
166   (if (stringp charset)
167       (setq charset (intern (downcase charset)))
168     )
169   (or (cdr (assq charset mime-charset-coding-system-alist))
170       (let ((cs (intern (concat "*" (symbol-name charset) "*"))))
171         (and (coding-system-p cs) cs)
172         )))
173
174 (defun detect-mime-charset-region (start end)
175   "Return MIME charset for region between START and END.
176 \[emu-mule.el]"
177   (charsets-to-mime-charset
178    (cons lc-ascii (find-charset-region start end))))
179
180 (defun encode-mime-charset-region (start end charset)
181   "Encode the text between START and END as MIME CHARSET.
182 \[emu-mule.el]"
183   (let ((cs (mime-charset-to-coding-system charset)))
184     (if cs
185         (code-convert start end *internal* cs)
186       )))
187
188 (defun decode-mime-charset-region (start end charset)
189   "Decode the text between START and END as MIME CHARSET.
190 \[emu-mule.el]"
191   (let ((cs (mime-charset-to-coding-system charset)))
192     (if cs
193         (code-convert start end cs *internal*)
194       )))
195
196 (defun encode-mime-charset-string (string charset)
197   "Encode the STRING as MIME CHARSET. [emu-mule.el]"
198   (let ((cs (mime-charset-to-coding-system charset)))
199     (if cs
200         (code-convert-string string *internal* cs)
201       string)))
202
203 (defun decode-mime-charset-string (string charset)
204   "Decode the STRING which is encoded in MIME CHARSET. [emu-mule.el]"
205   (let ((cs (mime-charset-to-coding-system charset)))
206     (if cs
207         (decode-coding-string string cs)
208       string)))
209
210
211 ;;; @ character
212 ;;;
213
214 (defalias 'char-charset 'char-leading-char)
215
216 (defalias 'char-length 'char-bytes)
217
218 (defalias 'char-columns 'char-width)
219
220
221 ;;; @ string
222 ;;;
223
224 (defalias 'string-columns 'string-width)
225
226 (defalias 'string-to-int-list 'string-to-char-list)
227
228 (or (fboundp 'truncate-string)
229 ;;; Imported from Mule-2.3
230 (defun truncate-string (str width &optional start-column)
231   "Truncate STR to fit in WIDTH columns.
232 Optional non-nil arg START-COLUMN specifies the starting column.
233 \[emu-mule.el; Mule 2.3 emulating function]"
234   (or start-column
235       (setq start-column 0))
236   (let ((max-width (string-width str))
237         (len (length str))
238         (from 0)
239         (column 0)
240         to-prev to ch)
241     (if (>= width max-width)
242         (setq width max-width))
243     (if (>= start-column width)
244         ""
245       (while (< column start-column)
246         (setq ch (aref str from)
247               column (+ column (char-width ch))
248               from (+ from (char-bytes ch))))
249       (if (< width max-width)
250           (progn
251             (setq to from)
252             (while (<= column width)
253               (setq ch (aref str to)
254                     column (+ column (char-width ch))
255                     to-prev to
256                     to (+ to (char-bytes ch))))
257             (setq to to-prev)))
258       (substring str from to))))
259 ;;;
260   )
261
262
263 ;;; @ regulation
264 ;;;
265
266 (defun regulate-latin-char (chr)
267   (cond ((and (<= ?\e$B#A\e(B chr)(<= chr ?\e$B#Z\e(B))
268          (+ (- chr ?\e$B#A\e(B) ?A)
269          )
270         ((and (<= ?\e$B#a\e(B chr)(<= chr ?\e$B#z\e(B))
271          (+ (- chr ?\e$B#a\e(B) ?a)
272          )
273         ((eq chr ?\e$B!%\e(B) ?.)
274         ((eq chr ?\e$B!$\e(B) ?,)
275         (t chr)
276         ))
277
278 (defun regulate-latin-string (str)
279   (let ((len (length str))
280         (i 0)
281         chr (dest ""))
282     (while (< i len)
283       (setq chr (sref str i))
284       (setq dest (concat dest
285                          (char-to-string (regulate-latin-char chr))))
286       (setq i (+ i (char-bytes chr)))
287       )
288     dest))
289
290
291 ;;; @ end
292 ;;;
293
294 (provide 'emu-mule)
295
296 ;;; emu-mule.el ends here