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

com.google.appengine.api.search.checkers.QueryOptionsChecker Maven / Gradle / Ivy

Go to download

API for Google App Engine standard environment with some of the dependencies shaded (repackaged)

There is a newer version: 2.0.27
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.search.checkers;

import com.google.appengine.api.search.proto.SearchServicePb.FieldSpec.Expression;
import com.google.appengine.api.search.proto.SearchServicePb.SearchParams;
import com.google.appengine.api.search.proto.SearchServicePb.SortSpec;
import com.google.common.base.Preconditions;
import java.util.List;

/**
 * Checks values of {@link com.google.appengine.api.search.QueryOptions}.
 *
 */
public final class QueryOptionsChecker {

  /**
   * Checks whether the number of documents to return is between 1 and the
   * maximum.
   *
   * @param limit the maximum number of documents to return in search
   * results
   * @return the checked number of documents to return
   * @throws IllegalArgumentException if the number of documents to return
   * is out of range
   */
  public static int checkLimit(int limit) {
    Preconditions.checkArgument(
        limit >= 1 && limit <= SearchApiLimits.SEARCH_MAXIMUM_LIMIT,
        "The limit %s must be between 1 and %s",
        limit,
        SearchApiLimits.SEARCH_MAXIMUM_LIMIT);
    return limit;
  }

  /**
   * Checks whether the offset is between 0 and the maximum. Can be null.
   *
   * @param offset the offset of the first result to return
   * results
   * @return the checked offset of the first result to return
   * @throws IllegalArgumentException if the offset is out of range
   */
  public static Integer checkOffset(Integer offset) {
    if (offset != null) {
      Preconditions.checkArgument(
          offset >= 0 && offset <= SearchApiLimits.SEARCH_MAXIMUM_OFFSET,
          "The offset %s must be between 0 and %s",
          offset,
          SearchApiLimits.SEARCH_MAXIMUM_OFFSET);
    }
    return offset;
  }

  /**
   * Checks whether the minimum number of documents found accuracy is between
   * 1 and the maximum.
   *
   * @param numberFoundAccuracy the minimum number of documents found
   * accuracy
   * @return the checked accuracy
   * @throws IllegalArgumentException if the minimum is out of range
   */
  public static int checkNumberFoundAccuracy(int numberFoundAccuracy) {
    Preconditions.checkArgument(
        numberFoundAccuracy >= 1
            && numberFoundAccuracy <= SearchApiLimits.SEARCH_MAXIMUM_NUMBER_FOUND_ACCURACY,
        "The number found accuracy %s must be between 1 and %s",
        numberFoundAccuracy,
        SearchApiLimits.SEARCH_MAXIMUM_NUMBER_FOUND_ACCURACY);
    return numberFoundAccuracy;
  }

  /**
   * Checks that there are at most
   * {@literal #MAXIMUM_NUMBER_OF_FIELDS_TO_RETURN} field names and
   * that each field name is valid.
   *
   * @param fieldNames the list of field names to check
   * @return the checked list of field names
   * @throws IllegalArgumentException if the field names list size exceeds the
   * maximum, or some name is invalid
   */
  public static List checkFieldNames(List fieldNames) {
    checkNumberOfFields(fieldNames.size());
    for (String fieldName : fieldNames) {
      FieldChecker.checkFieldName(fieldName);
    }
    return fieldNames;
  }

  /**
   * Checks that there are at most
   * {@literal #MAXIMUM_NUMBER_OF_FIELDS_TO_RETURN} expressions and
   * that each expression is valid.
   *
   * @param expressions the list of expressions to check
   * @return the checked list of expressions
   * @throws IllegalArgumentException if the expression list size exceeds the
   * maximum, or some expression is invalid
   */
  private static List checkExpressions(List expressions) {
    checkNumberOfFields(expressions.size());
    for (Expression expression : expressions) {
      FieldChecker.checkFieldName(expression.getName());
      FieldChecker.checkExpression(expression.getExpression());
    }
    return expressions;
  }

  /**
   * Checks the number of fields is not greater than the maximum.
   */
  private static void checkNumberOfFields(int numberOfFields) {
    Preconditions.checkArgument(
        numberOfFields <= SearchApiLimits.SEARCH_MAXIMUM_NUMBER_OF_FIELDS_TO_RETURN,
        "number of fields to return %s greater than %s",
        numberOfFields,
        SearchApiLimits.SEARCH_MAXIMUM_NUMBER_OF_FIELDS_TO_RETURN);
  }

  /**
   * Checks the search options are valid, specifically, has a non-null
   * number of documents to return specification, a valid cursor if present,
   * valid sort specification list, a valid collection of field names for
   * sorting, and a valid scorer specification.
   *
   * @param params the SearchParams to check
   * @return this checked SearchParams
   * @throws IllegalArgumentException if some part of the specification is
   * invalid
   */
  public static SearchParams checkValid(SearchParams params) {
    if (params.hasCursor()) {
      CursorChecker.checkCursor(params.getCursor());
    }
    checkOffset(params.getOffset());
    checkLimit(params.getLimit());
    if (params.hasMatchedCountAccuracy()) {
      checkNumberFoundAccuracy(params.getMatchedCountAccuracy());
    }
    for (SortSpec sortSpec : params.getSortSpecList()) {
      SortExpressionChecker.checkValid(sortSpec);
    }
    if (params.hasScorerSpec()) {
      SortOptionsChecker.checkValid(params.getScorerSpec());
    }
    if (params.getKeysOnly()) {
      Preconditions.checkArgument(params.getFieldSpec().getExpressionCount() == 0,
          "if IDs only is requested expression to return must be empty");
      Preconditions.checkArgument(params.getFieldSpec().getNameCount() == 0,
          "if IDs only is requested fields to return must be empty");
    }
    checkFieldNames(params.getFieldSpec().getNameList());
    checkExpressions(params.getFieldSpec().getExpressionList());
    return params;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy