/* 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; import java.io.*; /** Converts Tibetan dictionaries stored in text files into a binary file tree structure format, to be used by some implementations of the SyllableListTree.
The text files must be in the format used by the The Rangjung Yeshe Tibetan-English Dictionary of Buddhist Culture.
@author Andrés Montano Pellegrini @see SyllableListTree @see FileSyllableListTree @see CachedSyllableListTree */ public class BinaryFileGenerator extends LinkedList { private long posHijos; private String sil, def[]; private static char delimiter; /** Number of dictionary. If 0, partial word (no definition). */ private DictionarySource sourceDef; public static RandomAccessFile wordRaf; private static RandomAccessFile defRaf; static { wordRaf = null; defRaf = null; delimiter = '-'; } public BinaryFileGenerator() { super(); sil = null; def = null; posHijos=-1; sourceDef = null; } public BinaryFileGenerator(String sil, String def, int numDef) { super(); int marker = sil.indexOf(" "); this.sourceDef = new DictionarySource(); if (marker<0) { this.sil = sil; this.def = new String[1]; this.def[0] = def; this.sourceDef.add(numDef); } else { this.sil = sil.substring(0, marker); this.def = null; addLast(new BinaryFileGenerator(sil.substring(marker+1).trim(), def, numDef)); } posHijos=-1; } public String toString() { return sil; } private static String deleteQuotes(String s) { int length = s.length(); if (length>2) { if ((s.charAt(0)=='\"') && (s.charAt(length-1)=='\"')) return s.substring(1,length-2); } return s; } public void addFile(String archivo, int defNum) throws Exception { final short newDefiniendum=1, halfDefiniendum=2, definition=3; short status=newDefiniendum; int marker, len, marker2; // int n=0; int currentPage=0, currentLine=1; char ch; BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(archivo))); String entrada="", s1="", s2="", currentLetter="", temp="", lastWeirdDefiniendum=""; boolean markerNotFound; // used for acip dict if (delimiter==' ') { outAHere: while (true) { entrada=br.readLine(); if (entrada==null) break; currentLine++; entrada = entrada.trim(); len = entrada.length(); if (len<=0) continue; // get page number if (entrada.charAt(0)=='@') { marker = 1; while(marker