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