(char-db-make-char-spec): Regard `=daikanwa-rev2' as same as
[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     (when (and (memq '=>ucs attributes)
479                (setq value (get-char-attribute char '=>ucs)))
480       (insert (format "(=>ucs\t\t. #x%04X)\t; %c%s"
481                       value (decode-char '=ucs value)
482                       line-breaking))
483       (setq attributes (delq '=>ucs attributes))
484       )
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     (when (and (memq '=>ucs-gb attributes)
493                (setq value (get-char-attribute char '=>ucs-gb)))
494       (insert (format "(=>ucs-gb\t\t. #x%04X)\t; %c%s"
495                       value (decode-char '=ucs value)
496                       line-breaking))
497       (setq attributes (delq '=>ucs-gb attributes))
498       )
499     (when (and (memq '=>ucs-cns attributes)
500                (setq value (get-char-attribute char '=>ucs-cns)))
501       (insert (format "(=>ucs-cns\t\t. #x%04X)\t; %c%s"
502                       value (decode-char 'ucs-cns value)
503                       line-breaking))
504       (setq attributes (delq '=>ucs-cns attributes))
505       )
506     (when (and (memq '=>ucs-big5 attributes)
507                (setq value (get-char-attribute char '=>ucs-big5)))
508       (insert (format "(=>ucs-big5\t\t. #x%04X)\t; %c%s"
509                       value (decode-char 'ucs-big5 value)
510                       line-breaking))
511       (setq attributes (delq '=>ucs-big5 attributes))
512       )
513     (when (and (memq '=>ucs-jis attributes)
514                (setq value (get-char-attribute char '=>ucs-jis)))
515       (insert (format "(=>ucs-jis\t\t. #x%04X)\t; %c%s"
516                       value (decode-char 'ucs-jis value)
517                       line-breaking))
518       (setq attributes (delq '=>ucs-jis attributes))
519       )
520     (when (and (memq '=>ucs-ks attributes)
521                (setq value (get-char-attribute char '=>ucs-ks)))
522       (insert (format "(=>ucs-ks\t\t. #x%04X)\t; %c%s"
523                       value (decode-char 'ucs-ks value)
524                       line-breaking))
525       (setq attributes (delq '=>ucs-ks attributes))
526       )
527     (when (and (memq '->ucs attributes)
528                (setq value (get-char-attribute char '->ucs)))
529       (insert (format (if char-db-convert-obsolete-format
530                           "(=>ucs\t\t. #x%04X)\t; %c%s"
531                         "(->ucs\t\t. #x%04X)\t; %c%s")
532                       value (decode-char '=ucs value)
533                       line-breaking))
534       (setq attributes (delq '->ucs attributes))
535       )
536     (when (and (memq 'general-category attributes)
537                (setq value (get-char-attribute char 'general-category)))
538       (insert (format
539                "(general-category\t%s) ; %s%s"
540                (mapconcat (lambda (cell)
541                             (format "%S" cell))
542                           value " ")
543                (cond ((rassoc value unidata-normative-category-alist)
544                       "Normative Category")
545                      ((rassoc value unidata-informative-category-alist)
546                       "Informative Category")
547                      (t
548                       "Unknown Category"))
549                line-breaking))
550       (setq attributes (delq 'general-category attributes))
551       )
552     (when (and (memq 'bidi-category attributes)
553                (setq value (get-char-attribute char 'bidi-category)))
554       (insert (format "(bidi-category\t. %S)%s"
555                       value
556                       line-breaking))
557       (setq attributes (delq 'bidi-category attributes))
558       )
559     (unless (or (not (memq 'mirrored attributes))
560                 (eq (setq value (get-char-attribute char 'mirrored 'empty))
561                     'empty))
562       (insert (format "(mirrored\t\t. %S)%s"
563                       value
564                       line-breaking))
565       (setq attributes (delq 'mirrored attributes))
566       )
567     (cond
568      ((and (memq 'decimal-digit-value attributes)
569            (setq value (get-char-attribute char 'decimal-digit-value)))
570       (insert (format "(decimal-digit-value . %S)%s"
571                       value
572                       line-breaking))
573       (setq attributes (delq 'decimal-digit-value attributes))
574       (when (and (memq 'digit-value attributes)
575                  (setq value (get-char-attribute char 'digit-value)))
576         (insert (format "(digit-value\t . %S)%s"
577                         value
578                         line-breaking))
579         (setq attributes (delq 'digit-value attributes))
580         )
581       (when (and (memq 'numeric-value attributes)
582                  (setq value (get-char-attribute char 'numeric-value)))
583         (insert (format "(numeric-value\t . %S)%s"
584                         value
585                         line-breaking))
586         (setq attributes (delq 'numeric-value attributes))
587         )
588       )
589      (t
590       (when (and (memq 'digit-value attributes)
591                  (setq value (get-char-attribute char 'digit-value)))
592         (insert (format "(digit-value\t. %S)%s"
593                         value
594                         line-breaking))
595         (setq attributes (delq 'digit-value attributes))
596         )
597       (when (and (memq 'numeric-value attributes)
598                  (setq value (get-char-attribute char 'numeric-value)))
599         (insert (format "(numeric-value\t. %S)%s"
600                         value
601                         line-breaking))
602         (setq attributes (delq 'numeric-value attributes))
603         )))
604     (when (and (memq 'iso-10646-comment attributes)
605                (setq value (get-char-attribute char 'iso-10646-comment)))
606       (insert (format "(iso-10646-comment\t. %S)%s"
607                       value
608                       line-breaking))
609       (setq attributes (delq 'iso-10646-comment attributes))
610       )
611     (when (and (memq 'morohashi-daikanwa attributes)
612                (setq value (get-char-attribute char 'morohashi-daikanwa)))
613       (insert (format "(morohashi-daikanwa\t%s)%s"
614                       (mapconcat (function prin1-to-string) value " ")
615                       line-breaking))
616       (setq attributes (delq 'morohashi-daikanwa attributes))
617       )
618     (setq radical nil
619           strokes nil)
620     (when (and (memq 'ideographic-radical attributes)
621                (setq value (get-char-attribute char 'ideographic-radical)))
622       (setq radical value)
623       (insert (format "(ideographic-radical . %S)\t; %c%s"
624                       radical
625                       (aref ideographic-radicals radical)
626                       line-breaking))
627       (setq attributes (delq 'ideographic-radical attributes))
628       )
629     (when (and (memq 'ideographic-strokes attributes)
630                (setq value (get-char-attribute char 'ideographic-strokes)))
631       (setq strokes value)
632       (insert (format "(ideographic-strokes . %S)%s"
633                       strokes
634                       line-breaking))
635       (setq attributes (delq 'ideographic-strokes attributes))
636       )
637     (when (and (memq 'kangxi-radical attributes)
638                (setq value (get-char-attribute char 'kangxi-radical)))
639       (unless (eq value radical)
640         (insert (format "(kangxi-radical\t . %S)\t; %c%s"
641                         value
642                         (aref ideographic-radicals value)
643                         line-breaking))
644         (or radical
645             (setq radical value)))
646       (setq attributes (delq 'kangxi-radical attributes))
647       )
648     (when (and (memq 'kangxi-strokes attributes)
649                (setq value (get-char-attribute char 'kangxi-strokes)))
650       (unless (eq value strokes)
651         (insert (format "(kangxi-strokes\t . %S)%s"
652                         value
653                         line-breaking))
654         (or strokes
655             (setq strokes value)))
656       (setq attributes (delq 'kangxi-strokes attributes))
657       )
658     (when (and (memq 'japanese-radical attributes)
659                (setq value (get-char-attribute char 'japanese-radical)))
660       (unless (eq value radical)
661         (insert (format "(japanese-radical\t . %S)\t; %c%s"
662                         value
663                         (aref ideographic-radicals value)
664                         line-breaking))
665         (or radical
666             (setq radical value)))
667       (setq attributes (delq 'japanese-radical attributes))
668       )
669     (when (and (memq 'japanese-strokes attributes)
670                (setq value (get-char-attribute char 'japanese-strokes)))
671       (unless (eq value strokes)
672         (insert (format "(japanese-strokes\t . %S)%s"
673                         value
674                         line-breaking))
675         (or strokes
676             (setq strokes value)))
677       (setq attributes (delq 'japanese-strokes attributes))
678       )
679     (when (and (memq 'cns-radical attributes)
680                (setq value (get-char-attribute char 'cns-radical)))
681       (insert (format "(cns-radical\t . %S)\t; %c%s"
682                       value
683                       (aref ideographic-radicals value)
684                       line-breaking))
685       (setq attributes (delq 'cns-radical attributes))
686       )
687     (when (and (memq 'cns-strokes attributes)
688                (setq value (get-char-attribute char 'cns-strokes)))
689       (unless (eq value strokes)
690         (insert (format "(cns-strokes\t . %S)%s"
691                         value
692                         line-breaking))
693         (or strokes
694             (setq strokes value)))
695       (setq attributes (delq 'cns-strokes attributes))
696       )
697     (when (and (memq 'shinjigen-1-radical attributes)
698                (setq value (get-char-attribute char 'shinjigen-1-radical)))
699       (unless (eq value radical)
700         (insert (format "(shinjigen-1-radical . %S)\t; %c%s"
701                         value
702                         (aref ideographic-radicals value)
703                         line-breaking))
704         (or radical
705             (setq radical value)))
706       (setq attributes (delq 'shinjigen-1-radical attributes))
707       )
708     (when (and (memq 'ideographic- attributes)
709                (setq value (get-char-attribute char 'ideographic-)))
710       (insert "(ideographic-       ")
711       (setq lbs (concat "\n" (make-string (current-column) ?\ ))
712             separator nil)
713       (while (consp value)
714         (setq cell (car value))
715         (if (integerp cell)
716             (setq cell (decode-char '=ucs cell)))
717         (cond ((characterp cell)
718                (if separator
719                    (insert lbs))
720                (if readable
721                    (insert (format "%S" cell))
722                  (char-db-insert-char-spec cell readable))
723                (setq separator lbs))
724               ((consp cell)
725                (if separator
726                    (insert lbs))
727                (if (consp (car cell))
728                    (char-db-insert-char-spec cell readable)
729                  (char-db-insert-char-reference cell readable))
730                (setq separator lbs))
731               (t
732                (if separator
733                    (insert separator))
734                (insert (prin1-to-string cell))
735                (setq separator " ")))
736         (setq value (cdr value)))
737       (insert ")")
738       (insert line-breaking)
739       (setq attributes (delq 'ideographic- attributes)))
740     (when (and (memq 'total-strokes attributes)
741                (setq value (get-char-attribute char 'total-strokes)))
742       (insert (format "(total-strokes       . %S)%s"
743                       value
744                       line-breaking))
745       (setq attributes (delq 'total-strokes attributes))
746       )
747     (when (and (memq '->ideograph attributes)
748                (setq value (get-char-attribute char '->ideograph)))
749       (insert (format "(->ideograph\t%s)%s"
750                       (mapconcat (lambda (code)
751                                    (cond ((symbolp code)
752                                           (symbol-name code))
753                                          ((integerp code)
754                                           (format "#x%04X" code))
755                                          (t
756                                           (format "%s %S"
757                                                   line-breaking code))))
758                                  value " ")
759                       line-breaking))
760       (setq attributes (delq '->ideograph attributes))
761       )
762     (when (and (memq '->decomposition attributes)
763                (setq value (get-char-attribute char '->decomposition)))
764       (insert (format "(->decomposition\t%s)%s"
765                       (mapconcat (lambda (code)
766                                    (cond ((symbolp code)
767                                           (symbol-name code))
768                                          ((characterp code)
769                                           (if readable
770                                               (format "%S" code)
771                                             (format "#x%04X"
772                                                     (char-int code))
773                                             ))
774                                          ((integerp code)
775                                           (format "#x%04X" code))
776                                          (t
777                                           (format "%s%S" line-breaking code))))
778                                  value " ")
779                       line-breaking))
780       (setq attributes (delq '->decomposition attributes))
781       )
782     (if (equal (get-char-attribute char '->titlecase)
783                (get-char-attribute char '->uppercase))
784         (setq attributes (delq '->titlecase attributes)))
785     (when (and (memq '->mojikyo attributes)
786                (setq value (get-char-attribute char '->mojikyo)))
787       (insert (format "(->mojikyo\t\t. %06d)\t; %c%s"
788                       value (decode-char 'mojikyo value)
789                       line-breaking))
790       (setq attributes (delq '->mojikyo attributes))
791       )
792     (when (and (memq 'hanyu-dazidian-vol attributes)
793                (setq value (get-char-attribute char 'hanyu-dazidian-vol)))
794       (insert (format "(hanyu-dazidian-vol  . %d)%s"
795                       value line-breaking))
796       (setq attributes (delq 'hanyu-dazidian-vol attributes))
797       )
798     (when (and (memq 'hanyu-dazidian-page attributes)
799                (setq value (get-char-attribute char 'hanyu-dazidian-page)))
800       (insert (format "(hanyu-dazidian-page . %d)%s"
801                       value line-breaking))
802       (setq attributes (delq 'hanyu-dazidian-page attributes))
803       )
804     (when (and (memq 'hanyu-dazidian-char attributes)
805                (setq value (get-char-attribute char 'hanyu-dazidian-char)))
806       (insert (format "(hanyu-dazidian-char . %d)%s"
807                       value line-breaking))
808       (setq attributes (delq 'hanyu-dazidian-char attributes))
809       )
810     (unless readable
811       (when (memq '->ucs-variants attributes)
812         (setq attributes (delq '->ucs-variants attributes))
813         )
814       (when (memq 'composition attributes)
815         (setq attributes (delq 'composition attributes))
816         ))
817     (setq rest ccs-attributes)
818     (while (and rest
819                 (progn
820                   (setq value (get-char-attribute char (car rest)))
821                   (if value
822                       (if (>= (length (symbol-name (car rest))) 19)
823                           (progn
824                             (setq has-long-ccs-name t)
825                             nil)
826                         t)
827                     t)))
828       (setq rest (cdr rest)))
829     (while attributes
830       (setq name (car attributes))
831       (if (setq value (get-char-attribute char name))
832           (cond ((eq name 'jisx0208-1978/4X)
833                  (insert (format "(%-18s . #x%04X)%s"
834                                  name value
835                                  line-breaking)))
836                 ((or (eq name 'ideographic-structure)
837                      (eq name 'ideographic-)
838                      (string-match "^\\(->\\|<-\\)" (symbol-name name)))
839                  (insert (format "(%-18s%s " name line-breaking))
840                  (setq lbs (concat "\n" (make-string (current-column) ?\ ))
841                        separator nil)
842                  (while (consp value)
843                    (setq cell (car value))
844                    (if (integerp cell)
845                        (setq cell (decode-char '=ucs cell)))
846                    (cond ((characterp cell)
847                           (if separator
848                               (insert lbs))
849                           (if readable
850                               (insert (format "%S" cell))
851                             (char-db-insert-char-spec cell readable))
852                           (setq separator lbs))
853                          ((consp cell)
854                           (if separator
855                               (insert lbs))
856                           (if (consp (car cell))
857                               (char-db-insert-char-spec cell readable)
858                             (char-db-insert-char-reference cell readable))
859                           (setq separator lbs))
860                          (t
861                           (if separator
862                               (insert separator))
863                           (insert (prin1-to-string cell))
864                           (setq separator " ")))
865                    (setq value (cdr value)))
866                  (insert ")")
867                  (insert line-breaking))
868                 ((memq name '(ideograph=
869                               original-ideograph-of
870                               ancient-ideograph-of
871                               vulgar-ideograph-of
872                               wrong-ideograph-of
873                               simplified-ideograph-of
874                               ideographic-variants
875                               ideographic-different-form-of))
876                  (insert (format "(%-18s%s " name line-breaking))
877                  (setq lbs (concat "\n" (make-string (current-column) ?\ ))
878                        separator nil)
879                  (while (consp value)
880                    (setq cell (car value))
881                    (if (and (consp cell)
882                             (consp (car cell)))
883                        (progn
884                          (if separator
885                              (insert lbs))
886                          (char-db-insert-alist cell readable)
887                          (setq separator lbs))
888                      (if separator
889                          (insert separator))
890                      (insert (prin1-to-string cell))
891                      (setq separator " "))
892                    (setq value (cdr value)))
893                  (insert ")")
894                  (insert line-breaking))
895                 ;; ((string-match "^->" (symbol-name name))
896                 ;;  (insert
897                 ;;   (format "(%-18s %s)%s"
898                 ;;           name
899                 ;;           (mapconcat (lambda (code)
900                 ;;                        (cond ((symbolp code)
901                 ;;                               (symbol-name code))
902                 ;;                              ((integerp code)
903                 ;;                               (format "#x%04X" code))
904                 ;;                              (t
905                 ;;                               (format "%s%S"
906                 ;;                                       line-breaking code))))
907                 ;;                      value " ")
908                 ;;           line-breaking)))
909                 ((consp value)
910                  (insert (format "(%-18s " name))
911                  (setq lbs (concat "\n" (make-string (current-column) ?\ ))
912                        separator nil)
913                  (while (consp value)
914                    (setq cell (car value))
915                    (if (and (consp cell)
916                             (consp (car cell))
917                             (setq ret (condition-case nil
918                                           (find-char cell)
919                                         (error nil))))
920                        (progn
921                          (setq rest cell
922                                al nil
923                                cal nil)
924                          (while rest
925                            (setq key (car (car rest)))
926                            (if (find-charset key)
927                                (setq cal (cons key cal))
928                              (setq al (cons key al)))
929                            (setq rest (cdr rest)))
930                          (if separator
931                              (insert lbs))
932                          (insert-char-attributes ret
933                                                  readable
934                                                  al cal)
935                          (setq separator lbs))
936                      (if separator
937                          (insert separator))
938                      (insert (prin1-to-string cell))
939                      (setq separator " "))
940                    (setq value (cdr value)))
941                  (insert ")")
942                  (insert line-breaking))
943                 (t
944                  (insert (format "(%-18s . %S)%s"
945                                  name value
946                                  line-breaking)))
947                 ))
948       (setq attributes (cdr attributes)))
949     (while ccs-attributes
950       (setq name (car ccs-attributes))
951       (if (and (eq name (charset-name name))
952                (setq value (get-char-attribute char name)))
953           (insert
954            (format
955             (cond ((memq name '(ideograph-daikanwa
956                                 =daikanwa-rev1
957                                 =daikanwa-rev2
958                                 =gt =gt-k =cbeta))
959                    (if has-long-ccs-name
960                        "(%-26s . %05d)\t; %c%s"
961                      "(%-18s . %05d)\t; %c%s"))
962                   ((eq name 'mojikyo)
963                    (if has-long-ccs-name
964                        "(%-26s . %06d)\t; %c%s"
965                      "(%-18s . %06d)\t; %c%s"))
966                   ((>= (charset-dimension name) 2)
967                    (if has-long-ccs-name
968                        "(%-26s . #x%04X)\t; %c%s"
969                      "(%-18s . #x%04X)\t; %c%s"))
970                   (t
971                    (if has-long-ccs-name
972                        "(%-26s . #x%02X)\t; %c%s"
973                      "(%-18s . #x%02X)\t; %c%s")))
974             name
975             (if (= (charset-iso-graphic-plane name) 1)
976                 (logior value
977                         (cond ((= (charset-dimension name) 1)
978                                #x80)
979                               ((= (charset-dimension name) 2)
980                                #x8080)
981                               ((= (charset-dimension name) 3)
982                                #x808080)
983                               (t 0)))
984               value)
985             (char-db-decode-isolated-char name value)
986             line-breaking)))
987       (setq ccs-attributes (cdr ccs-attributes)))
988     (insert ")")))
989
990 (defun insert-char-data (char &optional readable
991                               attributes ccs-attributes)
992   (save-restriction
993     (narrow-to-region (point)(point))
994     (insert "(define-char
995   '")
996     (insert-char-attributes char readable
997                             attributes ccs-attributes)
998     (insert ")\n")
999     (goto-char (point-min))
1000     (while (re-search-forward "[ \t]+$" nil t)
1001       (replace-match ""))
1002     ;; from tabify.
1003     (goto-char (point-min))
1004     (while (re-search-forward "[ \t][ \t][ \t]*" nil t)
1005       (let ((column (current-column))
1006             (indent-tabs-mode t))
1007         (delete-region (match-beginning 0) (point))
1008         (indent-to column)))
1009     (goto-char (point-max))
1010     ;; (tabify (point-min)(point-max))
1011     ))
1012
1013 (defun insert-char-data-with-variant (char &optional printable
1014                                            no-ucs-variant
1015                                            script excluded-script)
1016   (insert-char-data char printable)
1017   (let ((variants (or (char-variants char)
1018                       (let ((ucs (get-char-attribute char '->ucs)))
1019                         (if ucs
1020                             (delete char (char-variants (int-char ucs)))))))
1021         variant vs)
1022     (setq variants (sort variants #'<))
1023     (while variants
1024       (setq variant (car variants))
1025       (if (and (or (null script)
1026                    (null (setq vs (get-char-attribute variant 'script)))
1027                    (memq script vs))
1028                (or (null excluded-script)
1029                    (null (setq vs (get-char-attribute variant 'script)))
1030                    (not (memq excluded-script vs))))
1031           (or (and no-ucs-variant (get-char-attribute variant '=ucs))
1032               (insert-char-data variant printable)))
1033       (setq variants (cdr variants))
1034       )))
1035
1036 (defun insert-char-range-data (min max &optional script excluded-script)
1037   (let ((code min)
1038         char)
1039     (while (<= code max)
1040       (setq char (decode-char '=ucs code))
1041       (if (encode-char char '=ucs 'defined-only)
1042           (insert-char-data-with-variant char nil 'no-ucs-variant
1043                                          script excluded-script))
1044       (setq code (1+ code)))))
1045
1046 (defun write-char-range-data-to-file (min max file
1047                                           &optional script excluded-script)
1048   (let ((coding-system-for-write 'utf-8))
1049     (with-temp-buffer
1050       (insert-char-range-data min max script excluded-script)
1051       (write-region (point-min)(point-max) file))))
1052
1053 (defvar what-character-original-window-configuration)
1054
1055 ;;;###autoload
1056 (defun what-char-definition (char)
1057   (interactive (list (char-after)))
1058   (let ((buf (get-buffer-create "*Character Description*"))
1059         (the-buf (current-buffer))
1060         (win-conf (current-window-configuration)))
1061     (pop-to-buffer buf)
1062     (make-local-variable 'what-character-original-window-configuration)
1063     (setq what-character-original-window-configuration win-conf)
1064     (setq buffer-read-only nil)
1065     (erase-buffer)
1066     (condition-case err
1067         (progn
1068           (insert-char-data-with-variant char 'printable)
1069           (unless (char-attribute-alist char)
1070             (insert (format ";; = %c\n"
1071                             (let* ((rest (split-char char))
1072                                    (ccs (pop rest))
1073                                    (code (pop rest)))
1074                               (while rest
1075                                 (setq code (logior (lsh code 8)
1076                                                    (pop rest))))
1077                               (decode-char ccs code)))))
1078           ;; (char-db-update-comment)
1079           (set-buffer-modified-p nil)
1080           (view-mode the-buf (lambda (buf)
1081                                (set-window-configuration
1082                                 what-character-original-window-configuration)
1083                                ))
1084           (goto-char (point-min)))
1085       (error (progn
1086                (set-window-configuration
1087                 what-character-original-window-configuration)
1088                (signal (car err) (cdr err)))))))
1089
1090 (provide 'char-db-util)
1091
1092 ;;; char-db-util.el ends here