Package org.springframework.data.repository.query.parser

Source Code of org.springframework.data.repository.query.parser.OrderBySource

/*
* Copyright 2008-2012 the original author or authors.
*
* 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.springframework.data.repository.query.parser;

import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.springframework.data.domain.Sort;
import org.springframework.data.domain.Sort.Direction;
import org.springframework.data.domain.Sort.Order;
import org.springframework.data.mapping.PropertyPath;
import org.springframework.util.StringUtils;

/**
* Simple helper class to create a {@link Sort} instance from a method name end. It expects the last part of the method
* name to be given and supports lining up multiple properties ending with the sorting direction. So the following
* method ends are valid: {@code LastnameUsernameDesc}, {@code LastnameAscUsernameDesc}.
*
* @author Oliver Gierke
*/
public class OrderBySource {

  private static final String BLOCK_SPLIT = "(?<=Asc|Desc)(?=\\p{Lu})";
  private static final Pattern DIRECTION_SPLIT = Pattern.compile("(.+)(Asc|Desc)$");

  private final List<Order> orders;

  /**
   * Creates a new {@link OrderBySource} for the given String clause not doing any checks whether the referenced
   * property actually exists.
   *
   * @param clause must not be {@literal null}.
   */
  public OrderBySource(String clause) {

    this(clause, null);
  }

  /**
   * Creates a new {@link OrderBySource} for the given clause, checking the property referenced exists on the given
   * type.
   *
   * @param clause must not be {@literal null}.
   * @param domainClass
   */
  public OrderBySource(String clause, Class<?> domainClass) {

    this.orders = new ArrayList<Sort.Order>();
    for (String part : clause.split(BLOCK_SPLIT)) {
      Matcher matcher = DIRECTION_SPLIT.matcher(part);
      if (!matcher.find()) {
        throw new IllegalArgumentException(String.format("Invalid order syntax for part %s!", part));
      }
      Direction direction = Direction.fromString(matcher.group(2));
      this.orders.add(createOrder(matcher.group(1), direction, domainClass));
    }
  }

  /**
   * Creates an {@link Order} instance from the given property source, direction and domain class. If the domain class
   * is given, we will use it for nested property traversal checks.
   *
   * @param propertySource
   * @param direction
   * @param domainClass can be {@literal null}.
   * @return
   * @see PropertyPath#from(String, Class)
   */
  private Order createOrder(String propertySource, Direction direction, Class<?> domainClass) {

    if (null == domainClass) {
      return new Order(direction, StringUtils.uncapitalize(propertySource));
    }
    PropertyPath propertyPath = PropertyPath.from(propertySource, domainClass);
    return new Order(direction, propertyPath.toDotPath());
  }

  /**
   * Returns the clause as {@link Sort}.
   *
   * @return the {@link Sort} or null if no orders found.
   */
  public Sort toSort() {
    return this.orders.isEmpty() ? null : new Sort(this.orders);
  }

  /*
   * (non-Javadoc)
   * @see java.lang.Object#toString()
   */
  @Override
  public String toString() {
    return "Order By " + StringUtils.collectionToDelimitedString(orders, ", ");
  }
}
TOP

Related Classes of org.springframework.data.repository.query.parser.OrderBySource

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.