(unidata-prop-alist): Docstring for
[bpt/emacs.git] / admin / unidata / unidata-gen.el
1 ;; unidata-gen.el -- Create files containing character property data.
2 ;; Copyright (C) 2005, 2006, 2007, 2008
3 ;; National Institute of Advanced Industrial Science and Technology (AIST)
4 ;; Registration Number H13PRO009
5
6 ;; This file is part of GNU Emacs.
7
8 ;; GNU Emacs is free software: you can redistribute it and/or modify
9 ;; it under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
12
13 ;; GNU Emacs is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 ;; GNU General Public License for more details.
17
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
20
21 ;;; Commentary:
22
23 ;; SPECIAL NOTICE
24 ;;
25 ;; This file must be byte-compilable/loadable by `temacs' and also
26 ;; the entry function `unidata-gen-files' must be runnable by
27 ;; `temacs'.
28
29 ;; FILES TO BE GENERATED
30 ;;
31 ;; The entry function `unidata-gen-files' generates these files in
32 ;; the current directory.
33 ;;
34 ;; charprop.el
35 ;; It contains a series of forms of this format:
36 ;; (char-code-property-register PROP FILE)
37 ;; where PROP is a symbol representing a character property
38 ;; (name, generic-category, etc), and FILE is a name of one of
39 ;; the following files.
40 ;;
41 ;; uni-name.el, uni-category.el, uni-combining.el, uni-bidi.el,
42 ;; uni-decomposition.el, uni-decimal.el, uni-digit.el, uni-numeric.el,
43 ;; uni-mirrored.el, uni-old-name.el, uni-comment.el, uni-uppercase.el,
44 ;; uni-lowercase.el, uni-titlecase.el
45 ;; They each contain a single form of this format:
46 ;; (char-code-property-register PROP CHAR-TABLE)
47 ;; where PROP is the same as above, and CHAR-TABLE is a
48 ;; char-table containing property values in a compressed format.
49 ;;
50 ;; When they are installed in .../lisp/international/, the file
51 ;; "charprop.el" is preloaded in loadup.el. The other files are
52 ;; automatically loaded when the functions `get-char-code-property'
53 ;; and `put-char-code-property' are called.
54 ;;
55 ;; FORMAT OF A CHAR TABLE
56 ;;
57 ;; We want to make a file size containing a char-table small. We
58 ;; also want to load the file and get a property value fast. We
59 ;; also want to reduce the used memory after loading it. So,
60 ;; instead of naively storing a property value for each character in
61 ;; a char-table (and write it out into a file), we store compressed
62 ;; data in a char-table as below.
63 ;;
64 ;; If succeeding 128*N characters have the same property value, we
65 ;; store that value for them. Otherwise, compress values for
66 ;; succeeding 128 characters into a single string and store it as a
67 ;; value for those characters. The way of compression depends on a
68 ;; property. See the section "SIMPLE TABLE", "RUN-LENGTH TABLE",
69 ;; and "WORD-LIST TABLE".
70
71 ;; The char table has four extra slots:
72 ;; 1st: property symbol
73 ;; 2nd: function to call to get a property value
74 ;; 3nd: function to call to put a property value
75 ;; 4th: function to call to get a description of a property value
76 ;; 5th: data referred by the above functions
77
78 ;; List of elements of this form:
79 ;; (CHAR-or-RANGE PROP1 PROP2 ... PROPn)
80 ;; CHAR-or-RANGE: a character code or a cons of character codes
81 ;; PROPn: string representing the nth property value
82
83 (defvar unidata-list nil)
84
85 (defun unidata-setup-list (unidata-text-file)
86 (let* ((table (list nil))
87 (tail table)
88 (block-names '(("^<CJK Ideograph" . CJK\ IDEOGRAPH)
89 ("^<Hangul Syllable" . HANGUL\ SYLLABLE)
90 ("^<.*Surrogate" . nil)
91 ("^<.*Private Use" . PRIVATE\ USE)))
92 val char name)
93 (or (file-readable-p unidata-text-file)
94 (error "File not readable: %s" unidata-text-file))
95 (with-temp-buffer
96 (insert-file-contents unidata-text-file)
97 (goto-char (point-min))
98 (condition-case nil
99 (while t
100 (setq val (read (current-buffer))
101 char (car val)
102 name (cadr val))
103
104 ;; Check this kind of block.
105 ;; 4E00;<CJK Ideograph, First>;Lo;0;L;;;;;N;;;;;
106 ;; 9FA5;<CJK Ideograph, Last>;Lo;0;L;;;;;N;;;;;
107 (if (and (= (aref name 0) ?<)
108 (string-match ", First>$" name))
109 (let ((first char)
110 (l block-names)
111 block-name)
112 (setq val (read (current-buffer))
113 char (car val)
114 block-name (cadr val)
115 name nil)
116 (while l
117 (if (string-match (caar l) block-name)
118 (setq name (cdar l) l nil)
119 (setq l (cdr l))))
120 (if (not name)
121 ;; As this is a surrogate pair range, ignore it.
122 (setq val nil)
123 (setcar val (cons first char))
124 (setcar (cdr val) name))))
125
126 (when val
127 (setcdr tail (list val))
128 (setq tail (cdr tail))))
129 (error nil)))
130 (setq unidata-list (cdr table))))
131
132 ;; Alist of this form:
133 ;; (PROP INDEX GENERATOR FILENAME)
134 ;; PROP: character property
135 ;; INDEX: index to each element of unidata-list for PROP
136 ;; GENERATOR: function to generate a char-table
137 ;; FILENAME: filename to store the char-table
138 ;; DESCRIBER: function to call to get a description string of property value
139
140 (defconst unidata-prop-alist
141 '((name
142 1 unidata-gen-table-name "uni-name.el"
143 "Unicode character name.
144 Property value is a string.")
145 (general-category
146 2 unidata-gen-table-symbol "uni-category.el"
147 "Unicode general category.
148 Property value is one of the following symbols:
149 Lu, Ll, Lt, Lm, Lo, Mn, Mc, Me, Nd, Nl, No, Pc, Pd, Ps, Pe, Pi, Pf, Po,
150 Sm, Sc, Sk, So, Zs, Zl, Zp, Cc, Cf, Cs, Co, Cn"
151 unidata-describe-general-category)
152 (canonical-combining-class
153 3 unidata-gen-table-integer "uni-combining.el"
154 "Unicode canonical combining class.
155 Property value is an integer."
156 unidata-describe-canonical-combining-class)
157 (bidi-class
158 4 unidata-gen-table-symbol "uni-bidi.el"
159 "Unicode bidi class.
160 Property value is one of the following symbols:
161 L, LRE, LRO, R, AL, RLE, RLO, PDF, EN, ES, ET,
162 AN, CS, NSM, BN, B, S, WS, ON"
163 unidata-describe-bidi-class)
164 (decomposition
165 5 unidata-gen-table-decomposition "uni-decomposition.el"
166 "Unicode decomposition mapping.
167 Property value is a list of characters. The first element may be
168 one of these symbols representing compatibility formatting tag:
169 font, noBreak, initial, medial, final, isolated, circle, super,
170 sub, vertical, wide, narrow, small, square, fraction, compat"
171 unidata-describe-decomposition)
172 (decimal-digit-value
173 6 unidata-gen-table-integer "uni-decimal.el"
174 "Unicode numeric value (decimal digit).
175 Property value is an integer.")
176 (digit-value
177 7 unidata-gen-table-integer "uni-digit.el"
178 "Unicode numeric value (digit).
179 Property value is an integer.")
180 (numeric-value
181 8 unidata-gen-table-numeric "uni-numeric.el"
182 "Unicode numeric value (numeric).
183 Property value is an integer or a floating point.")
184 (mirrored
185 9 unidata-gen-table-symbol "uni-mirrored.el"
186 "Unicode bidi mirrored flag.
187 Property value is a symbol `Y' or `N'.")
188 (old-name
189 10 unidata-gen-table-name "uni-old-name.el"
190 "Unicode old names as published in Unicode 1.0.
191 Property value is a string.")
192 (iso-10646-comment
193 11 unidata-gen-table-name "uni-comment.el"
194 "Unicode ISO 10646 comment.
195 Property value is a string.")
196 (uppercase
197 12 unidata-gen-table-character "uni-uppercase.el"
198 "Unicode simple uppercase mapping.
199 Property value is a character."
200 string)
201 (lowercase
202 13 unidata-gen-table-character "uni-lowercase.el"
203 "Unicode simple lowercase mapping.
204 Property value is a character."
205 string)
206 (titlecase
207 14 unidata-gen-table-character "uni-titlecase.el"
208 "Unicode simple titlecase mapping.
209 Property value is a character."
210 string)))
211
212 ;; Functions to access the above data.
213 (defsubst unidata-prop-index (prop) (nth 1 (assq prop unidata-prop-alist)))
214 (defsubst unidata-prop-generator (prop) (nth 2 (assq prop unidata-prop-alist)))
215 (defsubst unidata-prop-file (prop) (nth 3 (assq prop unidata-prop-alist)))
216 (defsubst unidata-prop-docstring (prop) (nth 4 (assq prop unidata-prop-alist)))
217 (defsubst unidata-prop-describer (prop) (nth 5 (assq prop unidata-prop-alist)))
218
219 \f
220 ;; SIMPLE TABLE
221 ;;
222 ;; If the type of character property value is character, and the
223 ;; values of succeeding character codes are usually different, we use
224 ;; a char-table described here to store such values.
225 ;;
226 ;; If succeeding 128 characters has no property, a char-table has the
227 ;; symbol t is for them. Otherwise a char-table has a string of the
228 ;; following format for them.
229 ;;
230 ;; The first character of the string is FIRST-INDEX.
231 ;; The Nth (N > 0) character of the string is a property value of the
232 ;; character (BLOCK-HEAD + FIRST-INDEX + N - 1), where BLOCK-HEAD is
233 ;; the first of the characters in the block.
234 ;;
235 ;; The 4th extra slot of a char-table is nil.
236
237 (defun unidata-get-character (char val table)
238 (cond
239 ((characterp val)
240 val)
241
242 ((stringp val)
243 (let* ((len (length val))
244 (block-head (lsh (lsh char -7) 7))
245 (vec (make-vector 128 nil))
246 (first-index (aref val 0)))
247 (dotimes (i (1- len))
248 (let ((elt (aref val (1+ i))))
249 (if (> elt 0)
250 (aset vec (+ first-index i) elt))))
251 (dotimes (i 128)
252 (aset table (+ block-head i) (aref vec i)))
253 (aref vec (- char block-head))))))
254
255 (defun unidata-put-character (char val table)
256 (or (characterp val)
257 (not val)
258 (error "Not a character nor nil: %S" val))
259 (let ((current-val (aref table char)))
260 (unless (eq current-val val)
261 (if (stringp current-val)
262 (funcall (char-table-extra-slot table 1) char current-val table))
263 (aset table char val))))
264
265 (defun unidata-gen-table-character (prop)
266 (let ((table (make-char-table 'char-code-property-table))
267 (prop-idx (unidata-prop-index prop))
268 (vec (make-vector 128 0))
269 (tail unidata-list)
270 elt range val idx slot)
271 (set-char-table-range table (cons 0 (max-char)) t)
272 (while tail
273 (setq elt (car tail) tail (cdr tail))
274 (setq range (car elt)
275 val (nth prop-idx elt))
276 (if (= (length val) 0)
277 (setq val nil)
278 (setq val (string-to-number val 16)))
279 (if (consp range)
280 (if val
281 (set-char-table-range table range val))
282 (let* ((start (lsh (lsh range -7) 7))
283 (limit (+ start 127))
284 first-index last-index)
285 (fillarray vec 0)
286 (if val
287 (aset vec (setq last-index (setq first-index (- range start)))
288 val))
289 (while (and (setq elt (car tail) range (car elt))
290 (integerp range)
291 (<= range limit))
292 (setq val (nth prop-idx elt))
293 (when (> (length val) 0)
294 (aset vec (setq last-index (- range start))
295 (string-to-number val 16))
296 (or first-index
297 (setq first-index last-index)))
298 (setq tail (cdr tail)))
299 (when first-index
300 (let ((str (string first-index))
301 c)
302 (while (<= first-index last-index)
303 (setq str (format "%s%c" str (or (aref vec first-index) 0))
304 first-index (1+ first-index)))
305 (set-char-table-range table (cons start limit) str))))))
306
307 (set-char-table-extra-slot table 0 prop)
308 (byte-compile 'unidata-get-character)
309 (byte-compile 'unidata-put-character)
310 (set-char-table-extra-slot table 1 (symbol-function 'unidata-get-character))
311 (set-char-table-extra-slot table 2 (symbol-function 'unidata-put-character))
312
313 table))
314
315
316 \f
317 ;; RUN-LENGTH TABLE
318 ;;
319 ;; If the type of character property value is symbol, integer,
320 ;; boolean, or character, we use a char-table described here to store
321 ;; the values.
322 ;;
323 ;; The 4th extra slot is a vector of property values (VAL-TABLE), and
324 ;; values for succeeding 128 characters are encoded into this
325 ;; character sequence:
326 ;; ( VAL-CODE RUN-LENGTH ? ) +
327 ;; where:
328 ;; VAL-CODE (0..127):
329 ;; (VAL-CODE - 1) is an index into VAL-TABLE.
330 ;; The value 0 means no-value.
331 ;; RUN-LENGTH (130..255):
332 ;; (RUN-LENGTH - 128) specifies how many characters have the same
333 ;; value. If omitted, it means 1.
334
335
336 ;; Return a symbol-type character property value of CHAR. VAL is the
337 ;; current value of (aref TABLE CHAR).
338
339 (defun unidata-get-symbol (char val table)
340 (let ((val-table (char-table-extra-slot table 4)))
341 (cond ((symbolp val)
342 val)
343 ((stringp val)
344 (let ((first-char (lsh (lsh char -7) 7))
345 (str val)
346 (len (length val))
347 (idx 0)
348 this-val count)
349 (set-char-table-range table (cons first-char (+ first-char 127))
350 nil)
351 (while (< idx len)
352 (setq val (aref str idx) idx (1+ idx)
353 count (if (< idx len) (aref str idx) 1))
354 (setq val (and (> val 0) (aref val-table (1- val)))
355 count (if (< count 128)
356 1
357 (prog1 (- count 128) (setq idx (1+ idx)))))
358 (dotimes (i count)
359 (if val
360 (aset table first-char val))
361 (if (= first-char char)
362 (setq this-val val))
363 (setq first-char (1+ first-char))))
364 this-val))
365 ((> val 0)
366 (aref val-table (1- val))))))
367
368 ;; Return a integer-type character property value of CHAR. VAL is the
369 ;; current value of (aref TABLE CHAR).
370
371 (defun unidata-get-integer (char val table)
372 (let ((val-table (char-table-extra-slot table 4)))
373 (cond ((integerp val)
374 val)
375 ((stringp val)
376 (let ((first-char (lsh (lsh char -7) 7))
377 (str val)
378 (len (length val))
379 (idx 0)
380 this-val count)
381 (while (< idx len)
382 (setq val (aref str idx) idx (1+ idx)
383 count (if (< idx len) (aref str idx) 1))
384 (setq val (and (> val 0) (aref val-table (1- val)))
385 count (if (< count 128)
386 1
387 (prog1 (- count 128) (setq idx (1+ idx)))))
388 (dotimes (i count)
389 (aset table first-char val)
390 (if (= first-char char)
391 (setq this-val val))
392 (setq first-char (1+ first-char))))
393 this-val)))))
394
395 ;; Return a numeric-type (integer or float) character property value
396 ;; of CHAR. VAL is the current value of (aref TABLE CHAR).
397
398 (defun unidata-get-numeric (char val table)
399 (cond
400 ((numberp val)
401 val)
402 ((stringp val)
403 (let ((val-table (char-table-extra-slot table 4))
404 (first-char (lsh (lsh char -7) 7))
405 (str val)
406 (len (length val))
407 (idx 0)
408 this-val count)
409 (while (< idx len)
410 (setq val (aref str idx) idx (1+ idx)
411 count (if (< idx len) (aref str idx) 1))
412 (setq val (and (> val 0) (aref val-table (1- val)))
413 count (if (< count 128)
414 1
415 (prog1 (- count 128) (setq idx (1+ idx)))))
416 (dotimes (i count)
417 (aset table first-char val)
418 (if (= first-char char)
419 (setq this-val val))
420 (setq first-char (1+ first-char))))
421 this-val))))
422
423 ;; Store VAL (symbol) as a character property value of CHAR in TABLE.
424
425 (defun unidata-put-symbol (char val table)
426 (or (symbolp val)
427 (error "Not a symbol: %S" val))
428 (let ((current-val (aref table char)))
429 (unless (eq current-val val)
430 (if (stringp current-val)
431 (funcall (char-table-extra-slot table 1) char current-val table))
432 (aset table char val))))
433
434 ;; Store VAL (integer) as a character property value of CHAR in TABLE.
435
436 (defun unidata-put-integer (char val table)
437 (or (integerp val)
438 (not val)
439 (error "Not an integer nor nil: %S" val))
440 (let ((current-val (aref table char)))
441 (unless (eq current-val val)
442 (if (stringp current-val)
443 (funcall (char-table-extra-slot table 1) char current-val table))
444 (aset table char val))))
445
446 ;; Store VAL (integer or float) as a character property value of CHAR
447 ;; in TABLE.
448
449 (defun unidata-put-numeric (char val table)
450 (or (numberp val)
451 (not val)
452 (error "Not a number nor nil: %S" val))
453 (let ((current-val (aref table char)))
454 (unless (equal current-val val)
455 (if (stringp current-val)
456 (funcall (char-table-extra-slot table 1) char current-val table))
457 (aset table char val))))
458
459 ;; Encode the character property value VAL into an integer value by
460 ;; VAL-LIST. By side effect, VAL-LIST is modified.
461 ;; VAL-LIST has this form:
462 ;; (t (VAL1 . VAL-CODE1) (VAL2 . VAL-CODE2) ...)
463 ;; If VAL is one of VALn, just return VAL-CODEn. Otherwise,
464 ;; VAL-LIST is modified to this:
465 ;; (t (VAL . (1+ VAL-CODE1)) (VAL1 . VAL-CODE1) (VAL2 . VAL-CODE2) ...)
466
467 (defun unidata-encode-val (val-list val)
468 (let ((slot (assoc val val-list))
469 val-code)
470 (if slot
471 (cdr slot)
472 (setq val-code (if (cdr val-list) (1+ (cdr (nth 1 val-list))) 1))
473 (setcdr val-list (cons (cons val val-code) (cdr val-list)))
474 val-code)))
475
476 ;; Generate a char-table for the character property PROP.
477
478 (defun unidata-gen-table (prop val-func default-value)
479 (let ((table (make-char-table 'char-code-property-table))
480 (prop-idx (unidata-prop-index prop))
481 (val-list (list t))
482 (vec (make-vector 128 0))
483 tail elt range val val-code idx slot)
484 (set-char-table-range table (cons 0 (max-char)) default-value)
485 (setq tail unidata-list)
486 (while tail
487 (setq elt (car tail) tail (cdr tail))
488 (setq range (car elt)
489 val (funcall val-func (nth prop-idx elt)))
490 (setq val-code (if val (unidata-encode-val val-list val)))
491 (if (consp range)
492 (if val-code
493 (set-char-table-range table range val))
494 (let* ((start (lsh (lsh range -7) 7))
495 (limit (+ start 127))
496 str count new-val)
497 (fillarray vec 0)
498 (if val-code
499 (aset vec (- range start) val-code))
500 (while (and (setq elt (car tail) range (car elt))
501 (integerp range)
502 (<= range limit))
503 (setq new-val (funcall val-func (nth prop-idx elt)))
504 (if (not (eq val new-val))
505 (setq val new-val
506 val-code (if val (unidata-encode-val val-list val))))
507 (if val-code
508 (aset vec (- range start) val-code))
509 (setq tail (cdr tail)))
510 (setq str "" val-code -1 count 0)
511 (mapc #'(lambda (x)
512 (if (= val-code x)
513 (setq count (1+ count))
514 (if (> count 2)
515 (setq str (concat str (string val-code
516 (+ count 128))))
517 (if (= count 2)
518 (setq str (concat str (string val-code val-code)))
519 (if (= count 1)
520 (setq str (concat str (string val-code))))))
521 (setq val-code x count 1)))
522 vec)
523 (if (= count 128)
524 (if val
525 (set-char-table-range table (cons start limit) val))
526 (if (= val-code 0)
527 (set-char-table-range table (cons start limit) str)
528 (if (> count 2)
529 (setq str (concat str (string val-code (+ count 128))))
530 (if (= count 2)
531 (setq str (concat str (string val-code val-code)))
532 (setq str (concat str (string val-code)))))
533 (set-char-table-range table (cons start limit) str))))))
534
535 (setq val-list (nreverse (cdr val-list)))
536 (set-char-table-extra-slot table 0 prop)
537 (set-char-table-extra-slot table 4 (vconcat (mapcar 'car val-list)))
538 table))
539
540 (defun unidata-gen-table-symbol (prop)
541 (let ((table (unidata-gen-table prop
542 #'(lambda (x) (and (> (length x) 0)
543 (intern x)))
544 0)))
545 (byte-compile 'unidata-get-symbol)
546 (byte-compile 'unidata-put-symbol)
547 (set-char-table-extra-slot table 1 (symbol-function 'unidata-get-symbol))
548 (set-char-table-extra-slot table 2 (symbol-function 'unidata-put-symbol))
549 table))
550
551 (defun unidata-gen-table-integer (prop)
552 (let ((table (unidata-gen-table prop
553 #'(lambda (x) (and (> (length x) 0)
554 (string-to-number x)))
555 t)))
556 (byte-compile 'unidata-get-integer)
557 (byte-compile 'unidata-put-integer)
558 (set-char-table-extra-slot table 1 (symbol-function 'unidata-get-integer))
559 (set-char-table-extra-slot table 2 (symbol-function 'unidata-put-integer))
560 table))
561
562 (defun unidata-gen-table-numeric (prop)
563 (let ((table (unidata-gen-table prop
564 #'(lambda (x)
565 (if (string-match "/" x)
566 (/ (float (string-to-number x))
567 (string-to-number
568 (substring x (match-end 0))))
569 (if (> (length x) 0)
570 (string-to-number x))))
571 t)))
572 (byte-compile 'unidata-get-numeric)
573 (byte-compile 'unidata-put-numeric)
574 (set-char-table-extra-slot table 1 (symbol-function 'unidata-get-numeric))
575 (set-char-table-extra-slot table 2 (symbol-function 'unidata-put-numeric))
576 table))
577
578 \f
579 ;; WORD-LIST TABLE
580
581 ;; If the table is for `name' property, each character in the string
582 ;; is one of these:
583 ;; DIFF-HEAD-CODE (0, 1, or 2):
584 ;; specifies how to decode the following characters.
585 ;; WORD-CODE (3..#x7FF excluding '-', '0'..'9', 'A'..'Z'):
586 ;; specifies an index number into WORD-TABLE (see below)
587 ;; Otherwise (' ', '-', '0'..'9', 'A'..'Z'):
588 ;; specifies a literal word.
589 ;;
590 ;; The 4th slots is a vector:
591 ;; [ WORD-TABLE BLOCK-NAME HANGUL-JAMO-TABLE ]
592 ;; WORD-TABLE is a vector of word symbols.
593 ;; BLOCK-NAME is a vector of name symbols for a block of characters.
594 ;; HANGUL-JAMO-TABLE is `unidata-name-jamo-name-table'.
595
596 ;; Return the difference of symbol list L1 and L2 in this form:
597 ;; (DIFF-HEAD SYM1 SYM2 ...)
598 ;; DIFF-HEAD is ((SAME-HEAD-LENGTH * 16) + SAME-TAIL-LENGTH).
599 ;; Ex: If L1 is (a b c d e f) and L2 is (a g h e f), this function
600 ;; returns ((+ (* 1 16) 2) g h).
601 ;; It means that we can get L2 from L1 by prepending the first element
602 ;; of L1 and appending the last 2 elements of L1 to the list (g h).
603 ;; If L1 and L2 don't have common elements at the head and tail,
604 ;; set DIFF-HEAD to -1 and SYM1 ... to the elements of L2.
605
606 (defun unidata-word-list-diff (l1 l2)
607 (let ((beg 0)
608 (end 0)
609 (len1 (length l1))
610 (len2 (length l2))
611 result)
612 (when (< len1 16)
613 (while (and l1 (eq (car l1) (car l2)))
614 (setq beg (1+ beg)
615 l1 (cdr l1) len1 (1- len1) l2 (cdr l2) len2 (1- len2)))
616 (while (and (< end len1) (< end len2)
617 (eq (nth (- len1 end 1) l1) (nth (- len2 end 1) l2)))
618 (setq end (1+ end))))
619 (if (= (+ beg end) 0)
620 (setq result (list -1))
621 (setq result (list (+ (* beg 16) (+ beg (- len1 end))))))
622 (while (< end len2)
623 (setcdr result (cons (nth (- len2 end 1) l2) (cdr result)))
624 (setq end (1+ end)))
625 result))
626
627 ;; Return a compressed form of the vector VEC. Each element of VEC is
628 ;; a list of symbols of which names can be concatenated to form a
629 ;; character name. This function changes those elements into
630 ;; compressed forms by utilizing the fact that diff of consecutive
631 ;; elements is usually small.
632
633 (defun unidata-word-list-compress (vec)
634 (let (last-elt last-idx diff-head tail elt val)
635 (dotimes (i 128)
636 (setq elt (aref vec i))
637 (when elt
638 (if (null last-elt)
639 (setq diff-head -1
640 val (cons 0 elt))
641 (setq val (unidata-word-list-diff last-elt elt))
642 (if (= (car val) -1)
643 (setq diff-head -1
644 val (cons 0 (cdr val)))
645 (if (eq diff-head (car val))
646 (setq val (cons 2 (cdr val)))
647 (setq diff-head (car val))
648 (if (>= diff-head 0)
649 (setq val (cons 1 val))))))
650 (aset vec i val)
651 (setq last-idx i last-elt elt)))
652 (if (not last-idx)
653 (setq vec nil)
654 (if (< last-idx 127)
655 (let ((shorter (make-vector (1+ last-idx) nil)))
656 (dotimes (i (1+ last-idx))
657 (aset shorter i (aref vec i)))
658 (setq vec shorter))))
659 vec))
660
661 ;; Encode the word index IDX into a characters code that can be
662 ;; embedded in a string.
663
664 (defsubst unidata-encode-word (idx)
665 ;; Exclude 0, 1, 2.
666 (+ idx 3))
667
668 ;; Decode the character code CODE (that is embedded in a string) into
669 ;; the corresponding word name by looking up WORD-TABLE.
670
671 (defsubst unidata-decode-word (code word-table)
672 (setq code (- code 3))
673 (if (< code (length word-table))
674 (aref word-table code)))
675
676 ;; Table of short transliterated name symbols of Hangul Jamo divided
677 ;; into Choseong, Jungseong, and Jongseong.
678
679 (defconst unidata-name-jamo-name-table
680 [[G GG N D DD R M B BB S SS nil J JJ C K T P H]
681 [A AE YA YAE EO E YEO YE O WA WAE OE YO U WEO WE WI YU EU YI I]
682 [G GG GS N NJ NH D L LG LM LB LS LT LP LH M B BS S SS NG J C K T P H]])
683
684 ;; Return a name of CHAR. VAL is the current value of (aref TABLE
685 ;; CHAR).
686
687 (defun unidata-get-name (char val table)
688 (cond
689 ((stringp val)
690 (if (> (aref val 0) 0)
691 val
692 (let* ((first-char (lsh (lsh char -7) 7))
693 (word-table (aref (char-table-extra-slot table 4) 0))
694 (i 1)
695 (len (length val))
696 (vec (make-vector 128 nil))
697 (idx 0)
698 (case-fold-search nil)
699 c word-list tail-list last-list word diff-head)
700 (while (< i len)
701 (setq c (aref val i))
702 (if (< c 3)
703 (progn
704 (if (or word-list tail-list)
705 (aset vec idx
706 (setq last-list (nconc word-list tail-list))))
707 (setq i (1+ i) idx (1+ idx)
708 word-list nil tail-list nil)
709 (if (> c 0)
710 (let ((l last-list))
711 (if (= c 1)
712 (setq diff-head
713 (prog1 (aref val i) (setq i (1+ i)))))
714 (setq tail-list (nthcdr (% diff-head 16) last-list))
715 (dotimes (i (/ diff-head 16))
716 (setq word-list (nconc word-list (list (car l)))
717 l (cdr l))))))
718 (setq word-list
719 (nconc word-list
720 (list (symbol-name
721 (unidata-decode-word c word-table))))
722 i (1+ i))))
723 (if (or word-list tail-list)
724 (aset vec idx (nconc word-list tail-list)))
725 (setq val nil)
726 (dotimes (i 128)
727 (setq c (+ first-char i))
728 (let ((name (aref vec i)))
729 (if name
730 (let ((tail (cdr (setq name (copy-sequence name))))
731 elt)
732 (while tail
733 (setq elt (car tail))
734 (or (string= elt "-")
735 (progn
736 (setcdr tail (cons elt (cdr tail)))
737 (setcar tail " ")))
738 (setq tail (cddr tail)))
739 (setq name (apply 'concat name))))
740 (aset table c name)
741 (if (= c char)
742 (setq val name))))
743 val)))
744
745 ((and (integerp val) (> val 0))
746 (let* ((symbol-table (aref (char-table-extra-slot table 4) 1))
747 (sym (aref symbol-table (1- val))))
748 (cond ((eq sym 'HANGUL\ SYLLABLE)
749 (let ((jamo-name-table (aref (char-table-extra-slot table 4) 2)))
750 ;; SIndex = S - SBase
751 (setq char (- char #xAC00))
752 (let ( ;; LIndex = SIndex / NCount
753 (L (/ char 588))
754 ;; VIndex = (SIndex % NCount) * TCount
755 (V (/ (% char 588) 28))
756 ;; TIndex = SIndex % TCount
757 (T (% char 28)))
758 (format "HANGUL SYLLABLE %s%s%s"
759 ;; U+110B is nil in this table.
760 (or (aref (aref jamo-name-table 0) L) "")
761 (aref (aref jamo-name-table 1) V)
762 (if (= T 0) ""
763 (aref (aref jamo-name-table 2) (1- T)))))))
764 ((eq sym 'CJK\ IDEOGRAPH)
765 (format "%s-%04X" sym char))
766 ((eq sym 'CJK\ COMPATIBILITY\ IDEOGRAPH)
767 (format "%s-%04X" sym char))
768 ((eq sym 'VARIATION\ SELECTOR)
769 (format "%s-%d" sym (+ (- char #xe0100) 17))))))))
770
771 ;; Store VAL as the name of CHAR in TABLE.
772
773 (defun unidata-put-name (char val table)
774 (let ((current-val (aref table char)))
775 (if (and (stringp current-val) (= (aref current-val 0) 0))
776 (funcall (char-table-extra-slot table 1) char current-val table))
777 (aset table char val)))
778
779 (defun unidata-get-decomposition (char val table)
780 (cond
781 ((consp val)
782 val)
783
784 ((stringp val)
785 (if (> (aref val 0) 0)
786 val
787 (let* ((first-char (lsh (lsh char -7) 7))
788 (word-table (char-table-extra-slot table 4))
789 (i 1)
790 (len (length val))
791 (vec (make-vector 128 nil))
792 (idx 0)
793 (case-fold-search nil)
794 c word-list tail-list last-list word diff-head)
795 (while (< i len)
796 (setq c (aref val i))
797 (if (< c 3)
798 (progn
799 (if (or word-list tail-list)
800 (aset vec idx
801 (setq last-list (nconc word-list tail-list))))
802 (setq i (1+ i) idx (1+ idx)
803 word-list nil tail-list nil)
804 (if (> c 0)
805 (let ((l last-list))
806 (if (= c 1)
807 (setq diff-head
808 (prog1 (aref val i) (setq i (1+ i)))))
809 (setq tail-list (nthcdr (% diff-head 16) last-list))
810 (dotimes (i (/ diff-head 16))
811 (setq word-list (nconc word-list (list (car l)))
812 l (cdr l))))))
813 (setq word-list
814 (nconc word-list
815 (list (or (unidata-decode-word c word-table) c)))
816 i (1+ i))))
817 (if (or word-list tail-list)
818 (aset vec idx (nconc word-list tail-list)))
819 (dotimes (i 128)
820 (aset table (+ first-char i) (aref vec i)))
821 (aref vec (- char first-char)))))
822
823 ;; Hangul syllable
824 ((and (eq val 0) (>= char #xAC00) (<= char #xD7A3))
825 ;; SIndex = S (char) - SBase (#xAC00)
826 (setq char (- char #xAC00))
827 (let (;; L = LBase + SIndex / NCount
828 (L (+ #x1100 (/ char 588)))
829 ;; V = VBase + (SIndex % NCount) * TCount
830 (V (+ #x1161 (/ (% char 588) 28)))
831 ;; T = TBase + SIndex % TCount
832 (T (+ #x11A7 (% char 28))))
833 (if (= T #x11A7)
834 (list L V)
835 (list L V T))))
836
837 ))
838
839 ;; Store VAL as the decomposition information of CHAR in TABLE.
840
841 (defun unidata-put-decomposition (char val table)
842 (let ((current-val (aref table char)))
843 (if (and (stringp current-val) (= (aref current-val 0) 0))
844 (funcall (char-table-extra-slot table 1) char current-val table))
845 (aset table char val)))
846
847 ;; UnicodeData.txt contains these lines:
848 ;; 0000;<control>;Cc;0;BN;;;;;N;NULL;;;;
849 ;; ...
850 ;; 0020;SPACE;Zs;0;WS;;;;;N;;;;;
851 ;; ...
852 ;; The following command yields a file of about 96K bytes.
853 ;; % gawk -F ';' '{print $1,$2;}' < UnicodeData.txt | gzip > temp.gz
854 ;; With the following function, we can get a file of almost the same
855 ;; the size.
856
857 ;; Generate a char-table for character names.
858
859 (defun unidata-gen-table-word-list (prop val-func)
860 (let ((table (make-char-table 'char-code-property-table))
861 (prop-idx (unidata-prop-index prop))
862 (word-list (list nil))
863 word-table
864 block-list block-word-table block-end
865 tail elt range val idx slot)
866 (set-char-table-range table (cons 0 (max-char)) 0)
867 (setq tail unidata-list)
868 (setq block-end -1)
869 (while tail
870 (setq elt (car tail) tail (cdr tail))
871 (setq range (car elt)
872 val (funcall val-func (nth prop-idx elt)))
873 ;; Treat the sequence of "CJK COMPATIBILITY IDEOGRAPH-XXXX" and
874 ;; "VARIATION SELECTOR-XXX" as a block.
875 (if (and (consp val) (eq prop 'name)
876 (or (and (eq (car val) 'CJK)
877 (eq (nth 1 val) 'COMPATIBILITY))
878 (and (>= range #xe0100)
879 (eq (car val) 'VARIATION)
880 (eq (nth 1 val) 'SELECTOR))))
881 (let ((first (car val))
882 (second (nth 1 val))
883 (start range))
884 (while (and (setq elt (car tail) range (car elt)
885 val (funcall val-func (nth prop-idx elt)))
886 (consp val)
887 (eq first (car val))
888 (eq second (nth 1 val)))
889 (setq block-end range
890 tail (cdr tail)))
891 (setq range (cons start block-end)
892 val (if (eq first 'CJK) 'CJK\ COMPATIBILITY\ IDEOGRAPH
893 'VARIATION\ SELECTOR))))
894
895 (if (consp range)
896 (if val
897 (let ((slot (assq val block-list)))
898 (setq range (cons (car range) (cdr range)))
899 (setq block-end (cdr range))
900 (if slot
901 (nconc slot (list range))
902 (push (list val range) block-list))))
903 (let* ((start (lsh (lsh range -7) 7))
904 (limit (+ start 127))
905 (first tail)
906 (vec (make-vector 128 nil))
907 c name len)
908 (if (<= start block-end)
909 ;; START overlap with the previous block.
910 (aset table range (nth prop-idx elt))
911 (if val
912 (aset vec (- range start) val))
913 (while (and (setq elt (car tail) range (car elt))
914 (integerp range)
915 (<= range limit))
916 (setq val (funcall val-func (nth prop-idx elt)))
917 (if val
918 (aset vec (- range start) val))
919 (setq tail (cdr tail)))
920 (setq vec (unidata-word-list-compress vec))
921 (when vec
922 (dotimes (i (length vec))
923 (dolist (elt (aref vec i))
924 (if (symbolp elt)
925 (let ((slot (assq elt word-list)))
926 (if slot
927 (setcdr slot (1+ (cdr slot)))
928 (setcdr word-list
929 (cons (cons elt 1) (cdr word-list))))))))
930 (set-char-table-range table (cons start limit) vec))))))
931 (setq word-list (sort (cdr word-list)
932 #'(lambda (x y) (> (cdr x) (cdr y)))))
933 (setq tail word-list idx 0)
934 (while tail
935 (setcdr (car tail) (unidata-encode-word idx))
936 (setq idx (1+ idx) tail (cdr tail)))
937 (setq word-table (make-vector (length word-list) nil))
938 (setq idx 0)
939 (dolist (elt word-list)
940 (aset word-table idx (car elt))
941 (setq idx (1+ idx)))
942
943 (if (and (eq prop 'decomposition)
944 (> idx 32))
945 (error "Too many symbols in decomposition data"))
946
947 (dotimes (i (/ #x110000 128))
948 (let* ((idx (* i 128))
949 (vec (aref table idx)))
950 (when (vectorp vec)
951 (dotimes (i (length vec))
952 (let ((tail (aref vec i))
953 elt code)
954 (if (not tail)
955 (aset vec i "\0")
956 (while tail
957 (setq elt (car tail)
958 code (if (integerp elt) elt
959 (cdr (assq elt word-list))))
960 (setcar tail (string code))
961 (setq tail (cdr tail)))
962 (aset vec i (mapconcat 'identity (aref vec i) "")))))
963 (set-char-table-range
964 table (cons idx (+ idx 127))
965 (mapconcat 'identity vec "")))))
966
967 (setq block-word-table (make-vector (length block-list) nil))
968 (setq idx 0)
969 (dolist (elt block-list)
970 (dolist (e (cdr elt))
971 (set-char-table-range table e (1+ idx)))
972 (aset block-word-table idx (car elt))
973 (setq idx (1+ idx)))
974
975 (set-char-table-extra-slot table 0 prop)
976 (set-char-table-extra-slot table 4 (cons word-table block-word-table))
977 table))
978
979 (defun unidata-split-name (str)
980 (if (symbolp str)
981 str
982 (let ((len (length str))
983 (l nil)
984 (idx 0)
985 c)
986 (if (= len 0)
987 nil
988 (dotimes (i len)
989 (setq c (aref str i))
990 (if (= c 32)
991 (setq l (cons (intern (substring str idx i)) l)
992 idx (1+ i))
993 (if (and (= c ?-) (< idx i)
994 (< (1+ i) len) (/= (aref str (1+ i)) 32))
995 (setq l (cons '- (cons (intern (substring str idx i)) l))
996 idx (1+ i)))))
997 (nreverse (cons (intern (substring str idx)) l))))))
998
999 (defun unidata-gen-table-name (prop)
1000 (let* ((table (unidata-gen-table-word-list prop 'unidata-split-name))
1001 (word-tables (char-table-extra-slot table 4)))
1002 (byte-compile 'unidata-get-name)
1003 (byte-compile 'unidata-put-name)
1004 (set-char-table-extra-slot table 1 (symbol-function 'unidata-get-name))
1005 (set-char-table-extra-slot table 2 (symbol-function 'unidata-put-name))
1006
1007 (if (eq prop 'name)
1008 (set-char-table-extra-slot table 4
1009 (vector (car word-tables)
1010 (cdr word-tables)
1011 unidata-name-jamo-name-table))
1012 (set-char-table-extra-slot table 4
1013 (vector (car word-tables))))
1014 table))
1015
1016 (defun unidata-split-decomposition (str)
1017 (if (symbolp str)
1018 str
1019 (let ((len (length str))
1020 (l nil)
1021 (idx 0)
1022 c)
1023 (if (= len 0)
1024 nil
1025 (dotimes (i len)
1026 (setq c (aref str i))
1027 (if (= c 32)
1028 (setq l (if (= (aref str idx) ?<)
1029 (cons (intern (substring str (1+ idx) (1- i))) l)
1030 (cons (string-to-number (substring str idx i) 16) l))
1031 idx (1+ i))))
1032 (if (= (aref str idx) ?<)
1033 (setq l (cons (intern (substring str (1+ idx) (1- len))) l))
1034 (setq l (cons (string-to-number (substring str idx len) 16) l)))
1035 (nreverse l)))))
1036
1037
1038 (defun unidata-gen-table-decomposition (prop)
1039 (let* ((table (unidata-gen-table-word-list prop 'unidata-split-decomposition))
1040 (word-tables (char-table-extra-slot table 4)))
1041 (byte-compile 'unidata-get-decomposition)
1042 (byte-compile 'unidata-put-decomposition)
1043 (set-char-table-extra-slot table 1
1044 (symbol-function 'unidata-get-decomposition))
1045 (set-char-table-extra-slot table 2
1046 (symbol-function 'unidata-put-decomposition))
1047 (set-char-table-extra-slot table 4 (car word-tables))
1048 table))
1049
1050
1051 \f
1052 (defun unidata-describe-general-category (val)
1053 (cdr (assq val
1054 '((Lu . "Letter, Uppercase")
1055 (Ll . "Letter, Lowercase")
1056 (Lt . "Letter, Titlecase")
1057 (Lm . "Letter, Modifier")
1058 (Lo . "Letter, Other")
1059 (Mn . "Mark, Nonspacing")
1060 (Mc . "Mark, Spacing Combining")
1061 (Me . "Mark, Enclosing")
1062 (Nd . "Number, Decimal Digit")
1063 (Nl . "Number, Letter")
1064 (No . "Number, Other")
1065 (Pc . "Punctuation, Connector")
1066 (Pd . "Punctuation, Dash")
1067 (Ps . "Punctuation, Open")
1068 (Pe . "Punctuation, Close")
1069 (Pi . "Punctuation, Initial quote")
1070 (Pf . "Punctuation, Final quote")
1071 (Po . "Punctuation, Other")
1072 (Sm . "Symbol, Math")
1073 (Sc . "Symbol, Currency")
1074 (Sk . "Symbol, Modifier")
1075 (So . "Symbol, Other")
1076 (Zs . "Separator, Space")
1077 (Zl . "Separator, Line")
1078 (Zp . "Separator, Paragraph")
1079 (Cc . "Other, Control")
1080 (Cf . "Other, Format")
1081 (Cs . "Other, Surrogate")
1082 (Co . "Other, Private Use")
1083 (Cn . "Other, Not Assigned")))))
1084
1085 (defun unidata-describe-canonical-combining-class (val)
1086 (cdr (assq val
1087 '((0 . "Spacing, split, enclosing, reordrant, and Tibetan subjoined")
1088 (1 . "Overlays and interior")
1089 (7 . "Nuktas")
1090 (8 . "Hiragana/Katakana voicing marks")
1091 (9 . "Viramas")
1092 (10 . "Start of fixed position classes")
1093 (199 . "End of fixed position classes")
1094 (200 . "Below left attached")
1095 (202 . "Below attached")
1096 (204 . "Below right attached")
1097 (208 . "Left attached (reordrant around single base character)")
1098 (210 . "Right attached")
1099 (212 . "Above left attached")
1100 (214 . "Above attached")
1101 (216 . "Above right attached")
1102 (218 . "Below left")
1103 (220 . "Below")
1104 (222 . "Below right")
1105 (224 . "Left (reordrant around single base character)")
1106 (226 . "Right")
1107 (228 . "Above left")
1108 (230 . "Above")
1109 (232 . "Above right")
1110 (233 . "Double below")
1111 (234 . "Double above")
1112 (240 . "Below (iota subscript)")))))
1113
1114 (defun unidata-describe-bidi-class (val)
1115 (cdr (assq val
1116 '((L . "Left-to-Right")
1117 (LRE . "Left-to-Right Embedding")
1118 (LRO . "Left-to-Right Override")
1119 (R . "Right-to-Left")
1120 (AL . "Right-to-Left Arabic")
1121 (RLE . "Right-to-Left Embedding")
1122 (RLO . "Right-to-Left Override")
1123 (PDF . "Pop Directional Format")
1124 (EN . "European Number")
1125 (ES . "European Number Separator")
1126 (ET . "European Number Terminator")
1127 (AN . "Arabic Number")
1128 (CS . "Common Number Separator")
1129 (NSM . "Non-Spacing Mark")
1130 (BN . "Boundary Neutral")
1131 (B . "Paragraph Separator")
1132 (S . "Segment Separator")
1133 (WS . "Whitespace")
1134 (ON . "Other Neutrals")))))
1135
1136 (defun unidata-describe-decomposition (val)
1137 (mapconcat #'(lambda (x) (if (symbolp x) (symbol-name x) (string ?' x ?')))
1138 val " "))
1139
1140 ;; Verify if we can retrieve correct values from the generated
1141 ;; char-tables.
1142
1143 (defun unidata-check ()
1144 (dolist (elt unidata-prop-alist)
1145 (let* ((prop (car elt))
1146 (index (unidata-prop-index prop))
1147 (generator (unidata-prop-generator prop))
1148 (table (progn
1149 (message "Generating %S table..." prop)
1150 (funcall generator prop)))
1151 (decoder (char-table-extra-slot table 1))
1152 (check #x400))
1153 (dolist (e unidata-list)
1154 (let ((char (car e))
1155 (val1 (nth index e))
1156 val2)
1157 (if (and (stringp val1) (= (length val1) 0))
1158 (setq val1 nil))
1159 (unless (consp char)
1160 (setq val2 (funcall decoder char (aref table char) table))
1161 (if val1
1162 (cond ((eq generator 'unidata-gen-table-symbol)
1163 (setq val1 (intern val1)))
1164 ((eq generator 'unidata-gen-table-integer)
1165 (setq val1 (string-to-number val1)))
1166 ((eq generator 'unidata-gen-table-character)
1167 (setq val1 (string-to-number val1 16)))
1168 ((eq generator 'unidata-gen-table-decomposition)
1169 (setq val1 (unidata-split-decomposition val1)))))
1170 (when (>= char check)
1171 (message "%S %04X" prop check)
1172 (setq check (+ check #x400)))
1173 (or (equal val1 val2)
1174 (insert (format "> %04X %S\n< %04X %S\n"
1175 char val1 char val2)))
1176 (sit-for 0)))))))
1177
1178 ;; The entry function. It generates files described in the header
1179 ;; comment of this file.
1180
1181 (defun unidata-gen-files (&optional unidata-text-file)
1182 (or unidata-text-file
1183 (setq unidata-text-file (car command-line-args-left)
1184 command-line-args-left (cdr command-line-args-left)))
1185 (unidata-setup-list unidata-text-file)
1186 (let ((coding-system-for-write 'utf-8-unix)
1187 (charprop-file "charprop.el"))
1188 (with-temp-file charprop-file
1189 (insert ";; Automatically generated by unidata-gen.el.\n")
1190 (dolist (elt unidata-prop-alist)
1191 (let* ((prop (car elt))
1192 (generator (unidata-prop-generator prop))
1193 (file (unidata-prop-file prop))
1194 (docstring (unidata-prop-docstring prop))
1195 (describer (unidata-prop-describer prop))
1196 table)
1197 ;; Filename in this comment line is extracted by sed in
1198 ;; Makefile.
1199 (insert (format ";; FILE: %s\n" file))
1200 (insert (format "(define-char-code-property '%S %S\n %S)\n"
1201 prop file docstring))
1202 (with-temp-file file
1203 (message "Generating %s..." file)
1204 (setq table (funcall generator prop))
1205 (when describer
1206 (unless (subrp (symbol-function describer))
1207 (byte-compile describer)
1208 (setq describer (symbol-function describer)))
1209 (set-char-table-extra-slot table 3 describer))
1210 (insert ";; Automatically generated from UnicodeData.txt.\n"
1211 (format "(define-char-code-property '%S %S %S)\n"
1212 prop table docstring)
1213 ";; Local Variables:\n"
1214 ";; coding: utf-8\n"
1215 ";; no-byte-compile: t\n"
1216 ";; End:\n\n"
1217 (format ";; %s ends here\n" file)))))
1218 (message "Writing %s..." charprop-file)
1219 (insert ";; Local Variables:\n"
1220 ";; coding: utf-8\n"
1221 ";; no-byte-compile: t\n"
1222 ";; End:\n\n"
1223 (format ";; %s ends here\n" charprop-file)))))
1224
1225 \f
1226
1227 ;; arch-tag: 961c862e-b821-447e-9b8a-bfbab9c2d525
1228 ;;; unidata-gen.el ends here