All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencms.search.I_CmsIndexer Maven / Gradle / Ivy

Go to download

OpenCms is an enterprise-ready, easy to use website content management system based on Java and XML technology. Offering a complete set of features, OpenCms helps content managers worldwide to create and maintain beautiful websites fast and efficiently.

There is a newer version: 18.0
Show newest version
/*
 * This library is part of OpenCms -
 * the Open Source Content Management System
 *
 * Copyright (c) Alkacon Software GmbH & Co. KG (http://www.alkacon.com)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * For further information about Alkacon Software GmbH & Co. KG, please see the
 * company website: http://www.alkacon.com
 *
 * For further information about OpenCms, please see the
 * project website: http://www.opencms.org
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package org.opencms.search;

import org.opencms.db.CmsPublishedResource;
import org.opencms.file.CmsObject;
import org.opencms.report.I_CmsReport;

import java.util.List;

/**
 * Indexes resources for the OpenCms search.

* * This is a high level interface that abstracts the index generation process from the search index itself. * Implement this in case special handling of the index generation process is required.

* * @since 6.0.0 */ public interface I_CmsIndexer { /** * Incremental index update - delete the index entry for all resources in the given list.

* * @param indexWriter the writer to the index to delete the entries from * @param resourcesToDelete a list of {@link org.opencms.db.CmsPublishedResource} instances that must be deleted * * @throws CmsIndexException if something goes wrong */ void deleteResources(I_CmsIndexWriter indexWriter, List resourcesToDelete) throws CmsIndexException; /** * Calculates the data for an incremental search index update.

* * @param source the search index source to update * @param publishedResources a list of {@link org.opencms.db.CmsPublishedResource} objects that are to be updated * * @return a container with the information about the resources to delete and / or update * * @throws CmsIndexException if something goes wrong */ CmsSearchIndexUpdateData getUpdateData(CmsSearchIndexSource source, List publishedResources) throws CmsIndexException; /** * Returns true if this VFS indexer is able to resolve locale dependencies between documents.

* * @return true if this VFS indexer is able to resolve locale dependencies between documents */ boolean isLocaleDependenciesEnable(); /** * Creates and initializes a new instance of this indexer implementation.

* * @param cms the OpenCms user context to use when reading resources from the VFS during indexing * @param report the report to write the indexing output to * @param index the search index to update * * @return a new instance of this indexer implementation */ I_CmsIndexer newInstance(CmsObject cms, I_CmsReport report, CmsSearchIndex index); /** * Rebuilds the index for the given configured index source.

* * This is used when the index is fully rebuild, not for updating only some parts * of an existing index.

* * @param writer the index writer to write the update to * @param source the search index source to update * @param threadManager the thread manager to use when extracting the document text * * @throws CmsIndexException if something goes wrong */ void rebuildIndex(I_CmsIndexWriter writer, CmsIndexingThreadManager threadManager, CmsSearchIndexSource source) throws CmsIndexException; /** * Incremental index update - create a new index entry for all resources in the given list.

* * @param writer the index writer to write the update to * @param resourcesToUpdate a list of {@link org.opencms.db.CmsPublishedResource} instances that must be updated * @param threadManager the thread manager to use when extracting the document text * * @throws CmsIndexException if something goes wrong */ void updateResources( I_CmsIndexWriter writer, CmsIndexingThreadManager threadManager, List resourcesToUpdate) throws CmsIndexException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy