com.bizosys.hsearch.inpipe.TokenizeNonEnglish.java Source code

Java tutorial

Introduction

Here is the source code for com.bizosys.hsearch.inpipe.TokenizeNonEnglish.java

Source

/*
* Copyright 2010 Bizosys Technologies Limited
*
* Licensed to the Bizosys Technologies Limited (Bizosys) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The Bizosys licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.bizosys.hsearch.inpipe;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.analysis.br.BrazilianAnalyzer;
import org.apache.lucene.analysis.cz.CzechAnalyzer;
import org.apache.lucene.analysis.de.GermanAnalyzer;
import org.apache.lucene.analysis.el.GreekAnalyzer;
import org.apache.lucene.analysis.fr.FrenchAnalyzer;
import org.apache.lucene.analysis.nl.DutchAnalyzer;
import org.apache.lucene.analysis.ru.RussianAnalyzer;
import org.apache.lucene.analysis.th.ThaiAnalyzer;

import com.bizosys.hsearch.index.Doc;
import com.bizosys.hsearch.index.TermStream;
import com.bizosys.hsearch.inpipe.util.ReaderType;
import com.bizosys.hsearch.util.LuceneConstants;
import com.bizosys.oneline.ApplicationFault;
import com.bizosys.oneline.SystemFault;
import com.bizosys.oneline.conf.Configuration;
import com.bizosys.oneline.pipes.PipeIn;

/**
 * A detail support is planned in future.
 * Don't use this class.
 * @author karan
 *
 */
public class TokenizeNonEnglish extends TokenizeBase implements PipeIn {

    public Map<String, Analyzer> languageMap = new HashMap<String, Analyzer>();

    public TokenizeNonEnglish() {
        super();
    }

    public PipeIn getInstance() {
        return this;
    }

    public String getName() {
        return "TokenizeNonEnglish";
    }

    public void init(Configuration conf) throws ApplicationFault, SystemFault {
        languageMap.put("br", new BrazilianAnalyzer(LuceneConstants.version));
        languageMap.put("cz", new CzechAnalyzer(LuceneConstants.version));
        languageMap.put("nl", new DutchAnalyzer(LuceneConstants.version));
        languageMap.put("fr", new FrenchAnalyzer(LuceneConstants.version));
        languageMap.put("de", new GermanAnalyzer(LuceneConstants.version));
        languageMap.put("el", new GreekAnalyzer(LuceneConstants.version));
        languageMap.put("ru", new RussianAnalyzer(LuceneConstants.version));
        languageMap.put("th", new ThaiAnalyzer(LuceneConstants.version));
    }

    public void visit(Object docObj, boolean multiWriter) throws ApplicationFault, SystemFault {

        if (null == docObj)
            throw new ApplicationFault("No document");
        Doc doc = (Doc) docObj;

        String lang = doc.meta.locale.getDisplayLanguage();

        List<ReaderType> readers = super.getReaders(doc);
        if (null == readers)
            return;

        try {
            for (ReaderType reader : readers) {
                Analyzer analyzer = languageMap.get(lang);
                if (null == analyzer)
                    throw new SystemFault("TokenizeNonEnglish : Unsupported Lanugage > " + lang);
                TokenStream stream = analyzer.tokenStream(reader.type, reader.reader);
                TermStream ts = new TermStream(reader.docSection, stream, reader.type);
                doc.terms.addTokenStream(ts);
                //Note : The reader.reader stream is already closed.
            }
            return;
        } catch (Exception ex) {
            throw new SystemFault(ex);
        }
    }

    public void commit(boolean arg0) throws ApplicationFault, SystemFault {
    }
}