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