blob: ea3f1836c56f9eb55edb79be2ffad700ceb17aad [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. The ASF 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. For additional information regarding
* copyright in this work, please see the NOTICE file in the top level
* directory of this distribution.
*/
/* Created on Jul 16, 2003 */
package org.apache.roller.weblogger.business.search.operations;
import java.io.IOException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.lucene.index.IndexWriter;
import org.apache.roller.weblogger.WebloggerException;
import org.apache.roller.weblogger.business.search.IndexManagerImpl;
import org.apache.roller.weblogger.business.Weblogger;
import org.apache.roller.weblogger.business.WeblogEntryManager;
import org.apache.roller.weblogger.pojos.WeblogEntry;
/**
* An operation that adds a new log entry into the index.
* @author Mindaugas Idzelis (min@idzelis.com)
*/
public class AddEntryOperation extends WriteToIndexOperation {
//~ Static fields/initializers =============================================
private static Log mLogger =
LogFactory.getFactory().getInstance(AddEntryOperation.class);
//~ Instance fields ========================================================
private WeblogEntry data;
private Weblogger roller;
//~ Constructors ===========================================================
/**
* Adds a web log entry into the index.
*/
public AddEntryOperation(Weblogger roller, IndexManagerImpl mgr,WeblogEntry data) {
super(mgr);
this.roller = roller;
this.data = data;
}
//~ Methods ================================================================
public void doRun() {
IndexWriter writer = beginWriting();
// since this operation can be run on a separate thread we must treat
// the weblog object passed in as a detached object which is proned to
// lazy initialization problems, so requery for the object now
try {
WeblogEntryManager wMgr = roller.getWeblogEntryManager();
this.data = wMgr.getWeblogEntry(this.data.getId());
} catch (WebloggerException ex) {
mLogger.error("Error getting weblogentry object", ex);
return;
}
try {
if (writer != null) {
writer.addDocument(getDocument(data));
}
} catch (IOException e) {
mLogger.error("Problems adding doc to index", e);
} finally {
if (roller != null) {
roller.release();
}
endWriting();
}
}
}