/* * Copyright 2011 Red Hat, Inc. and/or its affiliates. * * This 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 software 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. * * 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., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA */ package org.infinispan.configuration.cache; import java.util.Map; import java.util.Properties; import org.infinispan.util.TypedProperties; import org.infinispan.util.Util; import org.infinispan.util.logging.Log; import org.infinispan.util.logging.LogFactory; /** * Configures indexing of entries in the cache for searching. */ public class IndexingConfigurationBuilder extends AbstractConfigurationChildBuilder<IndexingConfiguration>{ private static final Log log = LogFactory.getLog(IndexingConfigurationBuilder.class); private boolean enabled = false; private boolean indexLocalOnly = false; private Properties properties = new Properties(); IndexingConfigurationBuilder(ConfigurationBuilder builder) { super(builder); } /** * Enable indexing */ public IndexingConfigurationBuilder enable() { this.enabled = true; return this; } /** * Disable indexing */ public IndexingConfigurationBuilder disable() { this.enabled = false; return this; } public IndexingConfigurationBuilder enabled(boolean enabled) { this.enabled = enabled; return this; } /** * If true, only index changes made locally, ignoring remote changes. This is useful if indexes * are shared across a cluster to prevent redundant indexing of updates. */ public IndexingConfigurationBuilder indexLocalOnly(boolean b) { this.indexLocalOnly = b; return this; } /** * <p> * Defines a single property. Can be used multiple times to define all needed properties, but the * full set is overridden by {@link #withProperties(Properties)}. * </p> * <p> * These properties are passed directly to the embedded Hibernate Search engine, so for the * complete and up to date documentation about available properties refer to the the Hibernate Search * reference of the version used by Infinispan Query. * </p> * * @see <a * href="http://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/">Hibernate * Search</a> * @param key Property key * @param value Property value * @return <code>this</code>, for method chaining */ public IndexingConfigurationBuilder addProperty(String key, String value) { this.properties.put(key, value); return this; } /** * <p> * Defines a single value. Can be used multiple times to define all needed property values, but the * full set is overridden by {@link #withProperties(Properties)}. * </p> * <p> * These properties are passed directly to the embedded Hibernate Search engine, so for the * complete and up to date documentation about available properties refer to the the Hibernate Search * reference of the version used by Infinispan Query. * </p> * * @see <a * href="http://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/">Hibernate * Search</a> * @param key Property key * @param value Property value * @return <code>this</code>, for method chaining */ public IndexingConfigurationBuilder setProperty(String key, Object value) { this.properties.put(key, value); return this; } /** * <p> * The Query engine relies on properties for configuration. * </p> * <p> * These properties are passed directly to the embedded Hibernate Search engine, so for the * complete and up to date documentation about available properties refer to the Hibernate Search * reference of the version you're using with Infinispan Query. * </p> * * @see <a * href="http://docs.jboss.org/hibernate/stable/search/reference/en-US/html_single/">Hibernate * Search</a> * @param props the properties * @return <code>this</code>, for method chaining */ public IndexingConfigurationBuilder withProperties(Properties props) { this.properties = props; return this; } @Override void validate() { if (enabled) { // Check that the query module is on the classpath. try { Util.loadClassStrict("org.infinispan.query.Search", getBuilder().classLoader()); } catch (ClassNotFoundException e) { log.warnf("Indexing can only be enabled if infinispan-query.jar is available on your classpath, and this jar has not been detected. Intended behavior may not be exhibited."); } } } @Override IndexingConfiguration create() { return new IndexingConfiguration(TypedProperties.toTypedProperties(properties), enabled, indexLocalOnly); } @Override public IndexingConfigurationBuilder read(IndexingConfiguration template) { this.enabled = template.enabled(); this.indexLocalOnly = template.indexLocalOnly(); this.properties = new Properties(); TypedProperties templateProperties = template.properties(); if (templateProperties != null) { for (Map.Entry entry : templateProperties.entrySet()) { properties.put(entry.getKey(), entry.getValue()); } } return this; } @Override public String toString() { return "IndexingConfigurationBuilder{" + "enabled=" + enabled + ", indexLocalOnly=" + indexLocalOnly + ", properties=" + properties + '}'; } }