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