(insert-char-data): Don't output mojikyo-pj-*.
[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 MORIOKA Tomohiko.
4
5 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
6 ;; Keywords: UTF-2000, ISO/IEC 10646, Unicode, UCS-4, MULE.
7
8 ;; This file is part of UTF-2000.
9
10 ;; UTF-2000 is free software; you can redistribute it and/or modify it
11 ;; under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; UTF-2000 is distributed in the hope that it will be useful, but
16 ;; 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; see the file COPYING.  If not, write to the Free
22 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23 ;; 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     (if (< (charset-iso-final-char (car (split-char (aref v 34)))) ?0)
71         (aset v 34 (make-char 'chinese-gb2312 #x62 #x3A)))
72     v))
73
74 (defun char-attribute-name< (ka kb)
75   (cond
76    ((find-charset ka)
77     (cond
78      ((find-charset kb)
79       (cond
80        ((= (charset-dimension ka)
81            (charset-dimension kb))
82         (cond ((= (charset-chars ka)(charset-chars kb))
83                (cond
84                 ((>= (charset-iso-final-char ka) ?@)
85                  (if (>= (charset-iso-final-char kb) ?@)
86                      (< (charset-iso-final-char ka)
87                         (charset-iso-final-char kb))
88                    t))
89                 ((>= (charset-iso-final-char ka) ?0)
90                  (cond
91                   ((>= (charset-iso-final-char kb) ?@)
92                    nil)
93                   ((>= (charset-iso-final-char kb) ?0)
94                    (< (charset-iso-final-char ka)
95                       (charset-iso-final-char kb)))
96                   (t)))))
97               ((<= (charset-chars ka)(charset-chars kb)))))
98        (t
99         (< (charset-dimension ka)
100            (charset-dimension kb))
101         )))
102      ((symbolp kb)
103       nil)
104      (t
105       t)))
106    ((find-charset kb)
107     t)
108    ((symbolp ka)
109     (cond ((symbolp kb)
110            (string< (symbol-name ka)
111                     (symbol-name kb)))
112           (t)))
113    ((symbolp kb)
114     nil)))
115
116 (defun insert-char-data (char)
117   (let ((data (char-attribute-alist char))
118         cell ret has-long-ccs-name rest
119         radical strokes)
120     (when data
121       (save-restriction
122         (narrow-to-region (point)(point))
123         (insert "(define-char
124   '(")
125         (when (setq cell (assq 'name data))
126           (setq cell (cdr cell))
127           (insert (format
128                    (if (> (length cell) 47)
129                        "(name . %S)
130     "
131                      "(name\t\t. %S)
132     ")
133                    cell))
134           (setq data (del-alist 'name data))
135           )
136         (when (setq cell (assq 'name data))
137           (setq cell (cdr cell))
138           (insert (format
139                    (if (> (length cell) 47)
140                        "(name . %S)
141     "
142                      "(name\t\t. %S)
143     ")
144                    cell))
145           (setq data (del-alist 'name data))
146           )
147         (when (setq cell (assq 'ucs data))
148           (setq cell (cdr cell))
149           (insert (format "(ucs\t\t. #x%04X)
150     "
151                           cell))
152           (setq data (del-alist 'ucs data))
153           )
154         (when (setq cell (assq '->ucs data))
155           (setq cell (cdr cell))
156           (insert (format "(->ucs\t\t. #x%04X)\t; %c
157     "
158                           cell (decode-char 'ucs cell)))
159           (setq data (del-alist '->ucs data))
160           )
161         (when (setq cell (assq 'general-category data))
162           (setq ret (cdr cell))
163           (insert (format
164                    "(general-category\t%s) ; %s
165     "
166                    (mapconcat (lambda (cell)
167                                 (format "%S" cell))
168                               ret " ")
169                    (cond ((rassoc (cdr cell)
170                                   unidata-normative-category-alist)
171                           "Normative Category")
172                          ((rassoc (cdr cell)
173                                   unidata-informative-category-alist)
174                           "Informative Category")
175                          (t
176                           "Unknown Category"))))
177           (setq data (del-alist 'general-category data))
178           )
179         (when (setq cell (assq 'bidi-category data))
180           (setq cell (cdr cell))
181           (insert (format "(bidi-category\t. %S)
182     "
183                           cell))
184           (setq data (del-alist 'bidi-category data))
185           )
186         (when (setq cell (assq 'mirrored data))
187           (setq cell (cdr cell))
188           (insert (format "(mirrored\t\t. %S)
189     "
190                           cell))
191           (setq data (del-alist 'mirrored data))
192           )
193         (cond
194          ((setq cell (assq 'decimal-digit-value data))
195           (setq cell (cdr cell))
196           (insert (format "(decimal-digit-value . %S)
197     "
198                           cell))
199           (setq data (del-alist 'decimal-digit-value data))
200           (when (setq cell (assq 'digit-value data))
201             (setq cell (cdr cell))
202             (insert (format "(digit-value\t . %S)
203     "
204                             cell))
205             (setq data (del-alist 'digit-value data))
206             )
207           (when (setq cell (assq 'numeric-value data))
208             (setq cell (cdr cell))
209             (insert (format "(numeric-value\t . %S)
210     "
211                             cell))
212             (setq data (del-alist 'numeric-value data))
213             )
214           )
215          (t
216           (when (setq cell (assq 'digit-value data))
217             (setq cell (cdr cell))
218             (insert (format "(digit-value\t. %S)
219     "
220                             cell))
221             (setq data (del-alist 'digit-value data))
222             )
223           (when (setq cell (assq 'numeric-value data))
224             (setq cell (cdr cell))
225             (insert (format "(numeric-value\t. %S)
226     "
227                             cell))
228             (setq data (del-alist 'numeric-value data))
229             )))
230         (when (setq cell (assq 'iso-10646-comment data))
231           (setq cell (cdr cell))
232           (insert (format "(iso-10646-comment\t. %S)
233     "
234                           cell))
235           (setq data (del-alist 'iso-10646-comment data))
236           )
237         (when (setq cell (assq 'morohashi-daikanwa data))
238           (setq cell (cdr cell))
239           (insert (format "(morohashi-daikanwa\t%s)
240     "
241                           (mapconcat (function prin1-to-string) cell " ")))
242           (setq data (del-alist 'morohashi-daikanwa data))
243           )
244         (setq radical nil)
245         (when (setq cell (assq 'ideographic-radical data))
246           (setq radical (cdr cell))
247           (insert (format "(ideographic-radical . %S)\t; %c
248     "
249                           radical
250                           (aref ideographic-radicals radical)))
251           (setq data (del-alist 'ideographic-radical data))
252           )
253         (when (setq cell (assq 'kangxi-radical data))
254           (setq cell (cdr cell))
255           (unless (eq cell radical)
256             (insert (format "(kangxi-radical\t . %S)\t; %c
257     "
258                             cell
259                             (aref ideographic-radicals cell)))
260             (setq radical cell))
261           (setq data (del-alist 'kangxi-radical data))
262           )
263         (when (setq cell (assq 'japanese-radical data))
264           (setq cell (cdr cell))
265           (unless (eq cell radical)
266             (insert (format "(japanese-radical . %S)\t; %c
267     "
268                             cell
269                             (aref ideographic-radicals cell)))
270             (setq radical cell))
271           (setq data (del-alist 'japanese-radical data))
272           )
273         (when (setq cell (assq 'cns-radical data))
274           (setq cell (cdr cell))
275           (insert (format "(cns-radical\t . %S)\t; %c
276     "
277                           cell
278                           (aref ideographic-radicals cell)))
279           (setq data (del-alist 'cns-radical data))
280           )
281         (setq strokes nil)
282         (cond
283          ((setq cell (assq 'ideographic-strokes data))
284           (setq strokes (cdr cell))
285           (insert (format "(ideographic-strokes . %S)
286     "
287                           strokes))
288           (setq data (del-alist 'ideographic-strokes data))
289           (when (setq cell (assq 'kangxi-strokes data))
290             (setq cell (cdr cell))
291             (unless (eq cell strokes)
292               (insert (format "(kangxi-strokes\t . %S)
293     "
294                               cell))
295               (setq strokes cell))
296             (setq data (del-alist 'kangxi-strokes data))
297             )
298           (when (setq cell (assq 'japanese-strokes data))
299             (setq cell (cdr cell))
300             (unless (eq cell strokes)
301               (insert (format "(japanese-strokes\t . %S)
302     "
303                               cell))
304               (setq strokes cell))
305             (setq data (del-alist 'japanese-strokes data))
306             )
307           (when (setq cell (assq 'total-strokes data))
308             (setq cell (cdr cell))
309             (insert (format "(total-strokes\t . %S)
310     "
311                             cell))
312             (setq data (del-alist 'total-strokes data))
313             )
314           )
315          ((setq cell (assq 'total-strokes data))
316           (setq cell (cdr cell))
317           (insert (format "(total-strokes\t. %S)
318     "
319                           cell))
320           (setq data (del-alist 'total-strokes data))
321           ))
322         (when (setq cell (assq '->decomposition data))
323           (setq cell (cdr cell))
324           (insert (format "(->decomposition\t%s)
325     "
326                           (mapconcat (lambda (code)
327                                        (cond ((symbolp code)
328                                               (symbol-name code))
329                                              ((integerp code)
330                                               (format "#x%04X" code))
331                                              (t
332                                               (format "\n     %S" code))))
333                                      cell " ")))
334           (setq data (del-alist '->decomposition data))
335           )
336         (when (setq cell (assq '->uppercase data))
337           (setq cell (cdr cell))
338           (insert (format "(->uppercase\t%s)
339     "
340                           (mapconcat (lambda (code)
341                                        (cond ((symbolp code)
342                                               (symbol-name code))
343                                              ((integerp code)
344                                               (format "#x%04X" code))
345                                              (t
346                                               (format "\n     %S" code))))
347                                      cell " ")))
348           (setq data (del-alist '->uppercase data))
349           )
350         (when (setq cell (assq '->lowercase data))
351           (setq cell (cdr cell))
352           (insert (format "(->lowercase\t%s)
353     "
354                           (mapconcat (lambda (code)
355                                        (cond ((symbolp code)
356                                               (symbol-name code))
357                                              ((integerp code)
358                                               (format "#x%04X" code))
359                                              (t
360                                               (format "\n     %S" code))))
361                                      cell " ")))
362           (setq data (del-alist '->lowercase data))
363           )
364         (when (setq cell (assq '->titlecase data))
365           (setq cell (cdr cell))
366           (insert (format "(->titlecase\t%s)
367     "
368                           (mapconcat (lambda (code)
369                                        (cond ((symbolp code)
370                                               (symbol-name code))
371                                              ((integerp code)
372                                               (format "#x%04X" code))
373                                              (t
374                                               (format "\n     %S" code))))
375                                      cell " ")))
376           (setq data (del-alist '->titlecase data))
377           )
378         (setq data
379               (sort data
380                     (lambda (a b)
381                       (char-attribute-name< (car a)(car b)))))
382         (setq rest data)
383         (while (and rest
384                     (progn
385                       (setq cell (car rest))
386                       (if (setq ret (find-charset (car cell)))
387                           (if (>= (length (symbol-name (charset-name ret))) 19)
388                               (progn
389                                 (setq has-long-ccs-name t)
390                                 nil)
391                             t)
392                         t)))
393           (setq rest (cdr rest)))
394         (while data
395           (setq cell (car data))
396           (cond ((setq ret (find-charset (car cell)))
397                  (or (string-match "^mojikyo-pj-"
398                                    (symbol-name (charset-name ret)))
399                      (insert
400                       (format
401                        (if has-long-ccs-name
402                            (if (eq ret (find-charset 'ideograph-daikanwa))
403                                "(%-26s . %05d)\t; %c
404     "
405                              "(%-26s . #x%X)\t; %c
406     "
407                              )
408                          (if (eq ret (find-charset 'ideograph-daikanwa))
409                              "(%-18s . %05d)\t; %c
410     "
411                            "(%-18s . #x%X)\t; %c
412     "
413                            ))
414                        (charset-name ret)
415                        (if (= (charset-iso-graphic-plane ret) 1)
416                            (logior (cdr cell)
417                                    (cond ((= (charset-dimension ret) 1)
418                                           #x80)
419                                          ((= (charset-dimension ret) 2)
420                                           #x8080)
421                                          ((= (charset-dimension ret) 3)
422                                           #x808080)
423                                          (t 0)))
424                          (cdr cell))
425                        (decode-builtin-char ret (cdr cell))))))
426                 ((string-match "^->" (symbol-name (car cell)))
427                  (insert
428                   (format "(%-18s %s)
429     "
430                           (car cell)
431                           (mapconcat (lambda (code)
432                                        (cond ((symbolp code)
433                                               (symbol-name code))
434                                              ((integerp code)
435                                               (format "#x%04X" code))
436                                              (t
437                                               (format "\n     %S" code))))
438                                      (cdr cell) " "))))
439                 ((consp (cdr cell))
440                  (insert (format "(%-18s %s)
441     "
442                                  (car cell)
443                                  (mapconcat (function prin1-to-string)
444                                             (cdr cell) " "))))
445                 (t
446                  (insert (format "(%-18s . %S)
447     "
448                                  (car cell)(cdr cell)))
449                  ))
450           (setq data (cdr data)))
451         (insert "))\n")
452         (goto-char (point-min))
453         (while (re-search-forward "[ \t]+$" nil t)
454           (replace-match ""))
455         (goto-char (point-max))
456         (tabify (point-min)(point-max))
457         ))))
458
459 (defun decode-builtin-char (charset code-point)
460   (setq charset (get-charset charset))
461   (if (and (not (eq (charset-name charset) 'ideograph-daikanwa))
462            (or (memq (charset-name charset)
463                      '(ascii latin-viscii-upper
464                              latin-viscii-lower
465                              arabic-iso8859-6
466                              japanese-jisx0213-1
467                              japanese-jisx0213-2))
468                (= (char-int (charset-iso-final-char charset)) 0)))
469       (decode-char charset code-point)
470     (let ((table (charset-mapping-table charset)))
471       (if table
472           (prog2
473               (set-charset-mapping-table charset nil)
474               (decode-char charset code-point)
475             (set-charset-mapping-table charset table))
476         (decode-char charset code-point)))))
477
478 ;;;###autoload
479 (defun char-db-update-comment ()
480   (interactive)
481   (save-excursion
482     (goto-char (point-min))
483     (let (cdef table char)
484       (while (re-search-forward "^[ \t]*\\(([^.()]+)\\)" nil t)
485         (goto-char (match-beginning 1))
486         (setq cdef (read (current-buffer)))
487         (when (find-charset (car cdef))
488           (goto-char (match-end 0))
489           (setq char
490                 (if (and
491                      (not (eq (car cdef) 'ideograph-daikanwa))
492                      (or (memq (car cdef) '(ascii latin-viscii-upper
493                                                   latin-viscii-lower
494                                                   arabic-iso8859-6
495                                                   japanese-jisx0213-1
496                                                   japanese-jisx0213-2))
497                          (= (char-int (charset-iso-final-char (car cdef)))
498                             0)))
499                     (apply (function make-char) cdef)
500                   (if (setq table (charset-mapping-table (car cdef)))
501                       (set-charset-mapping-table (car cdef) nil))
502                   (prog1
503                       (apply (function make-char) cdef)
504                     (if table
505                         (set-charset-mapping-table (car cdef) table)))))
506           (when (not (or (< (char-int char) 32)
507                          (and (<= 128 (char-int char))
508                               (< (char-int char) 160))))
509             (delete-region (point) (point-at-eol))
510             (insert (format "\t; %c" char)))
511           )))))
512
513 (defun insert-char-data-with-variant (char)
514   (insert-char-data char)
515   (let ((variants (or (char-variants char)
516                       (let ((ucs (get-char-attribute char '->ucs)))
517                         (if ucs
518                             (delete char (char-variants (int-char ucs))))))))
519     (while variants
520       (insert-char-data (car variants))
521       (setq variants (cdr variants))
522       )))
523
524 (defun insert-char-range-data (min max)
525   (let ((code min)
526         char)
527     (while (<= code max)
528       (setq char (int-char code))
529       (insert-char-data-with-variant char)
530       (setq code (1+ code))
531       )))
532
533 (defun write-char-range-data-to-file (min max file)
534   (let ((coding-system-for-write 'utf-8))
535     (with-temp-buffer
536       (insert-char-range-data min max)
537       (write-region (point-min)(point-max) file))))
538
539 (defvar what-character-original-window-configuration)
540
541 ;;;###autoload
542 (defun what-char-definition (char)
543   (interactive (list (char-after)))
544   (let ((buf (get-buffer-create "*Character Description*"))
545         (the-buf (current-buffer))
546         (win-conf (current-window-configuration)))
547     (pop-to-buffer buf)
548     (make-local-variable 'what-character-original-window-configuration)
549     (setq what-character-original-window-configuration win-conf)
550     (setq buffer-read-only nil)
551     (erase-buffer)
552     (condition-case err
553         (progn
554           (insert-char-data-with-variant char)
555           ;; (char-db-update-comment)
556           (set-buffer-modified-p nil)
557           (view-mode the-buf (lambda (buf)
558                                (set-window-configuration
559                                 what-character-original-window-configuration)
560                                ))
561           (goto-char (point-min)))
562       (error (progn
563                (set-window-configuration
564                 what-character-original-window-configuration)
565                (signal (car err) (cdr err)))))))
566
567 (provide 'char-db-util)
568
569 ;;; char-db-util.el ends here