1 ;;; read-maps.el --- Read mapping-tables.
3 ;; Copyright (C) 2002,2003,2004,2005,2006,2008 MORIOKA Tomohiko
5 ;; Author: MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
6 ;; Keywords: mapping table, character, CCS, multiscript, multilingual
8 ;; This file is part of XEmacs CHISE.
10 ;; XEmacs CHISE is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
15 ;; XEmacs CHISE is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ;; General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with XEmacs CHISE; see the file COPYING. If not, write to
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
27 (defvar mapping-table-ccs-setting-alist
29 "^J90-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
31 "\tJU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
33 "^JSP-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
35 "\tJU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
37 "^JX1-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
39 "\tJU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
41 "^JX2-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
43 "\tJU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
45 "^G0-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
47 "\tGU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
49 "^C1-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
51 "\tCU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
53 "^C2-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
55 "\tCU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
57 "^C3-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
59 "\tCU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
61 "^C4-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
63 "\tCU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
65 "^C5-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
67 "\tCU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
69 "^C6-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
71 "\tCU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
73 "^B-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
75 "\tBU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
77 "^K0-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
79 "\tKU[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
81 "^JC3-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)" 1 16
85 "*List of information about mapping table formats.
86 Elements are of the form
87 \(CCS CODE-REGEXP PAREN-EXP BASE UCS-CCS UCS-REGEXP).
89 CCS is a symbol, which is a name of a target coded-charset.
91 CODE-REGEXP is a regular expression to match against
92 the representation of the target coded-charset.
94 PAREN-EXP is a number specifies which parenthesized expression
97 BASE base of code in the string specified by CODE-REGEXP and
100 UCS-CCS is a symbol, which is a name of a UCS-CCS.
102 UCS-REGEXP is a regular expression to match against
103 the representation of the UCS-CCS.")
106 (defun mapping-table-read-file (filename)
107 "Read mapping table."
108 (interactive "fMapping table : ")
110 (buffer-disable-undo)
111 (insert-file-contents filename)
112 (goto-char (point-min))
113 (let (rest setting ccs code ucs ucs-pat ucs-ccs ucs-code chr)
115 (setq rest mapping-table-ccs-setting-alist)
118 (setq setting (car rest)
120 (when (looking-at (pop setting))
121 (setq code (string-to-int (match-string (pop setting))
123 ucs-ccs (pop setting)
124 ucs-pat (car setting))
125 (goto-char (match-end 0))
127 (setq rest (cdr rest)))
134 (looking-at ucs-pat))
136 (string-to-int (match-string 1) 16)
137 (goto-char (match-end 0)))))
140 "[ \t]*U[+-]\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]+\\)")
141 (string-to-int (match-string 1) 16)))
142 (if (and ucs-ccs ucs (not ucs-code))
145 (when (setq chr (decode-char ccs code))
146 (unless (eq (encode-char chr ccs 'defined-only)
148 (put-char-attribute chr ccs code))
152 (encode-char chr ucs-ccs 'defined-only)
154 ((memq ucs-ccs '(=ucs@jis
157 (encode-char chr '=ucs@jis/fw 'defined-only))
158 ((eq ucs-ccs '=ucs@gb)
159 (encode-char chr '=ucs@gb/fw 'defined-only))
160 ;; ((eq ucs-ccs '=ucs@cns)
161 ;; (encode-char chr '=ucs@cns/fw 'defined-only))
162 ;; ((eq ucs-ccs '=ucs@big5)
164 ;; ((eq ucs-ccs '=ucs@ks)
165 ;; (encode-char chr '=ucs@ks/fw 'defined-only))
167 (char-feature chr '=>ucs))))
169 (put-char-attribute chr ucs-ccs ucs-code))
171 (not (eq (or (encode-char chr '=ucs 'defined-only)
172 (and (not (memq ucs-ccs '(=ucs@jis
180 (char-feature chr '=>ucs)))
182 (if (or ucs-code (null ucs-ccs))
183 (unless (eq (char-feature chr '=>ucs) ucs)
184 (put-char-attribute chr '=>ucs ucs))
185 (unless (eq (encode-char chr ucs-ccs 'defined-only)
187 (put-char-attribute chr ucs-ccs ucs)))))
191 (defun ucs-compat-read-file (filename)
192 (interactive "fUCS-compat file : ")
194 (buffer-disable-undo)
195 (insert-file-contents filename)
196 (goto-char (point-min))
198 (while (re-search-forward
199 "^ *U[---+]\\([0-9A-F]+\\)\t *U[---+]\\([0-9A-F]+\\)" nil t)
200 (setq ucs (string-to-int (match-string 1) 16)
201 ucs* (string-to-int (match-string 2) 16))
202 (put-char-attribute (decode-char '=ucs ucs) '=>ucs* ucs*)
206 (defun jp-jouyou-read-file (filename)
207 (interactive "fjp-jouyou file : ")
209 (buffer-disable-undo)
210 (insert-file-contents filename)
211 (goto-char (point-min))
213 (while (re-search-forward "^[^\t\n ]+\t\\(.\\)\t*" nil t)
214 (setq char (aref (match-string 1) 0)
215 tchars (buffer-substring (match-end 0)
217 (when (> (length tchars) 0)
221 (split-string tchars " ")))
222 (unless (or (equal (char-feature char '<-simplified@JP/Jouyou)
224 (and (equal (char-feature char '<-simplified)
227 (char-feature char '<-simplified*sources))))
228 (put-char-attribute char
229 '<-simplified@JP/Jouyou
231 ;; (put-char-attribute
232 ;; char 'script (adjoin
238 ;; (get-char-attribute char 'script)))))
243 ;;; read-maps.el ends here