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