1 ;;; ids-read.el --- Reader for IDS-* files
3 ;; Copyright (C) 2002,2003,2004 MORIOKA Tomohiko
5 ;; Author: MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
6 ;; Keywords: IDS, IDC, Ideographs, UCS, Unicode
8 ;; This file is a part of IDS.
10 ;; This program 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 ;; This program is distributed in the hope that it will be useful, but
16 ;; 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 this program; 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.
30 (defun ids-read-buffer (buffer &optional simplify soft)
31 (interactive "bBuffer = \nP")
34 (goto-char (point-min))
35 (let (line chs ids code char u-char structure)
37 (unless (looking-at ";")
40 (buffer-substring (point-at-bol)(point-at-eol))
47 ((string-match "U[-+]\\([0-9A-F]+\\)" chs)
48 (setq code (string-to-int (match-string 1 chs) 16))
49 (setq u-char (decode-char '=ucs@unicode code))
50 (decode-char 'ucs code))
51 ((string-match "J90-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)"
53 (decode-char 'japanese-jisx0208-1990
54 (string-to-int (match-string 1 chs) 16)))
56 "C\\([1-7]\\)-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)"
60 (concat "chinese-cns11643-" (match-string 1 chs)))
61 (string-to-int (match-string 2 chs) 16)))
62 ((string-match "CDP-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)"
64 (decode-char '=big5-cdp
65 (string-to-int (match-string 1 chs) 16)))
67 "HZK\\([0-9][0-9]\\)-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\)"
71 (string-to-int (match-string 1 chs))))
72 (string-to-int (match-string 2 chs) 16)))
73 ((string-match "M-\\([0-9]+\\)'" chs)
74 (setq code (string-to-int (match-string 1 chs)))
77 (if (and (eq (car val) code)
79 (null (nthcdr 2 val)))
82 ((string-match "M-\\([0-9]+\\)\"" chs)
83 (setq code (string-to-int (match-string 1 chs)))
86 (if (and (eq (car val) code)
88 (null (nthcdr 2 val)))
91 ((string-match "M-\\([0-9]+\\)" chs)
92 (decode-char 'ideograph-daikanwa
93 (string-to-int (match-string 1 chs))))
94 ((string-match "MH-\\([0-9]+\\)" chs)
95 (setq code (string-to-int (match-string 1 chs)))
98 (if (and (eq (car val) 'ho)
100 (null (nthcdr 2 val)))
102 'morohashi-daikanwa))
103 ((string-match "CB\\([0-9]+\\)" chs)
104 (decode-char 'ideograph-cbeta
105 (string-to-int (match-string 1 chs))))
109 (not (string-match "\\?" ids))
110 (consp (setq structure (ids-parse-string ids simplify))))
113 (get-char-attribute char 'ideographic-structure)))
114 (put-char-attribute char
115 'ideographic-structure
116 (cdr (car structure))))
118 (not (eq char u-char))
122 u-char 'ideographic-structure))))
124 u-char 'ideographic-structure
125 (ideographic-structure-convert-to-domain
126 (cdr (car structure)) 'unicode)))
133 (defun ids-read-file (file &optional simplify soft)
134 (interactive "fIDS file = \nP")
136 (insert-file-contents file)
137 (ids-read-buffer (current-buffer) simplify soft)))
145 ;;; ids-read.el ends here