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

org.modeshape.jcr.index.local.LocalUniqueIndex Maven / Gradle / Ivy

There is a newer version: 5.4.1.Final
Show newest version
/*
 * ModeShape (http://www.modeshape.org)
 *
 * Licensed 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.modeshape.jcr.index.local;

import javax.jcr.query.qom.StaticOperand;
import org.mapdb.BTreeKeySerializer;
import org.mapdb.DB;
import org.mapdb.Fun;
import org.mapdb.Serializer;
import org.modeshape.jcr.cache.NodeKey;
import org.modeshape.jcr.index.local.IndexValues.Converter;
import org.modeshape.jcr.spi.index.Index;

/**
 * An {@link Index} that associates a single value with a single {@link NodeKey}. All values are stored in natural sort order,
 * allowing finding all the node keys for a range of values.
 *
 * @param  the type of values
 * @author Randall Hauch ([email protected])
 */
class LocalUniqueIndex extends LocalMapIndex {

    /**
     * Create a new index that allows only a single value for each unique key.
     *
     * @param name the name of the index; may not be null or empty
     * @param workspaceName the name of the workspace; may not be null
     * @param db the database in which the index information is to be stored; may not be null
     * @param converter the converter from {@link StaticOperand} to values being indexed; may not be null
     * @param valueSerializer the serializer for the type of value being indexed; may not be null
     * @param rawSerializer the raw value serializer for the type of value being indexed; may not be null
     * @return the new index; never null
     */
    static  LocalUniqueIndex create( String name,
                                           String workspaceName,
                                           DB db,
                                           Converter converter,
                                           BTreeKeySerializer valueSerializer,
                                           Serializer rawSerializer ) {
        return new LocalUniqueIndex<>(name, workspaceName, db, converter, valueSerializer, rawSerializer);
    }

    /**
     * Create a new unique index.
     *
     * @param name the name of the index; may not be null or empty
     * @param workspaceName the name of the workspace; may not be null
     * @param db the database in which the index information is to be stored; may not be null
     * @param converter the converter from {@link StaticOperand} to values being indexed; may not be null
     * @param valueSerializer the serializer for the type of value being indexed; may not be null
     * @param rawSerializer the raw value serializer for the type of value being indexed; may not be null
     */
    protected LocalUniqueIndex( String name,
                                String workspaceName,
                                DB db,
                                Converter converter,
                                BTreeKeySerializer valueSerializer,
                                Serializer rawSerializer ) {
        super(name, workspaceName, db, converter, valueSerializer, rawSerializer);

    }

    @Override
    public void add( String nodeKey,
                     T value ) {
        logger.trace("Adding node '{0}' to '{1}' index with value '{2}'", nodeKey, name, value);
        keysByValue.put(value, nodeKey);
    }

    @Override
    public void remove( String nodeKey,
                        T value ) {
        // Find all of the T values (entry keys) for the given node key (entry values) ...
        for (T key : Fun.filter(valuesByKey, nodeKey)) {
            if (comparator.compare(value, key) == 0) {
                logger.trace("Removing node '{0}' from '{1}' index with value '{2}'", nodeKey, name, value);
                keysByValue.remove(key);
            }
        }
    }

    @Override
    public void remove( String nodeKey ) {
        // Find all of the T values (entry keys) for the given node key (entry values) ...
        for (T key : Fun.filter(valuesByKey, nodeKey)) {
            logger.trace("Removing node '{0}' from '{1}' index with value '{2}'", nodeKey, name, key);
            keysByValue.remove(key);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy