aboutsummaryrefslogtreecommitdiff
path: root/src/ellinika/xlat.scm
blob: 63af468abcabd4727989d6759e36f3d95ba7a242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
;;;; This file is part of Ellinika
;;;; Copyright (C) 2004, 2007 Sergey Poznyakoff
;;;;
;;;; Ellinika is free software; you can redistribute it and/or modify
;;;; it under the terms of the GNU General Public License as published by
;;;; the Free Software Foundation; either version 3 of the License, or
;;;; (at your option) any later version.
;;;;
;;;; Ellinika is distributed in the hope that it will be useful,
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;;; GNU General Public License for more details.
;;;;
;;;; You should have received a copy of the GNU General Public License
;;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
;;;;
(define-module (ellinika xlat))

(use-modules (ellinika elmorph))

(define greek-postfix-map
  (list
   (cons #\: (list (cons "ι" "ϊ") (cons "υ" "ϋ")
		   (cons "ί" "ΐ") (cons "ύ" "ΰ")
		   (cons "θ" "ϊ") (cons "θ" "ϋ")))
   (cons #\' (list (cons "α" "ά") (cons "Α" "Ά")
		   (cons "ε" "έ") (cons "Ε" "Έ")
		   (cons "η" "ή") (cons "Η" "Ή")
		   (cons "ι" "ί") (cons "Ι" "Ί")
		   (cons "ϊ" "ΐ") (cons "Ϊ" "Ϊ")
		   (cons "ο" "ό") (cons "Ο" "Ό")
		   (cons "υ" "ύ") (cons "Υ" "Ύ")
		   (cons "θ" "ύ") (cons "Θ" "Ύ")
		   (cons "ϋ" "ΰ") (cons "Ϋ" "Ϋ")
		   (cons "ω" "ώ") (cons "Ω" "Ώ")))
   (cons #\s (list (cons "κ" "ξ") (cons "π" "ψ")))))

(define greek-kbd-map
  (list (cons #\a "α")
	(cons #\A "Α")
	(cons #\b "β")
	(cons #\B "Β")
	(cons #\g "γ")
	(cons #\G "Γ")
	(cons #\d "δ")
	(cons #\D "Δ")
	(cons #\e "ε")
	(cons #\E "Ε")
	(cons #\z "ζ")
	(cons #\Z "Ζ")
	(cons #\h "η")
	(cons #\H "Η")
	(cons #\u "θ")
	(cons #\U "Θ")
	(cons #\i "ι")
	(cons #\I "Ι")
	(cons #\k "κ")
	(cons #\K "Κ")
	(cons #\l "λ")
	(cons #\L "Λ")
	(cons #\m "μ")
	(cons #\M "Μ")
	(cons #\n "ν")
	(cons #\M "Ν")
	(cons #\j "ξ")
	(cons #\J "Ξ")
	(cons #\o "ο")
	(cons #\O "Ο")
	(cons #\p "π")
	(cons #\P "Π")
	(cons #\r "ρ")
	(cons #\R "Ρ")
	(cons #\s "σ")
	(cons #\S "Σ")
	(cons #\w "ς")
	(cons #\W "Σ")
	(cons #\t "τ")
	(cons #\T "Τ")
	(cons #\y "υ")
	(cons #\Y "Υ")
	(cons #\f "φ")
	(cons #\F "Φ")
	(cons #\x "χ")
	(cons #\X "Χ")
	(cons #\c "ψ")
	(cons #\C "Ψ")
	(cons #\v "ω")
	(cons #\V "Ω")))


(define (after-thita? c)
  (member c (list #\a #\e #\i #\o #\y #\v)))

;;; Given input string in Greek transliteration, convert it to
;;; an equivalent Greek word in UTF-8 encoding. The input string is
;;; supposed to follow the traditional Greek keyboard layout:
;;;
;;;     +----------------------------------------------------------------+
;;;     | 1! | 2@ | 3# | 4$ | 5% | 6^ | 7& | 8* | 9( | 0) | -_ | =+ | `~ |
;;;     +----------------------------------------------------------------+
;;;       | ·― | ςΣ | εΕ | ρΡ | τΤ | υΥ | θΘ | ιΙ | οΟ | πΠ | [{ | ]} |
;;;       +------------------------------------------------------------+
;;;        | αΑ | σΣ | δΔ | φΦ | γΓ | ηΗ | ξΞ | κΚ | λΛ | ΄¨ | '" | \| |
;;;        +-----------------------------------------------------------+
;;;          | ζΖ | χΧ | ψΨ | ωΩ | βΒ | νΝ | μΜ | ,; | .: | /? |
;;;          +-------------------------------------------------+
;;;		    +-----------------------------+
;;;		    |          space bar          |
;;;		    +-----------------------------+
;;;
;;;
;;; The following escape sequences are recognized:
;;;
;;;   '\ks' -> 'ξ' 
;;;   '\ps' -> 'ψ'
;;;   '\th' -> 'θ'
;;;
;;; Additionally some spell fixing heuristics is applied:
;;;
;;;   's' at the end of the word -> 'ς'
;;;   'w' anywhere but at the end of the word -> 'ω'
;;;   'ks' -> 'ξ'
;;;   'ps' -> 'ψ'
;;;   "th" -> 'θ' unless followed by a consonant
;;;   "u'" -> 'ύ'
;;; 
;;; FIXME: The case of less obvious spelling errors, like e.g. 'ou' -> 'ου'
;;; will be handled by later spelling corrections if fuzzy search is
;;; enabled
(define-public (ellinika:translate-kbd str)
  (apply
   string-append
   (do ((sl (string->list str) (cdr sl))
	(l '()))
       ((null? sl) (reverse l))
     (letrec ((decode-kbd-map
	       (lambda ()
		 (let ((g (assoc
			   (let ((c (car sl)))
			     (cond
			      ((and (char=? c #\w) (not (null? (cdr sl))))
			       #\v)
			      ((and (char=? c #\s) (null? (cdr sl)))
			       #\w)
			      (else
			       c)))
			   greek-kbd-map)))
		   (if g
		       (set! l (cons (cdr g) l))
		       (if (char=? (car sl) #\\)
			   (cond
			    ((> (length sl) 2)
			     (cond
			      ((char=? (car (cdr (cdr sl))) #\s)
			       (let ((c (car (cdr sl))))
				 (cond
				  ((char=? c #\k)
				   (set! sl (cdr (cdr sl)))
				   (set! l (cons "ξ" l)))
				  ((char=? c #\p)
				   (set! sl (cdr (cdr sl)))
				   (set! l (cons "ψ" l)))
				  (else
				   (set! sl (cdr sl))))))
			      ((and (char=? (car (cdr sl)))
				    (char=? (car (cdr (cdr sl))) #\h))
			       (set! sl (cdr (cdr sl)))
			       (set! l (cons "θ" l)))))

			    (else
			     (set! l (cons (string (car sl)) l))))))))))
       (if (null? l)
	   (decode-kbd-map)
	   (cond
	    ((char=? (car sl) #\h)
	     (if (and (not (null? (cdr sl)))
		      (after-thita? (car (cdr sl))))
		 (set-car! l "θ")
		 (decode-kbd-map)))
	    ((assoc (car sl) greek-postfix-map) =>
	     (lambda (cmap)
	       (let ((x (assoc (car l) (cdr cmap))))
		 (if x
		     (set-car! l (cdr x))
		     (decode-kbd-map)))))
	    (else
	     (decode-kbd-map))))))))
	       

;; Translate the input string to UTF-8 if necessary.
(define-public (ellinika:translate-input input)
  (if (and input
	   (not (string-null? input))
	   (< (char->integer (string-ref input 0)) 127))
      (ellinika:translate-kbd input)
      input))



(define-public (ellinika:sounds-like str)
  (elstr->soundslike str))
  
;;;; End of ellinika.scm

Return to:

Send suggestions and report system problems to the System administrator.