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

org.apache.cassandra.cql3.restrictions.RestrictionSet Maven / Gradle / Ivy

There is a newer version: 4.3.1.0
Show newest version
/*
 * 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.cassandra.cql3.restrictions;

import java.util.*;
import java.util.stream.Stream;

import org.apache.cassandra.config.ColumnDefinition;
import org.apache.cassandra.cql3.QueryOptions;
import org.apache.cassandra.cql3.functions.Function;
import org.apache.cassandra.cql3.restrictions.SingleColumnRestriction.ContainsRestriction;
import org.apache.cassandra.db.filter.RowFilter;
import org.apache.cassandra.exceptions.InvalidRequestException;
import org.apache.cassandra.index.SecondaryIndexManager;

/**
 * Sets of column restrictions.
 *
 * 

This class is immutable.

*/ final class RestrictionSet implements Restrictions, Iterable { /** * The comparator used to sort the Restrictions. */ private static final Comparator COLUMN_DEFINITION_COMPARATOR = new Comparator() { @Override public int compare(ColumnDefinition column, ColumnDefinition otherColumn) { int value = Integer.compare(column.position(), otherColumn.position()); return value != 0 ? value : column.name.bytes.compareTo(otherColumn.name.bytes); } }; /** * The restrictions per column. */ protected final TreeMap restrictions; public RestrictionSet() { this(new TreeMap(COLUMN_DEFINITION_COMPARATOR)); } private RestrictionSet(TreeMap restrictions) { this.restrictions = restrictions; } @Override public final void addRowFilterTo(RowFilter filter, SecondaryIndexManager indexManager, QueryOptions options) throws InvalidRequestException { for (Restriction restriction : restrictions.values()) restriction.addRowFilterTo(filter, indexManager, options); } @Override public final List getColumnDefs() { return new ArrayList<>(restrictions.keySet()); } public Stream stream() { return new LinkedHashSet<>(restrictions.values()).stream(); } @Override public void addFunctionsTo(List functions) { Restriction previous = null; for (Restriction restriction : restrictions.values()) { // For muti-column restriction, we can have multiple time the same restriction. if (!restriction.equals(previous)) { previous = restriction; restriction.addFunctionsTo(functions); } } } @Override public final boolean isEmpty() { return restrictions.isEmpty(); } @Override public final int size() { return restrictions.size(); } /** * Adds the specified restriction to this set of restrictions. * * @param restriction the restriction to add * @return the new set of restrictions */ public RestrictionSet addRestriction(SingleRestriction restriction) { // RestrictionSet is immutable so we need to clone the restrictions map. TreeMap newRestrictions = new TreeMap<>(this.restrictions); return new RestrictionSet(mergeRestrictions(newRestrictions, restriction)); } private TreeMap mergeRestrictions(TreeMap restrictions, SingleRestriction restriction) { Collection columnDefs = restriction.getColumnDefs(); Set existingRestrictions = getRestrictions(columnDefs); if (existingRestrictions.isEmpty()) { for (ColumnDefinition columnDef : columnDefs) restrictions.put(columnDef, restriction); } else { for (SingleRestriction existing : existingRestrictions) { SingleRestriction newRestriction = mergeRestrictions(existing, restriction); for (ColumnDefinition columnDef : columnDefs) restrictions.put(columnDef, newRestriction); } } return restrictions; } /** * Returns all the restrictions applied to the specified columns. * * @param columnDefs the column definitions * @return all the restrictions applied to the specified columns */ private Set getRestrictions(Collection columnDefs) { Set set = new HashSet<>(); for (ColumnDefinition columnDef : columnDefs) { SingleRestriction existing = restrictions.get(columnDef); if (existing != null) set.add(existing); } return set; } @Override public final boolean hasSupportingIndex(SecondaryIndexManager indexManager) { for (Restriction restriction : restrictions.values()) { if (restriction.hasSupportingIndex(indexManager)) return true; } return false; } /** * Returns the column after the specified one. * * @param columnDef the column for which the next one need to be found * @return the column after the specified one. */ ColumnDefinition nextColumn(ColumnDefinition columnDef) { return restrictions.tailMap(columnDef, false).firstKey(); } @Override public ColumnDefinition getFirstColumn() { return isEmpty() ? null : this.restrictions.firstKey(); } @Override public ColumnDefinition getLastColumn() { return isEmpty() ? null : this.restrictions.lastKey(); } /** * Returns the last restriction. * * @return the last restriction. */ SingleRestriction lastRestriction() { return isEmpty() ? null : this.restrictions.lastEntry().getValue(); } /** * Merges the two specified restrictions. * * @param restriction the first restriction * @param otherRestriction the second restriction * @return the merged restriction * @throws InvalidRequestException if the two restrictions cannot be merged */ private static SingleRestriction mergeRestrictions(SingleRestriction restriction, SingleRestriction otherRestriction) { return restriction == null ? otherRestriction : restriction.mergeWith(otherRestriction); } /** * Checks if the restrictions contains multiple contains, contains key, or map[key] = value. * * @return true if the restrictions contains multiple contains, contains key, or , * map[key] = value; false otherwise */ public final boolean hasMultipleContains() { int numberOfContains = 0; for (SingleRestriction restriction : restrictions.values()) { if (restriction.isContains()) { ContainsRestriction contains = (ContainsRestriction) restriction; numberOfContains += (contains.numberOfValues() + contains.numberOfKeys() + contains.numberOfEntries()); } } return numberOfContains > 1; } @Override public Iterator iterator() { return new LinkedHashSet<>(restrictions.values()).iterator(); } /** * Checks if any of the underlying restriction is an IN. * @return true if any of the underlying restriction is an IN, false otherwise */ public final boolean hasIN() { return stream().anyMatch(SingleRestriction::isIN); } /** * Checks if all of the underlying restrictions are EQ or IN restrictions. * * @return true if all of the underlying restrictions are EQ or IN restrictions, * false otherwise */ public final boolean hasOnlyEqualityRestrictions() { return stream().allMatch(p -> p.isEQ() || p.isIN()); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy