com.bugull.mongo.lucene.backend.IndexDeleteJob.java Source code

Java tutorial

Introduction

Here is the source code for com.bugull.mongo.lucene.backend.IndexDeleteJob.java

Source

/*
 * 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 com.bugull.mongo.lucene.backend;

import com.bugull.mongo.cache.FieldsCache;
import com.bugull.mongo.lucene.holder.IndexWriterHolder;
import com.bugull.mongo.utils.MapperUtil;
import java.io.IOException;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.lucene.index.CorruptIndexException;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.index.Term;

/**
 *
 * @author Frank Wen(xbwen@hotmail.com)
 */
public class IndexDeleteJob implements IndexJob {

    private final static Logger logger = LogManager.getLogger(IndexDeleteJob.class.getName());

    private Class<?> clazz;
    private String id;

    public IndexDeleteJob(Class<?> clazz, String id) {
        this.clazz = clazz;
        this.id = id;
    }

    @Override
    public void doJob() {
        String name = MapperUtil.getEntityName(clazz);
        IndexWriterHolder holder = IndexWriterHolder.getInstance();
        IndexWriter writer = holder.get(name);
        Term term = new Term(FieldsCache.getInstance().getIdFieldName(clazz), id);
        try {
            writer.deleteDocuments(term);
        } catch (CorruptIndexException ex) {
            logger.error("IndexWriter can not delete a document from the lucene index", ex);
        } catch (IOException ex) {
            logger.error("IndexWriter can not delete a document from the lucene index", ex);
        }
    }

}