(decode-builtin-char): Use `charset-name'.
[chise/xemacs-chise.git-] / lisp / utf-2000 / char-db-util.el
1 ;;; char-db-util.el --- Character Database utility
2
3 ;; Copyright (C) 1998, 1999 MORIOKA Tomohiko.
4
5 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
6 ;; Keywords: UTF-2000, ISO/IEC 10646, Unicode, UCS-4, MULE.
7
8 ;; This file is part of UTF-2000.
9
10 ;; UTF-2000 is free software; you can redistribute it and/or modify it
11 ;; under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; UTF-2000 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.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with XEmacs; see the file COPYING.  If not, write to the Free
22 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23 ;; 02111-1307, USA.
24
25 ;;; Code:
26
27 (require 'alist)
28
29 (defconst unidata-normative-category-alist
30   '(("Lu" letter        uppercase)
31     ("Ll" letter        lowercase)
32     ("Lt" letter        titlecase)
33     ("Mn" mark          non-spacing)
34     ("Mc" mark          spacing-combining)
35     ("Me" mark          enclosing)
36     ("Nd" number        decimal-digit)
37     ("Nl" number        letter)
38     ("No" number        other)
39     ("Zs" separator     space)
40     ("Zl" separator     line)
41     ("Zp" separator     paragraph)
42     ("Cc" other         control)
43     ("Cf" other         format)
44     ("Cs" other         surrogate)
45     ("Co" other         private-use)
46     ("Cn" other         not-assigned)))
47
48 (defconst unidata-informative-category-alist
49   '(("Lm" letter        modifier)
50     ("Lo" letter        other)
51     ("Pc" punctuation   connector)
52     ("Pd" punctuation   dash)
53     ("Ps" punctuation   open)
54     ("Pe" punctuation   close)
55     ("Pi" punctuation   initial-quote)
56     ("Pf" punctuation   final-quote)
57     ("Po" punctuation   other)
58     ("Sm" symbol        math)
59     ("Sc" symbol        currency)
60     ("Sk" symbol        modifier)
61     ("So" symbol        other)
62     ))
63
64 (defconst ideographic-radicals
65   (let ((v (make-vector 215 nil))
66         (i 1))
67     (while (< i 215)
68       (aset v i (int-char (+ #x2EFF i)))
69       (setq i (1+ i)))
70     (if (< (charset-iso-final-char (car (split-char (aref v 34)))) ?0)
71         (aset v 34 (make-char 'chinese-gb2312 #x62 #x3A)))
72     v))
73
74 (defun char-attribute-name< (ka kb)
75   (cond
76    ((find-charset ka)
77     (cond
78      ((find-charset kb)
79       (cond
80        ((= (charset-dimension ka)
81            (charset-dimension kb))
82         (cond ((= (charset-chars ka)(charset-chars kb))
83                (cond
84                 ((>= (charset-iso-final-char ka) ?@)
85                  (if (>= (charset-iso-final-char kb) ?@)
86                      (< (charset-iso-final-char ka)
87                         (charset-iso-final-char kb))
88                    t))
89                 ((>= (charset-iso-final-char ka) ?0)
90                  (cond
91                   ((>= (charset-iso-final-char kb) ?@)
92                    nil)
93                   ((>= (charset-iso-final-char kb) ?0)
94                    (< (charset-iso-final-char ka)
95                       (charset-iso-final-char kb)))
96                   (t)))))
97               ((<= (charset-chars ka)(charset-chars kb)))))
98        (t
99         (< (charset-dimension ka)
100            (charset-dimension kb))
101         )))
102      ((symbolp kb)
103       nil)
104      (t
105       t)))
106    ((find-charset kb)
107     t)
108    ((symbolp ka)
109     (cond ((symbolp kb)
110            (string< (symbol-name ka)
111                     (symbol-name kb)))
112           (t)))
113    ((symbolp kb)
114     nil)))
115
116 (defun insert-char-data (char)
117   (let ((data (char-attribute-alist char))
118         cell ret has-long-ccs-name rest
119         radical strokes)
120     (when data
121       (save-restriction
122         (narrow-to-region (point)(point))
123         (insert "(define-char
124   '(")
125         (when (setq cell (assq 'name data))
126           (setq cell (cdr cell))
127           (insert (format
128                    (if (> (length cell) 47)
129                        "(name . %S)
130     "
131                      "(name\t\t. %S)
132     ")
133                    cell))
134           (setq data (del-alist 'name data))
135           )
136         (when (setq cell (assq 'name data))
137           (setq cell (cdr cell))
138           (insert (format
139                    (if (> (length cell) 47)
140                        "(name . %S)
141     "
142                      "(name\t\t. %S)
143     ")
144                    cell))
145           (setq data (del-alist 'name data))
146           )
147         (when (setq cell (assq 'ucs data))
148           (setq cell (cdr cell))
149           (insert (format "(ucs\t\t. #x%04X)
150     "
151                           cell))
152           (setq data (del-alist 'ucs data))
153           )
154         (when (setq cell (assq '->ucs data))
155           (setq cell (cdr cell))
156           (insert (format "(->ucs\t\t. #x%04X)\t; %c
157     "
158                           cell (decode-char 'ucs cell)))
159           (setq data (del-alist '->ucs data))
160           )
161         (when (setq cell (assq 'general-category data))
162           (setq ret (cdr cell))
163           (insert (format
164                    "(general-category\t%s) ; %s
165     "
166                    (mapconcat (lambda (cell)
167                                 (format "%S" cell))
168                               ret " ")
169                    (cond ((rassoc (cdr cell)
170                                   unidata-normative-category-alist)
171                           "Normative Category")
172                          ((rassoc (cdr cell)
173                                   unidata-informative-category-alist)
174                           "Informative Category")
175                          (t
176                           "Unknown Category"))))
177           (setq data (del-alist 'general-category data))
178           )
179         (when (setq cell (assq 'bidi-category data))
180           (setq cell (cdr cell))
181           (insert (format "(bidi-category\t. %S)
182     "
183                           cell))
184           (setq data (del-alist 'bidi-category data))
185           )
186         (when (setq cell (assq 'mirrored data))
187           (setq cell (cdr cell))
188           (insert (format "(mirrored\t\t. %S)
189     "
190                           cell))
191           (setq data (del-alist 'mirrored data))
192           )
193         (cond
194          ((setq cell (assq 'decimal-digit-value data))
195           (setq cell (cdr cell))
196           (insert (format "(decimal-digit-value . %S)
197     "
198                           cell))
199           (setq data (del-alist 'decimal-digit-value data))
200           (when (setq cell (assq 'digit-value data))
201             (setq cell (cdr cell))
202             (insert (format "(digit-value\t . %S)
203     "
204                             cell))
205             (setq data (del-alist 'digit-value data))
206             )
207           (when (setq cell (assq 'numeric-value data))
208             (setq cell (cdr cell))
209             (insert (format "(numeric-value\t . %S)
210     "
211                             cell))
212             (setq data (del-alist 'numeric-value data))
213             )
214           )
215          (t
216           (when (setq cell (assq 'digit-value data))
217             (setq cell (cdr cell))
218             (insert (format "(digit-value\t. %S)
219     "
220                             cell))
221             (setq data (del-alist 'digit-value data))
222             )
223           (when (setq cell (assq 'numeric-value data))
224             (setq cell (cdr cell))
225             (insert (format "(numeric-value\t. %S)
226     "
227                             cell))
228             (setq data (del-alist 'numeric-value data))
229             )))
230         (when (setq cell (assq 'iso-10646-comment data))
231           (setq cell (cdr cell))
232           (insert (format "(iso-10646-comment\t. %S)
233     "
234                           cell))
235           (setq data (del-alist 'iso-10646-comment data))
236           )
237         (when (setq cell (assq 'morohashi-daikanwa data))
238           (setq cell (cdr cell))
239           (insert (format "(morohashi-daikanwa\t%s)
240     "
241                           (mapconcat (function prin1-to-string) cell " ")))
242           (setq data (del-alist 'morohashi-daikanwa data))
243           )
244         (setq radical nil)
245         (when (setq cell (assq 'ideographic-radical data))
246           (setq radical (cdr cell))
247           (insert (format "(ideographic-radical . %S)\t; %c
248     "
249                           radical
250                           (aref ideographic-radicals radical)))
251           (setq data (del-alist 'ideographic-radical data))
252           )
253         (when (setq cell (assq 'kangxi-radical data))
254           (setq cell (cdr cell))
255           (unless (eq cell radical)
256             (insert (format "(kangxi-radical\t . %S)\t; %c
257     "
258                             cell
259                             (aref ideographic-radicals cell)))
260             (setq radical cell))
261           (setq data (del-alist 'kangxi-radical data))
262           )
263         (when (setq cell (assq 'japanese-radical data))
264           (setq cell (cdr cell))
265           (unless (eq cell radical)
266             (insert (format "(japanese-radical . %S)\t; %c
267     "
268                             cell
269                             (aref ideographic-radicals cell)))
270             (setq radical cell))
271           (setq data (del-alist 'japanese-radical data))
272           )
273         (when (setq cell (assq 'cns-radical data))
274           (setq cell (cdr cell))
275           (insert (format "(cns-radical\t . %S)\t; %c
276     "
277                           cell
278                           (aref ideographic-radicals cell)))
279           (setq data (del-alist 'cns-radical data))
280           )
281         (setq strokes nil)
282         (cond
283          ((setq cell (assq 'ideographic-strokes data))
284           (setq strokes (cdr cell))
285           (insert (format "(ideographic-strokes . %S)
286     "
287                           strokes))
288           (setq data (del-alist 'ideographic-strokes data))
289           (when (setq cell (assq 'kangxi-strokes data))
290             (setq cell (cdr cell))
291             (unless (eq cell strokes)
292               (insert (format "(kangxi-strokes\t . %S)
293     "
294                               cell))
295               (setq strokes cell))
296             (setq data (del-alist 'kangxi-strokes data))
297             )
298           (when (setq cell (assq 'japanese-strokes data))
299             (setq cell (cdr cell))
300             (unless (eq cell strokes)
301               (insert (format "(japanese-strokes\t . %S)
302     "
303                               cell))
304               (setq strokes cell))
305             (setq data (del-alist 'japanese-strokes data))
306             )
307           (when (setq cell (assq 'total-strokes data))
308             (setq cell (cdr cell))
309             (insert (format "(total-strokes\t . %S)
310     "
311                             cell))
312             (setq data (del-alist 'total-strokes data))
313             )
314           )
315          ((setq cell (assq 'total-strokes data))
316           (setq cell (cdr cell))
317           (insert (format "(total-strokes\t. %S)
318     "
319                           cell))
320           (setq data (del-alist 'total-strokes data))
321           ))
322         (when (setq cell (assq '->decomposition data))
323           (setq cell (cdr cell))
324           (insert (format "(->decomposition\t%s)
325     "
326                           (mapconcat (lambda (code)
327                                        (cond ((symbolp code)
328                                               (symbol-name code))
329                                              ((integerp code)
330                                               (format "#x%04X" code))
331                                              (t
332                                               (format "\n     %S" code))))
333                                      cell " ")))
334           (setq data (del-alist '->decomposition data))
335           )
336         (when (setq cell (assq '->uppercase data))
337           (setq cell (cdr cell))
338           (insert (format "(->uppercase\t%s)
339     "
340                           (mapconcat (lambda (code)
341                                        (cond ((symbolp code)
342                                               (symbol-name code))
343                                              ((integerp code)
344                                               (format "#x%04X" code))
345                                              (t
346                                               (format "\n     %S" code))))
347                                      cell " ")))
348           (setq data (del-alist '->uppercase data))
349           )
350         (when (setq cell (assq '->lowercase data))
351           (setq cell (cdr cell))
352           (insert (format "(->lowercase\t%s)
353     "
354                           (mapconcat (lambda (code)
355                                        (cond ((symbolp code)
356                                               (symbol-name code))
357                                              ((integerp code)
358                                               (format "#x%04X" code))
359                                              (t
360                                               (format "\n     %S" code))))
361                                      cell " ")))
362           (setq data (del-alist '->lowercase data))
363           )
364         (when (setq cell (assq '->titlecase data))
365           (setq cell (cdr cell))
366           (insert (format "(->titlecase\t%s)
367     "
368                           (mapconcat (lambda (code)
369                                        (cond ((symbolp code)
370                                               (symbol-name code))
371                                              ((integerp code)
372                                               (format "#x%04X" code))
373                                              (t
374                                               (format "\n     %S" code))))
375                                      cell " ")))
376           (setq data (del-alist '->titlecase data))
377           )
378         (setq data
379               (sort data
380                     (lambda (a b)
381                       (char-attribute-name< (car a)(car b)))))
382         (setq rest data)
383         (while (and rest
384                     (progn
385                       (setq cell (car rest))
386                       (if (setq ret (find-charset (car cell)))
387                           (if (>= (length (symbol-name (charset-name ret))) 19)
388                               (progn
389                                 (setq has-long-ccs-name t)
390                                 nil)
391                             t)
392                         t)))
393           (setq rest (cdr rest)))
394         (while data
395           (setq cell (car data))
396           (cond ((setq ret (find-charset (car cell)))
397                  (insert
398                   (format
399                    (if has-long-ccs-name
400                        (if (eq ret (find-charset 'ideograph-daikanwa))
401                            "(%-26s . %05d)\t; %c
402     "
403                          "(%-26s . #x%X)\t; %c
404     "
405                          )
406                      (if (eq ret (find-charset 'ideograph-daikanwa))
407                          "(%-18s . %05d)\t; %c
408     "
409                        "(%-18s . #x%X)\t; %c
410     "
411                        ))
412                    (charset-name ret)
413                    (if (= (charset-iso-graphic-plane ret) 1)
414                        (logior (cdr cell)
415                                (cond ((= (charset-dimension ret) 1)
416                                       #x80)
417                                      ((= (charset-dimension ret) 2)
418                                       #x8080)
419                                      ((= (charset-dimension ret) 3)
420                                       #x808080)
421                                      (t 0)))
422                      (cdr cell))
423                    (decode-builtin-char ret (cdr cell)))))
424                 ((string-match "^->" (symbol-name (car cell)))
425                  (insert
426                   (format "(%-18s %s)
427     "
428                           (car cell)
429                           (mapconcat (lambda (code)
430                                        (cond ((symbolp code)
431                                               (symbol-name code))
432                                              ((integerp code)
433                                               (format "#x%04X" code))
434                                              (t
435                                               (format "\n     %S" code))))
436                                      (cdr cell) " "))))
437                 ((consp (cdr cell))
438                  (insert (format "(%-18s %s)
439     "
440                                  (car cell)
441                                  (mapconcat (function prin1-to-string)
442                                             (cdr cell) " "))))
443                 (t
444                  (insert (format "(%-18s . %S)
445     "
446                                  (car cell)(cdr cell)))
447                  ))
448           (setq data (cdr data)))
449         (insert "))\n")
450         (goto-char (point-min))
451         (while (re-search-forward "[ \t]+$" nil t)
452           (replace-match ""))
453         (goto-char (point-max))
454         (tabify (point-min)(point-max))
455         ))))
456
457 (defun decode-builtin-char (charset code-point)
458   (setq charset (get-charset charset))
459   (if (and (not (eq (charset-name charset) 'ideograph-daikanwa))
460            (or (memq (charset-name charset)
461                      '(ascii latin-viscii-upper
462                              latin-viscii-lower
463                              arabic-iso8859-6
464                              japanese-jisx0213-1
465                              japanese-jisx0213-2))
466                (= (char-int (charset-iso-final-char charset)) 0)))
467       (decode-char charset code-point)
468     (let ((table (charset-mapping-table charset)))
469       (if table
470           (prog2
471               (set-charset-mapping-table charset nil)
472               (decode-char charset code-point)
473             (set-charset-mapping-table charset table))
474         (decode-char charset code-point)))))
475
476 ;;;###autoload
477 (defun char-db-update-comment ()
478   (interactive)
479   (save-excursion
480     (goto-char (point-min))
481     (let (cdef table char)
482       (while (re-search-forward "^[ \t]*\\(([^.()]+)\\)" nil t)
483         (goto-char (match-beginning 1))
484         (setq cdef (read (current-buffer)))
485         (when (find-charset (car cdef))
486           (goto-char (match-end 0))
487           (setq char
488                 (if (and
489                      (not (eq (car cdef) 'ideograph-daikanwa))
490                      (or (memq (car cdef) '(ascii latin-viscii-upper
491                                                   latin-viscii-lower
492                                                   arabic-iso8859-6
493                                                   japanese-jisx0213-1
494                                                   japanese-jisx0213-2))
495                          (= (char-int (charset-iso-final-char (car cdef)))
496                             0)))
497                     (apply (function make-char) cdef)
498                   (if (setq table (charset-mapping-table (car cdef)))
499                       (set-charset-mapping-table (car cdef) nil))
500                   (prog1
501                       (apply (function make-char) cdef)
502                     (if table
503                         (set-charset-mapping-table (car cdef) table)))))
504           (when (not (or (< (char-int char) 32)
505                          (and (<= 128 (char-int char))
506                               (< (char-int char) 160))))
507             (delete-region (point) (point-at-eol))
508             (insert (format "\t; %c" char)))
509           )))))
510
511 (defun insert-char-data-with-variant (char)
512   (insert-char-data char)
513   (let ((variants (or (char-variants char)
514                       (let ((ucs (get-char-attribute char '->ucs)))
515                         (if ucs
516                             (delete char (char-variants (int-char ucs))))))))
517     (while variants
518       (insert-char-data (car variants))
519       (setq variants (cdr variants))
520       )))
521
522 (defun insert-char-range-data (min max)
523   (let ((code min)
524         char)
525     (while (<= code max)
526       (setq char (int-char code))
527       (insert-char-data-with-variant char)
528       (setq code (1+ code))
529       )))
530
531 (defun write-char-range-data-to-file (min max file)
532   (let ((coding-system-for-write 'utf-8))
533     (with-temp-buffer
534       (insert-char-range-data min max)
535       (write-region (point-min)(point-max) file))))
536
537 (defvar what-character-original-window-configuration)
538
539 ;;;###autoload
540 (defun what-char-definition (char)
541   (interactive (list (char-after)))
542   (let ((buf (get-buffer-create "*Character Description*"))
543         (the-buf (current-buffer))
544         (win-conf (current-window-configuration)))
545     (pop-to-buffer buf)
546     (make-local-variable 'what-character-original-window-configuration)
547     (setq what-character-original-window-configuration win-conf)
548     (setq buffer-read-only nil)
549     (erase-buffer)
550     (condition-case err
551         (progn
552           (insert-char-data-with-variant char)
553           ;; (char-db-update-comment)
554           (set-buffer-modified-p nil)
555           (view-mode the-buf (lambda (buf)
556                                (set-window-configuration
557                                 what-character-original-window-configuration)
558                                ))
559           (goto-char (point-min)))
560       (error (progn
561                (set-window-configuration
562                 what-character-original-window-configuration)
563                (signal (car err) (cdr err)))))))
564
565 (provide 'char-db-util)
566
567 ;;; char-db-util.el ends here