502
|
1 ;;; mule-category.el --- category functions for XEmacs/Mule. -*- coding: iso-2022-7bit; -*-
|
428
|
2
|
|
3 ;; Copyright (C) 1992,93,94,95 Free Software Foundation, Inc.
|
|
4 ;; Copyright (C) 1995, 1997, 1999 Electrotechnical Laboratory, JAPAN.
|
|
5 ;; Licensed to the Free Software Foundation.
|
|
6 ;; Copyright (C) 1995 Amdahl Corporation.
|
|
7 ;; Copyright (C) 1995 Sun Microsystems.
|
|
8
|
|
9 ;; This file is part of XEmacs.
|
|
10
|
|
11 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
12 ;; under the terms of the GNU General Public License as published by
|
|
13 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
14 ;; any later version.
|
|
15
|
|
16 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
19 ;; General Public License for more details.
|
|
20
|
|
21 ;; You should have received a copy of the GNU General Public License
|
444
|
22 ;; along with XEmacs; see the file COPYING. If not, write to the
|
428
|
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
24 ;; Boston, MA 02111-1307, USA.
|
|
25
|
|
26 ;;; Commentary:
|
|
27
|
|
28 ;; Functions for working with category tables, which are a particular
|
|
29 ;; type of char table. Some function names / arguments should be
|
|
30 ;; parallel with syntax tables.
|
|
31
|
|
32 ;; Written by Ben Wing <ben@xemacs.org>. The initialization code
|
|
33 ;; at the end of this file comes from Mule.
|
|
34 ;; Some bugfixes by Jareth Hein <jhod@po.iijnet.or.jp>
|
|
35
|
|
36 ;;; Code:
|
|
37
|
442
|
38 (defvar defined-category-hashtable (make-hash-table :size 50))
|
428
|
39
|
|
40 (defun define-category (designator doc-string)
|
|
41 "Make a new category whose designator is DESIGNATOR.
|
|
42 DESIGNATOR should be a visible letter of ' ' thru '~'.
|
|
43 STRING is a doc string for the category.
|
|
44 Letters of 'a' thru 'z' are already used or kept for the system."
|
|
45 (check-argument-type 'category-designator-p designator)
|
|
46 (check-argument-type 'stringp doc-string)
|
|
47 (puthash designator doc-string defined-category-hashtable))
|
|
48
|
|
49 (defun undefine-category (designator)
|
|
50 "Undefine DESIGNATOR as a designator for a category."
|
|
51 (check-argument-type 'category-designator-p designator)
|
|
52 (remhash designator defined-category-hashtable))
|
|
53
|
|
54 (defun defined-category-p (designator)
|
|
55 "Return non-nil if DESIGNATOR is a designator for a defined category."
|
|
56 (and (category-designator-p designator)
|
|
57 (gethash designator defined-category-hashtable)))
|
|
58
|
|
59 (defun defined-category-list ()
|
|
60 "Return a list of the currently defined categories.
|
|
61 Categories are given by their designators."
|
|
62 (let (list)
|
|
63 (maphash #'(lambda (key value)
|
|
64 (setq list (cons key list)))
|
|
65 defined-category-hashtable)
|
|
66 (nreverse list)))
|
|
67
|
|
68 (defun undefined-category-designator ()
|
|
69 "Return an undefined category designator, or nil if there are none."
|
|
70 (let ((a 32) found)
|
|
71 (while (and (< a 127) (not found))
|
434
|
72 (unless (gethash a defined-category-hashtable)
|
|
73 (setq found (make-char 'ascii a)))
|
428
|
74 (setq a (1+ a)))
|
|
75 found))
|
|
76
|
|
77 (defun category-doc-string (designator)
|
|
78 "Return the doc-string for the category denoted by DESIGNATOR."
|
|
79 (check-argument-type 'defined-category-p designator)
|
|
80 (gethash designator defined-category-hashtable))
|
|
81
|
444
|
82 (defun modify-category-entry (char-range designator &optional category-table reset)
|
428
|
83 "Add a category to the categories associated with CHAR-RANGE.
|
|
84 CHAR-RANGE is a single character or a range of characters,
|
|
85 as per `put-char-table'.
|
|
86 The category is given by a designator character.
|
444
|
87 The changes are made in CATEGORY-TABLE, which defaults to the current
|
|
88 buffer's category table.
|
428
|
89 If optional fourth argument RESET is non-nil, previous categories associated
|
|
90 with CHAR-RANGE are removed before adding the specified category."
|
444
|
91 (or category-table (setq category-table (category-table)))
|
|
92 (check-argument-type 'category-table-p category-table)
|
428
|
93 (check-argument-type 'defined-category-p designator)
|
|
94 (if reset
|
|
95 ;; clear all existing stuff.
|
444
|
96 (put-char-table char-range nil category-table))
|
428
|
97 (map-char-table
|
|
98 #'(lambda (key value)
|
|
99 ;; make sure that this range has a bit-vector assigned to it
|
|
100 (if (not (bit-vector-p value))
|
|
101 (setq value (make-bit-vector 95 0))
|
|
102 (setq value (copy-sequence value)))
|
|
103 ;; set the appropriate bit in that vector.
|
|
104 (aset value (- designator 32) 1)
|
|
105 ;; put the vector back, thus assuring we have a unique setting for this range
|
444
|
106 (put-char-table key value category-table))
|
|
107 category-table char-range))
|
428
|
108
|
444
|
109 (defun char-category-list (character &optional category-table)
|
|
110 "Return a list of the categories that CHARACTER is in.
|
|
111 CATEGORY-TABLE defaults to the current buffer's category table.
|
428
|
112 The categories are given by their designators."
|
444
|
113 (or category-table (setq category-table (category-table)))
|
|
114 (check-argument-type 'category-table-p category-table)
|
|
115 (let ((vec (get-char-table character category-table)))
|
428
|
116 (if (null vec) nil
|
|
117 (let ((a 32) list)
|
|
118 (while (< a 127)
|
|
119 (if (= 1 (aref vec (- a 32)))
|
434
|
120 (setq list (cons (make-char 'ascii a) list)))
|
428
|
121 (setq a (1+ a)))
|
|
122 (nreverse list)))))
|
|
123
|
444
|
124 ;; implemented in C, file chartab.c (97/3/14 jhod@po.iijnet.or.jp)
|
428
|
125 ;(defun char-in-category-p (char category &optional table)
|
|
126 ; "Return non-nil if CHAR is in CATEGORY.
|
|
127 ;TABLE defaults to the current buffer's category table.
|
|
128 ;Categories are specified by their designators."
|
|
129 ; (or table (setq table (category-table)))
|
|
130 ; (check-argument-type 'category-table-p table)
|
|
131 ; (check-argument-type 'category-designator-p category)
|
|
132 ; (let ((vec (get-char-table char table)))
|
|
133 ; (if (null vec) nil
|
|
134 ; (= 1 (aref vec (- category 32))))))
|
|
135
|
|
136 (defun describe-category ()
|
|
137 "Describe the category specifications in the category table.
|
|
138 The descriptions are inserted in a buffer, which is then displayed."
|
|
139 (interactive)
|
434
|
140 (with-displaying-help-buffer
|
|
141 (lambda ()
|
|
142 (describe-category-table (category-table) standard-output))))
|
428
|
143
|
|
144 (defun describe-category-table (table stream)
|
|
145 (let (first-char
|
|
146 last-char
|
|
147 prev-val
|
|
148 (describe-one
|
|
149 (lambda (first last value stream)
|
|
150 (if (and (bit-vector-p value)
|
|
151 (> (reduce '+ value) 0))
|
|
152 (progn
|
|
153 (if (equal first last)
|
|
154 (cond ((vectorp first)
|
|
155 (princ (format "%s, row %d"
|
|
156 (charset-name
|
|
157 (aref first 0))
|
|
158 (aref first 1))
|
|
159 stream))
|
|
160 ((charsetp first)
|
|
161 (princ (charset-name first) stream))
|
|
162 (t (princ first stream)))
|
|
163 (cond ((vectorp first)
|
|
164 (princ (format "%s, rows %d .. %d"
|
|
165 (charset-name
|
|
166 (aref first 0))
|
|
167 (aref first 1)
|
|
168 (aref last 1))
|
|
169 stream))
|
|
170 (t
|
|
171 (princ (format "%s .. %s" first last)
|
|
172 stream))))
|
|
173 (describe-category-code value stream))))))
|
|
174 (map-char-table
|
|
175 (lambda (range value)
|
|
176 (if (and (or
|
|
177 (and (characterp range)
|
|
178 (characterp first-char)
|
|
179 (eq (char-charset range) (char-charset first-char))
|
|
180 (= (char-to-int last-char) (1- (char-to-int range))))
|
|
181 (and (vectorp range)
|
|
182 (vectorp first-char)
|
|
183 (eq (aref range 0) (aref first-char 0))
|
|
184 (= (aref last-char 1) (1- (aref range 1))))
|
|
185 (equal value prev-val)))
|
|
186 (setq last-char range)
|
|
187 (if first-char
|
|
188 (progn
|
|
189 (funcall describe-one first-char last-char prev-val stream)
|
|
190 (setq first-char nil)))
|
|
191 (funcall describe-one range range value stream))
|
|
192 nil)
|
|
193 table)
|
|
194 (if first-char
|
|
195 (funcall describe-one first-char last-char prev-val stream))))
|
|
196
|
|
197 (defun describe-category-code (code stream)
|
|
198 (let ((standard-output (or stream standard-output)))
|
|
199 (princ "\tin categories: ")
|
|
200 (if (not (bit-vector-p code))
|
|
201 (princ "(none)")
|
|
202 (let ((i 0)
|
|
203 already-matched)
|
|
204 (while (< i 95)
|
|
205 (if (= 1 (aref code i))
|
|
206 (progn
|
|
207 (if (not already-matched)
|
|
208 (setq already-matched t)
|
|
209 (princ " "))
|
|
210 (princ (int-to-char (+ 32 i)))))
|
|
211 (setq i (1+ i)))
|
|
212 (if (not already-matched)
|
|
213 (princ "(none)")))
|
|
214 (let ((i 0))
|
|
215 (while (< i 95)
|
|
216 (if (= 1 (aref code i))
|
|
217 (princ (format "\n\t\tmeaning: %s"
|
|
218 (category-doc-string (int-to-char (+ 32 i))))))
|
|
219 (setq i (1+ i)))))
|
|
220 (terpri)))
|
|
221
|
|
222 (defconst predefined-category-list
|
|
223 '((latin-iso8859-1 ?l "Latin-1 through Latin-5 character set")
|
|
224 (latin-iso8859-2 ?l)
|
|
225 (latin-iso8859-3 ?l)
|
|
226 (latin-iso8859-4 ?l)
|
|
227 (latin-iso8859-9 ?l)
|
|
228 (cyrillic-iso8859-5 ?y "Cyrillic character set")
|
|
229 (arabic-iso8859-6 ?b "Arabic character set")
|
|
230 (greek-iso8859-7 ?g "Greek character set")
|
|
231 (hebrew-iso8859-8 ?w "Hebrew character set")
|
|
232 (katakana-jisx0201 ?k "Japanese 1-byte Katakana character set")
|
|
233 (latin-jisx0201 ?r "Japanese 1-byte Roman character set")
|
|
234 (japanese-jisx0208-1978 ?j "Japanese 2-byte character set (old)")
|
|
235 (japanese-jisx0208 ?j "Japanese 2-byte character set")
|
|
236 (japanese-jisx0212 ?j)
|
|
237 (chinese-gb2312 ?c "Chinese GB (China, PRC) 2-byte character set")
|
|
238 (chinese-cns11643-1 ?t "Chinese Taiwan (CNS or Big5) 2-byte character set")
|
|
239 (chinese-cns11643-2 ?t)
|
|
240 (chinese-big5-1 ?t)
|
|
241 (chinese-big5-2 ?t)
|
|
242 (korean-ksc5601 ?h "Hangul (Korean) 2-byte character set")
|
|
243 )
|
|
244 "List of predefined categories.
|
|
245 Each element is a list of a charset, a designator, and maybe a doc string.")
|
|
246
|
|
247 (let (i l)
|
|
248 (define-category ?a "ASCII character set.")
|
|
249 (define-category ?l "Latin-1 through Latin-5 character set")
|
|
250 (setq i 32)
|
|
251 (while (< i 127)
|
|
252 (modify-category-entry i ?a)
|
|
253 (modify-category-entry i ?l)
|
|
254 (setq i (1+ i)))
|
|
255 (setq l predefined-category-list)
|
|
256 (while l
|
|
257 (if (and (nth 2 (car l))
|
|
258 (not (defined-category-p (nth 2 (car l)))))
|
|
259 (define-category (nth 1 (car l)) (nth 2 (car l))))
|
|
260 (modify-category-entry (car (car l)) (nth 1 (car l)))
|
|
261 (setq l (cdr l))))
|
|
262
|
|
263 ;;; Setting word boundary.
|
|
264
|
|
265 (setq word-combining-categories
|
|
266 '((?l . ?l)))
|
|
267
|
|
268 (setq word-separating-categories ; (2-byte character sets)
|
|
269 '((?A . ?K) ; Alpha numeric - Katakana
|
|
270 (?A . ?C) ; Alpha numeric - Chinese
|
|
271 (?H . ?A) ; Hiragana - Alpha numeric
|
|
272 (?H . ?K) ; Hiragana - Katakana
|
|
273 (?H . ?C) ; Hiragana - Chinese
|
|
274 (?K . ?A) ; Katakana - Alpha numeric
|
|
275 (?K . ?C) ; Katakana - Chinese
|
|
276 (?C . ?A) ; Chinese - Alpha numeric
|
|
277 (?C . ?K) ; Chinese - Katakana
|
|
278 ))
|
|
279
|
|
280 ;;; At the present, I know Japanese and Chinese text can
|
|
281 ;;; break line at any point under a restriction of 'kinsoku'.
|
450
|
282 ;;; #### SJT this needs to be set by language environments and probably should
|
|
283 ;;; be buffer-local---strategy for dealing with this: check all $language.el
|
|
284 ;;; files and also mule-base/$language-utils.el files for variables set;
|
|
285 ;;; these should be made buffer local and some kind of a- or p-list of vars
|
|
286 ;;; to be set for a language environment created.
|
428
|
287 (defvar word-across-newline "\\(\\cj\\|\\cc\\|\\ct\\)"
|
|
288 "Regular expression of such characters which can be a word across newline.")
|
|
289
|
|
290 (defvar ascii-char "[\40-\176]")
|
|
291 (defvar ascii-space "[ \t]")
|
|
292 (defvar ascii-symbols "[\40-\57\72-\100\133-\140\173-\176]")
|
|
293 (defvar ascii-numeric "[\60-\71]")
|
|
294 (defvar ascii-English-Upper "[\101-\132]")
|
|
295 (defvar ascii-English-Lower "[\141-\172]")
|
|
296 (defvar ascii-alphanumeric "[\60-\71\101-\132\141-\172]")
|
|
297
|
|
298 (defvar kanji-char "\\cj")
|
|
299 (defvar kanji-space "$B!!(B")
|
|
300 (defvar kanji-symbols "\\cS")
|
|
301 (defvar kanji-numeric "[$B#0(B-$B#9(B]")
|
|
302 (defvar kanji-English-Upper "[$B#A(B-$B#Z(B]")
|
|
303 (defvar kanji-English-Lower "[$B#a(B-$B#z(B]")
|
|
304 (defvar kanji-hiragana "\\cH")
|
|
305 (defvar kanji-katakana "\\cK")
|
|
306 (defvar kanji-Greek-Upper "[$B&!(B-$B&8(B]")
|
|
307 (defvar kanji-Greek-Lower "[$B&A(B-$B&X(B]")
|
|
308 (defvar kanji-Russian-Upper "[$B'!(B-$B'A(B]")
|
|
309 (defvar kanji-Russian-Lower "[$B'Q(B-$B'q(B]")
|
|
310 (defvar kanji-Kanji-1st-Level "[$B0!(B-$BOS(B]")
|
|
311 (defvar kanji-Kanji-2nd-Level "[$BP!(B-$Bt$(B]")
|
|
312
|
|
313 (defvar kanji-kanji-char "\\(\\cH\\|\\cK\\|\\cC\\)")
|