(insert-char-attributes): Convert `=>ucs-gb' to `=>ucs@gb'.
[chise/xemacs-chise.git.1] / lisp / utf-2000 / char-db-util.el
1 ;;; char-db-util.el --- Character Database utility
2
3 ;; Copyright (C) 1998,1999,2000,2001,2002,2003 MORIOKA Tomohiko.
4
5 ;; Author: MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
6 ;; Keywords: UTF-2000, ISO/IEC 10646, Unicode, UCS-4, MULE.
7
8 ;; This file is part of XEmacs UTF-2000.
9
10 ;; XEmacs UTF-2000 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.
14
15 ;; XEmacs UTF-2000 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.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with XEmacs UTF-2000; 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.
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 (decode-char '=ucs (+ #x2EFF i)))
69       (setq i (1+ i)))
70     v))
71
72 (defvar char-db-ignored-attributes nil)
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                (if (charset-iso-final-char ka)
84                    (cond
85                     ((>= (charset-iso-final-char ka) ?@)
86                      (if (and (charset-iso-final-char kb)
87                               (>= (charset-iso-final-char kb) ?@))
88                          (< (charset-iso-final-char ka)
89                             (charset-iso-final-char kb))
90                        t))
91                     (t
92                      (if (charset-iso-final-char kb)
93                          (if (>= (charset-iso-final-char kb) ?@)
94                              nil
95                            (< (charset-iso-final-char ka)
96                               (charset-iso-final-char kb)))
97                        t)))
98                  (if (charset-iso-final-char kb)
99                      nil
100                    (< (charset-id ka)(charset-id kb)))))
101               ((<= (charset-chars ka)(charset-chars kb)))))
102        (t
103         (< (charset-dimension ka)
104            (charset-dimension kb))
105         )))
106      ((symbolp kb)
107       nil)
108      (t
109       t)))
110    ((find-charset kb)
111     t)
112    ((symbolp ka)
113     (cond ((symbolp kb)
114            (string< (symbol-name ka)
115                     (symbol-name kb)))
116           (t)))
117    ((symbolp kb)
118     nil)))
119
120 (defvar char-db-coded-charset-priority-list
121   '(ascii
122     control-1
123     latin-iso8859-1
124     latin-iso8859-2
125     latin-iso8859-3
126     latin-iso8859-4
127     latin-iso8859-9
128     latin-jisx0201
129     cyrillic-iso8859-5
130     greek-iso8859-7
131     thai-tis620
132     =jis-x0208
133     japanese-jisx0208
134     japanese-jisx0212
135     japanese-jisx0208-1978
136     chinese-gb2312
137     chinese-cns11643-1
138     chinese-cns11643-2
139     chinese-cns11643-3
140     chinese-cns11643-4
141     chinese-cns11643-5
142     chinese-cns11643-6
143     chinese-cns11643-7
144     =jis-x0213-1-2000
145     =jis-x0213-2-2000
146     korean-ksc5601
147     chinese-isoir165
148     katakana-jisx0201
149     hebrew-iso8859-8
150     =jis-x0208-1990
151     chinese-gb12345
152     latin-viscii
153     ethiopic-ucs
154     =gt
155     =big5-cdp
156     =gt-k
157     ideograph-daikanwa-2
158     ideograph-daikanwa
159     =cbeta
160     ideograph-hanziku-1
161     ideograph-hanziku-2
162     ideograph-hanziku-3
163     ideograph-hanziku-4
164     ideograph-hanziku-5
165     ideograph-hanziku-6
166     ideograph-hanziku-7
167     ideograph-hanziku-8
168     ideograph-hanziku-9
169     ideograph-hanziku-10
170     ideograph-hanziku-11
171     ideograph-hanziku-12
172     =cbeta
173     =jef-china3
174     =big5-eten
175     =big5))
176
177 (defun char-db-make-char-spec (char)
178   (let (ret char-spec)
179     (cond ((characterp char)
180            (cond ((and (setq ret (encode-char char '=ucs 'defined-only))
181                        (not (and (<= #xE000 ret)(<= ret #xF8FF))))
182                   (setq char-spec (list (cons '=ucs ret)))
183                   (cond ((setq ret (get-char-attribute char 'name))
184                          (setq char-spec (cons (cons 'name ret) char-spec))
185                          )
186                         ((setq ret (get-char-attribute char 'name*))
187                          (setq char-spec (cons (cons 'name* ret) char-spec))
188                          ))
189                   )
190                  ((setq ret
191                         (catch 'tag
192                           (let ((rest char-db-coded-charset-priority-list))
193                             (while rest
194                               (if (setq ret
195                                         (get-char-attribute char (car rest)))
196                                   (throw 'tag (cons (car rest) ret)))
197                               (setq rest (cdr rest))))))
198                   (setq char-spec (list ret))
199                   (dolist (ccs (delq (car ret) (charset-list)))
200                     (if (and (or (charset-iso-final-char ccs)
201                                  (memq ccs
202                                        '(ideograph-daikanwa
203                                          =daikanwa-rev2
204                                          ;; =gt-k
205                                          )))
206                              (setq ret (get-char-attribute char ccs)))
207                         (setq char-spec (cons (cons ccs ret) char-spec))))
208                   (if (null char-spec)
209                       (setq char-spec (split-char char)))
210                   (cond ((setq ret (get-char-attribute char 'name))
211                          (setq char-spec (cons (cons 'name ret) char-spec))
212                          )
213                         ((setq ret (get-char-attribute char 'name*))
214                          (setq char-spec (cons (cons 'name* ret) char-spec))
215                          ))
216                   ))
217            char-spec)
218           ((consp char)
219            char))))
220     
221 (defun char-db-insert-char-spec (char &optional readable column)
222   (unless column
223     (setq column (current-column)))
224   (let (char-spec ret al cal key temp-char)
225     (setq char-spec (char-db-make-char-spec char))
226     (unless (or (characterp char) ; char
227                 (condition-case nil
228                     (setq char (find-char char-spec))
229                   (error nil)))
230       ;; define temporary character
231       ;;   Current implementation is dirty.
232       (setq temp-char (define-char (cons '(ideograph-daikanwa . 0)
233                                          char-spec)))
234       (remove-char-attribute temp-char 'ideograph-daikanwa)
235       (setq char temp-char))
236     (setq al nil
237           cal nil)
238     (while char-spec
239       (setq key (car (car char-spec)))
240       (unless (memq key char-db-ignored-attributes)
241         (if (find-charset key)
242             (if (get-char-attribute char key)
243                 (setq cal (cons key cal)))
244           (setq al (cons key al))))
245       (setq char-spec (cdr char-spec)))
246     (unless cal
247       (setq char-spec (char-db-make-char-spec char))
248       (while char-spec
249         (setq key (car (car char-spec)))
250         (unless (memq key char-db-ignored-attributes)
251           (if (find-charset key)
252               (setq cal (cons key cal))
253             (setq al (cons key al))))
254         (setq char-spec (cdr char-spec)))
255       )
256     (unless (or cal
257                 (memq 'ideographic-structure al))
258       (push 'ideographic-structure al))
259     (insert-char-attributes char
260                             readable
261                             (or al 'none) cal)
262     (when temp-char
263       ;; undefine temporary character
264       ;;   Current implementation is dirty.
265       (setq char-spec (char-attribute-alist temp-char))
266       (while char-spec
267         (remove-char-attribute temp-char (car (car char-spec)))
268         (setq char-spec (cdr char-spec))))))
269
270 (defun char-db-insert-alist (alist &optional readable column)
271   (unless column
272     (setq column (current-column)))
273   (let ((line-breaking
274          (concat "\n" (make-string (1+ column) ?\ )))
275         name value
276         ret al cal key
277         lbs cell rest separator)
278     (insert "(")
279     (while alist
280       (setq name (car (car alist))
281             value (cdr (car alist)))
282       (cond ((eq name 'char)
283              (insert "(char . ")
284              (if (setq ret (condition-case nil
285                                (find-char value)
286                              (error nil)))
287                  (progn
288                    (setq al nil
289                          cal nil)
290                    (while value
291                      (setq key (car (car value)))
292                      (if (find-charset key)
293                          (setq cal (cons key cal))
294                        (setq al (cons key al)))
295                      (setq value (cdr value)))
296                    (insert-char-attributes ret
297                                            readable
298                                            (or al 'none) cal))
299                (insert (prin1-to-string value)))
300              (insert ")")
301              (insert line-breaking))
302             ((consp value)
303              (insert (format "(%-18s " name))
304              (setq lbs (concat "\n" (make-string (current-column) ?\ )))
305              (while (consp value)
306                (setq cell (car value))
307                (if (and (consp cell)
308                         (consp (car cell))
309                         (setq ret (condition-case nil
310                                       (find-char cell)
311                                     (error nil)))
312                         )
313                    (progn
314                      (setq rest cell
315                            al nil
316                            cal nil)
317                      (while rest
318                        (setq key (car (car rest)))
319                        (if (find-charset key)
320                            (setq cal (cons key cal))
321                          (setq al (cons key al)))
322                        (setq rest (cdr rest)))
323                      (if separator
324                          (insert lbs))
325                      (insert-char-attributes ret
326                                              readable
327                                              al cal)
328                      (setq separator lbs))
329                  (if separator
330                      (insert separator))
331                  (insert (prin1-to-string cell))
332                  (setq separator " "))
333                (setq value (cdr value)))
334              (insert ")")
335              (insert line-breaking))
336             (t
337              (insert (format "(%-18s . %S)%s"
338                              name value
339                              line-breaking))))
340       (setq alist (cdr alist))))
341   (insert ")"))
342
343 (defun char-db-insert-char-reference (plist &optional readable column)
344   (unless column
345     (setq column (current-column)))
346   (let ((line-breaking
347          (concat "\n" (make-string (1+ column) ?\ )))
348         (separator "")
349         name value)
350     (insert "(")
351     (while plist
352       (setq name (pop plist))
353       (setq value (pop plist))
354       (cond ((eq name :char)
355              (insert separator)
356              (insert ":char\t")
357              (cond ((numberp value)
358                     (setq value (decode-char '=ucs value)))
359                    ;; ((consp value)
360                    ;;  (setq value (or (find-char value)
361                    ;;                  value)))
362                    )
363              (char-db-insert-char-spec value readable)
364              (insert line-breaking)
365              (setq separator ""))
366             ((eq name :radical)
367              (insert (format "%s%s\t%d ; %c%s"
368                              separator
369                              name value
370                              (aref ideographic-radicals value)
371                              line-breaking))
372              (setq separator ""))
373             (t
374              (insert (format "%s%s\t%S" separator name value))
375              (setq separator line-breaking)))
376       ))
377   (insert ")"))
378
379 (defun char-db-decode-isolated-char (ccs code-point)
380   (let (ret)
381     (setq ret
382           (cond ((eq ccs 'arabic-iso8859-6)
383                  (decode-char ccs code-point))
384                 ((and (memq ccs '(=gt-pj-1
385                                   =gt-pj-2
386                                   =gt-pj-3
387                                   =gt-pj-4
388                                   =gt-pj-5
389                                   =gt-pj-6
390                                   =gt-pj-7
391                                   =gt-pj-8
392                                   =gt-pj-9
393                                   =gt-pj-10
394                                   =gt-pj-11))
395                       (setq ret (decode-char ccs code-point))
396                       (setq ret (get-char-attribute ret '=gt)))
397                  (decode-builtin-char '=gt ret))
398                 (t
399                  (decode-builtin-char ccs code-point))))
400     (cond ((and (<= 0 (char-int ret))
401                 (<= (char-int ret) #x1F))
402            (decode-char '=ucs (+ #x2400 (char-int ret))))
403           ((= (char-int ret) #x7F)
404            ?\u2421)
405           (t ret))))
406
407 (defvar char-db-convert-obsolete-format t)
408
409 (defun insert-char-attributes (char &optional readable
410                                     attributes ccs-attributes
411                                     column)
412   (let (atr-d ccs-d)
413     (setq attributes
414           (sort (if attributes
415                     (if (consp attributes)
416                         (progn
417                           (dolist (name attributes)
418                             (unless (memq name char-db-ignored-attributes)
419                               (push name atr-d)))
420                           atr-d))
421                   (dolist (name (char-attribute-list))
422                     (unless (memq name char-db-ignored-attributes)
423                       (if (find-charset name)
424                           (push name ccs-d)
425                         (push name atr-d))))
426                   atr-d)
427                 #'char-attribute-name<))
428     (setq ccs-attributes
429           (sort (if ccs-attributes
430                     (progn
431                       (setq ccs-d nil)
432                       (dolist (name ccs-attributes)
433                         (unless (memq name char-db-ignored-attributes)
434                           (push name ccs-d)))
435                       ccs-d)
436                   (or ccs-d
437                       (progn
438                         (dolist (name (charset-list))
439                           (unless (memq name char-db-ignored-attributes)
440                             (push name ccs-d)))
441                         ccs-d)))
442                 #'char-attribute-name<)))
443   (unless column
444     (setq column (current-column)))
445   (let (name value has-long-ccs-name rest
446         radical strokes
447         (line-breaking
448          (concat "\n" (make-string (1+ column) ?\ )))
449         lbs cell separator ret
450         key al cal)
451     (insert "(")
452     (when (and (memq 'name attributes)
453                (setq value (get-char-attribute char 'name)))
454       (insert (format
455                (if (> (+ (current-column) (length value)) 48)
456                    "(name . %S)%s"
457                  "(name               . %S)%s")
458                value line-breaking))
459       (setq attributes (delq 'name attributes))
460       )
461     (when (and (memq 'name* attributes)
462                (setq value (get-char-attribute char 'name*)))
463       (insert (format
464                (if (> (+ (current-column) (length value)) 48)
465                    "(name* . %S)%s"
466                  "(name*              . %S)%s")
467                value line-breaking))
468       (setq attributes (delq 'name* attributes))
469       )
470     (when (and (memq 'script attributes)
471                (setq value (get-char-attribute char 'script)))
472       (insert (format "(script\t\t%s)%s"
473                       (mapconcat (function prin1-to-string)
474                                  value " ")
475                       line-breaking))
476       (setq attributes (delq 'script attributes))
477       )
478     (dolist (name '(=>ucs =>ucs*))
479       (when (and (memq name attributes)
480                  (setq value (get-char-attribute char name)))
481         (insert (format "(%-18s . #x%04X)\t; %c%s"
482                         name value (decode-char '=ucs value)
483                         line-breaking))
484         (setq attributes (delq name attributes))))
485     ;; (when (and (memq '=>ucs* attributes)
486     ;;            (setq value (get-char-attribute char '=>ucs*)))
487     ;;   (insert (format "(=>ucs*\t\t. #x%04X)\t; %c%s"
488     ;;                   value (decode-char '=ucs value)
489     ;;                   line-breaking))
490     ;;   (setq attributes (delq '=>ucs* attributes))
491     ;;   )
492     (dolist (name '(=>ucs@gb))
493       (when (and (memq name attributes)
494                  (setq value (get-char-attribute char name)))
495         (insert (format "(%-18s . #x%04X)\t; %c%s"
496                         name value
497                         (decode-char (intern
498                                       (concat "="
499                                               (substring
500                                                (symbol-name name) 2)))
501                                      value)
502                         line-breaking))
503         (setq attributes (delq name attributes))
504         ))
505     (when (and (memq '=>ucs-gb attributes)
506                (setq value (get-char-attribute char '=>ucs-gb)))
507       (insert (format "(=>ucs@gb\t\t. #x%04X)\t; %c%s"
508                       value (decode-char '=ucs@gb value)
509                       line-breaking))
510       (setq attributes (delq '=>ucs-gb attributes))
511       )
512     (when (and (memq '=>ucs-cns attributes)
513                (setq value (get-char-attribute char '=>ucs-cns)))
514       (insert (format "(=>ucs-cns\t\t. #x%04X)\t; %c%s"
515                       value (decode-char 'ucs-cns value)
516                       line-breaking))
517       (setq attributes (delq '=>ucs-cns attributes))
518       )
519     (when (and (memq '=>ucs-big5 attributes)
520                (setq value (get-char-attribute char '=>ucs-big5)))
521       (insert (format "(=>ucs-big5\t\t. #x%04X)\t; %c%s"
522                       value (decode-char 'ucs-big5 value)
523                       line-breaking))
524       (setq attributes (delq '=>ucs-big5 attributes))
525       )
526     (when (and (memq '=>ucs-jis attributes)
527                (setq value (get-char-attribute char '=>ucs-jis)))
528       (insert (format "(=>ucs-jis\t\t. #x%04X)\t; %c%s"
529                       value (decode-char 'ucs-jis value)
530                       line-breaking))
531       (setq attributes (delq '=>ucs-jis attributes))
532       )
533     (when (and (memq '=>ucs-ks attributes)
534                (setq value (get-char-attribute char '=>ucs-ks)))
535       (insert (format "(=>ucs-ks\t\t. #x%04X)\t; %c%s"
536                       value (decode-char 'ucs-ks value)
537                       line-breaking))
538       (setq attributes (delq '=>ucs-ks attributes))
539       )
540     (when (and (memq '->ucs attributes)
541                (setq value (get-char-attribute char '->ucs)))
542       (insert (format (if char-db-convert-obsolete-format
543                           "(=>ucs\t\t. #x%04X)\t; %c%s"
544                         "(->ucs\t\t. #x%04X)\t; %c%s")
545                       value (decode-char '=ucs value)
546                       line-breaking))
547       (setq attributes (delq '->ucs attributes))
548       )
549     (when (and (memq 'general-category attributes)
550                (setq value (get-char-attribute char 'general-category)))
551       (insert (format
552                "(general-category\t%s) ; %s%s"
553                (mapconcat (lambda (cell)
554                             (format "%S" cell))
555                           value " ")
556                (cond ((rassoc value unidata-normative-category-alist)
557                       "Normative Category")
558                      ((rassoc value unidata-informative-category-alist)
559                       "Informative Category")
560                      (t
561                       "Unknown Category"))
562                line-breaking))
563       (setq attributes (delq 'general-category attributes))
564       )
565     (when (and (memq 'bidi-category attributes)
566                (setq value (get-char-attribute char 'bidi-category)))
567       (insert (format "(bidi-category\t. %S)%s"
568                       value
569                       line-breaking))
570       (setq attributes (delq 'bidi-category attributes))
571       )
572     (unless (or (not (memq 'mirrored attributes))
573                 (eq (setq value (get-char-attribute char 'mirrored 'empty))
574                     'empty))
575       (insert (format "(mirrored\t\t. %S)%s"
576                       value
577                       line-breaking))
578       (setq attributes (delq 'mirrored attributes))
579       )
580     (cond
581      ((and (memq 'decimal-digit-value attributes)
582            (setq value (get-char-attribute char 'decimal-digit-value)))
583       (insert (format "(decimal-digit-value . %S)%s"
584                       value
585                       line-breaking))
586       (setq attributes (delq 'decimal-digit-value attributes))
587       (when (and (memq 'digit-value attributes)
588                  (setq value (get-char-attribute char 'digit-value)))
589         (insert (format "(digit-value\t . %S)%s"
590                         value
591                         line-breaking))
592         (setq attributes (delq 'digit-value attributes))
593         )
594       (when (and (memq 'numeric-value attributes)
595                  (setq value (get-char-attribute char 'numeric-value)))
596         (insert (format "(numeric-value\t . %S)%s"
597                         value
598                         line-breaking))
599         (setq attributes (delq 'numeric-value attributes))
600         )
601       )
602      (t
603       (when (and (memq 'digit-value attributes)
604                  (setq value (get-char-attribute char 'digit-value)))
605         (insert (format "(digit-value\t. %S)%s"
606                         value
607                         line-breaking))
608         (setq attributes (delq 'digit-value attributes))
609         )
610       (when (and (memq 'numeric-value attributes)
611                  (setq value (get-char-attribute char 'numeric-value)))
612         (insert (format "(numeric-value\t. %S)%s"
613                         value
614                         line-breaking))
615         (setq attributes (delq 'numeric-value attributes))
616         )))
617     (when (and (memq 'iso-10646-comment attributes)
618                (setq value (get-char-attribute char 'iso-10646-comment)))
619       (insert (format "(iso-10646-comment\t. %S)%s"
620                       value
621                       line-breaking))
622       (setq attributes (delq 'iso-10646-comment attributes))
623       )
624     (when (and (memq 'morohashi-daikanwa attributes)
625                (setq value (get-char-attribute char 'morohashi-daikanwa)))
626       (insert (format "(morohashi-daikanwa\t%s)%s"
627                       (mapconcat (function prin1-to-string) value " ")
628                       line-breaking))
629       (setq attributes (delq 'morohashi-daikanwa attributes))
630       )
631     (setq radical nil
632           strokes nil)
633     (when (and (memq 'ideographic-radical attributes)
634                (setq value (get-char-attribute char 'ideographic-radical)))
635       (setq radical value)
636       (insert (format "(ideographic-radical . %S)\t; %c%s"
637                       radical
638                       (aref ideographic-radicals radical)
639                       line-breaking))
640       (setq attributes (delq 'ideographic-radical attributes))
641       )
642     (when (and (memq 'ideographic-strokes attributes)
643                (setq value (get-char-attribute char 'ideographic-strokes)))
644       (setq strokes value)
645       (insert (format "(ideographic-strokes . %S)%s"
646                       strokes
647                       line-breaking))
648       (setq attributes (delq 'ideographic-strokes attributes))
649       )
650     (when (and (memq 'kangxi-radical attributes)
651                (setq value (get-char-attribute char 'kangxi-radical)))
652       (unless (eq value radical)
653         (insert (format "(kangxi-radical\t . %S)\t; %c%s"
654                         value
655                         (aref ideographic-radicals value)
656                         line-breaking))
657         (or radical
658             (setq radical value)))
659       (setq attributes (delq 'kangxi-radical attributes))
660       )
661     (when (and (memq 'kangxi-strokes attributes)
662                (setq value (get-char-attribute char 'kangxi-strokes)))
663       (unless (eq value strokes)
664         (insert (format "(kangxi-strokes\t . %S)%s"
665                         value
666                         line-breaking))
667         (or strokes
668             (setq strokes value)))
669       (setq attributes (delq 'kangxi-strokes attributes))
670       )
671     (when (and (memq 'japanese-radical attributes)
672                (setq value (get-char-attribute char 'japanese-radical)))
673       (unless (eq value radical)
674         (insert (format "(japanese-radical\t . %S)\t; %c%s"
675                         value
676                         (aref ideographic-radicals value)
677                         line-breaking))
678         (or radical
679             (setq radical value)))
680       (setq attributes (delq 'japanese-radical attributes))
681       )
682     (when (and (memq 'japanese-strokes attributes)
683                (setq value (get-char-attribute char 'japanese-strokes)))
684       (unless (eq value strokes)
685         (insert (format "(japanese-strokes\t . %S)%s"
686                         value
687                         line-breaking))
688         (or strokes
689             (setq strokes value)))
690       (setq attributes (delq 'japanese-strokes attributes))
691       )
692     (when (and (memq 'cns-radical attributes)
693                (setq value (get-char-attribute char 'cns-radical)))
694       (insert (format "(cns-radical\t . %S)\t; %c%s"
695                       value
696                       (aref ideographic-radicals value)
697                       line-breaking))
698       (setq attributes (delq 'cns-radical attributes))
699       )
700     (when (and (memq 'cns-strokes attributes)
701                (setq value (get-char-attribute char 'cns-strokes)))
702       (unless (eq value strokes)
703         (insert (format "(cns-strokes\t . %S)%s"
704                         value
705                         line-breaking))
706         (or strokes
707             (setq strokes value)))
708       (setq attributes (delq 'cns-strokes attributes))
709       )
710     (when (and (memq 'shinjigen-1-radical attributes)
711                (setq value (get-char-attribute char 'shinjigen-1-radical)))
712       (unless (eq value radical)
713         (insert (format "(shinjigen-1-radical . %S)\t; %c%s"
714                         value
715                         (aref ideographic-radicals value)
716                         line-breaking))
717         (or radical
718             (setq radical value)))
719       (setq attributes (delq 'shinjigen-1-radical attributes))
720       )
721     (when (and (memq 'ideographic- attributes)
722                (setq value (get-char-attribute char 'ideographic-)))
723       (insert "(ideographic-       ")
724       (setq lbs (concat "\n" (make-string (current-column) ?\ ))
725             separator nil)
726       (while (consp value)
727         (setq cell (car value))
728         (if (integerp cell)
729             (setq cell (decode-char '=ucs cell)))
730         (cond ((characterp cell)
731                (if separator
732                    (insert lbs))
733                (if readable
734                    (insert (format "%S" cell))
735                  (char-db-insert-char-spec cell readable))
736                (setq separator lbs))
737               ((consp cell)
738                (if separator
739                    (insert lbs))
740                (if (consp (car cell))
741                    (char-db-insert-char-spec cell readable)
742                  (char-db-insert-char-reference cell readable))
743                (setq separator lbs))
744               (t
745                (if separator
746                    (insert separator))
747                (insert (prin1-to-string cell))
748                (setq separator " ")))
749         (setq value (cdr value)))
750       (insert ")")
751       (insert line-breaking)
752       (setq attributes (delq 'ideographic- attributes)))
753     (when (and (memq 'total-strokes attributes)
754                (setq value (get-char-attribute char 'total-strokes)))
755       (insert (format "(total-strokes       . %S)%s"
756                       value
757                       line-breaking))
758       (setq attributes (delq 'total-strokes attributes))
759       )
760     (when (and (memq '->ideograph attributes)
761                (setq value (get-char-attribute char '->ideograph)))
762       (insert (format "(->ideograph\t%s)%s"
763                       (mapconcat (lambda (code)
764                                    (cond ((symbolp code)
765                                           (symbol-name code))
766                                          ((integerp code)
767                                           (format "#x%04X" code))
768                                          (t
769                                           (format "%s %S"
770                                                   line-breaking code))))
771                                  value " ")
772                       line-breaking))
773       (setq attributes (delq '->ideograph attributes))
774       )
775     (when (and (memq '->decomposition attributes)
776                (setq value (get-char-attribute char '->decomposition)))
777       (insert (format "(->decomposition\t%s)%s"
778                       (mapconcat (lambda (code)
779                                    (cond ((symbolp code)
780                                           (symbol-name code))
781                                          ((characterp code)
782                                           (if readable
783                                               (format "%S" code)
784                                             (format "#x%04X"
785                                                     (char-int code))
786                                             ))
787                                          ((integerp code)
788                                           (format "#x%04X" code))
789                                          (t
790                                           (format "%s%S" line-breaking code))))
791                                  value " ")
792                       line-breaking))
793       (setq attributes (delq '->decomposition attributes))
794       )
795     (if (equal (get-char-attribute char '->titlecase)
796                (get-char-attribute char '->uppercase))
797         (setq attributes (delq '->titlecase attributes)))
798     (when (and (memq '->mojikyo attributes)
799                (setq value (get-char-attribute char '->mojikyo)))
800       (insert (format "(->mojikyo\t\t. %06d)\t; %c%s"
801                       value (decode-char 'mojikyo value)
802                       line-breaking))
803       (setq attributes (delq '->mojikyo attributes))
804       )
805     (when (and (memq 'hanyu-dazidian-vol attributes)
806                (setq value (get-char-attribute char 'hanyu-dazidian-vol)))
807       (insert (format "(hanyu-dazidian-vol  . %d)%s"
808                       value line-breaking))
809       (setq attributes (delq 'hanyu-dazidian-vol attributes))
810       )
811     (when (and (memq 'hanyu-dazidian-page attributes)
812                (setq value (get-char-attribute char 'hanyu-dazidian-page)))
813       (insert (format "(hanyu-dazidian-page . %d)%s"
814                       value line-breaking))
815       (setq attributes (delq 'hanyu-dazidian-page attributes))
816       )
817     (when (and (memq 'hanyu-dazidian-char attributes)
818                (setq value (get-char-attribute char 'hanyu-dazidian-char)))
819       (insert (format "(hanyu-dazidian-char . %d)%s"
820                       value line-breaking))
821       (setq attributes (delq 'hanyu-dazidian-char attributes))
822       )
823     (unless readable
824       (when (memq '->ucs-variants attributes)
825         (setq attributes (delq '->ucs-variants attributes))
826         )
827       (when (memq 'composition attributes)
828         (setq attributes (delq 'composition attributes))
829         ))
830     (setq rest ccs-attributes)
831     (while (and rest
832                 (progn
833                   (setq value (get-char-attribute char (car rest)))
834                   (if value
835                       (if (>= (length (symbol-name (car rest))) 19)
836                           (progn
837                             (setq has-long-ccs-name t)
838                             nil)
839                         t)
840                     t)))
841       (setq rest (cdr rest)))
842     (while attributes
843       (setq name (car attributes))
844       (if (setq value (get-char-attribute char name))
845           (cond ((string-match "^=>ucs@" (symbol-name name))
846                  (insert (format "(%-18s . #x%04X)\t; %c%s"
847                                  name value (decode-char '=ucs value)
848                                  line-breaking))
849                  )
850                 ((eq name 'jisx0208-1978/4X)
851                  (insert (format "(%-18s . #x%04X)%s"
852                                  name value
853                                  line-breaking)))
854                 ((or (eq name 'ideographic-structure)
855                      (eq name 'ideographic-)
856                      (string-match "^\\(->\\|<-\\)" (symbol-name name)))
857                  (insert (format "(%-18s%s " name line-breaking))
858                  (setq lbs (concat "\n" (make-string (current-column) ?\ ))
859                        separator nil)
860                  (while (consp value)
861                    (setq cell (car value))
862                    (if (integerp cell)
863                        (setq cell (decode-char '=ucs cell)))
864                    (cond ((characterp cell)
865                           (if separator
866                               (insert lbs))
867                           (if readable
868                               (insert (format "%S" cell))
869                             (char-db-insert-char-spec cell readable))
870                           (setq separator lbs))
871                          ((consp cell)
872                           (if separator
873                               (insert lbs))
874                           (if (consp (car cell))
875                               (char-db-insert-char-spec cell readable)
876                             (char-db-insert-char-reference cell readable))
877                           (setq separator lbs))
878                          (t
879                           (if separator
880                               (insert separator))
881                           (insert (prin1-to-string cell))
882                           (setq separator " ")))
883                    (setq value (cdr value)))
884                  (insert ")")
885                  (insert line-breaking))
886                 ((memq name '(ideograph=
887                               original-ideograph-of
888                               ancient-ideograph-of
889                               vulgar-ideograph-of
890                               wrong-ideograph-of
891                               simplified-ideograph-of
892                               ideographic-variants
893                               ideographic-different-form-of))
894                  (insert (format "(%-18s%s " name line-breaking))
895                  (setq lbs (concat "\n" (make-string (current-column) ?\ ))
896                        separator nil)
897                  (while (consp value)
898                    (setq cell (car value))
899                    (if (and (consp cell)
900                             (consp (car cell)))
901                        (progn
902                          (if separator
903                              (insert lbs))
904                          (char-db-insert-alist cell readable)
905                          (setq separator lbs))
906                      (if separator
907                          (insert separator))
908                      (insert (prin1-to-string cell))
909                      (setq separator " "))
910                    (setq value (cdr value)))
911                  (insert ")")
912                  (insert line-breaking))
913                 ;; ((string-match "^->" (symbol-name name))
914                 ;;  (insert
915                 ;;   (format "(%-18s %s)%s"
916                 ;;           name
917                 ;;           (mapconcat (lambda (code)
918                 ;;                        (cond ((symbolp code)
919                 ;;                               (symbol-name code))
920                 ;;                              ((integerp code)
921                 ;;                               (format "#x%04X" code))
922                 ;;                              (t
923                 ;;                               (format "%s%S"
924                 ;;                                       line-breaking code))))
925                 ;;                      value " ")
926                 ;;           line-breaking)))
927                 ((consp value)
928                  (insert (format "(%-18s " name))
929                  (setq lbs (concat "\n" (make-string (current-column) ?\ ))
930                        separator nil)
931                  (while (consp value)
932                    (setq cell (car value))
933                    (if (and (consp cell)
934                             (consp (car cell))
935                             (setq ret (condition-case nil
936                                           (find-char cell)
937                                         (error nil))))
938                        (progn
939                          (setq rest cell
940                                al nil
941                                cal nil)
942                          (while rest
943                            (setq key (car (car rest)))
944                            (if (find-charset key)
945                                (setq cal (cons key cal))
946                              (setq al (cons key al)))
947                            (setq rest (cdr rest)))
948                          (if separator
949                              (insert lbs))
950                          (insert-char-attributes ret
951                                                  readable
952                                                  al cal)
953                          (setq separator lbs))
954                      (if separator
955                          (insert separator))
956                      (insert (prin1-to-string cell))
957                      (setq separator " "))
958                    (setq value (cdr value)))
959                  (insert ")")
960                  (insert line-breaking))
961                 (t
962                  (insert (format "(%-18s . %S)%s"
963                                  name value
964                                  line-breaking)))
965                 ))
966       (setq attributes (cdr attributes)))
967     (while ccs-attributes
968       (setq name (car ccs-attributes))
969       (if (and (eq name (charset-name name))
970                (setq value (get-char-attribute char name)))
971           (insert
972            (format
973             (cond ((memq name '(ideograph-daikanwa
974                                 =daikanwa-rev1
975                                 =daikanwa-rev2
976                                 =gt =gt-k =cbeta))
977                    (if has-long-ccs-name
978                        "(%-26s . %05d)\t; %c%s"
979                      "(%-18s . %05d)\t; %c%s"))
980                   ((eq name 'mojikyo)
981                    (if has-long-ccs-name
982                        "(%-26s . %06d)\t; %c%s"
983                      "(%-18s . %06d)\t; %c%s"))
984                   ((>= (charset-dimension name) 2)
985                    (if has-long-ccs-name
986                        "(%-26s . #x%04X)\t; %c%s"
987                      "(%-18s . #x%04X)\t; %c%s"))
988                   (t
989                    (if has-long-ccs-name
990                        "(%-26s . #x%02X)\t; %c%s"
991                      "(%-18s . #x%02X)\t; %c%s")))
992             name
993             (if (= (charset-iso-graphic-plane name) 1)
994                 (logior value
995                         (cond ((= (charset-dimension name) 1)
996                                #x80)
997                               ((= (charset-dimension name) 2)
998                                #x8080)
999                               ((= (charset-dimension name) 3)
1000                                #x808080)
1001                               (t 0)))
1002               value)
1003             (char-db-decode-isolated-char name value)
1004             line-breaking)))
1005       (setq ccs-attributes (cdr ccs-attributes)))
1006     (insert ")")))
1007
1008 (defun insert-char-data (char &optional readable
1009                               attributes ccs-attributes)
1010   (save-restriction
1011     (narrow-to-region (point)(point))
1012     (insert "(define-char
1013   '")
1014     (insert-char-attributes char readable
1015                             attributes ccs-attributes)
1016     (insert ")\n")
1017     (goto-char (point-min))
1018     (while (re-search-forward "[ \t]+$" nil t)
1019       (replace-match ""))
1020     ;; from tabify.
1021     (goto-char (point-min))
1022     (while (re-search-forward "[ \t][ \t][ \t]*" nil t)
1023       (let ((column (current-column))
1024             (indent-tabs-mode t))
1025         (delete-region (match-beginning 0) (point))
1026         (indent-to column)))
1027     (goto-char (point-max))
1028     ;; (tabify (point-min)(point-max))
1029     ))
1030
1031 (defun insert-char-data-with-variant (char &optional printable
1032                                            no-ucs-variant
1033                                            script excluded-script)
1034   (insert-char-data char printable)
1035   (let ((variants (or (char-variants char)
1036                       (let ((ucs (get-char-attribute char '->ucs)))
1037                         (if ucs
1038                             (delete char (char-variants (int-char ucs)))))))
1039         variant vs)
1040     (setq variants (sort variants #'<))
1041     (while variants
1042       (setq variant (car variants))
1043       (if (and (or (null script)
1044                    (null (setq vs (get-char-attribute variant 'script)))
1045                    (memq script vs))
1046                (or (null excluded-script)
1047                    (null (setq vs (get-char-attribute variant 'script)))
1048                    (not (memq excluded-script vs))))
1049           (or (and no-ucs-variant (get-char-attribute variant '=ucs))
1050               (insert-char-data variant printable)))
1051       (setq variants (cdr variants))
1052       )))
1053
1054 (defun insert-char-range-data (min max &optional script excluded-script)
1055   (let ((code min)
1056         char)
1057     (while (<= code max)
1058       (setq char (decode-char '=ucs code))
1059       (if (encode-char char '=ucs 'defined-only)
1060           (insert-char-data-with-variant char nil 'no-ucs-variant
1061                                          script excluded-script))
1062       (setq code (1+ code)))))
1063
1064 (defun write-char-range-data-to-file (min max file
1065                                           &optional script excluded-script)
1066   (let ((coding-system-for-write 'utf-8))
1067     (with-temp-buffer
1068       (insert-char-range-data min max script excluded-script)
1069       (write-region (point-min)(point-max) file))))
1070
1071 (defvar what-character-original-window-configuration)
1072
1073 ;;;###autoload
1074 (defun what-char-definition (char)
1075   (interactive (list (char-after)))
1076   (let ((buf (get-buffer-create "*Character Description*"))
1077         (the-buf (current-buffer))
1078         (win-conf (current-window-configuration)))
1079     (pop-to-buffer buf)
1080     (make-local-variable 'what-character-original-window-configuration)
1081     (setq what-character-original-window-configuration win-conf)
1082     (setq buffer-read-only nil)
1083     (erase-buffer)
1084     (condition-case err
1085         (progn
1086           (insert-char-data-with-variant char 'printable)
1087           (unless (char-attribute-alist char)
1088             (insert (format ";; = %c\n"
1089                             (let* ((rest (split-char char))
1090                                    (ccs (pop rest))
1091                                    (code (pop rest)))
1092                               (while rest
1093                                 (setq code (logior (lsh code 8)
1094                                                    (pop rest))))
1095                               (decode-char ccs code)))))
1096           ;; (char-db-update-comment)
1097           (set-buffer-modified-p nil)
1098           (view-mode the-buf (lambda (buf)
1099                                (set-window-configuration
1100                                 what-character-original-window-configuration)
1101                                ))
1102           (goto-char (point-min)))
1103       (error (progn
1104                (set-window-configuration
1105                 what-character-original-window-configuration)
1106                (signal (car err) (cdr err)))))))
1107
1108 (provide 'char-db-util)
1109
1110 ;;; char-db-util.el ends here