org.apache.geode.cache.lucene.internal.LuceneServiceImpl.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.geode.cache.lucene.internal.LuceneServiceImpl.java

Source

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more contributor license
 * agreements. See the NOTICE file distributed with this work for additional information regarding
 * copyright ownership. 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.
 */

package org.apache.geode.cache.lucene.internal;

import java.util.*;

import org.apache.geode.cache.lucene.internal.management.LuceneServiceMBean;
import org.apache.geode.cache.lucene.internal.management.ManagementIndexListener;
import org.apache.geode.management.internal.beans.CacheServiceMBeanBase;
import org.apache.logging.log4j.Logger;
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.analysis.miscellaneous.PerFieldAnalyzerWrapper;
import org.apache.lucene.analysis.standard.StandardAnalyzer;

import org.apache.geode.cache.AttributesFactory;
import org.apache.geode.cache.Cache;
import org.apache.geode.cache.EvictionAlgorithm;
import org.apache.geode.cache.EvictionAttributes;
import org.apache.geode.cache.Region;
import org.apache.geode.cache.RegionAttributes;
import org.apache.geode.cache.execute.FunctionService;
import org.apache.geode.cache.lucene.LuceneIndex;
import org.apache.geode.cache.lucene.LuceneQueryFactory;
import org.apache.geode.cache.lucene.internal.directory.DumpDirectoryFiles;
import org.apache.geode.cache.lucene.internal.distributed.EntryScore;
import org.apache.geode.cache.lucene.internal.distributed.LuceneFunction;
import org.apache.geode.cache.lucene.internal.distributed.LuceneFunctionContext;
import org.apache.geode.cache.lucene.internal.distributed.TopEntries;
import org.apache.geode.cache.lucene.internal.distributed.TopEntriesCollector;
import org.apache.geode.cache.lucene.internal.distributed.TopEntriesCollectorManager;
import org.apache.geode.cache.lucene.internal.filesystem.ChunkKey;
import org.apache.geode.cache.lucene.internal.filesystem.File;
import org.apache.geode.cache.lucene.internal.xml.LuceneServiceXmlGenerator;
import org.apache.geode.internal.DSFIDFactory;
import org.apache.geode.internal.DataSerializableFixedID;
import org.apache.geode.internal.cache.extension.Extensible;
import org.apache.geode.internal.cache.CacheService;
import org.apache.geode.internal.cache.GemFireCacheImpl;
import org.apache.geode.internal.cache.InternalRegionArguments;
import org.apache.geode.internal.cache.PartitionedRegion;
import org.apache.geode.internal.cache.RegionListener;
import org.apache.geode.internal.cache.xmlcache.XmlGenerator;
import org.apache.geode.internal.i18n.LocalizedStrings;
import org.apache.geode.internal.logging.LogService;

/**
 * Implementation of LuceneService to create lucene index and query.
 * 
 * 
 * @since GemFire 8.5
 */
public class LuceneServiceImpl implements InternalLuceneService {
    public static LuceneIndexFactory luceneIndexFactory = new LuceneIndexFactory();
    private static final Logger logger = LogService.getLogger();

    private GemFireCacheImpl cache;
    private final HashMap<String, LuceneIndex> indexMap = new HashMap<String, LuceneIndex>();
    private final HashMap<String, LuceneIndexCreationProfile> definedIndexMap = new HashMap<>();
    private IndexListener managementListener;

    public LuceneServiceImpl() {

    }

    public void init(final Cache cache) {
        if (cache == null) {
            throw new IllegalStateException(LocalizedStrings.CqService_CACHE_IS_NULL.toLocalizedString());
        }
        GemFireCacheImpl gfc = (GemFireCacheImpl) cache;
        gfc.getCancelCriterion().checkCancelInProgress(null);

        this.cache = gfc;

        FunctionService.registerFunction(new LuceneFunction());
        FunctionService.registerFunction(new DumpDirectoryFiles());
        registerDataSerializables();
    }

    @Override
    public CacheServiceMBeanBase getMBean() {
        LuceneServiceMBean mbean = new LuceneServiceMBean(this);
        this.managementListener = new ManagementIndexListener(mbean);
        return mbean;
    }

    @Override
    public Class<? extends CacheService> getInterface() {
        return InternalLuceneService.class;
    }

    public static String getUniqueIndexName(String indexName, String regionPath) {
        if (!regionPath.startsWith("/")) {
            regionPath = "/" + regionPath;
        }
        String name = indexName + "#" + regionPath.replace('/', '_');
        return name;
    }

    @Override
    public void createIndex(String indexName, String regionPath, String... fields) {
        if (fields == null || fields.length == 0) {
            throw new IllegalArgumentException("At least one field must be indexed");
        }
        StandardAnalyzer analyzer = new StandardAnalyzer();

        createIndex(indexName, regionPath, analyzer, null, fields);
    }

    @Override
    public void createIndex(String indexName, String regionPath, Map<String, Analyzer> fieldAnalyzers) {
        if (fieldAnalyzers == null || fieldAnalyzers.isEmpty()) {
            throw new IllegalArgumentException("At least one field must be indexed");
        }
        Analyzer analyzer = new PerFieldAnalyzerWrapper(new StandardAnalyzer(), fieldAnalyzers);
        Set<String> fieldsSet = fieldAnalyzers.keySet();
        String[] fields = (String[]) fieldsSet.toArray(new String[fieldsSet.size()]);

        createIndex(indexName, regionPath, analyzer, fieldAnalyzers, fields);
    }

    public void createIndex(final String indexName, String regionPath, final Analyzer analyzer,
            final Map<String, Analyzer> fieldAnalyzers, final String... fields) {

        if (!regionPath.startsWith("/")) {
            regionPath = "/" + regionPath;
        }

        registerDefinedIndex(LuceneServiceImpl.getUniqueIndexName(indexName, regionPath),
                new LuceneIndexCreationProfile(indexName, regionPath, fields, analyzer, fieldAnalyzers));

        Region region = cache.getRegion(regionPath);
        if (region != null) {
            definedIndexMap.remove(LuceneServiceImpl.getUniqueIndexName(indexName, regionPath));
            throw new IllegalStateException("The lucene index must be created before region");
        }

        final String dataRegionPath = regionPath;
        cache.addRegionListener(new RegionListener() {
            @Override
            public RegionAttributes beforeCreate(Region parent, String regionName, RegionAttributes attrs,
                    InternalRegionArguments internalRegionArgs) {
                RegionAttributes updatedRA = attrs;
                String path = parent == null ? "/" + regionName : parent.getFullPath() + "/" + regionName;

                if (path.equals(dataRegionPath)) {

                    if (!attrs.getDataPolicy().withPartitioning()) {
                        // replicated region
                        throw new UnsupportedOperationException(
                                "Lucene indexes on replicated regions are not supported");
                    }

                    // For now we cannot support eviction with local destroy.
                    // Eviction with overflow to disk still needs to be supported
                    EvictionAttributes evictionAttributes = attrs.getEvictionAttributes();
                    EvictionAlgorithm evictionAlgorithm = evictionAttributes.getAlgorithm();
                    if (evictionAlgorithm != EvictionAlgorithm.NONE
                            && evictionAttributes.getAction().isLocalDestroy()) {
                        throw new UnsupportedOperationException(
                                "Lucene indexes on regions with eviction and action local destroy are not supported");
                    }

                    String aeqId = LuceneServiceImpl.getUniqueIndexName(indexName, dataRegionPath);
                    if (!attrs.getAsyncEventQueueIds().contains(aeqId)) {
                        AttributesFactory af = new AttributesFactory(attrs);
                        af.addAsyncEventQueueId(aeqId);
                        updatedRA = af.create();
                    }

                    // Add index creation profile
                    internalRegionArgs.addCacheServiceProfile(new LuceneIndexCreationProfile(indexName,
                            dataRegionPath, fields, analyzer, fieldAnalyzers));
                }
                return updatedRA;
            }

            @Override
            public void afterCreate(Region region) {
                if (region.getFullPath().equals(dataRegionPath)) {
                    afterDataRegionCreated(indexName, analyzer, dataRegionPath, fieldAnalyzers, fields);
                    cache.removeRegionListener(this);
                }
            }
        });
    }

    /**
     * Finish creating the lucene index after the data region is created .
     * 
     * Public because this is called by the Xml parsing code
     */
    public void afterDataRegionCreated(final String indexName, final Analyzer analyzer, final String dataRegionPath,
            final Map<String, Analyzer> fieldAnalyzers, final String... fields) {
        LuceneIndexImpl index = createIndexRegions(indexName, dataRegionPath);
        index.setSearchableFields(fields);
        index.setAnalyzer(analyzer);
        index.setFieldAnalyzers(fieldAnalyzers);
        index.initialize();
        registerIndex(index);
        if (this.managementListener != null) {
            this.managementListener.afterIndexCreated(index);
        }
    }

    private LuceneIndexImpl createIndexRegions(String indexName, String regionPath) {
        Region dataregion = this.cache.getRegion(regionPath);
        if (dataregion == null) {
            logger.info("Data region " + regionPath + " not found");
            return null;
        }
        // Convert the region name into a canonical form
        regionPath = dataregion.getFullPath();
        return luceneIndexFactory.create(indexName, regionPath, cache);
    }

    private void registerDefinedIndex(final String regionAndIndex,
            final LuceneIndexCreationProfile luceneIndexCreationProfile) {
        if (definedIndexMap.containsKey(regionAndIndex) || indexMap.containsKey(regionAndIndex))
            throw new IllegalArgumentException("Lucene index already exists in region");
        definedIndexMap.put(regionAndIndex, luceneIndexCreationProfile);
    }

    @Override
    public LuceneIndex getIndex(String indexName, String regionPath) {
        Region region = cache.getRegion(regionPath);
        if (region == null) {
            return null;
        }
        return indexMap.get(getUniqueIndexName(indexName, region.getFullPath()));
    }

    @Override
    public Collection<LuceneIndex> getAllIndexes() {
        return indexMap.values();
    }

    @Override
    public void destroyIndex(LuceneIndex index) {
        LuceneIndexImpl indexImpl = (LuceneIndexImpl) index;
        indexMap.remove(getUniqueIndexName(index.getName(), index.getRegionPath()));
        // indexImpl.close();
    }

    @Override
    public LuceneQueryFactory createLuceneQueryFactory() {
        return new LuceneQueryFactoryImpl(cache);
    }

    @Override
    public XmlGenerator<Cache> getXmlGenerator() {
        return new LuceneServiceXmlGenerator();
    }

    @Override
    public void beforeCreate(Extensible<Cache> source, Cache cache) {
        // Nothing to do here.
    }

    @Override
    public void onCreate(Extensible<Cache> source, Extensible<Cache> target) {
        // This is called when CacheCreation (source) is turned into a GemfireCacheImpl (target)
        // nothing to do there.
    }

    public void registerIndex(LuceneIndex index) {
        String regionAndIndex = getUniqueIndexName(index.getName(), index.getRegionPath());
        if (!indexMap.containsKey(regionAndIndex)) {
            indexMap.put(regionAndIndex, index);
        }
        definedIndexMap.remove(regionAndIndex);
    }

    public void unregisterIndex(final String region) {
        if (indexMap.containsKey(region))
            indexMap.remove(region);
    }

    /** Public for test purposes */
    public static void registerDataSerializables() {
        DSFIDFactory.registerDSFID(DataSerializableFixedID.LUCENE_CHUNK_KEY, ChunkKey.class);

        DSFIDFactory.registerDSFID(DataSerializableFixedID.LUCENE_FILE, File.class);

        DSFIDFactory.registerDSFID(DataSerializableFixedID.LUCENE_FUNCTION_CONTEXT, LuceneFunctionContext.class);

        DSFIDFactory.registerDSFID(DataSerializableFixedID.LUCENE_STRING_QUERY_PROVIDER, StringQueryProvider.class);

        DSFIDFactory.registerDSFID(DataSerializableFixedID.LUCENE_TOP_ENTRIES_COLLECTOR_MANAGER,
                TopEntriesCollectorManager.class);

        DSFIDFactory.registerDSFID(DataSerializableFixedID.LUCENE_ENTRY_SCORE, EntryScore.class);

        DSFIDFactory.registerDSFID(DataSerializableFixedID.LUCENE_TOP_ENTRIES, TopEntries.class);

        DSFIDFactory.registerDSFID(DataSerializableFixedID.LUCENE_TOP_ENTRIES_COLLECTOR, TopEntriesCollector.class);
    }

    public Collection<LuceneIndexCreationProfile> getAllDefinedIndexes() {
        return definedIndexMap.values();
    }

    public LuceneIndexCreationProfile getDefinedIndex(String indexName, String regionPath) {
        return definedIndexMap.get(getUniqueIndexName(indexName, regionPath));
    }
}