-
Notifications
You must be signed in to change notification settings - Fork 0
/
metaphone.go
377 lines (326 loc) · 10.7 KB
/
metaphone.go
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
/*
Copyright 2022, Hárrison Leão Ferreira <[email protected]>.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met,
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
***********************************************************************/
package metaphoneptbr
import (
"strings"
"unicode"
)
// Metaphone calcula o metaphone ptbr de uma palavra só
func Metaphone(str string) string {
return Metaphone_s(str, 0)
}
// Metaphone_s calcula o metaphone ptbr de uma frase
// recebe o separador de palavras como segundo parametro
func Metaphone_s(s string, separator rune) string {
primary := &strings.Builder{}
primary.Grow(24)
MetaphAddChr := (*strings.Builder).WriteRune
MetaphAdd := (*strings.Builder).WriteString
WORD_EDGE := func(c rune) bool {
return c == 0 || unicode.IsSpace(c) || c == separator
}
GetAt := getAt
var last_char rune
original := makeUpperAndClean(s)
length := len(original)
original = append(original, separator) //separador no final, pra WORD_EDGE funcionar, entre outras coisas
//Neste loop eu tentei ao maximo preservar os nome de variaveis e
//comentários da versão original em C
for current := 0; current < length; {
current_char := GetAt(original, current)
if separator == current_char {
MetaphAddChr(primary, separator)
goto finalzinho //melhor goto do que identar um monte de codigo ou repetir o final
}
switch current_char {
case 'A', 'E', 'I', 'O', 'U':
/* initials vowels after any space must stay too */
if WORD_EDGE(last_char) {
MetaphAddChr(primary, current_char)
}
case 'L':
ahead_char := GetAt(original, current+1)
/* lha, lho. Adicionado 2009-11-09. Thx Peter Krauss. Ele estava mal-colocado */
if ahead_char == 'H' {
MetaphAddChr(primary, '1')
} else if isVowel(ahead_char) || WORD_EDGE(last_char) {
/* como em Louco, aloprado, alado, lampada, etc */
MetaphAddChr(primary, 'L')
}
/* atualmente ignora L antes de consoantes */
case 'T', 'P':
/* those are special cases, from foreign names or
* old portuguese names sintax.
* Besides, should behavior as the others.
*/
ahead_char := GetAt(original, current+1)
if ahead_char == 'H' {
/* phone, pharmacia, teophilo */
if current_char == 'P' {
MetaphAddChr(primary, 'F')
} else {
MetaphAddChr(primary, 'T')
}
current++
break
}
fallthrough
case 'B', 'D', 'F', 'J', 'K', 'M', 'V':
MetaphAddChr(primary, current_char)
/* checar consoantes com som confuso e similares */
case 'G':
ahead_char := GetAt(original, current+1)
switch ahead_char {
case 'H':
/* H sempre complica a vida. Se não for vogal, tratar como 'G',
caso contrário segue o fluxo abaixo. */
if !isVowel(GetAt(original, current+2)) {
MetaphAddChr(primary, 'G')
}
fallthrough //ta certo? TODO testar
case 'E', 'I':
MetaphAddChr(primary, 'J')
default:
MetaphAddChr(primary, 'G')
}
case 'R':
ahead_char := GetAt(original, current+1)
/* como em andar, carro, rato */
if WORD_EDGE(last_char) || WORD_EDGE(ahead_char) {
MetaphAddChr(primary, '2')
} else if ahead_char == 'R' {
MetaphAddChr(primary, '2')
current++
} else if isVowel(last_char) && isVowel(ahead_char) {
/* como em arara */
MetaphAddChr(primary, 'R')
current++
} else {
/* todo o resto, como em arsenico */
MetaphAddChr(primary, 'R')
}
case 'Z':
ahead_char := GetAt(original, current+1)
if WORD_EDGE(ahead_char) {
/* termina com, como em algoz */
MetaphAddChr(primary, 'S')
} else {
MetaphAddChr(primary, 'Z')
}
case 'N':
ahead_char := GetAt(original, current+1)
/* no português, todas as palavras terminam com 'M', exceto
* no caso de nomes próprios, ou estrangeiros. Para todo caso,
* tem som de 'M'
*/
if WORD_EDGE(ahead_char) {
MetaphAddChr(primary, 'M')
} else if ahead_char == 'H' {
/* aranha, nhoque, manha */
MetaphAddChr(primary, '3')
current++
} else if last_char != 'N' {
/* duplicado... */
MetaphAddChr(primary, 'N')
}
case 'S':
ahead_char := GetAt(original, current+1)
if ahead_char == 'S' {
/* aSSar */
MetaphAddChr(primary, 'S')
last_char = ahead_char
current++
} else if ahead_char == 'H' {
/* mais estrangeirismo: sheila, mishel, e compatibilidade sonora com sobrenomes estrangeiros (japoneses) */
MetaphAddChr(primary, 'X')
current++
} else if isVowel(last_char) && isVowel(ahead_char) {
/* como em asa */
MetaphAddChr(primary, 'Z')
} else if ahead_char == 'C' {
/* special cases = 'SC' */
ahead2_char := GetAt(original, current+2)
switch ahead2_char {
case 'E', 'I':
/* aSCEnder, laSCIvia */
MetaphAddChr(primary, 'S')
current += 2
case 'A', 'O', 'U':
/* maSCAvo, aSCO, auSCUltar */
MetaphAdd(primary, "SK")
current += 2
case 'H':
/* estrangeirismo tal como scheila. */
MetaphAddChr(primary, 'X')
current += 2
default:
/* mesclado */
MetaphAddChr(primary, 'S')
current++
}
} else {
/* catch all - deve pegar atrás e sapato */
MetaphAddChr(primary, 'S')
}
case 'X':
/* there is too many exceptions to work on... ahh! */
//TODO: tem muitos testes a fazer nesse caso
last2_char := GetAt(original, current-2)
ahead_char := GetAt(original, current+1)
/* fax, anticlímax e todos terminados com 'X' */
if WORD_EDGE(ahead_char) {
/* fax, anticlímax e todos terminados com 'X' */
/* o som destes casos:
* MetaphAdd(primary,"KS");
* para manter compatibilidade com outra implementação, usar abaixo
* como em: Felix, Alex
* Na verdade, para o computador tanto faz. Se todos usarem o mesmo
* significado, o computador sabe q são iguais, não que som q tem.
* A discussão está na representação acurada ou não da fonética.
*/
MetaphAdd(primary, "X")
} else if last_char == 'E' {
/* ...ex... */
if isVowel(ahead_char) {
/* começados com EX. Exonerar, exército, executar, exemplo, exame, exílio = ex + vowel
* exuberar
*/
if WORD_EDGE(last2_char) {
/* deixado com o som original dele */
MetaphAddChr(primary, 'Z')
} else {
switch ahead_char {
case 'E', 'I':
/* México, mexerica, mexer */
MetaphAddChr(primary, 'X')
current++
default:
/* Anexar, sexo, convexo, nexo, circunflexo
* sexual
* inclusive Alex e Alexandre, o que eh
* bom, pois há Aleksandro ou Alex sandro
* OBS: texugo cai aqui. Vítima de guerra.
*/
MetaphAdd(primary, "KS")
current++
}
}
} else if ahead_char == 'C' {
/* exceção, exceto */
MetaphAddChr(primary, 'S')
current++
} else if ahead_char == 'P' || ahead_char == 'T' {
/* expatriar, experimentar, extensão, exterminar. Infelizmente, êxtase cai aqui */
MetaphAdd(primary, "S")
} else {
/* catch all exceptions */
MetaphAdd(primary, "KS")
}
} else if isVowel(last_char) {
/* parece que certas sílabas predecessoras do 'x' como
* 'ca' em 'abacaxi' provocam o som de 'CH' no 'x'.
* com exceção do 'm', q é mais complexo.
*/
/* faxina. Fax é tratado acima. */
switch last2_char {
/* encontros vocálicos */
case 'A', 'E', 'I', 'O', 'U', /* caixa, trouxe, abaixar, frouxo, guaxo, Teixeira */
'C', /* coxa, abacaxi */
'K',
'G', /* gaxeta */
'L', /* laxante, lixa, lixo */
'R', /* roxo, bruxa */
'X': /* xaxim */
MetaphAddChr(primary, 'X')
default:
/* táxi, axila, axioma, tóxico, fixar, fixo, monóxido, óxido */
/* maxilar e enquadra máximo aqui tb, embora não seja correto. */
MetaphAdd(primary, "KS")
}
} else {
/* anything else... enxame, enxada, -- catch all exceptions :( */
MetaphAddChr(primary, 'X')
}
case 'C': /* ca, ce, ci, co, cu */
ahead_char := GetAt(original, current+1)
switch ahead_char {
case 'E', 'I':
MetaphAddChr(primary, 'S')
case 'H':
/* christiano. */
if GetAt(original, current+2) == 'R' {
MetaphAddChr(primary, 'K')
} else {
/* CHapéu, chuva */
MetaphAddChr(primary, 'X')
}
current++
case 'Q', 'K':
/* Jacques - não fazer nada. Deixa o 'Q' cuidar disso
* ou palavras com CK, mesma coisa.
*/
break
default:
MetaphAddChr(primary, 'K')
}
case 'H':
/*
* only considers the vowels after 'H' if only they are on
* the beginning of the word
*/
if WORD_EDGE(last_char) {
ahead_char := GetAt(original, current+1)
if isVowel(ahead_char) {
MetaphAddChr(primary, ahead_char)
/* this will provoque some words behavior differently,
* which can be desirable, due differences between
* sounds and writting. Ex: HOSANA will be mapped to
* 'S' sound, instead 'Z'.
* OBS: para voltar à representação de Z, comente a linha abaixo
*/
current++
}
}
case 'Q':
MetaphAddChr(primary, 'K')
case 'W':
ahead_char := GetAt(original, current+1)
if isVowel(ahead_char) {
MetaphAddChr(primary, 'V')
} else if ahead_char == 'L' || ahead_char == 'R' {
/* sugestão de [email protected] p/ Wladimir e Wrana */
MetaphAddChr(primary, 'V')
}
/* desconsiderar o W no final das palavras, por ter som de U,
* ou ainda seguidos por consoantes, por ter som de U (Newton)
* soluções para www?
*/
case 'Ç':
MetaphAddChr(primary, 'S')
}
finalzinho:
/* next char */
current++
last_char = current_char
}
return primary.String()
}