2002-10-03 19:28:09 +00:00
|
|
|
/*
|
|
|
|
The contents of this file are subject to the AMP Open Community License
|
|
|
|
Version 1.0 (the "License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License on the AMP web site
|
|
|
|
(http://www.tibet.iteso.mx/Guatemala/).
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
License for the specific terms governing rights and limitations under the
|
|
|
|
License.
|
|
|
|
|
|
|
|
The Initial Developer of this software is Andres Montano Pellegrini. Portions
|
|
|
|
created by Andres Montano Pellegrini are Copyright 2001 Andres Montano
|
|
|
|
Pellegrini. All Rights Reserved.
|
|
|
|
|
|
|
|
Contributor(s): ______________________________________.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package org.thdl.tib.scanner;
|
2003-04-01 13:08:38 +00:00
|
|
|
import org.thdl.util.*;
|
2002-10-03 19:28:09 +00:00
|
|
|
import java.io.*;
|
2003-04-01 13:08:38 +00:00
|
|
|
import java.util.Vector;
|
|
|
|
import java.util.Enumeration;
|
2002-10-03 19:28:09 +00:00
|
|
|
|
2002-11-03 08:56:11 +00:00
|
|
|
/** Loads dictionary stored in tree format and searches for words recursively.
|
|
|
|
How the the dictionary is loaded depends on which implementation of
|
|
|
|
{@link SyllableListTree} is invoked.
|
|
|
|
|
|
|
|
@author Andrés Montano Pellegrini
|
|
|
|
@see SyllableListTree
|
|
|
|
*/
|
2003-08-03 06:28:22 +00:00
|
|
|
public class LocalTibetanScanner extends TibetanScanner
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
public static String archivo;
|
|
|
|
private SyllableListTree raiz, silActual, lastCompSil, silAnterior;
|
|
|
|
private String wordActual, lastCompWord;
|
|
|
|
private Vector floatingSil;
|
|
|
|
|
|
|
|
static
|
|
|
|
{
|
|
|
|
archivo = null;
|
|
|
|
}
|
|
|
|
|
2004-08-13 04:47:35 +00:00
|
|
|
public BitDictionarySource getDictionarySource()
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
2004-08-13 04:47:35 +00:00
|
|
|
return raiz.getDictionarySourcesWanted();
|
2002-10-03 19:28:09 +00:00
|
|
|
}
|
2005-01-23 00:57:02 +00:00
|
|
|
|
2002-10-03 19:28:09 +00:00
|
|
|
public LocalTibetanScanner(String arch) throws Exception
|
2005-01-23 00:57:02 +00:00
|
|
|
{
|
|
|
|
this (arch, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public LocalTibetanScanner(String arch, boolean backwardCompatible) throws Exception
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
2003-08-03 06:28:22 +00:00
|
|
|
super();
|
2002-10-03 19:28:09 +00:00
|
|
|
archivo = arch;
|
|
|
|
// raiz = new MemorySyllableListTree(archivo);
|
|
|
|
// raiz = new FileSyllableListTree(archivo);
|
2005-01-23 00:57:02 +00:00
|
|
|
raiz = new CachedSyllableListTree(archivo, backwardCompatible);
|
2002-10-03 19:28:09 +00:00
|
|
|
floatingSil = new Vector();
|
|
|
|
resetAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void resetAll()
|
|
|
|
{
|
|
|
|
silAnterior = silActual = lastCompSil = null;
|
|
|
|
wordActual = lastCompWord = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void scanSyllable(String sil)
|
|
|
|
{
|
|
|
|
SyllableListTree resultado=null;
|
2005-02-06 23:19:44 +00:00
|
|
|
Enumeration enumeration;
|
2002-10-03 19:28:09 +00:00
|
|
|
Word w;
|
|
|
|
String silSinDec;
|
2003-03-23 20:27:54 +00:00
|
|
|
boolean aadded;
|
2002-10-03 19:28:09 +00:00
|
|
|
|
|
|
|
if (silActual==null)
|
|
|
|
silActual = raiz;
|
|
|
|
|
|
|
|
silAnterior = silActual;
|
|
|
|
silActual = silActual.lookUp(sil);
|
|
|
|
|
|
|
|
if (silActual != null)
|
|
|
|
{
|
|
|
|
if (silActual.hasDef())
|
|
|
|
{
|
|
|
|
lastCompWord = concatWithSpace(wordActual, sil);
|
|
|
|
lastCompSil = silActual;
|
|
|
|
floatingSil.removeAllElements();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
silSinDec = withOutDec(sil);
|
2003-03-23 20:27:54 +00:00
|
|
|
resultado=null;
|
|
|
|
// while to take into account very weird cases like le'u'i'o
|
|
|
|
while (resultado == null && silSinDec!=null)
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
resultado = silAnterior.lookUp(silSinDec);
|
2004-06-14 03:42:35 +00:00
|
|
|
if (resultado == null || !resultado.hasDef())
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
silSinDec += "\'";
|
|
|
|
resultado = silAnterior.lookUp(silSinDec);
|
2003-03-23 20:27:54 +00:00
|
|
|
aadded=true;
|
2002-10-03 19:28:09 +00:00
|
|
|
}
|
2003-03-23 20:27:54 +00:00
|
|
|
else aadded=false;
|
2002-10-03 19:28:09 +00:00
|
|
|
|
|
|
|
if (resultado!=null && resultado.hasDef())
|
|
|
|
{
|
|
|
|
lastCompWord = concatWithSpace(wordActual, silSinDec);
|
|
|
|
lastCompSil = resultado;
|
|
|
|
wordActual = concatWithSpace(wordActual, sil);
|
2003-03-23 20:27:54 +00:00
|
|
|
floatingSil.removeAllElements();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
resultado = null;
|
|
|
|
if (aadded) silSinDec = silSinDec.substring(0, silSinDec.length()-1);
|
|
|
|
silSinDec = withOutDec(silSinDec);
|
2002-10-03 19:28:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (resultado!=null) return;
|
|
|
|
|
|
|
|
if (lastCompSil!=null)
|
|
|
|
floatingSil.addElement(sil);
|
|
|
|
}
|
|
|
|
wordActual = concatWithSpace(wordActual, sil);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
silSinDec = withOutDec(sil);
|
2003-03-23 20:27:54 +00:00
|
|
|
resultado = null;
|
|
|
|
// while to take into account very weird cases like le'u'i'o
|
|
|
|
while (resultado==null && silSinDec!=null)
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
resultado = silAnterior.lookUp(silSinDec);
|
2004-06-14 03:42:35 +00:00
|
|
|
/* here we don't have to worry about being in the middle of a
|
|
|
|
word since the declension marks that it is the end of a
|
|
|
|
word.
|
|
|
|
*/
|
|
|
|
if (resultado == null || !resultado.hasDef())
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
silSinDec += "\'";
|
|
|
|
resultado = silAnterior.lookUp(silSinDec);
|
2003-03-23 20:27:54 +00:00
|
|
|
aadded=true;
|
2002-10-03 19:28:09 +00:00
|
|
|
}
|
2003-03-23 20:27:54 +00:00
|
|
|
else aadded=false;
|
2002-10-03 19:28:09 +00:00
|
|
|
// si funciona sin declension arreglado problema
|
|
|
|
if (resultado!=null && resultado.hasDef())
|
|
|
|
{
|
|
|
|
wordList.addLast(new Word(concatWithSpace(wordActual, silSinDec), concatWithSpace(wordActual,sil), resultado.getDefs()));
|
|
|
|
resetAll();
|
|
|
|
floatingSil.removeAllElements();
|
|
|
|
}
|
2003-03-23 20:27:54 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
resultado = null;
|
|
|
|
if (aadded) silSinDec = silSinDec.substring(0, silSinDec.length()-1);
|
|
|
|
silSinDec = withOutDec(silSinDec);
|
|
|
|
}
|
|
|
|
|
2002-10-03 19:28:09 +00:00
|
|
|
}
|
|
|
|
if (resultado!=null) return;
|
|
|
|
|
|
|
|
if (lastCompSil!=null)
|
|
|
|
{
|
|
|
|
w = new Word(lastCompWord, lastCompSil.getDefs());
|
|
|
|
wordList.addLast(w);
|
|
|
|
this.resetAll();
|
|
|
|
|
2005-02-06 23:19:44 +00:00
|
|
|
enumeration = floatingSil.elements();
|
2002-10-03 19:28:09 +00:00
|
|
|
floatingSil = new Vector();
|
2005-02-06 23:19:44 +00:00
|
|
|
while (enumeration.hasMoreElements())
|
|
|
|
scanSyllable((String)enumeration.nextElement());
|
2002-10-03 19:28:09 +00:00
|
|
|
|
|
|
|
scanSyllable(sil);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (silAnterior!=raiz)
|
|
|
|
{
|
|
|
|
w = new Word(wordActual, "[incomplete word]");
|
|
|
|
wordList.addLast(w);
|
|
|
|
this.resetAll();
|
|
|
|
scanSyllable(sil);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
w = new Word(sil, "[not found]");
|
|
|
|
wordList.addLast(w);
|
|
|
|
this.resetAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void finishUp()
|
|
|
|
{
|
2005-02-06 23:19:44 +00:00
|
|
|
Enumeration enumeration;
|
2002-10-03 19:28:09 +00:00
|
|
|
Word w;
|
|
|
|
|
|
|
|
while (lastCompSil!=null)
|
|
|
|
{
|
|
|
|
w = new Word(lastCompWord, lastCompSil.getDefs());
|
|
|
|
wordList.addLast(w);
|
|
|
|
this.resetAll();
|
|
|
|
|
2005-02-06 23:19:44 +00:00
|
|
|
enumeration = floatingSil.elements();
|
2002-10-03 19:28:09 +00:00
|
|
|
floatingSil = new Vector();
|
2005-02-06 23:19:44 +00:00
|
|
|
while (enumeration.hasMoreElements())
|
|
|
|
scanSyllable((String)enumeration.nextElement());
|
2002-10-03 19:28:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (silActual!=null)
|
|
|
|
{
|
|
|
|
wordList.addLast(new Word(wordActual, "[incomplete word]"));
|
|
|
|
this.resetAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static String concatWithSpace(String s1, String s2)
|
|
|
|
{
|
|
|
|
if (s1==null || s1.equals(""))
|
|
|
|
return s2;
|
|
|
|
else
|
|
|
|
return s1 + ' ' + s2;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static String withOutDec(String sil)
|
|
|
|
{
|
|
|
|
boolean isDeclined =false;
|
2003-03-23 20:27:54 +00:00
|
|
|
int len = sil.length(), apos;
|
2002-10-03 19:28:09 +00:00
|
|
|
|
|
|
|
if (len<3) return null;
|
|
|
|
|
2002-10-18 23:28:49 +00:00
|
|
|
char lastCar = Character.toLowerCase(sil.charAt(len-1));
|
|
|
|
if ((lastCar == 's' || lastCar == 'r') && Manipulate.isVowel(sil.charAt(len-2)))
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
isDeclined=true;
|
|
|
|
sil = sil.substring(0, len-1);
|
|
|
|
}
|
2003-03-23 20:27:54 +00:00
|
|
|
else
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
2003-03-23 20:27:54 +00:00
|
|
|
apos = sil.lastIndexOf('\'');
|
|
|
|
if (apos>0 && apos < len-1 && Manipulate.isVowel(sil.charAt(apos-1)) && sil.charAt(apos+1)!='u')
|
|
|
|
{
|
|
|
|
isDeclined=true;
|
|
|
|
sil = sil.substring(0, apos);
|
|
|
|
}
|
|
|
|
/* if ((lastCar == 'i' || lastCar == 'o') && sil.charAt(len-2)=='\'')
|
|
|
|
{
|
|
|
|
isDeclined=true;
|
|
|
|
sil = sil.substring(0, len-2);
|
|
|
|
}*/
|
2002-10-03 19:28:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!isDeclined) return null;
|
|
|
|
return sil;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void scanBody(String in)
|
|
|
|
{
|
|
|
|
boolean hayMasLineas=true;
|
|
|
|
|
|
|
|
if (in.equals("")) finishUp();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int init = 0, fin;
|
|
|
|
String linea;
|
|
|
|
|
|
|
|
while (hayMasLineas)
|
|
|
|
{
|
|
|
|
fin = in.indexOf("\n",init);
|
|
|
|
if (fin<0)
|
|
|
|
{
|
|
|
|
linea = in.substring(init).trim();
|
|
|
|
hayMasLineas=false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
linea = in.substring(init, fin).trim();
|
|
|
|
|
|
|
|
if (linea.equals(""))
|
|
|
|
{
|
|
|
|
finishUp();
|
|
|
|
wordList.addLast(new PunctuationMark('\n'));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
scanLine(linea);
|
|
|
|
|
|
|
|
init = fin+1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void scanLine(String linea)
|
|
|
|
{
|
2002-11-02 16:01:40 +00:00
|
|
|
int init = 0, fin;
|
2002-10-03 19:28:09 +00:00
|
|
|
char ch;
|
|
|
|
String sil;
|
|
|
|
boolean doNotFinishUp;
|
|
|
|
|
|
|
|
if (linea.equals(""))
|
|
|
|
{
|
|
|
|
finishUp();
|
|
|
|
wordList.addLast(new PunctuationMark('\n'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
outAHere:
|
|
|
|
while(true)
|
|
|
|
{
|
|
|
|
doNotFinishUp=true;
|
|
|
|
|
|
|
|
// Make init skip all punctuation marks
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
if (init>=linea.length())
|
|
|
|
break outAHere;
|
|
|
|
ch = linea.charAt(init);
|
2005-02-21 05:10:00 +00:00
|
|
|
if (Manipulate.isPunctuationMark(ch))
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
if (doNotFinishUp)
|
|
|
|
{
|
|
|
|
finishUp();
|
|
|
|
doNotFinishUp=false;
|
|
|
|
}
|
|
|
|
wordList.addLast(new PunctuationMark(ch));
|
|
|
|
}
|
2005-02-21 05:10:00 +00:00
|
|
|
else if (!Manipulate.isEndOfSyllableMark(ch))
|
2002-10-03 19:28:09 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
init++;
|
|
|
|
}
|
|
|
|
|
|
|
|
doNotFinishUp = true;
|
|
|
|
|
|
|
|
/* move fin to the end of the next syllable. If finishing
|
|
|
|
up is necessary it is done after scanSyllable
|
|
|
|
*/
|
|
|
|
|
|
|
|
fin = init+1;
|
2003-09-08 08:12:56 +00:00
|
|
|
while (fin < linea.length())
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
ch = linea.charAt(fin);
|
2005-02-21 05:10:00 +00:00
|
|
|
if (Manipulate.isPunctuationMark(ch))
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
doNotFinishUp = false;
|
|
|
|
break;
|
|
|
|
}
|
2005-02-21 05:10:00 +00:00
|
|
|
else if (Manipulate.isEndOfSyllableMark(ch))
|
2002-10-03 19:28:09 +00:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fin++;
|
|
|
|
if (fin>=linea.length())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sil = linea.substring(init, fin);
|
|
|
|
scanSyllable(sil);
|
|
|
|
|
|
|
|
if (!doNotFinishUp)
|
|
|
|
{
|
|
|
|
finishUp();
|
|
|
|
wordList.addLast(new PunctuationMark(ch));
|
|
|
|
}
|
|
|
|
init = fin+1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Looks for .dic file, and returns the dictionary descriptions.
|
|
|
|
Also updates the definitionTags in the Definitions class.
|
|
|
|
*/
|
|
|
|
public String[] getDictionaryDescriptions()
|
|
|
|
{
|
2005-02-06 23:19:44 +00:00
|
|
|
return FileSyllableListTree.getDictionaryDescriptions(archivo);
|
2002-10-03 19:28:09 +00:00
|
|
|
}
|
2005-02-06 23:19:44 +00:00
|
|
|
|
2005-01-23 00:57:02 +00:00
|
|
|
public void destroy()
|
|
|
|
{
|
|
|
|
FileSyllableListTree.closeFiles();
|
|
|
|
}
|
|
|
|
|
2002-10-03 19:28:09 +00:00
|
|
|
}
|