/* * Copyright (c) www.bugull.com * * Licensed 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 net.tooan.ynpay.third.mongodb.lucene.backend; import net.tooan.ynpay.third.jfinal.log.Logger; import net.tooan.ynpay.third.mongodb.BuguEntity; import net.tooan.ynpay.third.mongodb.cache.IndexWriterCache; import net.tooan.ynpay.third.mongodb.mapper.MapperUtil; import org.apache.commons.lang.StringUtils; import org.apache.lucene.document.Document; import org.apache.lucene.index.CorruptIndexException; import org.apache.lucene.index.IndexWriter; import java.io.IOException; /** * @author Frank Wen(xbwen@hotmail.com) */ public class IndexInsertTask implements Runnable { private final static Logger logger = Logger.getLogger(IndexInsertTask.class); private BuguEntity obj; public IndexInsertTask(BuguEntity obj) { this.obj = obj; } @Override public void run() { Class<?> clazz = obj.getClass(); String[] name = MapperUtil.getEntityName(clazz); IndexWriterCache cache = IndexWriterCache.getInstance(); IndexWriter writer = cache.get(StringUtils.join(name, ".")); Document doc = new Document(); IndexCreator creator = new IndexCreator(obj, ""); creator.create(doc); try { writer.addDocument(doc); } catch (CorruptIndexException ex) { logger.error("IndexWriter can not add a document to the lucene index", ex); } catch (IOException ex) { logger.error("IndexWriter can not add a document to the lucene index", ex); } } }