/* * Copyright (C) 2005-2007 Alfresco Software Limited. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * As a special exception to the terms and conditions of version 2.0 of * the GPL, you may redistribute this Program in connection with Free/Libre * and Open Source Software ("FLOSS") applications as described in Alfresco's * FLOSS exception. You should have recieved a copy of the text describing * the FLOSS exception, and it is also available here: * http://www.alfresco.com/legal/licensing" */ package org.alfresco.repo.node.index; import java.util.List; import java.util.concurrent.locks.ReentrantReadWriteLock; import java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock; import net.sf.acegisecurity.Authentication; import org.alfresco.model.ContentModel; import org.alfresco.repo.domain.Transaction; import org.alfresco.repo.node.db.NodeDaoService; import org.alfresco.repo.search.Indexer; import org.alfresco.repo.search.impl.lucene.LuceneQueryParser; import org.alfresco.repo.search.impl.lucene.fts.FullTextSearchIndexer; import org.alfresco.repo.security.authentication.AuthenticationComponent; import org.alfresco.repo.security.authentication.AuthenticationUtil; import org.alfresco.repo.transaction.TransactionServiceImpl; import org.alfresco.repo.transaction.RetryingTransactionHelper.RetryingTransactionCallback; import org.alfresco.service.cmr.repository.ChildAssociationRef; import org.alfresco.service.cmr.repository.NodeRef; import org.alfresco.service.cmr.repository.NodeService; import org.alfresco.service.cmr.repository.StoreRef; import org.alfresco.service.cmr.repository.NodeRef.Status; import org.alfresco.service.cmr.search.ResultSet; import org.alfresco.service.cmr.search.SearchParameters; import org.alfresco.service.cmr.search.SearchService; import org.alfresco.util.PropertyCheck; import org.alfresco.util.VmShutdownListener; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** * Abstract helper for reindexing. * * @see #reindexImpl() * @see #getIndexerWriteLock() * @see #isShuttingDown() * * @author Derek Hulley */ public abstract class AbstractReindexComponent implements IndexRecovery { private static Log logger = LogFactory.getLog(AbstractReindexComponent.class); /** kept to notify the thread that it should quit */ private static VmShutdownListener vmShutdownListener = new VmShutdownListener("IndexRecovery"); private AuthenticationComponent authenticationComponent; /** provides transactions to atomically index each missed transaction */ protected TransactionServiceImpl transactionService; /** the component to index the node hierarchy */ protected Indexer indexer; /** the FTS indexer that we will prompt to pick up on any un-indexed text */ protected FullTextSearchIndexer ftsIndexer; /** the component providing searches of the indexed nodes */ protected SearchService searcher; /** the component giving direct access to store instances */ protected NodeService nodeService; /** the component giving direct access to transaction instances */ protected NodeDaoService nodeDaoService; private volatile boolean shutdown; private final WriteLock indexerWriteLock; public AbstractReindexComponent() { shutdown = false; ReentrantReadWriteLock readWriteLock = new ReentrantReadWriteLock(); indexerWriteLock = readWriteLock.writeLock(); } /** * Convenience method to get a common write lock. This can be used to avoid * concurrent access to the work methods. */ protected WriteLock getIndexerWriteLock() { return indexerWriteLock; } /** * Programmatically notify a reindex thread to terminate * * @param shutdown true to shutdown, false to reset */ public void setShutdown(boolean shutdown) { this.shutdown = shutdown; } /** * * @return Returns true if the VM shutdown hook has been triggered, or the instance * was programmatically {@link #shutdown shut down} */ protected boolean isShuttingDown() { return shutdown || vmShutdownListener.isVmShuttingDown(); } /** * @param authenticationComponent ensures that reindexing operates as system user */ public void setAuthenticationComponent(AuthenticationComponent authenticationComponent) { this.authenticationComponent = authenticationComponent; } /** * Set the low-level transaction component to use * * @param transactionComponent provide transactions to index each missed transaction */ public void setTransactionService(TransactionServiceImpl transactionService) { this.transactionService = transactionService; } /** * @param indexer the indexer that will be index */ public void setIndexer(Indexer indexer) { this.indexer = indexer; } /** * @param ftsIndexer the FTS background indexer */ public void setFtsIndexer(FullTextSearchIndexer ftsIndexer) { this.ftsIndexer = ftsIndexer; } /** * @param searcher component providing index searches */ public void setSearcher(SearchService searcher) { this.searcher = searcher; } /** * @param nodeService provides information about nodes for indexing */ public void setNodeService(NodeService nodeService) { this.nodeService = nodeService; } /** * @param nodeDaoService provides access to transaction-related queries */ public void setNodeDaoService(NodeDaoService nodeDaoService) { this.nodeDaoService = nodeDaoService; } /** * Perform the actual work. This method will be called as the system user * and within an existing transaction. This thread will only ever be accessed * by a single thread per instance. * */ protected abstract void reindexImpl(); /** * If this object is currently busy, then it just nothing */ public final void reindex() { PropertyCheck.mandatory(this, "authenticationComponent", this.authenticationComponent); PropertyCheck.mandatory(this, "ftsIndexer", this.ftsIndexer); PropertyCheck.mandatory(this, "indexer", this.indexer); PropertyCheck.mandatory(this, "searcher", this.searcher); PropertyCheck.mandatory(this, "nodeService", this.nodeService); PropertyCheck.mandatory(this, "nodeDaoService", this.nodeDaoService); PropertyCheck.mandatory(this, "transactionComponent", this.transactionService); if (indexerWriteLock.tryLock()) { Authentication auth = null; try { auth = AuthenticationUtil.getCurrentAuthentication(); // authenticate as the system user authenticationComponent.setSystemUserAsCurrentUser(); RetryingTransactionCallback reindexWork = new RetryingTransactionCallback() { public Object execute() throws Exception { reindexImpl(); return null; } }; transactionService.getRetryingTransactionHelper().doInTransaction(reindexWork, true); } finally { try { indexerWriteLock.unlock(); } catch (Throwable e) {} if (auth != null) { authenticationComponent.setCurrentAuthentication(auth); } } // done if (logger.isDebugEnabled()) { logger.debug("Reindex work completed: " + this); } } else { if (logger.isDebugEnabled()) { logger.debug("Bypassed reindex work - already busy: " + this); } } } protected enum InIndex { YES, NO, INDETERMINATE; } /** * Determines if a given transaction is definitely in the index or not. * * @param txnId a specific transaction * @return Returns true if the transaction is definitely in the index */ protected InIndex isTxnIdPresentInIndex(long txnId) { if (logger.isDebugEnabled()) { logger.debug("Checking for transaction in index: " + txnId); } Transaction txn = nodeDaoService.getTxnById(txnId); if (txn == null) { return InIndex.YES; } // count the changes in the transaction int updateCount = nodeDaoService.getTxnUpdateCount(txnId); int deleteCount = nodeDaoService.getTxnDeleteCount(txnId); if (logger.isDebugEnabled()) { logger.debug("Transaction " + txnId + " has " + updateCount + " updates and " + deleteCount + " deletes."); } InIndex result = InIndex.NO; if (updateCount == 0 && deleteCount == 0) { // If there are no update or deletes, then it is impossible to know if the transaction was removed // from the index or was never there in the first place. result = InIndex.INDETERMINATE; } else { // get the stores List storeRefs = nodeService.getStores(); for (StoreRef storeRef : storeRefs) { boolean inStore = isTxnIdPresentInIndex(storeRef, txn, updateCount, deleteCount); if (inStore) { // found in a particular store result = InIndex.YES; break; } } } // done if (logger.isDebugEnabled()) { logger.debug("Transaction " + txnId + " present in indexes: " + result); } return result; } /** * @param updateCount the number of node updates in the transaction * @param deleteCount the number of node deletions in the transaction * @return Returns true if the given transaction is indexed, * or if there are no updates or deletes */ private boolean isTxnIdPresentInIndex(StoreRef storeRef, Transaction txn, int updateCount, int deleteCount) { long txnId = txn.getId(); String changeTxnId = txn.getChangeTxnId(); // do the most update check, which is most common if (updateCount > 0) { ResultSet results = null; try { SearchParameters sp = new SearchParameters(); sp.addStore(storeRef); // search for it in the index, sorting with youngest first, fetching only 1 sp.setLanguage(SearchService.LANGUAGE_LUCENE); sp.setQuery("TX:" + LuceneQueryParser.escape(changeTxnId)); sp.setLimit(1); results = searcher.query(sp); if (results.length() > 0) { if (logger.isDebugEnabled()) { logger.debug("Index has results for txn " + txnId + " for store " + storeRef); } return true; // there were updates/creates and results for the txn were found } else { if (logger.isDebugEnabled()) { logger.debug("Transaction " + txnId + " not in index for store " + storeRef + ". Possibly out of date."); } return false; } } finally { if (results != null) { results.close(); } } } else if (deleteCount > 0) { // there have been deletes, so we have to ensure that none of the nodes deleted are present in the index // get all node refs for the transaction List nodeRefs = nodeDaoService.getTxnChangesForStore(storeRef, txnId); for (NodeRef nodeRef : nodeRefs) { if (logger.isDebugEnabled()) { logger.debug("Searching for node in index: \n" + " node: " + nodeRef + "\n" + " txn: " + txnId); } // we know that these are all deletions ResultSet results = null; try { SearchParameters sp = new SearchParameters(); sp.addStore(storeRef); // search for it in the index, sorting with youngest first, fetching only 1 sp.setLanguage(SearchService.LANGUAGE_LUCENE); sp.setQuery("ID:" + LuceneQueryParser.escape(nodeRef.toString())); sp.setLimit(1); results = searcher.query(sp); if (results.length() == 0) { // no results, as expected if (logger.isDebugEnabled()) { logger.debug(" --> Node not found (OK)"); } continue; } else { if (logger.isDebugEnabled()) { logger.debug(" --> Node found (Index out of date)"); } return false; } } finally { if (results != null) { results.close(); } } } } // else -> The fallthrough case where there are no updates or deletes // all tests passed if (logger.isDebugEnabled()) { logger.debug("Index is in synch with transaction: " + txnId); } return true; } /** * @return Returns false if any one of the transactions aren't in the index. */ protected boolean areTxnsInIndex(List txns) { for (Transaction txn : txns) { long txnId = txn.getId().longValue(); if (isTxnIdPresentInIndex(txnId) == InIndex.NO) { // Missing txn return false; } } return true; } /** * Perform a full reindexing of the given transaction in the context of a completely * new transaction. * * @param txnId the transaction identifier */ protected void reindexTransaction(final long txnId) { if (logger.isDebugEnabled()) { logger.debug("Reindexing transaction: " + txnId); } RetryingTransactionCallback reindexWork = new RetryingTransactionCallback() { public Object execute() throws Exception { // get the node references pertinent to the transaction List nodeRefs = nodeDaoService.getTxnChanges(txnId); // reindex each node for (NodeRef nodeRef : nodeRefs) { Status nodeStatus = nodeService.getNodeStatus(nodeRef); if (nodeStatus == null) { // it's not there any more continue; } if (nodeStatus.isDeleted()) // node deleted { // only the child node ref is relevant ChildAssociationRef assocRef = new ChildAssociationRef( ContentModel.ASSOC_CHILDREN, null, null, nodeRef); indexer.deleteNode(assocRef); } else // node created { // reindex indexer.updateNode(nodeRef); } } // done return null; } }; transactionService.getRetryingTransactionHelper().doInTransaction(reindexWork, true); // done } }