Open Source Repository

Home /hibernate/hibernate-3.2.6.ga | Repository Home



org/hibernate/hql/classic/GroupByParser.java
//$Id: GroupByParser.java 4907 2004-12-08 00:24:14Z oneovthafew $
package org.hibernate.hql.classic;

import org.hibernate.QueryException;
import org.hibernate.util.StringHelper;

/**
 * Parses the GROUP BY clause of an aggregate query
 */
public class GroupByParser implements Parser {

  //this is basically a copy/paste of OrderByParser ... might be worth refactoring

  // This uses a PathExpressionParser but notice that compound paths are not valid,
  // only bare names and simple paths:

  // SELECT p FROM p IN CLASS eg.Person GROUP BY p.Name, p.Address, p

  // The reason for this is SQL doesn't let you sort by an expression you are
  // not returning in the result set.

  private final PathExpressionParser pathExpressionParser;

  {
    pathExpressionParser = new PathExpressionParser();
    pathExpressionParser.setUseThetaStyleJointrue )//TODO: would be nice to use false, but issues with MS SQL
  }

  public void token(String token, QueryTranslatorImpl qthrows QueryException {

    if q.isNameStringHelper.roottoken ) ) ) {
      ParserHelper.parsepathExpressionParser, q.unaliastoken ), ParserHelper.PATH_SEPARATORS, q );
      q.appendGroupByTokenpathExpressionParser.getWhereColumn() );
      pathExpressionParser.addAssociation);
    }
    else {
      q.appendGroupByTokentoken );
    }
  }

  public void start(QueryTranslatorImpl qthrows QueryException {
  }

  public void end(QueryTranslatorImpl qthrows QueryException {
  }


}