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

com.google.appengine.api.datastore.NotEqualQuerySplitter Maven / Gradle / Ivy

There is a newer version: 2.0.31
Show newest version
/*
 * Copyright 2021 Google LLC
 *
 * 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
 *
 *     https://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 com.google.appengine.api.datastore;

import static com.google.appengine.api.datastore.Query.FilterOperator.GREATER_THAN;
import static com.google.appengine.api.datastore.Query.FilterOperator.LESS_THAN;
import static com.google.appengine.api.datastore.Query.FilterOperator.NOT_EQUAL;

import com.google.appengine.api.datastore.Query.FilterPredicate;
import com.google.appengine.api.datastore.Query.SortDirection;
import com.google.appengine.api.datastore.Query.SortPredicate;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;

/**
 * This class splits a query with a not-equal filter as follows:
 * 

Create n + 1 queries components that restrict the queries * range to values outside the given value. Consider the example: *

{@code
 *   select from Person where age != 33
 * }
* this class would turn this into: *
{@code
 *   select from Person where age < 33
 *   select from Person where age > 33
 * }
 *
 * 

This class can also work for multiple inequality filters. For example: *

{@code
 *   select from Person where age != 33 and age != 40 order by age desc
 * }
* we would turn this into: *
{@code
 *   select from Person where age > 40
 *   select from Person where age > 33 and age < 40
 *   select from Person where age < 33
 * }
* *

Just like other inequality filters, != can only * be applied to a single property and the first sort order must * be on the same property. * */ class NotEqualQuerySplitter extends BaseQuerySplitter { @Override public List split( List remainingFilters, List sorts) { String propertyName = null; List values = new ArrayList<>(); Iterator itr = remainingFilters.iterator(); while (itr.hasNext()) { FilterPredicate filter = itr.next(); if (filter.getOperator() == NOT_EQUAL) { // Found a not equals filter if (propertyName == null) { // we haven't seen a previous not equals filter propertyName = filter.getPropertyName(); } else if (!propertyName.equals(filter.getPropertyName())) { throw new IllegalArgumentException( "Queries with NOT_EQUAL filters on different properties are not supported."); } values.add(new ComparableValue(filter.getValue())); itr.remove(); } } if (!values.isEmpty()) { ArrayList result = new ArrayList(values.size() + 1); result.add(makeComponent(propertyName, values, sorts)); return result; } return Collections.emptyList(); } /** * Constructs a {@link QuerySplitComponent} from the given set of not equal filters. * * @param propertyName the property which != values * @param values the list of values to consider * @param sorts the sort predicates imposed on this query * @return the resulting {@link QuerySplitComponent} */ private QuerySplitComponent makeComponent( String propertyName, List values, List sorts) { QuerySplitComponent result = new QuerySplitComponent(propertyName, sorts); if (!sorts.isEmpty() && (result.getSortIndex() != 0)) { throw new IllegalArgumentException( "The first sort order must be on the same property as the NOT_EQUAL filter"); } Collections.sort(values, getValueComparator(result.getDirection())); Object first = values.get(0).getValue(); Object last = values.get(values.size() - 1).getValue(); if (result.getDirection() == SortDirection.DESCENDING) { result.addFilters(new FilterPredicate(propertyName, GREATER_THAN, first)); for (int i = 1; i < values.size(); ++i) { Object prev = values.get(i - 1).getValue(); Object next = values.get(i).getValue(); result.addFilters( new FilterPredicate(propertyName, LESS_THAN, prev), new FilterPredicate(propertyName, GREATER_THAN, next)); } if (last != null) { // Nothing is less than null result.addFilters(new FilterPredicate(propertyName, LESS_THAN, last)); } } else { // NOTE: both null and ASCENDING need to be treated as ASCENDING if (first != null) { // Nothing is less than null result.addFilters(new FilterPredicate(propertyName, LESS_THAN, first)); } for (int i = 1; i < values.size(); ++i) { Object prev = values.get(i - 1).getValue(); Object next = values.get(i).getValue(); result.addFilters( new FilterPredicate(propertyName, GREATER_THAN, prev), new FilterPredicate(propertyName, LESS_THAN, next)); } result.addFilters(new FilterPredicate(propertyName, GREATER_THAN, last)); } return result; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy