49702
|
1 ;;; tml-util.el --- support for composing tamil characters -*-coding: iso-2022-7bit;-*-
|
|
2
|
|
3 ;; Copyright (C) 2001 Free Software Foundation, Inc.
|
|
4
|
|
5 ;; Maintainer: KAWABATA, Taichi <kawabata@m17n.org>
|
|
6 ;; Keywords: multilingual, Indian, Tamil
|
|
7
|
|
8 ;; This file is part of GNU Emacs.
|
|
9
|
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
11 ;; it under the terms of the GNU General Public License as published by
|
|
12 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
13 ;; any later version.
|
|
14
|
|
15 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
18 ;; GNU General Public License for more details.
|
|
19
|
|
20 ;; You should have received a copy of the GNU General Public License
|
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 ;; Boston, MA 02111-1307, USA.
|
|
24
|
|
25 ;; Created: Nov. 08. 2002
|
|
26
|
|
27 ;;; Commentary:
|
|
28
|
|
29 ;; This file provides character(Unicode) to glyph(CDAC) conversion and
|
|
30 ;; composition of Tamil script characters.
|
|
31
|
|
32 ;;; Code:
|
|
33
|
|
34 ;; Tamil Composable Pattern
|
|
35 ;; C .. Consonants
|
|
36 ;; V .. Vowel
|
|
37 ;; H .. Pulli
|
|
38 ;; M .. Matra
|
|
39 ;; V .. Vowel
|
|
40 ;; A .. Anuswar
|
|
41 ;; D .. Chandrabindu
|
|
42 ;; 1. vowel
|
|
43 ;; V
|
|
44 ;; 2. syllable : only ligature-formed pattern forms composition.
|
|
45 ;; (CkHCs|C)(H|M)?
|
|
46 ;; 3. sri special
|
|
47 ;; (CsHCrVi)
|
|
48
|
|
49 ;; oririnal
|
|
50 ;; ((CH)?(CH)?(CH)?CH)?C(H|M?(A|D)?)?
|
|
51
|
|
52 (defconst tamil-consonant
|
|
53 "[$,1<5(B-$,1<Y(B]")
|
|
54
|
|
55 (defconst tamil-composable-pattern
|
|
56 (concat
|
|
57 "\\([$,1<%(B-$,1<4(B]\\)\\|"
|
|
58 "[$,1<"<#(B]\\|" ;; vowel modifier considered independent
|
|
59 "\\(\\(?:\\(?:$,1<5<m<W(B\\)\\|[$,1<5(B-$,1<Y(B]\\)[$,1<m<^(B-$,1<l(B]?\\)\\|"
|
|
60 "\\($,1<W<m<P<`(B\\)")
|
|
61 "Regexp matching a composable sequence of Tamil characters.")
|
|
62
|
|
63 ;;;###autoload
|
|
64 (defun tamil-compose-region (from to)
|
|
65 (interactive "r")
|
|
66 (save-excursion
|
|
67 (save-restriction
|
|
68 (narrow-to-region from to)
|
|
69 (goto-char (point-min))
|
|
70 (while (re-search-forward tamil-composable-pattern nil t)
|
|
71 (tamil-compose-syllable-region (match-beginning 0)
|
|
72 (match-end 0))))))
|
|
73 (defun tamil-compose-string (string)
|
|
74 (with-temp-buffer
|
|
75 (insert (decompose-string string))
|
|
76 (tamil-compose-region (point-min) (point-max))
|
|
77 (buffer-string)))
|
|
78
|
|
79 (defun tamil-post-read-conversion (len)
|
|
80 (save-excursion
|
|
81 (save-restriction
|
|
82 (let ((buffer-modified-p (buffer-modified-p)))
|
|
83 (narrow-to-region (point) (+ (point) len))
|
|
84 (tamil-compose-region (point-min) (point-max))
|
|
85 (set-buffer-modified-p buffer-modified-p)
|
|
86 (- (point-max) (point-min))))))
|
|
87
|
|
88 (defun tamil-range (from to)
|
|
89 "Make the list of the integers of range FROM to TO."
|
|
90 (let (result)
|
|
91 (while (<= from to) (setq result (cons to result) to (1- to))) result))
|
|
92
|
|
93 (defun tamil-regexp-of-hashtbl-keys (hashtbl)
|
|
94 "Return a regular expression that matches all keys in hashtable HASHTBL."
|
|
95 (let ((max-specpdl-size 1000))
|
|
96 (regexp-opt
|
|
97 (sort
|
|
98 (let (dummy)
|
|
99 (maphash (function (lambda (key val) (setq dummy (cons key dummy)))) hashtbl)
|
|
100 dummy)
|
|
101 (function (lambda (x y) (> (length x) (length y))))))))
|
|
102
|
|
103
|
|
104 ;;;###autoload
|
|
105 (defun tamil-composition-function (from to pattern &optional string)
|
|
106 "Compose Tamil characters in REGION, or STRING if specified.
|
|
107 Assume that the REGION or STRING must fully match the composable
|
|
108 PATTERN regexp."
|
|
109 (if string (tamil-compose-syllable-string string)
|
|
110 (tamil-compose-syllable-region from to))
|
|
111 (- to from))
|
|
112
|
|
113 ;; Register a function to compose Tamil characters.
|
|
114 (mapc
|
|
115 (function (lambda (ucs)
|
|
116 (aset composition-function-table (decode-char 'ucs ucs)
|
|
117 (list (cons tamil-composable-pattern
|
|
118 'tamil-composition-function)))))
|
|
119 (nconc '(#x0b82 #x0b83) (tamil-range #x0b85 #x0bb9)))
|
|
120
|
|
121 ;; Notes on conversion steps.
|
|
122
|
|
123 ;; 1. chars to glyphs
|
|
124 ;; Simple replacement of characters to glyphs is done.
|
|
125
|
|
126 ;; 2. glyphs reordering.
|
|
127 ;; following "$,4)j(B", "$,4)k(B", "$,4)l(B" goes to the front.
|
|
128
|
|
129 ;; 3. glyphs to glyphs
|
|
130 ;; reordered vowels are ligatured to consonants.
|
|
131
|
|
132 ;; 4. Composition.
|
|
133 ;; left modifiers will be attached at the left.
|
|
134 ;; others will be attached right.
|
|
135
|
|
136 (defvar tml-char-glyph
|
|
137 '(;; various signs
|
|
138 ;;("$,1<"(B" . "")
|
|
139 ("$,1<#(B" . "$,4*G(B")
|
|
140 ;; Independent Vowels
|
|
141 ("$,1<%(B" . "$,4*<(B")
|
|
142 ("$,1<&(B" . "$,4*=(B")
|
|
143 ("$,1<'(B" . "$,4*>(B")
|
|
144 ("$,1<((B" . "$,4*?(B")
|
|
145 ("$,1<)(B" . "$,4*@(B")
|
|
146 ("$,1<*(B" . "$,4*A(B")
|
|
147 ("$,1<.(B" . "$,4*B(B")
|
|
148 ("$,1</(B" . "$,4*C(B")
|
|
149 ("$,1<0(B" . "$,4*D(B")
|
|
150 ("$,1<2(B" . "$,4*E(B")
|
|
151 ("$,1<3(B" . "$,4*F(B")
|
|
152 ("$,1<4(B" . "$,4*E*W(B")
|
|
153 ;; Consonants
|
|
154 ("$,1<5<m<W<m(B" . "$,4):(B") ; ks.
|
|
155 ("$,1<5<m<W(B" . "$,4*^(B") ; ks
|
|
156 ("$,1<5(B" . "$,4*H(B")
|
|
157
|
|
158 ("$,1<9(B" . "$,4*I(B")
|
|
159 ("$,1<:(B" . "$,4*J(B")
|
|
160 ("$,1<<(B" . "$,4*\(B")
|
|
161 ("$,1<<<m(B" . "$,4)8(B")
|
|
162 ("$,1<>(B" . "$,4*K(B")
|
|
163 ("$,1<?(B" . "$,4*L(B")
|
|
164 ("$,1<C(B" . "$,4*M(B")
|
|
165 ("$,1<D(B" . "$,4*N(B")
|
|
166 ("$,1<H(B" . "$,4*O(B")
|
|
167 ("$,1<I(B" . "$,4*Y(B")
|
|
168 ("$,1<I<m(B" . "$,4)a(B")
|
|
169 ("$,1<J(B" . "$,4*P(B")
|
|
170 ("$,1<N(B" . "$,4*Q(B")
|
|
171 ("$,1<O(B" . "$,4*R(B")
|
|
172 ("$,1<P(B" . "$,4*S(B")
|
|
173 ("$,1<Q(B" . "$,4*X(B")
|
|
174 ("$,1<R(B" . "$,4*T(B")
|
|
175 ("$,1<S(B" . "$,4*W(B")
|
|
176 ("$,1<T(B" . "$,4*V(B")
|
|
177 ("$,1<U(B" . "$,4*U(B")
|
|
178 ("$,1<W(B" . "$,4*[(B")
|
|
179 ("$,1<W<m(B" . "$,4)7(B")
|
|
180 ("$,1<W<m<P<`(B" . "$,4*_(B")
|
|
181 ("$,1<X(B" . "$,4*Z(B")
|
|
182 ("$,1<X<m(B" . "$,4)6(B")
|
|
183 ("$,1<Y(B" . "$,4*](B")
|
|
184 ("$,1<Y<m(B" . "$,4)9(B")
|
|
185
|
|
186 ;; Dependent vowel signs
|
|
187 ("$,1<^(B" . "$,4)c(B")
|
|
188 ("$,1<_(B" . "$,4)d(B")
|
|
189 ("$,1<`(B" . "$,4)f(B")
|
|
190 ("$,1<a(B" . "$,4)g(B")
|
|
191 ("$,1<b(B" . "$,4)h(B")
|
|
192 ("$,1<f(B" . "$,4)j(B")
|
|
193 ("$,1<g(B" . "$,4)k(B")
|
|
194 ("$,1<h(B" . "$,4)l(B")
|
|
195 ("$,1<j(B" . "$,4)j)c(B")
|
|
196 ("$,1<k(B" . "$,4)k)c(B")
|
|
197 ("$,1<l(B" . "$,4)j*W(B")
|
|
198
|
|
199 ;; Various signs
|
|
200 ("$,1<m(B" . "$,4)b(B")
|
|
201 ("$,1<w(B" . "nil") ;; not supported?
|
|
202 ))
|
|
203
|
|
204 (defvar tml-char-glyph-hash
|
|
205 (let* ((hash (make-hash-table :test 'equal)))
|
|
206 (mapc (function (lambda (x) (puthash (car x) (cdr x) hash)))
|
|
207 tml-char-glyph)
|
|
208 hash))
|
|
209
|
|
210 (defvar tml-char-glyph-regexp
|
|
211 (tamil-regexp-of-hashtbl-keys tml-char-glyph-hash))
|
|
212
|
|
213 ;; Tamil languages needed to be reordered.
|
|
214
|
|
215 (defvar tml-consonants-regexp
|
|
216 "[$,4*H*^*I*J*\*K*L*M*N*O*Y*P*Q*R*S*X*T*W*V*U*[*Z*](B]")
|
|
217
|
|
218 (defvar tml-glyph-reorder-key-glyphs "[$,4)j)k)l(B]")
|
|
219
|
|
220 (defvar tml-glyph-reordering-regexp-list
|
|
221 (cons
|
|
222 (concat "\\(" tml-consonants-regexp "\\)\\([$,4)j)k)l(B]\\)") "\\2\\1"))
|
|
223
|
|
224 ;; Tamil vowel modifiers to be ligatured.
|
|
225 (defvar tml-glyph-glyph
|
|
226 '(
|
|
227 ("$,4*H)d(B" . "$,4(a(B") ; ki
|
|
228 ("$,4*^)d(B" . "$,4(v(B") ; ksi
|
|
229 ("$,4*^)f(B" . "$,4)2(B") ; ksi~
|
|
230 ("$,4*I)d(B" . "$,4(b(B") ; n^i
|
|
231 ("$,4*J)d(B" . "$,4(c(B") ; ci
|
|
232 ("$,4*K)d(B" . "$,4(d(B") ; n~i
|
|
233 ("$,4*L)d(B" . "$,4)n(B") ; t.i
|
|
234 ("$,4*M)d(B" . "$,4(e(B") ; n.i
|
|
235 ("$,4*N)d(B" . "$,4(f(B") ; ti
|
|
236 ("$,4*O)d(B" . "$,4(g(B") ; ni
|
|
237 ("$,4*P)d(B" . "$,4(h(B") ; pi
|
|
238 ("$,4*Q)d(B" . "$,4(i(B") ; mi
|
|
239 ("$,4*R)d(B" . "$,4(j(B") ; yi
|
|
240 ("$,4*S)d(B" . "$,4(k(B") ; ri
|
|
241 ("$,4*T)d(B" . "$,4(l(B") ; li
|
|
242 ("$,4*U)d(B" . "$,4(m(B") ; vi
|
|
243 ("$,4*V)d(B" . "$,4(n(B") ; l_i
|
|
244 ("$,4*W)d(B" . "$,4(o(B") ; l.i
|
|
245 ("$,4*X)d(B" . "$,4(p(B") ; r_i
|
|
246 ("$,4*Y)d(B" . "$,4(q(B") ; n_i
|
|
247 ("$,4*Z)d(B" . "$,4(r(B") ; si
|
|
248 ("$,4*[)d(B" . "$,4(s(B") ; s'i
|
|
249 ("$,4*\)d(B" . "$,4(t(B") ; ji
|
|
250 ("$,4*])d(B" . "$,4(u(B") ; hi
|
|
251
|
|
252 ("$,4*H)f(B" . "$,4(w(B") ; ki~
|
|
253 ("$,4*I)f(B" . "$,4(x(B") ; n^i~
|
|
254 ("$,4*J)f(B" . "$,4(y(B") ; ci~
|
|
255 ("$,4*K)f(B" . "$,4(z(B") ; n~i~
|
|
256 ("$,4*L)f(B" . "$,4)o(B") ; t.i~
|
|
257 ("$,4*M)f(B" . "$,4)!(B") ; n.i~
|
|
258 ("$,4*N)f(B" . "$,4)"(B") ; ti~
|
|
259 ("$,4*O)f(B" . "$,4)#(B") ; ni~
|
|
260 ("$,4*P)f(B" . "$,4)$(B") ; pi~
|
|
261 ("$,4*Q)f(B" . "$,4)%(B") ; mi~
|
|
262 ("$,4*R)f(B" . "$,4)&(B") ; yi~
|
|
263 ("$,4*S)f(B" . "$,4)'(B") ; ri~
|
|
264 ("$,4*T)f(B" . "$,4)((B") ; li~
|
|
265 ("$,4*U)f(B" . "$,4))(B") ; vi~
|
|
266 ("$,4*V)f(B" . "$,4)*(B") ; l_i~
|
|
267 ("$,4*W)f(B" . "$,4)+(B") ; l.i~
|
|
268 ("$,4*X)f(B" . "$,4),(B") ; r_i~
|
|
269 ("$,4*Y)f(B" . "$,4)-(B") ; n_i~
|
|
270 ("$,4*Z)f(B" . "$,4).(B") ; si~
|
|
271 ("$,4*[)f(B" . "$,4)/(B") ; s'i~
|
|
272 ("$,4*\)f(B" . "$,4)0(B") ; ji~
|
|
273 ("$,4*])f(B" . "$,4)1(B") ; hi~
|
|
274
|
|
275 ("$,4*H)g(B" . "$,4)p(B") ; ku
|
|
276 ("$,4*I)g(B" . "$,4)q(B") ; n^u
|
|
277 ("$,4*J)g(B" . "$,4)r(B") ; cu
|
|
278 ("$,4*K)g(B" . "$,4)s(B") ; n~u
|
|
279 ("$,4*L)g(B" . "$,4)t(B") ; t.u
|
|
280 ("$,4*M)g(B" . "$,4)u(B") ; n.u
|
|
281 ("$,4*N)g(B" . "$,4)v(B") ; tu
|
|
282 ("$,4*O)g(B" . "$,4)x(B") ; nu
|
|
283 ("$,4*P)g(B" . "$,4)y(B") ; pu
|
|
284 ("$,4*Q)g(B" . "$,4)z(B") ; mu
|
|
285 ("$,4*R)g(B" . "$,4){(B") ; yu
|
|
286 ("$,4*S)g(B" . "$,4)|(B") ; ru
|
|
287 ("$,4*T)g(B" . "$,4)}(B") ; lu
|
|
288 ("$,4*U)g(B" . "$,4)~(B") ; vu
|
|
289 ("$,4*V)g(B" . "$,4)(B") ; l_u
|
|
290 ("$,4*W)g(B" . "$,4* (B") ; l.u
|
|
291 ("$,4*X)g(B" . "$,4*!(B") ; r_u
|
|
292 ("$,4*Y)g(B" . "$,4*"(B") ; n_u
|
|
293
|
|
294 ("$,4*H)h(B" . "$,4*#(B") ; ku~
|
|
295 ("$,4*I)h(B" . "$,4*$(B") ; n^u~
|
|
296 ("$,4*J)h(B" . "$,4*%(B") ; cu~
|
|
297 ("$,4*K)h(B" . "$,4*&(B") ; n~u~
|
|
298 ("$,4*L)h(B" . "$,4*'(B") ; t.u~
|
|
299 ("$,4*M)h(B" . "$,4*((B") ; n.u~
|
|
300 ("$,4*N)h(B" . "$,4*)(B") ; tu~
|
|
301 ("$,4*O)h(B" . "$,4*+(B") ; nu~
|
|
302 ("$,4*P)h(B" . "$,4*,(B") ; pu~
|
|
303 ("$,4*Q)h(B" . "$,4*-(B") ; mu~
|
|
304 ("$,4*R)h(B" . "$,4*.(B") ; yu~
|
|
305 ("$,4*S)h(B" . "$,4*/(B") ; ru~
|
|
306 ("$,4*T)h(B" . "$,4*6(B") ; lu~
|
|
307 ("$,4*U)h(B" . "$,4*7(B") ; vu~
|
|
308 ("$,4*V)h(B" . "$,4*8(B") ; l_u~
|
|
309 ("$,4*W)h(B" . "$,4*9(B") ; l.u~
|
|
310 ("$,4*X)h(B" . "$,4*:(B") ; r_u~
|
|
311 ("$,4*Y)h(B" . "$,4*;(B") ; n_u~
|
|
312 ))
|
|
313
|
|
314 (defvar tml-glyph-glyph-hash
|
|
315 (let* ((hash (make-hash-table :test 'equal)))
|
|
316 (mapc (function (lambda (x) (puthash (car x) (cdr x) hash)))
|
|
317 tml-glyph-glyph)
|
|
318 hash))
|
|
319
|
|
320 (defvar tml-glyph-glyph-regexp
|
|
321 (tamil-regexp-of-hashtbl-keys tml-glyph-glyph-hash))
|
|
322
|
|
323 (defun tamil-compose-syllable-string (string)
|
|
324 (with-temp-buffer
|
|
325 (insert (decompose-string string))
|
|
326 (tamil-compose-syllable-region (point-min) (point-max))
|
|
327 (buffer-string)))
|
|
328
|
|
329 (defun tamil-compose-syllable-region (from to)
|
|
330 "Compose tamil syllable in region FROM to TO."
|
|
331 (let (glyph-str match-str glyph-reorder-regexps)
|
|
332 (save-excursion
|
|
333 (save-restriction
|
|
334 (narrow-to-region from to)
|
|
335 (goto-char (point-min))
|
|
336 ;; char-glyph-conversion
|
|
337 (while (re-search-forward tml-char-glyph-regexp nil t)
|
|
338 (setq match-str (match-string 0))
|
|
339 (setq glyph-str
|
|
340 (concat glyph-str (gethash match-str tml-char-glyph-hash))))
|
|
341 ;; glyph reordering
|
|
342 (when (string-match tml-glyph-reorder-key-glyphs glyph-str)
|
|
343 (if (string-match (car tml-glyph-reordering-regexp-list)
|
|
344 glyph-str)
|
|
345 (setq glyph-str
|
|
346 (replace-match (cdr tml-glyph-reordering-regexp-list)
|
|
347 nil nil glyph-str))))
|
|
348 ;; glyph-glyph-conversion
|
|
349 (when (string-match tml-glyph-glyph-regexp glyph-str)
|
|
350 (setq match-str (match-string 0 glyph-str))
|
|
351 (setq glyph-str
|
|
352 (replace-match (gethash match-str tml-glyph-glyph-hash)
|
|
353 nil nil glyph-str)))
|
|
354 ;; concatenate and attach reference-points.
|
|
355 (setq glyph-str
|
|
356 (cdr
|
|
357 (apply
|
|
358 'nconc
|
|
359 (mapcar
|
|
360 (function
|
|
361 (lambda (x) (list '(5 . 3) x))) ;; default ref. point.
|
|
362 glyph-str))))
|
|
363 (compose-region from to glyph-str)))))
|
|
364
|
|
365 (provide 'tml-util)
|
|
366
|
|
367 ;;; tml-util.el ends here
|